Edit model card

how to use

from transformers import pipeline, set_seed

path = "akahana/indonesia-emotion-roberta"
emotion = pipeline('text-classification', 
                     model=path,device=0)
set_seed(42)

kalimat = "dia orang yang baik ya bunds."
preds = emotion(kalimat)
preds

[{'label': 'BAHAGIA', 'score': 0.8790940046310425}]
Downloads last month
44
Safetensors
Model size
125M params
Tensor type
I64
·
F32
·