visolex / visobert-absa-restaurant

huggingface.co
Total runs: 8
24-hour runs: 0
7-day runs: 2
30-day runs: -1
Model's Last Updated: January 04 2026

Introduction of visobert-absa-restaurant

Model Details of visobert-absa-restaurant

visobert-absa-restaurant: Aspect-based Sentiment Analysis for Vietnamese Reviews

This model is a fine-tuned version of uitnlp/visobert on the VLSP2018-ABSA-Restaurant dataset for aspect-based sentiment analysis in Vietnamese reviews.

Model Details
  • Base Model : uitnlp/visobert
  • Description : ViSoBERT (uitnlp/visobert) fine-tuned
  • Dataset : VLSP2018-ABSA-Restaurant
  • Fine-tuning Framework : HuggingFace Transformers
  • Task : Aspect-based Sentiment Classification (3 classes)
Hyperparameters
  • Batch size: 32
  • Learning rate: 3e-5
  • Epochs: 100
  • Max sequence length: 256
  • Weight decay: 0.01
  • Warmup steps: 500
  • Optimizer: AdamW
Dataset

Model was trained on VLSP2018 ABSA Restaurant dataset for aspect-based sentiment analysis.

Sentiment Labels:
  • 0 - Negative (Tiêu cực): Negative opinions
  • 1 - Neutral (Trung lập): Neutral, objective opinions
  • 2 - Positive (Tích cực): Positive opinions
Aspect Categories:

Model được train để phân tích sentiment cho các aspects sau:

  • AMBIENCE#GENERAL
  • DRINKS#PRICES
  • DRINKS#QUALITY
  • DRINKS#STYLE&OPTIONS
  • FOOD#PRICES
  • FOOD#QUALITY
  • FOOD#STYLE&OPTIONS
  • LOCATION#GENERAL
  • RESTAURANT#GENERAL
  • RESTAURANT#MISCELLANEOUS
  • RESTAURANT#PRICES
  • SERVICE#GENERAL
Evaluation Results

The model was evaluated on test set with the following metrics:

  • Accuracy : 0.8977
  • Macro-F1 : 0.6485
  • Weighted-F1 : 0.7976
  • Macro-Precision : 0.8014
  • Macro-Recall : 0.5655
Usage Example
import torch
from transformers import AutoTokenizer, AutoModel

# Load model and tokenizer
repo = "visolex/visobert-absa-restaurant"
tokenizer = AutoTokenizer.from_pretrained(repo, trust_remote_code=True)
model = AutoModel.from_pretrained(repo, trust_remote_code=True)
model.eval()

# Aspect labels for VLSP2018-ABSA-Restaurant
aspect_labels = [
    "AMBIENCE#GENERAL",
    "DRINKS#PRICES",
    "DRINKS#QUALITY",
    "DRINKS#STYLE&OPTIONS",
    "FOOD#PRICES",
    "FOOD#QUALITY",
    "FOOD#STYLE&OPTIONS",
    "LOCATION#GENERAL",
    "RESTAURANT#GENERAL",
    "RESTAURANT#MISCELLANEOUS",
    "RESTAURANT#PRICES",
    "SERVICE#GENERAL"
]

# Sentiment labels
sentiment_labels = ["POSITIVE", "NEGATIVE", "NEUTRAL"]

# Example review text
text = "Nhà hàng có không gian đẹp, đồ ăn ngon nhưng giá hơi đắt."

# Tokenize
inputs = tokenizer(
    text,
    return_tensors="pt",
    padding=True,
    truncation=True,
    max_length=256
)
inputs.pop("token_type_ids", None)

# Predict
with torch.no_grad():
    outputs = model(**inputs)

# Get logits: shape [1, num_aspects, num_sentiments + 1]
logits = outputs.logits.squeeze(0)  # [num_aspects, num_sentiments + 1]
probs = torch.softmax(logits, dim=-1)

