Views
No views yet
| dimension | CCC |
|---|---|
| Valence | 0.705 |
| Arousal | 0.714 |
| Dominance | 0.626 |
| mean | 0.681 |
| File | Contents |
|---|---|
model.safetensors + config.json | Fine-tuned WavLM-large backbone (WavLMModel) |
head.pt | Regression head (mean-pool → 256-proj → 3 outputs), PyTorch state dict |
train.log | Full training log — 3 epochs, per-epoch dev CCC, final Test1 numbers |
1import torch, torchaudio
2from transformers import WavLMModel
3
4backbone = WavLMModel.from_pretrained("Nikhil0097/wavlm-large-emotion-vad")
5head = torch.load("head.pt") # download from this repo; see GitHub for the exact head module
6# 16 kHz mono in → backbone hidden states → mean-pool → head → [valence, arousal, dominance]audio file in → VAD JSON out) are in
the GitHub repo, which uses this
checkpoint as its inference model.