Checkpoints =========== There are two main ways to load pretrained checkpoints in NeMo as introduced in the :doc:`ASR checkpoints <../results>` section. In speaker diarization, the diarizer loads checkpoints that are passed through the config file. End-to-end Speaker Diarization Models ===================================== Sortformer Diarizer Training ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the following command to train a Sortformer diarizer model. .. code-block:: bash # Feed the config for Sortformer diarizer model training python ${NEMO_ROOT}/examples/speaker_tasks/diarization/neural_diarizer/sortformer_diar_train.py --config-path='../conf/neural_diarizer' \ --config-name='sortformer_diarizer_hybrid_loss_4spk-v1.yaml' \ trainer.devices=1 \ model.train_ds.manifest_filepath="" \ model.validation_ds.manifest_filepath="" \ exp_manager.name='sample_train' \ exp_manager.exp_dir=./sortformer_diar_train Sortformer Diarizer Inference with Post-processing ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the following command to run inference on a Sortformer diarizer model. .. code-block:: bash # Config for post-processing PP_YAML1=${NEMO_ROOT}/examples/speaker_tasks/diarization/conf/post_processing/sortformer_diar_4spk-v1_dihard3-dev.yaml PP_YAML2=${NEMO_ROOT}/examples/speaker_tasks/diarization/conf/post_processing/sortformer_diar_4spk-v1_callhome-part1.yaml python ${NEMO_ROOT}/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py \ batch_size=1 \ model_path=/path/to/diar_sortformer_4spk-v1.nemo \ postprocessing_yaml=${PP_YAML2} \ dataset_manifest=/path/to/diarization_manifest.json Streaming Sortformer Diarizer Training ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the following command to train a Streaming Sortformer diarizer model. .. code-block:: bash # Feed the config for Sortformer diarizer model training python ${NEMO_ROOT}/examples/speaker_tasks/diarization/neural_diarizer/sortformer_diar_train.py --config-path='../conf/neural_diarizer' \ --config-name='streaming_sortformer_diarizer_4spk-v2.yaml' \ trainer.devices=1 \ model.streaming_mode=True \ model.train_ds.manifest_filepath="" \ model.validation_ds.manifest_filepath="" \ exp_manager.name='sample_train' \ exp_manager.exp_dir=./sortformer_diar_train Streaming Sortformer Diarizer Inference with Post-processing ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the following command to run inference on a Streaming Sortformer diarizer model. .. code-block:: bash # Config for post-processing STREAM_PP_YAML1=${NEMO_ROOT}/examples/speaker_tasks/diarization/conf/post_processing/diar_streaming_sortformer_4spk-v2_dihard3-dev.yaml STREAM_PP_YAML2=${NEMO_ROOT}/examples/speaker_tasks/diarization/conf/post_processing/diar_streaming_sortformer_4spk-v2_callhome-part1.yaml python ${NEMO_ROOT}/examples/speaker_tasks/diarization/neural_diarizer/e2e_diarize_speech.py \ batch_size=1 \ model_path=/path/to/diar_streaming_sortformer_4spk-v2.nemo \ postprocessing_yaml=${STREAM_PP_YAML2} \ dataset_manifest=/path/to/diarization_manifest.json HuggingFace Pretrained Checkpoints ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The ASR collection has checkpoints of several models trained on various datasets for a variety of tasks. These checkpoints are obtainable via NGC `NeMo Automatic Speech Recognition collection `__. The model cards on NGC contain more information about each of the checkpoints available. In general, you can load models with model name in the following format, .. code-block:: bash pip install -U "huggingface_hub[cli]" huggingface-cli login Load Offline Sortformer Diarizer from HuggingFace .. code-block:: python from nemo.collections.asr.models import SortformerEncLabelModel diar_model = SortformerEncLabelModel.from_pretrained("nvidia/diar_sortformer_4spk-v1") Load Streaming Sortformer Diarizer from HuggingFace .. code-block:: python from nemo.collections.asr.models import SortformerEncLabelModel diar_model = SortformerEncLabelModel.from_pretrained("nvidia/diar_streaming_sortformer_4spk-v2") where the model name is the value under "Model Name" entry in the tables below. End-to-end Speaker Diarization Models ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. csv-table:: :file: /asr/speaker_diarization/data/e2e_diar_models.csv :align: left :widths: 30, 30, 40 :header-rows: 1 Models for Cascaded Speaker Diarization Pipeline ================================================ Loading Local Checkpoints ^^^^^^^^^^^^^^^^^^^^^^^^^ Load VAD models .. code-block:: bash pretrained_vad_model='/path/to/vad_multilingual_marblenet.nemo' # local .nemo or pretrained vad model name ... # pass with hydra config config.diarizer.vad.model_path=pretrained_vad_model Load speaker embedding models .. code-block:: bash pretrained_speaker_model='/path/to/titanet-l.nemo' # local .nemo or pretrained speaker embedding model name ... # pass with hydra config config.diarizer.speaker_embeddings.model_path=pretrained_speaker_model NeMo will automatically save checkpoints of a model you are training in a `.nemo` format. You can also manually save your models at any point using :code:`model.save_to(.nemo)`. Inference ^^^^^^^^^ .. note:: For details and deep understanding, please refer to ``/tutorials/speaker_tasks/Speaker_Diarization_Inference.ipynb``. Check out :doc:`Datasets <./datasets>` for preparing audio files and optional label files. Run and evaluate speaker diarizer with below command: .. code-block:: bash # Have a look at the instruction inside the script and pass the arguments you might need. python /examples/speaker_tasks/diarization/offline_diarization.py NGC Pretrained Checkpoints ^^^^^^^^^^^^^^^^^^^^^^^^^^ The ASR collection has checkpoints of several models trained on various datasets for a variety of tasks. These checkpoints are obtainable via NGC `NeMo Automatic Speech Recognition collection `__. The model cards on NGC contain more information about each of the checkpoints available. In general, you can load models with model name in the following format, .. code-block:: python pretrained_vad_model='vad_multilingual_marblenet' pretrained_speaker_model='titanet_large' ... config.diarizer.vad.model_path=pretrained_vad_model \ config.diarizer.speaker_embeddings.model_path=pretrained_speaker_model where the model name is the value under "Model Name" entry in the tables below. Models for Speaker Diarization Pipeline ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. csv-table:: :file: /asr/speaker_diarization/data/diarization_results.csv :align: left :widths: 30, 30, 40 :header-rows: 1