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