Views
No views yet
| Aspect | Thai Name | Description |
|---|---|---|
| equipment | อุปกรณ์ | เครื่องออกกำลังกาย อุปกรณ์กีฬา |
| staff | โค้ช/พนักงาน | ความรู้ ทักษะการสอน การบริการ |
| cleanliness | ความสะอาด | ความสะอาดโดยรวม |
| atmosphere | บรรยากาศ | แสงสว่าง อากาศ ความแออัด |
| price | ราคา | ค่าบริการ ความคุ้มค่า |
| location | ทำเลที่ตั้ง | การเดินทาง ที่จอดรถ |
| programs | คลาส/โปรแกรม | ความหลากหลาย ตาราง |
| amenities | สิ่งอำนวยความสะดวก | ล็อกเกอร์ ห้องน้ำ |
none - ไม่ได้พูดถึงpositive - เชิงบวกneutral - เป็นกลางnegative - เชิงลบ1from huggingface_hub import snapshot_download
2import torch
3import json
4
5# Download model
6model_dir = snapshot_download(repo_id="unduood/wangchanberta-absa-sports-facility")
7
8# Load and use (see inference notebook for full example)WangchanBERTa (base)
↓
[CLS] token embedding (768)
↓
Shared Dense Layer (768 → 768)
↓
8 Aspect Classification Heads
↓
Each: 768 → 384 → 4 (sentiments)pytorch_model.bin - Model weightsabsa_config.json - Model configurationtokenizer_config.json - Tokenizer configsentencepiece.bpe.model - SentencePiece modelmodeling_absa.py - Model class definition