Text Classification
setfit
Safetensors
sentence-transformers
bert
generated_from_setfit_trainer
Eval Results (legacy)
text-embeddings-inference
Instructions to use ITOCJ/SciFunctions with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- setfit
How to use ITOCJ/SciFunctions with setfit:
from setfit import SetFitModel model = SetFitModel.from_pretrained("ITOCJ/SciFunctions") - sentence-transformers
How to use ITOCJ/SciFunctions with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("ITOCJ/SciFunctions") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
File size: 125 Bytes
3fa164d | 1 2 3 4 5 6 7 8 | {
"cls_token": "[CLS]",
"mask_token": "[MASK]",
"pad_token": "[PAD]",
"sep_token": "[SEP]",
"unk_token": "[UNK]"
}
|