How to use ajinathgh/sentiment_analysis with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ajinathgh/sentiment_analysis")
# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("ajinathgh/sentiment_analysis") model = AutoModelForMaskedLM.from_pretrained("ajinathgh/sentiment_analysis")