How to use Anwaarma/new2 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/new2")
How to use Anwaarma/new2 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Anwaarma/new2", dtype="auto")
The community tab is the place to discuss and collaborate with the HF community!