Feature Extraction
Transformers
PyTorch
Safetensors
Fairseq
French
pantagruel_uni
data2vec2
JEPA
speech
custom_code
Instructions to use PantagrueLLM/speech-base-1K with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PantagrueLLM/speech-base-1K with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="PantagrueLLM/speech-base-1K", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("PantagrueLLM/speech-base-1K", trust_remote_code=True, device_map="auto") - Fairseq
How to use PantagrueLLM/speech-base-1K with Fairseq:
from fairseq.checkpoint_utils import load_model_ensemble_and_task_from_hf_hub models, cfg, task = load_model_ensemble_and_task_from_hf_hub( "PantagrueLLM/speech-base-1K" ) - Notebooks
- Google Colab
- Kaggle
File size: 19,245 Bytes
e787bf9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | # coding=utf-8
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
#
# Copyright 2022 The HuggingFace Inc. team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
""" Pantagruel unimodal configuration"""
import os
from typing import Union, Dict, Any, Optional
from transformers.dynamic_module_utils import custom_object_save
from transformers.utils import logging
from transformers.configuration_utils import PretrainedConfig, CONFIG_NAME
logger = logging.get_logger(__name__)
class MyPretrainedConfig(PretrainedConfig):
def __init__(self, **kwargs):
super().__init__(**kwargs)
def to_json_string(self, use_diff: bool = False) -> str:
return super().to_json_string(use_diff)
def update(self, config_dict):
for key, value in config_dict.items():
if not hasattr(self, key):
continue
if isinstance(getattr(self, key), MyPretrainedConfig):
getattr(self, key).update(config_dict[key])
else:
setattr(self, key, value)
# Copied from the parent class, only changed use_diff from True to False to correctly save nested config class
def save_pretrained(self, save_directory: Union[str, os.PathLike], push_to_hub: bool = False, **kwargs):
"""
Save a configuration object to the directory `save_directory`, so that it can be re-loaded using the
[`~PretrainedConfig.from_pretrained`] class method.
Args:
save_directory (`str` or `os.PathLike`):
Directory where the configuration JSON file will be saved (will be created if it does not exist).
push_to_hub (`bool`, *optional*, defaults to `False`):
Whether or not to push your model to the Hugging Face model hub after saving it. You can specify the
repository you want to push to with `repo_id` (will default to the name of `save_directory` in your
namespace).
kwargs (`Dict[str, Any]`, *optional*):
Additional key word arguments passed along to the [`~utils.PushToHubMixin.push_to_hub`] method.
"""
self._set_token_in_kwargs(kwargs)
if os.path.isfile(save_directory):
raise AssertionError(f"Provided path ({save_directory}) should be a directory, not a file")
non_default_generation_parameters = {}
for parameter_name, default_value in self._get_global_generation_defaults().items():
if hasattr(self, parameter_name) and getattr(self, parameter_name) != default_value:
non_default_generation_parameters[parameter_name] = getattr(self, parameter_name)
if len(non_default_generation_parameters) > 0:
logger.warning(
"Some non-default generation parameters are set in the model config. These should go into a "
"GenerationConfig file (https://huggingface.co/docs/transformers/generation_strategies#save-a-custom-decoding-strategy-with-your-model) "
"instead. This warning will be raised to an exception in v4.41.\n"
f"Non-default generation parameters: {str(non_default_generation_parameters)}"
)
os.makedirs(save_directory, exist_ok=True)
if push_to_hub:
commit_message = kwargs.pop("commit_message", None)
repo_id = kwargs.pop("repo_id", save_directory.split(os.path.sep)[-1])
repo_id = self._create_repo(repo_id, **kwargs)
files_timestamps = self._get_files_timestamps(save_directory)
# If we have a custom config, we copy the file defining it in the folder and set the attributes so it can be
# loaded from the Hub.
if self._auto_class is not None:
custom_object_save(self, save_directory, config=self)
# If we save using the predefined names, we can load using `from_pretrained`
output_config_file = os.path.join(save_directory, CONFIG_NAME)
self.to_json_file(output_config_file, use_diff=False)
logger.info(f"Configuration saved in {output_config_file}")
if push_to_hub:
self._upload_modified_files(
save_directory,
repo_id,
files_timestamps,
commit_message=commit_message,
token=kwargs.get("token"),
)
# Copied from the parent class, change the instantiation and updating of class from config_dict to correctly load nested config
@classmethod
def from_dict(cls, config_dict: Dict[str, Any], **kwargs) -> "MyPretrainedConfig":
"""
Instantiates a [`PretrainedConfig`] from a Python dictionary of parameters.
Args:
config_dict (`Dict[str, Any]`):
Dictionary that will be used to instantiate the configuration object. Such a dictionary can be
retrieved from a pretrained checkpoint by leveraging the [`~PretrainedConfig.get_config_dict`] method.
kwargs (`Dict[str, Any]`):
Additional parameters from which to initialize the configuration object.
Returns:
[`PretrainedConfig`]: The configuration object instantiated from those parameters.
"""
return_unused_kwargs = kwargs.pop("return_unused_kwargs", False)
# Those arguments may be passed along for our internal telemetry.
# We remove them so they don't appear in `return_unused_kwargs`.
kwargs.pop("_from_auto", None)
kwargs.pop("_from_pipeline", None)
# The commit hash might have been updated in the `config_dict`, we don't want the kwargs to erase that update.
if "_commit_hash" in kwargs and "_commit_hash" in config_dict:
kwargs["_commit_hash"] = config_dict["_commit_hash"]
# We remove it from kwargs so that it does not appear in `return_unused_kwargs`.
config_dict["attn_implementation"] = kwargs.pop("attn_implementation", None)
# config = cls(**config_dict)
# My updated config
config = cls()
for key, value in config_dict.items():
if not hasattr(config, key):
continue
if isinstance(getattr(config, key), MyPretrainedConfig):
getattr(config, key).update(config_dict[key])
else:
setattr(config, key, value)
if hasattr(config, "pruned_heads"):
config.pruned_heads = {int(key): value for key, value in config.pruned_heads.items()}
# Update config with kwargs if needed
if "num_labels" in kwargs and "id2label" in kwargs:
num_labels = kwargs["num_labels"]
id2label = kwargs["id2label"] if kwargs["id2label"] is not None else []
if len(id2label) != num_labels:
raise ValueError(
f"You passed along `num_labels={num_labels }` with an incompatible id to label map: "
f"{kwargs['id2label']}. Since those arguments are inconsistent with each other, you should remove "
"one of them."
)
to_remove = []
for key, value in kwargs.items():
if hasattr(config, key):
current_attr = getattr(config, key)
# To authorize passing a custom subconfig as kwarg in models that have nested configs.
if isinstance(current_attr, PretrainedConfig) and isinstance(value, dict):
value = current_attr.__class__(**value)
setattr(config, key, value)
if key != "torch_dtype":
to_remove.append(key)
for key in to_remove:
kwargs.pop(key, None)
logger.info(f"Model config {config}")
if return_unused_kwargs:
return config, kwargs
else:
return config
class PantagruelModalityConfig(MyPretrainedConfig):
"""
Configuration including common args to both speech and text modality
"""
def __init__(
self,
type="AUDIO",
prenet_depth=4,
prenet_layerdrop=0,
prenet_dropout=0.0,
start_drop_path_rate=0.0,
end_drop_path_rate=0.0,
num_extra_tokens=0,
init_extra_token_zero=True,
mask_noise_std=0.01,
mask_prob_min=None,
mask_prob=0.7,
inverse_mask=False,
mask_prob_adjust=0.0,
keep_masked_pct=0.0,
mask_length=5,
add_masks=False,
remove_masks=False,
mask_dropout=0.0,
encoder_zero_mask=True,
mask_channel_prob=0.0,
mask_channel_length=64,
local_grad_mult=1.0,
use_alibi_encoder=False,
alibi_scale=1.0,
learned_alibi=False,
alibi_max_pos=None,
learned_alibi_scale=False,
learned_alibi_scale_per_head=False,
learned_alibi_scale_per_layer=False,
num_alibi_heads=12,
model_depth=12,
ema_local_encoder=False,
decoder=None,
**kwargs,
):
super().__init__(**kwargs)
self.type = type
self.prenet_depth = prenet_depth
self.prenet_layerdrop = prenet_layerdrop
self.prenet_dropout = prenet_dropout
self.start_drop_path_rate = start_drop_path_rate
self.end_drop_path_rate = end_drop_path_rate
self.num_extra_tokens = num_extra_tokens
self.init_extra_token_zero = init_extra_token_zero
self.mask_noise_std = mask_noise_std
self.mask_prob_min = mask_prob_min
self.mask_prob = mask_prob
self.inverse_mask = inverse_mask
self.mask_prob_adjust = mask_prob_adjust
self.keep_masked_pct = keep_masked_pct
self.mask_length = mask_length
self.add_masks = add_masks
self.remove_masks = remove_masks
self.mask_dropout = mask_dropout
self.encoder_zero_mask = encoder_zero_mask
self.mask_channel_prob = mask_channel_prob
self.mask_channel_length = mask_channel_length
self.local_grad_mult = local_grad_mult
self.use_alibi_encoder = use_alibi_encoder
self.alibi_scale = alibi_scale
self.learned_alibi = learned_alibi
self.alibi_max_pos = alibi_max_pos
self.learned_alibi_scale = learned_alibi_scale
self.learned_alibi_scale_per_head = learned_alibi_scale_per_head
self.learned_alibi_scale_per_layer = learned_alibi_scale_per_layer
self.num_alibi_heads = num_alibi_heads
self.model_depth = model_depth
class PantagruelAudioConfig(PantagruelModalityConfig):
"""
Configuration including args specific to audio-only tasks
"""
def __init__(
self,
vocab_size=80,
extractor_mode="layer_norm",
feature_encoder_spec="[(512, 10, 5)] + [(512, 3, 2)] * 4 + [(512,2,2)] + [(512,2,2)]",
conv_pos_width=95,
conv_pos_groups=16,
conv_pos_depth=5,
conv_pos_pre_ln=False,
mask_time_prob=0.05,
mask_time_length=10,
mask_time_min_masks=2,
mask_feature_prob=0.0,
mask_feature_length=10,
mask_feature_min_masks=0,
ctc_loss_reduction="sum",
ctc_zero_infinity=False,
use_weighted_layer_sum=False,
classifier_proj_size=256,
tdnn_dim=(512, 512, 512, 512, 1500),
tdnn_kernel=(5, 3, 3, 1, 1),
tdnn_dilation=(1, 2, 3, 1, 1),
xvector_output_dim=512,
pad_token_id=0,
bos_token_id=1,
eos_token_id=2,
add_adapter=False,
adapter_kernel_size=3,
adapter_stride=2,
num_adapter_layers=3,
output_hidden_size=None,
**kwargs,
):
super().__init__(type="AUDIO", **kwargs)
self.extractor_mode = extractor_mode
self.feature_encoder_spec = feature_encoder_spec
self.conv_pos_width = conv_pos_width
self.conv_pos_groups = conv_pos_groups
self.conv_pos_depth = conv_pos_depth
self.conv_pos_pre_ln = conv_pos_pre_ln
self.vocab_size = vocab_size
self.use_weighted_layer_sum = use_weighted_layer_sum
# fine-tuning config parameters for SpecAugment: https://huggingface.co/papers/1904.08779
self.mask_time_prob = mask_time_prob
self.mask_time_length = mask_time_length
self.mask_time_min_masks = mask_time_min_masks
self.mask_feature_prob = mask_feature_prob
self.mask_feature_length = mask_feature_length
self.mask_feature_min_masks = mask_feature_min_masks
# ctc loss
self.ctc_loss_reduction = ctc_loss_reduction
self.ctc_zero_infinity = ctc_zero_infinity
# adapter
self.add_adapter = add_adapter
self.adapter_kernel_size = adapter_kernel_size
self.adapter_stride = adapter_stride
self.num_adapter_layers = num_adapter_layers
self.output_hidden_size = output_hidden_size
# SequenceClassification-specific parameter. Feel free to ignore for other classes.
self.classifier_proj_size = classifier_proj_size
# XVector-specific parameters. Feel free to ignore for other classes.
self.tdnn_dim = list(tdnn_dim)
self.tdnn_kernel = list(tdnn_kernel)
self.tdnn_dilation = list(tdnn_dilation)
self.xvector_output_dim = xvector_output_dim
class PantagruelTextConfig(PantagruelModalityConfig):
"""
Configuration including args specific to text-only tasks
"""
def __init__(
self,
vocab_size=50000,
unk_token_id=3,
bos_token_id=0,
eos_token_id=2,
pad_token_id=1,
max_source_positions=512,
learned_pos=True,
dropout=0.1,
no_scale_embedding=True,
layernorm_embedding=True,
no_token_positional_embeddings=False,
**kwargs,
):
super().__init__(type="TEXT", **kwargs)
self.vocab_size = vocab_size
self.unk_token_id = unk_token_id
self.bos_token_id = bos_token_id
self.eos_token_id = eos_token_id
self.pad_token_id = pad_token_id
self.max_source_positions = max_source_positions
self.learned_pos = learned_pos
self.dropout = dropout
self.no_scale_embedding = no_scale_embedding
self.layernorm_embedding = layernorm_embedding
self.no_token_positional_embeddings = no_token_positional_embeddings
class PantagruelModalitiesConfig(MyPretrainedConfig):
"""
Container class for both audio and text modality configurations
"""
def __init__(
self,
audio_config=PantagruelAudioConfig(),
text_config=PantagruelTextConfig(),
**kwargs
):
super().__init__(**kwargs)
self.audio = audio_config
self.text = text_config
class PantagruelUniConfig(MyPretrainedConfig):
r"""
This is the configuration class to store the configuration of a [`PantagruelUniModel`].
It is used to instantiate an PantagruelUniModel model according to the specified arguments,
defining the model architecture.
Configuration objects inherit from [`PretrainedConfig`] and can be used to
control the model outputs. Read the documentation from [`PretrainedConfig`] for more information.
Args:
depth (`int`, *optional*, defaults to 12):
Number of Transformer layers in the encoder.
Example:
```python
>>> from transformers import PantagruelUniConfig, PantagruelUniModel
>>> # Initializing a PantagruelUniConfig for audio
>>> configuration = PantagruelUniConfig()
>>> # Initializing a model (with random weights) with the configuration
>>> model = PantagruelUniModel(configuration)
>>> # Accessing the model configuration
>>> configuration = model.config
```
"""
model_type = "pantagruel_uni"
def __init__(
self,
depth=12,
start_drop_path_rate=0.0,
end_drop_path_rate=0.0,
num_heads=12,
norm_eps=1e-5,
norm_affine=True,
encoder_dropout=0.1,
post_mlp_drop=0.1,
attention_dropout=0.1,
activation_dropout=0.0,
dropout_input=0.0,
final_dropout=0.1,
layerdrop=0.0,
embed_dim=768,
mlp_ratio=4.0,
layer_norm_first=False,
end_of_block_targets=False,
clone_batch=1,
log_norms=True,
modalities=PantagruelModalitiesConfig(),
supported_modality="AUDIO",
classifier_dropout=None,
**kwargs,
):
super().__init__(**kwargs)
self.depth = depth
self.start_drop_path_rate = start_drop_path_rate
self.end_drop_path_rate = end_drop_path_rate
self.num_heads = num_heads
self.norm_eps = norm_eps
self.norm_affine = norm_affine
self.post_mlp_drop = post_mlp_drop
self.encoder_dropout = encoder_dropout
self.attention_dropout = attention_dropout
self.activation_dropout = activation_dropout
self.dropout_input = dropout_input
self.final_dropout = final_dropout
self.layerdrop = layerdrop
self.embed_dim = embed_dim
self.mlp_ratio = mlp_ratio
self.layer_norm_first = layer_norm_first
self.end_of_block_targets = end_of_block_targets
self.clone_batch = clone_batch
self.log_norms = log_norms
self.modalities = modalities
self.supported_modality = supported_modality
# Attributes for hopsparser
self.hidden_size = embed_dim
self.num_layers = depth
self.n_layers = depth
self.num_hidden_layers = depth
self.classifier_dropout = classifier_dropout
self.auto_map = {
'AutoConfig': 'configuration_pantagruel_uni.PantagruelUniConfig',
'AutoModel': 'modeling_pantagruel_uni.PantagruelUniModel',
'AutoModelForMaskedLM': 'modeling_pantagruel_uni.PantagruelUniForMaskedLM',
'AutoModelForSequenceClassification': 'modeling_pantagruel_uni.PantagruelUniForSequenceClassification',
'AutoModelForMultipleChoice': 'modeling_pantagruel_uni.PantagruelUniForMultipleChoice',
'AutoModelForTokenClassification': 'modeling_pantagruel_uni.PantagruelUniForTokenClassification',
'AutoModelForQuestionAnswering': 'modeling_pantagruel_uni.PantagruelUniForQuestionAnswering',
'AutoModelForAudioFrameClassification': 'modeling_pantagruel_uni.PantagruelUniForAudioFrameClassification',
'AutoModelForCTC': 'modeling_pantagruel_uni.PantagruelUniForCTC',
} |