Update README.md
Browse files
README.md
CHANGED
|
@@ -208,22 +208,22 @@ The model can be trained using this [example script](https://github.com/NVIDIA/N
|
|
| 208 |
### Evaluation
|
| 209 |
|
| 210 |
To evaluate Sortformer diarizer and save diarization results in RTTM format, use the inference [example script](https://github.com/NVIDIA/NeMo/blob/main/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py):
|
| 211 |
-
```
|
| 212 |
python [NEMO_GIT_FOLDER]/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py
|
| 213 |
-
model_path="/path/to/diar_sortformer_4spk-v1.nemo"
|
| 214 |
-
manifest_filepath="/path/to/multispeaker_manifest_with_reference_rttms.json"
|
| 215 |
-
collar=COLLAR
|
| 216 |
out_rttm_dir="/path/to/output_rttms"
|
| 217 |
```
|
| 218 |
|
| 219 |
You can provide the post-processing YAML configs from [`post_processing` folder](https://github.com/NVIDIA/NeMo/tree/main/examples/speaker_tasks/diarization/conf/post_processing) to reproduce the optimized post-processing algorithm for each development dataset:
|
| 220 |
-
```
|
| 221 |
-
python [NEMO_GIT_FOLDER]/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py
|
| 222 |
-
model_path="/path/to/diar_sortformer_4spk-v1.nemo"
|
| 223 |
-
manifest_filepath="/path/to/multispeaker_manifest_with_reference_rttms.json"
|
| 224 |
-
collar=COLLAR
|
| 225 |
-
bypass_postprocessing=False
|
| 226 |
-
postprocessing_yaml="/path/to/postprocessing_config.yaml"
|
| 227 |
out_rttm_dir="/path/to/output_rttms"
|
| 228 |
```
|
| 229 |
|
|
|
|
| 208 |
### Evaluation
|
| 209 |
|
| 210 |
To evaluate Sortformer diarizer and save diarization results in RTTM format, use the inference [example script](https://github.com/NVIDIA/NeMo/blob/main/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py):
|
| 211 |
+
```bash
|
| 212 |
python [NEMO_GIT_FOLDER]/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py
|
| 213 |
+
model_path="/path/to/diar_sortformer_4spk-v1.nemo" \
|
| 214 |
+
manifest_filepath="/path/to/multispeaker_manifest_with_reference_rttms.json" \
|
| 215 |
+
collar=COLLAR \
|
| 216 |
out_rttm_dir="/path/to/output_rttms"
|
| 217 |
```
|
| 218 |
|
| 219 |
You can provide the post-processing YAML configs from [`post_processing` folder](https://github.com/NVIDIA/NeMo/tree/main/examples/speaker_tasks/diarization/conf/post_processing) to reproduce the optimized post-processing algorithm for each development dataset:
|
| 220 |
+
```bash
|
| 221 |
+
python [NEMO_GIT_FOLDER]/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py \
|
| 222 |
+
model_path="/path/to/diar_sortformer_4spk-v1.nemo" \
|
| 223 |
+
manifest_filepath="/path/to/multispeaker_manifest_with_reference_rttms.json" \
|
| 224 |
+
collar=COLLAR \
|
| 225 |
+
bypass_postprocessing=False \
|
| 226 |
+
postprocessing_yaml="/path/to/postprocessing_config.yaml" \
|
| 227 |
out_rttm_dir="/path/to/output_rttms"
|
| 228 |
```
|
| 229 |
|