How to use dhanikitkat/topic-modelling-indo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="dhanikitkat/topic-modelling-indo")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("dhanikitkat/topic-modelling-indo") model = AutoModelForSequenceClassification.from_pretrained("dhanikitkat/topic-modelling-indo")
What is a pickle import?