# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("suayptalha/MoE-Router")
model = AutoModelForSequenceClassification.from_pretrained("suayptalha/MoE-Router")Quick Links
labels = ['code', 'if', 'math', 'medical']
- Downloads last month
- 8
Model tree for suayptalha/MoE-Router
Base model
distilbert/distilbert-base-uncased
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="suayptalha/MoE-Router")