speechbrain.lobes.models.huggingface_transformers.wav2vec2 moduleο
This lobe enables the integration of huggingface pretrained wav2vec2 models.
Reference: https://arxiv.org/abs/2006.11477 Reference: https://arxiv.org/abs/1904.05862 Reference: https://arxiv.org/abs/2110.13900 Transformer from HuggingFace needs to be installed: https://huggingface.co/transformers/installation.html
- Authors
Titouan Parcollet 2021
Boumadane Abdelmoumene 2021
Ha Nguyen 2023
Summaryο
Classes:
This lobe enables the integration of HuggingFace and SpeechBrain pretrained wav2vec2.0/Hubert models. |
|
This lobe enables the integration of HuggingFace wav2vec2.0 models to be pretrained. |
Referenceο
- class speechbrain.lobes.models.huggingface_transformers.wav2vec2.Wav2Vec2(source, save_path, output_norm=False, freeze=False, freeze_feature_extractor=False, apply_spec_augment=False, output_all_hiddens=False)[source]ο
Bases:
HFTransformersInterface
This lobe enables the integration of HuggingFace and SpeechBrain pretrained wav2vec2.0/Hubert models.
Source paper wav2vec2.0: https://arxiv.org/abs/2006.11477 Source paper Hubert: https://arxiv.org/abs/2106.07447 Transformer from HuggingFace needs to be installed: https://huggingface.co/transformers/installation.html
The model can be used as a fixed feature extractor or can be finetuned. It will download automatically the model from HuggingFace or use a local path.
- Parameters:
source (str) β HuggingFace hub name: e.g βfacebook/wav2vec2-large-lv60β
save_path (str) β Path (dir) of the downloaded model.
output_norm (bool (default: True)) β If True, a layer_norm (affine) will be applied to the output obtained from the wav2vec model.
freeze (bool (default: True)) β If True, the model is frozen. If False, the model will be trained alongside with the rest of the pipeline.
freeze_feature_extractor (bool (default: False)) β When freeze = False and freeze_feature_extractor True, the feature_extractor module of the model is Frozen. If False all the wav2vec model will be trained including feature_extractor module.
apply_spec_augment (bool (default: False)) β If True, the model will apply spec augment on the output of feature extractor (inside huggingface Wav2VecModel() class). If False, the model will not apply spec augment. We set this to false to prevent from doing it twice.
output_all_hiddens (bool (default: False)) β If True, the forward function outputs the hidden states from all transformer layers. For example wav2vec2-base has 12 transformer layers and the output is of shape (13, B, T, C), where a projection of the CNN output is added to the beginning. If False, the forward function outputs the hidden states only from the last transformer layer.
Example
>>> inputs = torch.rand([10, 600]) >>> model_hub = "facebook/wav2vec2-base-960h" >>> save_path = "savedir" >>> model = Wav2Vec2(model_hub, save_path) >>> outputs = model(inputs)
- forward(wav, wav_lens=None)[source]ο
Takes an input waveform and return its corresponding wav2vec encoding.
- Parameters:
wav (torch.Tensor (signal)) β A batch of audio signals to transform to features.
wav_lens (torch.Tensor) β The relative length of the wav given in SpeechBrain format.
- Return type:
Wav2vec encoded features.
- extract_features(wav, wav_lens=None)[source]ο
Takes an input waveform and return its corresponding wav2vec encoding.
- Parameters:
wav (torch.Tensor (signal)) β A batch of audio signals to transform to features.
wav_lens (torch.Tensor) β The relative length of the wav given in SpeechBrain format.
- Returns:
out β Wav2vec encoded features.
- Return type:
torch.Tensor
- class speechbrain.lobes.models.huggingface_transformers.wav2vec2.Wav2Vec2Pretrain(source, save_path, mask_prob=0.65, mask_length=10, normalize_wav=True)[source]ο
Bases:
HFTransformersInterface
This lobe enables the integration of HuggingFace wav2vec2.0 models to be pretrained.
Source paper: https://arxiv.org/abs/2006.11477 Transformer from HuggingFace needs to be installed: https://huggingface.co/transformers/installation.html
The return is an HuggingFace format and the mask indices that contains: https://huggingface.co/transformers/model_doc/wav2vec2.html#wav2vec2forpretraining
For instance, it returns the loss that can be accessed with .loss
- Parameters:
source (str) β HuggingFace hub name: e.g βfacebook/wav2vec2-large-lv60β
save_path (str) β Path (dir) of the downloaded model.
mask_prob (float (default: 0.65)) β Probability of masking a given frame. Default is taken from the paper.
mask_length (float (default: 10)) β Length (i.e. number of consecutive masked frames). Default is taken from the paper.
normalize_wav (bool) β Whether to normalize input before processing.
Example
>>> inputs = torch.rand([10, 32000]) >>> model_hub = "facebook/wav2vec2-base-960h" >>> save_path = "savedir" >>> model = Wav2Vec2Pretrain(model_hub, save_path) >>> outputs, _ = model(inputs, wav_lens=None)
- forward(wav, wav_lens=None)[source]ο
Takes an input waveform and return its corresponding wav2vec encoding.
- Parameters:
wav (torch.Tensor (signal)) β A batch of audio signals to transform to features.
wav_lens (torch.Tensor) β The relative length of the wav given in SpeechBrain format.
- Return type:
Wav2vec encoded outputs.