Views
No views yet
| Task | Weighted F1 | Macro F1 |
|---|---|---|
| Sentiment | 0.558 | 0.519 |
| Emotion | 0.475 | 0.273 |
git clone https://github.com/declare-lab/segue
# run your scripts from inside the segue/ directory, or:
import sys; sys.path.append('/path/to/segue')model.pt and inference.py from this repository, then:from inference import load_segue_multitask, segue_predict
model, processor = load_segue_multitask("model.pt")
sent_probs, emo_probs = segue_predict(model, processor, audio_array, sampling_rate=16000)declare-lab/segue-w2v2-base