
    Z j%                     t    S r SSKrSSKrSSKJr  SSKJr  SSKJr  \" SS9\ " S	 S
\5      5       5       r	S
/r
g)zSEW model configuration    N)strict   )PreTrainedConfig)auto_docstringzBAAI/seggpt-vit-large)
checkpointc                     ^  \ rS rSr% SrSrSr\\S'   Sr	\\S'   Sr
\\S	'   Sr\\S
'   Sr\\S'   Sr\\S'   Sr\\S'   Sr\\-  \S'   Sr\\-  \S'   Sr\\-  \S'   Sr\\-  \S'   Sr\\-  \S'   Sr\\-  \S'   Sr\\S'   Sr\\S'   Sr\\S'   Sr\\S'   S r\\   \\S!4   -  \S"'   S#r\\   \\S!4   -  \S$'   S%r\\   \\S!4   -  \S&'   S'r \!\S('   S)r"\\S*'   S+r#\\S,'   S-r$\!\S.'   S/r%\\-  \S0'   S1r&\\S2'   Sr'\\S3'   Sr(\\-  \S4'   S1r)\\S5'   S6r*\\S7'   S8r+\\S9'   S'r,\!\S:'   S'r-\!\S;'   S<r.\\S='   S6r/\S>-  \S?'   S@r0\S>-  \SA'   Sr1\\\   -  S>-  \SB'   U 4SC jr2SD r3\4SE 5       r5SFr6U =r7$ )G	SEWConfig   a  
squeeze_factor (`int`, *optional*, defaults to 2):
    Sequence length downsampling factor after the encoder and upsampling factor after the transformer.
feat_proj_dropout (`float`, *optional*, defaults to 0.0):
    The dropout probability for output of the feature encoder.
final_dropout (`float`, *optional*, defaults to 0.1):
    The dropout probability for the final projection layer of [`SEWForCTC`].
feat_extract_norm (`str`, *optional*, defaults to `"group"`):
    The norm to be applied to 1D convolutional layers in feature encoder. One of `"group"` for group
    normalization of only the first 1D convolutional layer or `"layer"` for layer normalization of all 1D
    convolutional layers.
