How to use Agra2002/sentiment_analysis_LLM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Agra2002/sentiment_analysis_LLM")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Agra2002/sentiment_analysis_LLM") model = AutoModelForSequenceClassification.from_pretrained("Agra2002/sentiment_analysis_LLM")
The community tab is the place to discuss and collaborate with the HF community!