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