# Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("codecompletedeployment/unixcoder-base-nine")
model = AutoModel.from_pretrained("codecompletedeployment/unixcoder-base-nine")Quick Links
sentence transformer version of microsoft/unixcoder-base-nine original model link: https://huggingface.co/microsoft/unixcoder-base-nine/tree/main
- Downloads last month
- 5
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="codecompletedeployment/unixcoder-base-nine")