Simple_VieQA Sentiment (ZycckZ)

Fine-tuned version of Simple_VieQA
for Vietnamese sentiment analysis on UIT-VSFC dataset.

🧠 Performance

Metric Score
Accuracy 0.936
F1-weighted 0.930

πŸš€ How to use

from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch

model_name = "ZycckZ/Simple_VieQA-sentiment"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(model_name)

text = "SαΊ£n phαΊ©m rαΊ₯t tα»‘t, pin trΓ’u"
inputs = tokenizer(text, return_tensors="pt")
with torch.no_grad():
    logits = model(**inputs).logits
pred = torch.argmax(logits, dim=-1).item()
print(pred)
Downloads last month
10
Safetensors
Model size
0.1B params
Tensor type
F32
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for ZycckZ/Simple_VieQA-sentiment

Datasets used to train ZycckZ/Simple_VieQA-sentiment