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