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