Transformers How to use D4ve-R/stablelm-2-1_6b-sentiment with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="D4ve-R/stablelm-2-1_6b-sentiment") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("D4ve-R/stablelm-2-1_6b-sentiment")
model = AutoModelForSequenceClassification.from_pretrained("D4ve-R/stablelm-2-1_6b-sentiment")