unsloth/.github/ISSUE_TEMPLATE/feature-request.md
2025-05-17 18:29:27 -07:00

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,
)