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