# Predict for each aspect
none_id = probs.size(-1) - 1  # Index of "none" class
results = []

for i, aspect in enumerate(aspect_labels):
    prob_i = probs[i]
    pred_id = int(prob_i.argmax().item())
    
    if pred_id != none_id and pred_id < len(sentiment_labels):
        score = prob_i[pred_id].item()
        if score >= 0.5:  # threshold
            results.append((aspect, sentiment_labels[pred_id].lower()))

print(f"Text: {text}")
print(f"Predicted aspects: {results}")
# Output example: [('aspects', 'positive'), ('aspects', 'positive'), ('aspects', 'negative')]
Citation

If you use this model, please cite:

@misc{visolex_absa_visobert_absa_restaurant,
  title={ViSoBERT (uitnlp/visobert) fine-tuned for Vietnamese Aspect-based Sentiment Analysis},
  author={ViSoLex Team},
  year={2025},
  url={https://huggingface.co/visolex/visobert-absa-restaurant}
}
License

This model is released under the Apache-2.0 license.

Acknowledgments

Runs of visolex visobert-absa-restaurant on huggingface.co

8
Total runs
0
24-hour runs
2
3-day runs
2
7-day runs
-1
30-day runs

More Information About visobert-absa-restaurant huggingface.co Model

More visobert-absa-restaurant license Visit here:

https://choosealicense.com/licenses/apache-2.0

visobert-absa-restaurant huggingface.co

visobert-absa-restaurant huggingface.co is an AI model on huggingface.co that provides visobert-absa-restaurant's model effect (), which can be used instantly with this visolex visobert-absa-restaurant model. huggingface.co supports a free trial of the visobert-absa-restaurant model, and also provides paid use of the visobert-absa-restaurant. Support call visobert-absa-restaurant model through api, including Node.js, Python, http.

visobert-absa-restaurant huggingface.co Url

https://huggingface.co/visolex/visobert-absa-restaurant

visolex visobert-absa-restaurant online free

visobert-absa-restaurant huggingface.co is an online trial and call api platform, which integrates visobert-absa-restaurant's modeling effects, including api services, and provides a free online trial of visobert-absa-restaurant, you can try visobert-absa-restaurant online for free by clicking the link below.

visolex visobert-absa-restaurant online free url in huggingface.co:

https://huggingface.co/visolex/visobert-absa-restaurant

visobert-absa-restaurant install

visobert-absa-restaurant is an open source model from GitHub that offers a free installation service, and any user can find visobert-absa-restaurant on GitHub to install. At the same time, huggingface.co provides the effect of visobert-absa-restaurant install, users can directly use visobert-absa-restaurant installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

visobert-absa-restaurant install url in huggingface.co:

https://huggingface.co/visolex/visobert-absa-restaurant

Url of visobert-absa-restaurant

visobert-absa-restaurant huggingface.co Url

Provider of visobert-absa-restaurant huggingface.co

visolex
ORGANIZATIONS

Other API from visolex

huggingface.co

Total runs: 57
Run Growth: 20
Growth Rate: 35.09%
Updated:January 05 2026
huggingface.co

Total runs: 52
Run Growth: 31
Growth Rate: 55.36%
Updated:January 05 2026
huggingface.co

Total runs: 32
Run Growth: 17
Growth Rate: 54.84%
Updated:January 05 2026
huggingface.co

Total runs: 19
Run Growth: 12
Growth Rate: 57.14%
Updated:June 20 2025
huggingface.co

Total runs: 19
Run Growth: -18
Growth Rate: -100.00%
Updated:January 05 2026
huggingface.co

Total runs: 13
Run Growth: -5
Growth Rate: -50.00%
Updated:January 05 2026
huggingface.co

Total runs: 8
Run Growth: -2
Growth Rate: -28.57%
Updated:January 05 2026
huggingface.co

Total runs: 4
Run Growth: 2
Growth Rate: 40.00%
Updated:January 05 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:October 17 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:October 29 2025