Text Classification
PEFT
Safetensors
Transformers
LoRA
QLoRA
multi-label
decoder-only
trl
bitsandbytes
Instructions to use Amirhossein75/LLM-Decoder-Tuning-Text-Classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Amirhossein75/LLM-Decoder-Tuning-Text-Classification with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("meta-llama/Llama-3.2-1B") model = PeftModel.from_pretrained(base_model, "Amirhossein75/LLM-Decoder-Tuning-Text-Classification") - Transformers
How to use Amirhossein75/LLM-Decoder-Tuning-Text-Classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Amirhossein75/LLM-Decoder-Tuning-Text-Classification")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Amirhossein75/LLM-Decoder-Tuning-Text-Classification", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,6 +17,7 @@ tags:
|
|
| 17 |
- llama-3.2-1b
|
| 18 |
- peft
|
| 19 |
- text-classification
|
|
|
|
| 20 |
base_model: meta-llama/Llama-3.2-1B
|
| 21 |
---
|
| 22 |
|
|
|
|
| 17 |
- llama-3.2-1b
|
| 18 |
- peft
|
| 19 |
- text-classification
|
| 20 |
+
- adapter:meta-llama/Llama-3.2-1B"
|
| 21 |
base_model: meta-llama/Llama-3.2-1B
|
| 22 |
---
|
| 23 |
|