Text Classification
Transformers
Safetensors
mistral
text-embeddings-inference
4-bit precision
bitsandbytes
Instructions to use afshinO/mistral_with_classification_head with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use afshinO/mistral_with_classification_head with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="afshinO/mistral_with_classification_head")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("afshinO/mistral_with_classification_head") model = AutoModelForSequenceClassification.from_pretrained("afshinO/mistral_with_classification_head") - Notebooks
- Google Colab
- Kaggle