How to use Anwaarma/try1 with PEFT:
from peft import PeftModel from transformers import AutoModelForSequenceClassification base_model = AutoModelForSequenceClassification.from_pretrained("Anwaarma/edos_taskB_llama3b_merged2_FINAL") model = PeftModel.from_pretrained(base_model, "Anwaarma/try1")
How to use Anwaarma/try1 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Anwaarma/try1", dtype="auto")
The community tab is the place to discuss and collaborate with the HF community!