update README
Browse files
README.md
CHANGED
@@ -34,15 +34,14 @@ For a better experience, we encourage you to learn more about [SpeechBrain](http
|
|
34 |
|
35 |
| Release | EDER(%) |
|
36 |
|:-------------:|:--------------:|
|
37 |
-
|
|
38 |
|
39 |
|
40 |
## Pipeline description
|
41 |
|
42 |
-
This system is composed of an wavlm
|
43 |
|
44 |
The system is trained with recordings sampled at 16kHz (single channel).
|
45 |
-
The code will automatically normalize your audio (i.e., resampling + mono channel selection) when calling *diarize_file* if needed.
|
46 |
|
47 |
|
48 |
## Install SpeechBrain
|
@@ -70,7 +69,7 @@ classifier = foreign_class(
|
|
70 |
diary = classifier.diarize_file("speechbrain/emotion-diarization-wavlm-large/example.wav")
|
71 |
print(diary)
|
72 |
```
|
73 |
-
The output will contain a dictionary of emotion
|
74 |
|
75 |
### Inference on GPU
|
76 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
|
|
34 |
|
35 |
| Release | EDER(%) |
|
36 |
|:-------------:|:--------------:|
|
37 |
+
| 05-07-23 | 29.7 (Avg: 30.2) |
|
38 |
|
39 |
|
40 |
## Pipeline description
|
41 |
|
42 |
+
This system is composed of an wavlm encoder and a downstream frame-wise classifier. The task aimes to predict the correct emotion components and their boundaries within an spoken utterance. For now, the model was trained with audios that contain only 1 non-neutral emotion event (emo / neu-emon / emo-neu / neu-emo-neu).
|
43 |
|
44 |
The system is trained with recordings sampled at 16kHz (single channel).
|
|
|
45 |
|
46 |
|
47 |
## Install SpeechBrain
|
|
|
69 |
diary = classifier.diarize_file("speechbrain/emotion-diarization-wavlm-large/example.wav")
|
70 |
print(diary)
|
71 |
```
|
72 |
+
The output will contain a dictionary of emotion components and their boundaries.
|
73 |
|
74 |
### Inference on GPU
|
75 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|