Text Classification
Transformers
Safetensors
English
Chinese
modernbert
reranker
cross-encoder
agent
decision-making
zero-shot-classification
fast-decider
text-embeddings-inference
Instructions to use mkzero/FastDecider-149M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mkzero/FastDecider-149M with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="mkzero/FastDecider-149M")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("mkzero/FastDecider-149M") model = AutoModelForSequenceClassification.from_pretrained("mkzero/FastDecider-149M", device_map="auto") - Notebooks
- Google Colab
- Kaggle