Views
No views yet
| ID | Lớp | Gộp từ |
|---|---|---|
| 0 | Enjoyment (vui) | Enjoyment / happy |
| 1 | Sadness (buồn) | Sadness + Fear / sad + fearful |
| 2 | Anger (giận) | Anger + Disgust / angry + disgusted |
| 3 | Surprise (ngạc nhiên) | Surprise / surprised |
| 4 | Other (khác/trung tính) | Other / neutral |
audio ──→ wav2vec2-base-vietnamese-250h (+LoRA) ──→ mean-pool ─┐
├─→ concat → MLP → 5 lớp
text ──→ PhoBERT-base (+LoRA) ──→ [CLS] ─────────────────────┘nguyenvulebinh/wav2vec2-base-vietnamese-250h, fine-tune bằng LoRA (r=16).vinai/phobert-base, fine-tune bằng LoRA (r=16).| Chỉ số | Giá trị |
|---|---|
| Accuracy | 0.743 |
| Macro-F1 | 0.613 |
iic/emotion2vec_plus_large (pseudo-labeling) trên dữ liệu giọng nói
NhutP/VietSpeech (vốn không có nhãn cảm xúc). Vì vậy:MultimodalSER rồi nạp trọng số:1import torch
2from huggingface_hub import hf_hub_download
3# ... định nghĩa lại class MultimodalSER như khi train ...
4
5path = hf_hub_download("qdovan03/vietspeech-fusion-ser", "best_fusion.pt")
6model = MultimodalSER(num_labels=5)
7state = torch.load(path, map_location="cpu")
8state = {k.replace("module.", "", 1): v for k, v in state.items()}
9model.load_state_dict(state)
10model.eval()fusion_config.json trong repo để biết các siêu tham số.NhutP/VietSpeech (Apache-2.0)iic/emotion2vec_plus_largeqdovan03/vietspeech-emo