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