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