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