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")
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")
The community tab is the place to discuss and collaborate with the HF community!