489 B
489 B
| name | about | title | labels | assignees |
|---|---|---|---|---|
| Feature Request | New features, model support, ideas | [Feature] | feature request |
For new models, have you tried:
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
"microsoft/Phi-4-multimodal-instruct",
trust_remote_code = True,
)
from transformers import AutoModelForSequenceClassification
model, tokenizer = FastModel.from_pretrained(
auto_model = AutoModelForSequenceClassification,
)