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