Transformers How to use MLap/bloom1.7-lora-sentiment-analysis-classification with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="MLap/bloom1.7-lora-sentiment-analysis-classification") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("MLap/bloom1.7-lora-sentiment-analysis-classification", dtype="auto")