Important

You are viewing the NeMo 2.0 documentation. This release introduces significant changes to the API and a new library, NeMo Run. We are currently porting all features from NeMo 1.0 to 2.0. For documentation on previous versions or features not yet available in 2.0, please refer to the NeMo 24.07 documentation.

Speech-agumented Large Language Models (SpeechLLM)#

SpeechLLM is a multi-modal Large Language Model (LLM) designed to understand and process speech and audio inputs. Detailed information can be found in the SpeechLLM examples README.

In general, there are three main components of a modular SpeechLLM:

  • An audio encoder that processes the input audio and produces a sequence of audio embeddings.

  • A modality adapter that processes the audio embeddings and produces a sequence of embeddings in the same latent space as the token embeddings of a pretrained LLM.

  • A pretrained LLM that processes embeddings from the modality adapter and token embeddings from the input prompt, then produces the text output. The audio embeddings and text token embeddings are concatenated in time dimension before going into the LLM.

  • The LLM produces text outputs based on the concatenated input audio and text embedding.

Model Architecture#

One way to incorporate speech into an LLM is to concatenate speech features with the token embeddings of the input text prompt before feeding them into the LLM. In this way, the LLM can have direct access to the speech information when generating the output text. The Speech-Augmented Language Model (SALM) follows this approach.

SALM model

Another approach is to use a cross-attention mechanism, where text embeddings attend to speech embeddings to extract task-specific information. To minimize the computational cost, we add a cross-attention module only before the LLM. The BESt features from TwO Worlds (BESTOW) model follows this approach.

BESTOW model

NeMo Framework contains example scripts for training and evaluating for both SALM and BESTOW models. A pre-trained checkpoint for SALM is also available.