Hervé BREDIN
commited on
Commit
·
fd71a99
1
Parent(s):
3a8b204
fix: add config.yaml for HF counters to work
Browse files- config.yaml +19 -0
config.yaml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
task:
|
| 2 |
+
_target_: pyannote.audio.tasks.SpeakerDiarization
|
| 3 |
+
duration: 10.0
|
| 4 |
+
max_speakers_per_chunk: 3
|
| 5 |
+
max_speakers_per_frame: 2
|
| 6 |
+
model:
|
| 7 |
+
_target_: pyannote.audio.models.segmentation.PyanNet
|
| 8 |
+
sample_rate: 16000
|
| 9 |
+
num_channels: 1
|
| 10 |
+
sincnet:
|
| 11 |
+
stride: 10
|
| 12 |
+
lstm:
|
| 13 |
+
hidden_size: 128
|
| 14 |
+
num_layers: 4
|
| 15 |
+
bidirectional: true
|
| 16 |
+
monolithic: true
|
| 17 |
+
linear:
|
| 18 |
+
hidden_size: 128
|
| 19 |
+
num_layers: 2
|