configuration_hubert.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. """Hubert 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="facebook/hubert-base-ls960")
  21. @strict
  22. class HubertConfig(PreTrainedConfig):
  23. r"""
  24. feat_proj_layer_norm (`bool`, *optional*, defaults to `True`):
  25. Whether to apply LayerNorm to the output of the feature encoder.
  26. feat_proj_dropout (`float`, *optional*, defaults to 0.0):
  27. The dropout probability for output of the feature encoder.
  28. final_dropout (`float`, *optional*, defaults to 0.1):
  29. The dropout probability for the final projection layer of [`Wav2Vec2ForCTC`].
  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]`, *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]`, *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]`, *optional*, defaults to `(10, 3, 3, 3, 3, 3, 3)`):
  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. conv_pos_batch_norm (`bool`, *optional*, defaults to `False`):
  55. Whether to use batch norm instead of weight norm in conv_pos
  56. do_stable_layer_norm (`bool`, *optional*, defaults to `False`):
  57. Whether do apply *stable* layer norm architecture of the Transformer encoder. `do_stable_layer_norm is
  58. True` corresponds to applying layer norm before the attention layer, whereas `do_stable_layer_norm is
  59. False` corresponds to applying layer norm after the attention layer.
  60. apply_spec_augment (`bool`, *optional*, defaults to `True`):
  61. Whether to apply *SpecAugment* data augmentation to the outputs of the feature encoder. For reference see
  62. [SpecAugment: A Simple Data Augmentation Method for Automatic Speech
  63. Recognition](https://huggingface.co/papers/1904.08779).
  64. mask_time_prob (`float`, *optional*, defaults to 0.05):
  65. Percentage (between 0 and 1) of all feature vectors along the time axis which will be masked. The masking
  66. procedure generates ''mask_time_prob*len(time_axis)/mask_time_length'' independent masks over the axis. If
  67. reasoning from the probability of each feature vector to be chosen as the start of the vector span to be
  68. masked, *mask_time_prob* should be `prob_vector_start*mask_time_length`. Note that overlap may decrease the
  69. actual percentage of masked vectors. This is only relevant if `apply_spec_augment is True`.
  70. mask_time_length (`int`, *optional*, defaults to 10):
  71. Length of vector span along the time axis.
  72. mask_time_min_masks (`int`, *optional*, defaults to 2),:
  73. The minimum number of masks of length `mask_feature_length` generated along the time axis, each time step,
  74. irrespectively of `mask_feature_prob`. Only relevant if ''mask_time_prob*len(time_axis)/mask_time_length <
  75. mask_time_min_masks''
  76. mask_feature_prob (`float`, *optional*, defaults to 0.0):
  77. Percentage (between 0 and 1) of all feature vectors along the feature axis which will be masked. The
  78. masking procedure generates ''mask_feature_prob*len(feature_axis)/mask_time_length'' independent masks over
  79. the axis. If reasoning from the probability of each feature vector to be chosen as the start of the vector
  80. span to be masked, *mask_feature_prob* should be `prob_vector_start*mask_feature_length`. Note that overlap
  81. may decrease the actual percentage of masked vectors. This is only relevant if `apply_spec_augment is
  82. True`.
  83. mask_feature_length (`int`, *optional*, defaults to 10):
  84. Length of vector span along the feature axis.
  85. mask_feature_min_masks (`int`, *optional*, defaults to 0),:
  86. The minimum number of masks of length `mask_feature_length` generated along the feature axis, each time
  87. step, irrespectively of `mask_feature_prob`. Only relevant if
  88. ''mask_feature_prob*len(feature_axis)/mask_feature_length < mask_feature_min_masks''
  89. ctc_loss_reduction (`str`, *optional*, defaults to `"sum"`):
  90. Specifies the reduction to apply to the output of `torch.nn.CTCLoss`. Only relevant when training an
  91. instance of [`HubertForCTC`].
  92. ctc_zero_infinity (`bool`, *optional*, defaults to `False`):
  93. Whether to zero infinite losses and the associated gradients of `torch.nn.CTCLoss`. Infinite losses mainly
  94. occur when the inputs are too short to be aligned to the targets. Only relevant when training an instance
  95. of [`HubertForCTC`].
  96. use_weighted_layer_sum (`bool`, *optional*, defaults to `False`):
  97. Whether to use a weighted average of layer outputs with learned weights. Only relevant when using an
  98. instance of [`HubertForSequenceClassification`].
  99. classifier_proj_size (`int`, *optional*, defaults to 256):
  100. Dimensionality of the projection before token mean-pooling for classification.
  101. Example:
  102. ```python
  103. >>> from transformers import HubertModel, HubertConfig
  104. >>> # Initializing a Hubert facebook/hubert-base-ls960 style configuration
  105. >>> configuration = HubertConfig()
  106. >>> # Initializing a model from the facebook/hubert-base-ls960 style configuration
  107. >>> model = HubertModel(configuration)
  108. >>> # Accessing the model configuration
  109. >>> configuration = model.config
  110. ```"""
  111. model_type = "hubert"
  112. vocab_size: int = 32
  113. hidden_size: int = 768
  114. num_hidden_layers: int = 12
  115. num_attention_heads: int = 12
  116. intermediate_size: int = 3072
  117. hidden_act: str = "gelu"
  118. hidden_dropout: float | int = 0.1
  119. activation_dropout: float | int = 0.1
  120. attention_dropout: float | int = 0.1
  121. feat_proj_layer_norm: bool = True
  122. feat_proj_dropout: float | int = 0.0
  123. final_dropout: float | int = 0.1
  124. layerdrop: float | int = 0.1
  125. initializer_range: float = 0.02
  126. layer_norm_eps: float = 1e-5
  127. feat_extract_norm: str = "group"
  128. feat_extract_activation: str = "gelu"
  129. conv_dim: list[int] | tuple[int, ...] = (512, 512, 512, 512, 512, 512, 512)
  130. conv_stride: list[int] | tuple[int, ...] = (5, 2, 2, 2, 2, 2, 2)
  131. conv_kernel: list[int] | tuple[int, ...] = (10, 3, 3, 3, 3, 2, 2)
  132. conv_bias: bool = False
  133. num_conv_pos_embeddings: int = 128
  134. num_conv_pos_embedding_groups: int = 16
  135. conv_pos_batch_norm: bool = False
  136. do_stable_layer_norm: bool = False
  137. apply_spec_augment: bool = True
  138. mask_time_prob: float | int = 0.05
  139. mask_time_length: int = 10
  140. mask_time_min_masks: int = 2
  141. mask_feature_prob: float | int = 0.0
  142. mask_feature_length: int = 10
  143. mask_feature_min_masks: int = 0
  144. ctc_loss_reduction: str = "sum"
  145. ctc_zero_infinity: bool = False
  146. use_weighted_layer_sum: bool = False
  147. classifier_proj_size: int = 256
  148. pad_token_id: int | None = 0
  149. bos_token_id: int | None = 1
  150. eos_token_id: int | list[int] | None = 2
  151. def __post_init__(self, **kwargs):
  152. self.num_feat_extract_layers = len(self.conv_dim)
  153. super().__post_init__(**kwargs)
  154. def validate_architecture(self):
  155. """Part of `@strict`-powered validation. Validates the architecture of the config."""
  156. if (
  157. (len(self.conv_stride) != self.num_feat_extract_layers)
  158. or (len(self.conv_kernel) != self.num_feat_extract_layers)
  159. or (len(self.conv_dim) != self.num_feat_extract_layers)
  160. ):
  161. raise ValueError(
  162. "Configuration for convolutional layers is incorrect. It is required that `len(config.conv_dim)` =="
  163. " `len(config.conv_stride)` == `len(config.conv_kernel)`, but is `len(config.conv_dim) ="
  164. f" {len(self.conv_dim)}`, `len(config.conv_stride) = {len(self.conv_stride)}`,"
  165. f" `len(config.conv_kernel) = {len(self.conv_kernel)}`."
  166. )
  167. @property
  168. def inputs_to_logits_ratio(self):
  169. return functools.reduce(operator.mul, self.conv_stride, 1)
  170. __all__ = ["HubertConfig"]