feat_extract_activation (`str, `optional`, defaults to `"gelu"`):
    The non-linear activation function (function or string) in the 1D convolutional layers of the feature
    extractor. If string, `"gelu"`, `"relu"`, `"selu"` and `"gelu_new"` are supported.
conv_dim (`tuple[int]` or `list[int]`, *optional*, defaults to `(64, 128, 128, 128, 128, 256, 256, 256, 256, 512, 512, 512, 512)`):
    A tuple of integers defining the number of input and output channels of each 1D convolutional layer in the
    feature encoder. The length of *conv_dim* defines the number of 1D convolutional layers.
conv_stride (`tuple[int]` or `list[int]`, *optional*, defaults to `(5, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1)`):
    A tuple of integers defining the stride of each 1D convolutional layer in the feature encoder. The length
    of *conv_stride* defines the number of convolutional layers and has to match the length of *conv_dim*.
conv_kernel (`tuple[int]` or `list[int]`, *optional*, defaults to `(10, 3, 1, 3, 1, 3, 1, 3, 1, 2, 1, 2, 1)`):
    A tuple of integers defining the kernel size of each 1D convolutional layer in the feature encoder. The
    length of *conv_kernel* defines the number of convolutional layers and has to match the length of
    *conv_dim*.
conv_bias (`bool`, *optional*, defaults to `False`):
    Whether the 1D convolutional layers have a bias.
num_conv_pos_embeddings (`int`, *optional*, defaults to 128):
    Number of convolutional positional embeddings. Defines the kernel size of 1D convolutional positional
    embeddings layer.
num_conv_pos_embedding_groups (`int`, *optional*, defaults to 16):
    Number of groups of 1D convolutional positional embeddings layer.
apply_spec_augment (`bool`, *optional*, defaults to `True`):
    Whether to apply *SpecAugment* data augmentation to the outputs of the feature encoder. For reference see
    [SpecAugment: A Simple Data Augmentation Method for Automatic Speech
    Recognition](https://huggingface.co/papers/1904.08779).
mask_time_prob (`float`, *optional*, defaults to 0.05):
    Percentage (between 0 and 1) of all feature vectors along the time axis which will be masked. The masking
    procedure generates ''mask_time_prob*len(time_axis)/mask_time_length'' independent masks over the axis. If
    reasoning from the probability of each feature vector to be chosen as the start of the vector span to be
    masked, *mask_time_prob* should be `prob_vector_start*mask_time_length`. Note that overlap may decrease the
    actual percentage of masked vectors. This is only relevant if `apply_spec_augment is True`.
mask_time_length (`int`, *optional*, defaults to 10):
    Length of vector span along the time axis.
mask_time_min_masks (`int`, *optional*, defaults to 2),:
    The minimum number of masks of length `mask_feature_length` generated along the time axis, each time step,
    irrespectively of `mask_feature_prob`. Only relevant if ''mask_time_prob*len(time_axis)/mask_time_length <
    mask_time_min_masks''
mask_feature_prob (`float`, *optional*, defaults to 0.0):
    Percentage (between 0 and 1) of all feature vectors along the feature axis which will be masked. The
    masking procedure generates ''mask_feature_prob*len(feature_axis)/mask_time_length'' independent masks over
    the axis. If reasoning from the probability of each feature vector to be chosen as the start of the vector
    span to be masked, *mask_feature_prob* should be `prob_vector_start*mask_feature_length`. Note that overlap
    may decrease the actual percentage of masked vectors. This is only relevant if `apply_spec_augment is
    True`.
mask_feature_length (`int`, *optional*, defaults to 10):
    Length of vector span along the feature axis.
mask_feature_min_masks (`int`, *optional*, defaults to 0):
    The minimum number of masks of length `mask_feature_length` generated along the feature axis, each time
    step, irrespectively of `mask_feature_prob`. Only relevant if
    ''mask_feature_prob*len(feature_axis)/mask_feature_length < mask_feature_min_masks''
ctc_zero_infinity (`bool`, *optional*, defaults to `False`):
    Whether to zero infinite losses and the associated gradients of `torch.nn.CTCLoss`. Infinite losses mainly
    occur when the inputs are too short to be aligned to the targets. Only relevant when training an instance
    of [`SEWForCTC`].
use_weighted_layer_sum (`bool`, *optional*, defaults to `False`):
    Whether to use a weighted average of layer outputs with learned weights. Only relevant when using an
    instance of [`Wav2Vec2ForSequenceClassification`].
classifier_proj_size (`int`, *optional*, defaults to 256):
    Dimensionality of the projection before token mean-pooling for classification.

Example:

```python
>>> from transformers import SEWConfig, SEWModel

>>> # Initializing a SEW asapp/sew-tiny-100k style configuration
>>> configuration = SEWConfig()

>>> # Initializing a model (with random weights) from the asapp/sew-tiny-100k style configuration
>>> model = SEWModel(configuration)

>>> # Accessing the model configuration
>>> configuration = model.config
```sew    
vocab_sizei   hidden_size   num_hidden_layersnum_attention_headsi   intermediate_size   squeeze_factorgelu
hidden_actg?hidden_dropoutactivation_dropoutattention_dropoutg        feat_proj_dropoutfinal_dropout	layerdropg{Gz?initializer_rangegh㈵>layer_norm_epsgroupfeat_extract_normfeat_extract_activation)@      r#   r#   r#      r$   r$   r$      r%   r%   r%   .conv_dim)   r      r   r(   r   r(   r   r(   r   r(   r   r(   conv_stride)
   r   r(   r   r(   r   r(   r   r(   r   r(   r   r(   conv_kernelF	conv_biasr#   num_conv_pos_embeddings   num_conv_pos_embedding_groupsTapply_spec_augmentg?mask_time_probr*   mask_time_lengthmask_time_min_masksmask_feature_probmask_feature_lengthr   mask_feature_min_masksmeanctc_loss_reductionctc_zero_infinityuse_weighted_layer_sumr$   classifier_proj_sizeNpad_token_idr(   bos_token_ideos_token_idc                 Z   > [        U R                  5      U l        [        TU ]  " S0 UD6  g )N )lenr&   num_feat_extract_layerssuper__post_init__)selfkwargs	__class__s     z/root/GenerationalWealth/GenerationalWealth/venv/lib/python3.13/site-packages/transformers/models/sew/configuration_sew.pyrD   SEWConfig.__post_init__   s$    '*4=='9$''    c           
      r   [        U R                  5      U R                  :w  dF  [        U R                  5      U R                  :w  d#  [        U R                  5      U R                  :w  aN  [        S[        U R                  5       S[        U R                  5       S[        U R                  5       S35      eg)zOPart of `@strict`-powered validation. Validates the architecture of the config.zConfiguration for convolutional layers is incorrect. It is required that `len(config.conv_dim)` == `len(config.conv_stride)` == `len(config.conv_kernel)`, but is `len(config.conv_dim) = z`, `len(config.conv_stride) = z`, `len(config.conv_kernel) = z`.N)rA   r)   rB   r+   r&   
ValueErrorrE   s    rH   validate_architectureSEWConfig.validate_architecture   s     !!"d&B&BBD$$%)E)EEDMM"d&B&BB225dmm2D1E F))*++I#dN^N^J_I``bd  CrJ   c                 b    [         R                  " [        R                  U R                  S5      $ )Nr(   )	functoolsreduceoperatormulr)   rM   s    rH   inputs_to_logits_ratio SEWConfig.inputs_to_logits_ratio   s!    d.>.>BBrJ   )rB   )8__name__
__module____qualname____firstlineno____doc__
model_typer   int__annotations__r   r   r   r   r   r   strr   floatr   r   r   r   r   r   r   r    r!   r&   listtupler)   r+   r,   boolr-   r/   r0   r1   r2   r3   r4   r5   r6   r8   r9   r:   r;   r<   r=   r>   rD   rN   propertyrU   __static_attributes____classcell__)rG   s   @rH   r	   r	      s    Sj JJKs!!!s!NCJ"%NECK%&))%(us{(%(us{(!$M53;$ Ius{ #u# NE $s$#)S),lHd3i%S/)l/VKcU38_,V/WKcU38_,WIt#&S&)+!3+##"&NECK&c  %(us{(!!"#C#$$#t##(D( ### L#*  L#* +,L#S	/D(,( C CrJ   r	   )r[   rQ   rS   huggingface_hub.dataclassesr   configuration_utilsr   utilsr   r	   __all__r@   rJ   rH   <module>rk      sS       . 3 # 23RC  RC  4RCj -rJ   