Update config.yaml
Browse files- config.yaml +8 -15
config.yaml
CHANGED
@@ -1,20 +1,13 @@
|
|
1 |
pipeline:
|
2 |
name: pyannote.audio.pipelines.SpeakerDiarization
|
3 |
params:
|
4 |
-
segmentation: philschmid/pyannote-segmentation
|
5 |
-
segmentation_step: 0.1
|
6 |
-
segmentation_batch_size: 32
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
clustering: AgglomerativeClustering
|
12 |
-
|
13 |
params:
|
14 |
-
segmentation_onset: 0.58
|
15 |
clustering:
|
16 |
-
|
17 |
-
threshold: 0.35
|
18 |
-
# single_cluster_detection: # This is not a parameter
|
19 |
-
# quantile: 0.05
|
20 |
-
# threshold: 1.15
|
|
|
1 |
pipeline:
|
2 |
name: pyannote.audio.pipelines.SpeakerDiarization
|
3 |
params:
|
4 |
+
segmentation: philschmid/pyannote-segmentation # Segmentation model
|
5 |
+
segmentation_step: 0.1 # Step size for segmentation (optional)
|
6 |
+
segmentation_batch_size: 32 # Batch size for segmentation (optional)
|
7 |
+
embedding: speechbrain/spkrec-ecapa-voxceleb # Embedding model
|
8 |
+
embedding_exclude_overlap: True # Exclude overlapping segments for embedding (optional)
|
9 |
+
embedding_batch_size: 32 # Batch size for embedding (optional)
|
10 |
+
clustering: AgglomerativeClustering # Clustering method
|
|
|
|
|
11 |
params:
|
|
|
12 |
clustering:
|
13 |
+
threshold: 0.35 # Clustering threshold
|
|
|
|
|
|
|
|