How to use mysmmurf12/sentiment-analyzer with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("google/gemma-2b") model = PeftModel.from_pretrained(base_model, "mysmmurf12/sentiment-analyzer")
How to use mysmmurf12/sentiment-analyzer with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="mysmmurf12/sentiment-analyzer")
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mysmmurf12/sentiment-analyzer", dtype="auto")
The community tab is the place to discuss and collaborate with the HF community!