Instructions to use kvsr/peft-adapter-sequence-classification-binary with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use kvsr/peft-adapter-sequence-classification-binary with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("distilbert-base-uncased") model = PeftModel.from_pretrained(base_model, "kvsr/peft-adapter-sequence-classification-binary") - Notebooks
- Google Colab
- Kaggle
File size: 125 Bytes
6f2470c | 1 2 3 4 5 6 7 8 | {
"cls_token": "[CLS]",
"mask_token": "[MASK]",
"pad_token": "[PAD]",
"sep_token": "[SEP]",
"unk_token": "[UNK]"
}
|