configuration_unispeech.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. # Copyright 2021 The Fairseq Authors and The HuggingFace Inc. team. All rights reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. """UniSpeech model configuration"""
  15. import functools
  16. import operator
  17. from huggingface_hub.dataclasses import strict
  18. from ...configuration_utils import PreTrainedConfig
  19. from ...utils import auto_docstring
  20. @auto_docstring(checkpoint="microsoft/unispeech-large-1500h-cv")
  21. @strict
  22. class UniSpeechConfig(PreTrainedConfig):
  23. r"""
  24. feat_proj_dropout (`float`, *optional*, defaults to 0.0):
  25. The dropout probability for output of the feature encoder.
  26. feat_quantizer_dropout (`float`, *optional*, defaults to 0.0):
  27. The dropout probability for the output of the feature encoder that's used by the quantizer.
  28. final_dropout (`float`, *optional*, defaults to 0.1):
  29. The dropout probability for the final projection layer of [`UniSpeechForCTC`].
  30. feat_extract_norm (`str`, *optional*, defaults to `"group"`):
  31. The norm to be applied to 1D convolutional layers in feature encoder. One of `"group"` for group
  32. normalization of only the first 1D convolutional layer or `"layer"` for layer normalization of all 1D
  33. convolutional layers.
  34. feat_extract_activation (`str, *optional*, defaults to `"gelu"`):
  35. The non-linear activation function (function or string) in the 1D convolutional layers of the feature
  36. extractor. If string, `"gelu"`, `"relu"`, `"selu"` and `"gelu_new"` are supported.
  37. conv_dim (`tuple[int]` or `list[int]`, *optional*, defaults to `(512, 512, 512, 512, 512, 512, 512)`):
  38. A tuple of integers defining the number of input and output channels of each 1D convolutional layer in the
  39. feature encoder. The length of *conv_dim* defines the number of 1D convolutional layers.
  40. conv_stride (`tuple[int]` or `list[int]`, *optional*, defaults to `(5, 2, 2, 2, 2, 2, 2)`):
  41. A tuple of integers defining the stride of each 1D convolutional layer in the feature encoder. The length
  42. of *conv_stride* defines the number of convolutional layers and has to match the length of *conv_dim*.
  43. conv_kernel (`tuple[int]` or `list[int]`, *optional*, defaults to `(10, 3, 3, 3, 3, 2, 2)`):
  44. A tuple of integers defining the kernel size of each 1D convolutional layer in the feature encoder. The
  45. length of *conv_kernel* defines the number of convolutional layers and has to match the length of
  46. *conv_dim*.
  47. conv_bias (`bool`, *optional*, defaults to `False`):
  48. Whether the 1D convolutional layers have a bias.
  49. num_conv_pos_embeddings (`int`, *optional*, defaults to 128):
  50. Number of convolutional positional embeddings. Defines the kernel size of 1D convolutional positional
  51. embeddings layer.
  52. num_conv_pos_embedding_groups (`int`, *optional*, defaults to 16):
  53. Number of groups of 1D convolutional positional embeddings layer.
  54. do_stable_layer_norm (`bool`, *optional*, defaults to `False`):
  55. Whether to apply *stable* layer norm architecture of the Transformer encoder. `do_stable_layer_norm is
  56. True` corresponds to applying layer norm before the attention layer, whereas `do_stable_layer_norm is
  57. False` corresponds to applying layer norm after the attention layer.
  58. apply_spec_augment (`bool`, *optional*, defaults to `True`):
  59. Whether to apply *SpecAugment* data augmentation to the outputs of the feature encoder. For reference see
  60. [SpecAugment: A Simple Data Augmentation Method for Automatic Speech
  61. Recognition](https://huggingface.co/papers/1904.08779).
  62. mask_time_prob (`float`, *optional*, defaults to 0.05):
  63. Percentage (between 0 and 1) of all feature vectors along the time axis which will be masked. The masking
  64. procedure generates ''mask_time_prob*len(time_axis)/mask_time_length'' independent masks over the axis. If
  65. reasoning from the probability of each feature vector to be chosen as the start of the vector span to be
  66. masked, *mask_time_prob* should be `prob_vector_start*mask_time_length`. Note that overlap may decrease the
  67. actual percentage of masked vectors. This is only relevant if `apply_spec_augment is True`.
  68. mask_time_length (`int`, *optional*, defaults to 10):
  69. Length of vector span along the time axis.
  70. mask_time_min_masks (`int`, *optional*, defaults to 2):
  71. The minimum number of masks of length `mask_feature_length` generated along the time axis, each time step,
  72. irrespectively of `mask_feature_prob`. Only relevant if ''mask_time_prob*len(time_axis)/mask_time_length <
  73. mask_time_min_masks''
  74. mask_feature_prob (`float`, *optional*, defaults to 0.0):
  75. Percentage (between 0 and 1) of all feature vectors along the feature axis which will be masked. The
  76. masking procedure generates ''mask_feature_prob*len(feature_axis)/mask_time_length'' independent masks over
  77. the axis. If reasoning from the probability of each feature vector to be chosen as the start of the vector
  78. span to be masked, *mask_feature_prob* should be `prob_vector_start*mask_feature_length`. Note that overlap
  79. may decrease the actual percentage of masked vectors. This is only relevant if `apply_spec_augment is
  80. True`.
  81. mask_feature_length (`int`, *optional*, defaults to 10):
  82. Length of vector span along the feature axis.
  83. mask_feature_min_masks (`int`, *optional*, defaults to 0):
  84. The minimum number of masks of length `mask_feature_length` generated along the feature axis, each time
  85. step, irrespectively of `mask_feature_prob`. Only relevant if
  86. ''mask_feature_prob*len(feature_axis)/mask_feature_length < mask_feature_min_masks''
  87. num_codevectors_per_group (`int`, *optional*, defaults to 320):
  88. Number of entries in each quantization codebook (group).
  89. num_codevector_groups (`int`, *optional*, defaults to 2):
  90. Number of codevector groups for product codevector quantization.
  91. contrastive_logits_temperature (`float`, *optional*, defaults to 0.1):
  92. The temperature *kappa* in the contrastive loss.
  93. num_negatives (`int`, *optional*, defaults to 100):
  94. Number of negative samples for the contrastive loss.
  95. codevector_dim (`int`, *optional*, defaults to 256):
  96. Dimensionality of the quantized feature vectors.
  97. proj_codevector_dim (`int`, *optional*, defaults to 256):
  98. Dimensionality of the final projection of both the quantized and the transformer features.
  99. diversity_loss_weight (`int`, *optional*, defaults to 0.1):
  100. The weight of the codebook diversity loss component.
  101. ctc_zero_infinity (`bool`, *optional*, defaults to `False`):
  102. Whether to zero infinite losses and the associated gradients of `torch.nn.CTCLoss`. Infinite losses mainly
  103. occur when the inputs are too short to be aligned to the targets. Only relevant when training an instance
  104. of [`UniSpeechForCTC`].
  105. use_weighted_layer_sum (`bool`, *optional*, defaults to `False`):
  106. Whether to use a weighted average of layer outputs with learned weights. Only relevant when using an
  107. instance of [`UniSpeechForSequenceClassification`].
  108. classifier_proj_size (`int`, *optional*, defaults to 256):
  109. Dimensionality of the projection before token mean-pooling for classification.
  110. num_ctc_classes (`int`, *optional*, defaults to 80):
  111. Specifies the number of classes (phoneme tokens and blank token) for phoneme-level CTC loss. Only relevant
  112. when using an instance of [`UniSpeechForPreTraining`].
  113. replace_prob (`float`, *optional*, defaults to 0.5):
  114. Probability that transformer feature is replaced by quantized feature for pretraining.
  115. Example:
  116. ```python
  117. >>> from transformers import UniSpeechConfig, UniSpeechModel
  118. >>> # Initializing a UniSpeech facebook/unispeech-base-960h style configuration
  119. >>> configuration = UniSpeechConfig()
  120. >>> # Initializing a model (with random weights) from the facebook/unispeech-base-960h style configuration
  121. >>> model = UniSpeechModel(configuration)
  122. >>> # Accessing the model configuration
  123. >>> configuration = model.config
  124. ```"""
  125. model_type = "unispeech"
  126. vocab_size: int = 32
  127. hidden_size: int = 768
  128. num_hidden_layers: int = 12
  129. num_attention_heads: int = 12
  130. intermediate_size: int = 3072
  131. hidden_act: str = "gelu"
  132. hidden_dropout: float | int = 0.1
  133. activation_dropout: float | int = 0.1
  134. attention_dropout: float | int = 0.1
  135. feat_proj_dropout: float | int = 0.0
  136. feat_quantizer_dropout: float | int = 0.0
  137. final_dropout: float | int = 0.1
  138. layerdrop: float | int = 0.1
  139. initializer_range: float = 0.02
  140. layer_norm_eps: float = 1e-5
  141. feat_extract_norm: str = "group"
  142. feat_extract_activation: str = "gelu"
  143. conv_dim: list[int] | tuple[int, ...] = (512, 512, 512, 512, 512, 512, 512)
  144. conv_stride: list[int] | tuple[int, ...] = (5, 2, 2, 2, 2, 2, 2)
  145. conv_kernel: list[int] | tuple[int, ...] = (10, 3, 3, 3, 3, 2, 2)
  146. conv_bias: bool = False
  147. num_conv_pos_embeddings: int = 128
  148. num_conv_pos_embedding_groups: int = 16
  149. do_stable_layer_norm: bool = False
  150. apply_spec_augment: bool = True
  151. mask_time_prob: float | int = 0.05
  152. mask_time_length: int = 10
  153. mask_time_min_masks: int = 2
  154. mask_feature_prob: float | int = 0.0
  155. mask_feature_length: int = 10
  156. mask_feature_min_masks: int = 0
  157. num_codevectors_per_group: int = 320
  158. num_codevector_groups: int = 2
  159. contrastive_logits_temperature: float = 0.1
  160. num_negatives: int = 100
  161. codevector_dim: int = 256
  162. proj_codevector_dim: int = 256
  163. diversity_loss_weight: float = 0.1
  164. ctc_loss_reduction: str = "mean"
  165. ctc_zero_infinity: bool = False
  166. use_weighted_layer_sum: bool = False
  167. classifier_proj_size: int = 256
  168. num_ctc_classes: int = 80
  169. pad_token_id: int | None = 0
  170. bos_token_id: int | None = 1
  171. eos_token_id: int | list[int] | None = 2
  172. replace_prob: float | int = 0.5
  173. def __post_init__(self, **kwargs):
  174. self.num_feat_extract_layers = len(self.conv_dim)
  175. return super().__post_init__(**kwargs)
  176. def validate_architecture(self):
  177. """Part of `@strict`-powered validation. Validates the architecture of the config."""
  178. if (
  179. (len(self.conv_stride) != self.num_feat_extract_layers)
  180. or (len(self.conv_kernel) != self.num_feat_extract_layers)
  181. or (len(self.conv_dim) != self.num_feat_extract_layers)
  182. ):
  183. raise ValueError(
  184. "Configuration for convolutional layers is incorrect. It is required that `len(config.conv_dim)` =="
  185. " `len(config.conv_stride)` == `len(config.conv_kernel)`, but is `len(config.conv_dim) ="
  186. f" {len(self.conv_dim)}`, `len(config.conv_stride) = {len(self.conv_stride)}`,"
  187. f" `len(config.conv_kernel) = {len(self.conv_kernel)}`."
  188. )
  189. @property
  190. def inputs_to_logits_ratio(self):
  191. return functools.reduce(operator.mul, self.conv_stride, 1)
  192. __all__ = ["UniSpeechConfig"]