| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import copy |
|
|
| from transformers.configuration_utils import PretrainedConfig |
| from transformers.utils import logging |
| from models.configuration_wav2vec2 import Wav2Vec2Config |
| from models.configuration_bart import BartConfig |
| from transformers import AutoConfig |
|
|
|
|
| logger = logging.get_logger(__name__) |
|
|
|
|
| class SpeechEncoderDecoderConfig(PretrainedConfig): |
| r""" |
| [`SpeechEncoderDecoderConfig`] is the configuration class to store the configuration of a |
| [`SpeechEncoderDecoderModel`]. It is used to instantiate an Encoder Decoder model according to the specified |
| arguments, defining the encoder and decoder configs. |
| |
| Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the |
| documentation from [`PretrainedConfig`] for more information. |
| |
| Args: |
| kwargs (*optional*): |
| Dictionary of keyword arguments. Notably: |
| |
| - **encoder** ([`PretrainedConfig`], *optional*) -- An instance of a configuration object that defines |
| the encoder config. |
| - **decoder** ([`PretrainedConfig`], *optional*) -- An instance of a configuration object that defines |
| the decoder config. |
| |
| Examples: |
| |
| ```python |
| >>> from transformers import BertConfig, Wav2Vec2Config, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel |
| |
| >>> # Initializing a Wav2Vec2 & BERT style configuration |
| >>> config_encoder = Wav2Vec2Config() |
| >>> config_decoder = BertConfig() |
| |
| >>> config = SpeechEncoderDecoderConfig.from_encoder_decoder_configs(config_encoder, config_decoder) |
| |
| >>> # Initializing a Wav2Vec2Bert model from a Wav2Vec2 & bert-base-uncased style configurations |
| >>> model = SpeechEncoderDecoderModel(config=config) |
| |
| >>> # Accessing the model configuration |
| >>> config_encoder = model.config.encoder |
| >>> config_decoder = model.config.decoder |
| >>> # set decoder config to causal lm |
| >>> config_decoder.is_decoder = True |
| >>> config_decoder.add_cross_attention = True |
| |
| >>> # Saving the model, including its configuration |
| >>> model.save_pretrained("my-model") |
| |
| >>> # loading model and config from pretrained folder |
| >>> encoder_decoder_config = SpeechEncoderDecoderConfig.from_pretrained("my-model") |
| >>> model = SpeechEncoderDecoderModel.from_pretrained("my-model", config=encoder_decoder_config) |
| ```""" |
| model_type = "speech-encoder-decoder" |
| is_composition = True |
|
|
| def __init__(self, **kwargs): |
| super().__init__(**kwargs) |
| if "encoder" not in kwargs or "decoder" not in kwargs: |
| raise ValueError( |
| f"A configuraton of type {self.model_type} cannot be instantiated because not both `encoder` and `decoder` sub-configurations are passed, but only {kwargs}" |
| ) |
|
|
| encoder_config = kwargs.pop("encoder") |
| decoder_config = kwargs.pop("decoder") |
|
|
| |
| self.encoder = Wav2Vec2Config(**encoder_config) |
| self.decoder = BartConfig(**decoder_config) |
| self.is_encoder_decoder = True |
|
|
| @classmethod |
| def from_encoder_decoder_configs( |
| cls, encoder_config: PretrainedConfig, decoder_config: PretrainedConfig, **kwargs |
| ) -> PretrainedConfig: |
| r""" |
| Instantiate a [`SpeechEncoderDecoderConfig`] (or a derived class) from a pre-trained encoder model |
| configuration and decoder model configuration. |
| |
| Returns: |
| [`SpeechEncoderDecoderConfig`]: An instance of a configuration object |
| """ |
| logger.info("Setting `config.is_decoder=True` and `config.add_cross_attention=True` for decoder_config") |
| decoder_config.is_decoder = True |
| decoder_config.add_cross_attention = True |
|
|
| return cls(encoder=encoder_config.to_dict(), decoder=decoder_config.to_dict(), **kwargs) |
|
|
| def to_dict(self): |
| """ |
| Serializes this instance to a Python dictionary. Override the default *to_dict()* from *PretrainedConfig*. |
| |
| Returns: |
| `Dict[str, any]`: Dictionary of all the attributes that make up this configuration instance, |
| """ |
| output = copy.deepcopy(self.__dict__) |
| output["encoder"] = self.encoder.to_dict() |
| output["decoder"] = self.decoder.to_dict() |
| output["model_type"] = self.__class__.model_type |
| return output |
|
|