Checkpoints =========== There are two main ways to load pretrained checkpoints in NeMo: * Using the :code:`restore_from()` method to load a local checkpoint file (`.nemo`), or * Using the :code:`from_pretrained()` method to download and set up a checkpoint from NGC. See the following sections for instructions and examples for each. Note that these instructions are for loading fully trained checkpoints for evaluation or fine-tuning. For resuming an unfinished training experiment, please use the experiment manager to do so by setting the ``resume_if_exists`` flag to True. Loading Local Checkpoints ------------------------- 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)`. If you have a local ``.nemo`` checkpoint that you'd like to load, simply use the :code:`restore_from()` method: .. code-block:: python import nemo.collections.asr as nemo_asr model = nemo_asr.models..restore_from(restore_path="") Where the model base class is the ASR model class of the original checkpoint, or the general `ASRModel` class. Inference ---------- The audio files should be 16KHz monochannel wav files. Write audio files to a ``manifest.json`` file with lines as in format: .. code-block:: json {"audio_filepath": "/audio_file.wav", "duration": "duration of file in sec", "label": "speaker_id"} This python call will download best pretrained model from NGC and writes embeddings pickle file to current working directory .. code-block:: bash python examples/speaker_recognition/extract_speaker_embeddings.py --manifest=manifest.json NGC Pretrained Checkpoints -------------------------- The SpeakerNet-ASR collection has checkpoints of several models trained on various datasets for a variety of tasks. `Speaker_Recognition `_ and `Speaker_Verification `_ model cards on NGC contain more information about each of the checkpoints available. The tables below list the SpeakerNet models available from NGC, and the models can be accessed via the :code:`from_pretrained()` method inside the EncDecSpeakerLabelModel Model class. .. note:: While loading, remember to use EncDecSpeakerLabelModel for recognition tasks and ExtractSpeakerEmbeddingsModel while extracting embeddings. In general, you can load any of these models with code in the following format. .. code-block:: python import nemo.collections.asr as nemo_asr model = nemo_asr.models..from_pretrained(model_name="") Where the model name is the value under "Model Name" entry in the tables below. If you would like to programatically list the models available for a particular base class, you can use the :code:`list_available_models()` method. .. code-block:: python nemo_asr.models..list_available_models() Speaker Recognition Models ^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. csv-table:: :file: data/speaker_results.csv :align: left :widths: 30, 30, 40 :header-rows: 1