code
stringlengths
86
54.5k
code_codestyle
int64
0
371
style_context
stringlengths
87
49.2k
style_context_codestyle
int64
0
349
label
int64
0
1
"""simple docstring""" import copy import os from collections import OrderedDict from typing import TYPE_CHECKING, Any, Dict, Mapping, Optional, Union if TYPE_CHECKING: from ...processing_utils import ProcessorMixin from ...utils import TensorType from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """google/owlvit-base-patch32""": """https://huggingface.co/google/owlvit-base-patch32/resolve/main/config.json""", """google/owlvit-base-patch16""": """https://huggingface.co/google/owlvit-base-patch16/resolve/main/config.json""", """google/owlvit-large-patch14""": """https://huggingface.co/google/owlvit-large-patch14/resolve/main/config.json""", } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'owlvit_text_model' def __init__( self , __a=4_94_08 , __a=5_12 , __a=20_48 , __a=12 , __a=8 , __a=16 , __a="quick_gelu" , __a=1e-5 , __a=0.0 , __a=0.02 , __a=1.0 , __a=0 , __a=4_94_06 , __a=4_94_07 , **__a , ) -> List[str]: '''simple docstring''' super().__init__(pad_token_id=__a , bos_token_id=__a , eos_token_id=__a , **__a) _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = intermediate_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = max_position_embeddings _UpperCamelCase = hidden_act _UpperCamelCase = layer_norm_eps _UpperCamelCase = attention_dropout _UpperCamelCase = initializer_range _UpperCamelCase = initializer_factor @classmethod def UpperCAmelCase ( cls , __a , **__a) -> "PretrainedConfig": '''simple docstring''' cls._set_token_in_kwargs(__a) _UpperCamelCase , _UpperCamelCase = cls.get_config_dict(__a , **__a) # get the text config dict if we are loading from OwlViTConfig if config_dict.get('''model_type''') == "owlvit": _UpperCamelCase = config_dict['''text_config'''] if "model_type" in config_dict and hasattr(cls , '''model_type''') and config_dict["model_type"] != cls.model_type: logger.warning( F'''You are using a model of type {config_dict["model_type"]} to instantiate a model of type ''' F'''{cls.model_type}. This is not supported for all configurations of models and can yield errors.''') return cls.from_dict(__a , **__a) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'owlvit_vision_model' def __init__( self , __a=7_68 , __a=30_72 , __a=12 , __a=12 , __a=3 , __a=7_68 , __a=32 , __a="quick_gelu" , __a=1e-5 , __a=0.0 , __a=0.02 , __a=1.0 , **__a , ) -> Union[str, Any]: '''simple docstring''' super().__init__(**__a) _UpperCamelCase = hidden_size _UpperCamelCase = intermediate_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = num_channels _UpperCamelCase = image_size _UpperCamelCase = patch_size _UpperCamelCase = hidden_act _UpperCamelCase = layer_norm_eps _UpperCamelCase = attention_dropout _UpperCamelCase = initializer_range _UpperCamelCase = initializer_factor @classmethod def UpperCAmelCase ( cls , __a , **__a) -> "PretrainedConfig": '''simple docstring''' cls._set_token_in_kwargs(__a) _UpperCamelCase , _UpperCamelCase = cls.get_config_dict(__a , **__a) # get the vision config dict if we are loading from OwlViTConfig if config_dict.get('''model_type''') == "owlvit": _UpperCamelCase = config_dict['''vision_config'''] if "model_type" in config_dict and hasattr(cls , '''model_type''') and config_dict["model_type"] != cls.model_type: logger.warning( F'''You are using a model of type {config_dict["model_type"]} to instantiate a model of type ''' F'''{cls.model_type}. This is not supported for all configurations of models and can yield errors.''') return cls.from_dict(__a , **__a) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'owlvit' lowercase__ = True def __init__( self , __a=None , __a=None , __a=5_12 , __a=2.6592 , __a=True , **__a , ) -> int: '''simple docstring''' super().__init__(**__a) if text_config is None: _UpperCamelCase = {} logger.info('''text_config is None. Initializing the OwlViTTextConfig with default values.''') if vision_config is None: _UpperCamelCase = {} logger.info('''vision_config is None. initializing the OwlViTVisionConfig with default values.''') _UpperCamelCase = OwlViTTextConfig(**__a) _UpperCamelCase = OwlViTVisionConfig(**__a) _UpperCamelCase = projection_dim _UpperCamelCase = logit_scale_init_value _UpperCamelCase = return_dict _UpperCamelCase = 1.0 @classmethod def UpperCAmelCase ( cls , __a , **__a) -> "PretrainedConfig": '''simple docstring''' cls._set_token_in_kwargs(__a) _UpperCamelCase , _UpperCamelCase = cls.get_config_dict(__a , **__a) if "model_type" in config_dict and hasattr(cls , '''model_type''') and config_dict["model_type"] != cls.model_type: logger.warning( F'''You are using a model of type {config_dict["model_type"]} to instantiate a model of type ''' F'''{cls.model_type}. This is not supported for all configurations of models and can yield errors.''') return cls.from_dict(__a , **__a) @classmethod def UpperCAmelCase ( cls , __a , __a , **__a) -> Any: '''simple docstring''' _UpperCamelCase = {} _UpperCamelCase = text_config _UpperCamelCase = vision_config return cls.from_dict(__a , **__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = copy.deepcopy(self.__dict__) _UpperCamelCase = self.text_config.to_dict() _UpperCamelCase = self.vision_config.to_dict() _UpperCamelCase = self.__class__.model_type return output class _UpperCAmelCase( lowerCamelCase ): @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''input_ids''', {0: '''batch''', 1: '''sequence'''}), ('''pixel_values''', {0: '''batch''', 1: '''num_channels''', 2: '''height''', 3: '''width'''}), ('''attention_mask''', {0: '''batch''', 1: '''sequence'''}), ]) @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''logits_per_image''', {0: '''batch'''}), ('''logits_per_text''', {0: '''batch'''}), ('''text_embeds''', {0: '''batch'''}), ('''image_embeds''', {0: '''batch'''}), ]) @property def UpperCAmelCase ( self) -> float: '''simple docstring''' return 1e-4 def UpperCAmelCase ( self , __a , __a = -1 , __a = -1 , __a = None , ) -> Mapping[str, Any]: '''simple docstring''' _UpperCamelCase = super().generate_dummy_inputs( processor.tokenizer , batch_size=__a , seq_length=__a , framework=__a) _UpperCamelCase = super().generate_dummy_inputs( processor.image_processor , batch_size=__a , framework=__a) return {**text_input_dict, **image_input_dict} @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return 14
194
"""simple docstring""" from graphs.minimum_spanning_tree_kruskal import kruskal def lowerCamelCase__ ( ) -> List[Any]: """simple docstring""" _UpperCamelCase = 9 _UpperCamelCase = [ [0, 1, 4], [0, 7, 8], [1, 2, 8], [7, 8, 7], [7, 6, 1], [2, 8, 2], [8, 6, 6], [2, 3, 7], [2, 5, 4], [6, 5, 2], [3, 5, 14], [3, 4, 9], [5, 4, 10], [1, 7, 11], ] _UpperCamelCase = kruskal(__snake_case, __snake_case ) _UpperCamelCase = [ [7, 6, 1], [2, 8, 2], [6, 5, 2], [0, 1, 4], [2, 5, 4], [2, 3, 7], [0, 7, 8], [3, 4, 9], ] assert sorted(__snake_case ) == sorted(__snake_case )
194
1
from typing import TYPE_CHECKING from ....utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __a = { 'configuration_trajectory_transformer': [ 'TRAJECTORY_TRANSFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP', 'TrajectoryTransformerConfig', ], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __a = [ 'TRAJECTORY_TRANSFORMER_PRETRAINED_MODEL_ARCHIVE_LIST', 'TrajectoryTransformerModel', 'TrajectoryTransformerPreTrainedModel', 'load_tf_weights_in_trajectory_transformer', ] if TYPE_CHECKING: from .configuration_trajectory_transformer import ( TRAJECTORY_TRANSFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP, TrajectoryTransformerConfig, ) try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_trajectory_transformer import ( TRAJECTORY_TRANSFORMER_PRETRAINED_MODEL_ARCHIVE_LIST, TrajectoryTransformerModel, TrajectoryTransformerPreTrainedModel, load_tf_weights_in_trajectory_transformer, ) else: import sys __a = _LazyModule(__name__, globals()['''__file__'''], _import_structure, module_spec=__spec__)
366
import re from typing import Callable, List, Optional, Union import tensorflow as tf try: from tensorflow.keras.optimizers.legacy import Adam except ImportError: from tensorflow.keras.optimizers import Adam class __SCREAMING_SNAKE_CASE ( tf.keras.optimizers.schedules.LearningRateSchedule ): def __init__( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ = 1.0 , SCREAMING_SNAKE_CASE__ = None , ): super().__init__() lowercase : str = initial_learning_rate lowercase : Optional[Any] = warmup_steps lowercase : Union[str, Any] = power lowercase : List[str] = decay_schedule_fn lowercase : List[str] = name def __call__( self , SCREAMING_SNAKE_CASE__ ): with tf.name_scope(self.name or '''WarmUp''' ) as name: # Implements polynomial warmup. i.e., if global_step < warmup_steps, the # learning rate will be `global_step/num_warmup_steps * init_lr`. lowercase : Optional[Any] = tf.cast(SCREAMING_SNAKE_CASE__ , tf.floataa ) lowercase : Tuple = tf.cast(self.warmup_steps , tf.floataa ) lowercase : Optional[Any] = global_step_float / warmup_steps_float lowercase : Union[str, Any] = self.initial_learning_rate * tf.math.pow(SCREAMING_SNAKE_CASE__ , self.power ) return tf.cond( global_step_float < warmup_steps_float , lambda: warmup_learning_rate , lambda: self.decay_schedule_fn(step - self.warmup_steps ) , name=SCREAMING_SNAKE_CASE__ , ) def __lowerCamelCase ( self ): return { "initial_learning_rate": self.initial_learning_rate, "decay_schedule_fn": self.decay_schedule_fn, "warmup_steps": self.warmup_steps, "power": self.power, "name": self.name, } def __lowercase ( _UpperCamelCase, _UpperCamelCase, _UpperCamelCase, _UpperCamelCase = 0.0, _UpperCamelCase = 0.9, _UpperCamelCase = 0.9_9_9, _UpperCamelCase = 1e-8, _UpperCamelCase = None, _UpperCamelCase = None, _UpperCamelCase = 0.0, _UpperCamelCase = 1.0, _UpperCamelCase = None, ) ->Any: """simple docstring""" lowercase : List[str] = tf.keras.optimizers.schedules.PolynomialDecay( initial_learning_rate=_UpperCamelCase, decay_steps=num_train_steps - num_warmup_steps, end_learning_rate=init_lr * min_lr_ratio, power=_UpperCamelCase, ) if num_warmup_steps: lowercase : Tuple = WarmUp( initial_learning_rate=_UpperCamelCase, decay_schedule_fn=_UpperCamelCase, warmup_steps=_UpperCamelCase, ) if weight_decay_rate > 0.0: lowercase : Tuple = AdamWeightDecay( learning_rate=_UpperCamelCase, weight_decay_rate=_UpperCamelCase, beta_a=_UpperCamelCase, beta_a=_UpperCamelCase, epsilon=_UpperCamelCase, clipnorm=_UpperCamelCase, global_clipnorm=_UpperCamelCase, exclude_from_weight_decay=['''LayerNorm''', '''layer_norm''', '''bias'''], include_in_weight_decay=_UpperCamelCase, ) else: lowercase : Union[str, Any] = tf.keras.optimizers.Adam( learning_rate=_UpperCamelCase, beta_a=_UpperCamelCase, beta_a=_UpperCamelCase, epsilon=_UpperCamelCase, clipnorm=_UpperCamelCase, global_clipnorm=_UpperCamelCase, ) # We return the optimizer and the LR scheduler in order to better track the # evolution of the LR independently of the optimizer. return optimizer, lr_schedule class __SCREAMING_SNAKE_CASE ( A__ ): def __init__( self , SCREAMING_SNAKE_CASE__ = 0.001 , SCREAMING_SNAKE_CASE__ = 0.9 , SCREAMING_SNAKE_CASE__ = 0.999 , SCREAMING_SNAKE_CASE__ = 1E-7 , SCREAMING_SNAKE_CASE__ = False , SCREAMING_SNAKE_CASE__ = 0.0 , SCREAMING_SNAKE_CASE__ = None , SCREAMING_SNAKE_CASE__ = None , SCREAMING_SNAKE_CASE__ = "AdamWeightDecay" , **SCREAMING_SNAKE_CASE__ , ): super().__init__(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , **SCREAMING_SNAKE_CASE__ ) lowercase : str = weight_decay_rate lowercase : int = include_in_weight_decay lowercase : str = exclude_from_weight_decay @classmethod def __lowerCamelCase ( cls , SCREAMING_SNAKE_CASE__ ): lowercase : Tuple = {'''WarmUp''': WarmUp} return super(SCREAMING_SNAKE_CASE__ , cls ).from_config(SCREAMING_SNAKE_CASE__ , custom_objects=SCREAMING_SNAKE_CASE__ ) def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ): super(SCREAMING_SNAKE_CASE__ , self )._prepare_local(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) lowercase : int = tf.constant( self.weight_decay_rate , name='''adam_weight_decay_rate''' ) def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ): lowercase : Any = self._do_use_weight_decay(var.name ) if do_decay: return var.assign_sub( learning_rate * var * apply_state[(var.device, var.dtype.base_dtype)]['''weight_decay_rate'''] , use_locking=self._use_locking , ) return tf.no_op() def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__=None , **SCREAMING_SNAKE_CASE__ ): lowercase , lowercase : Tuple = list(zip(*SCREAMING_SNAKE_CASE__ ) ) return super(SCREAMING_SNAKE_CASE__ , self ).apply_gradients(zip(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) , name=SCREAMING_SNAKE_CASE__ , **SCREAMING_SNAKE_CASE__ ) def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ): if apply_state is None: return self._decayed_lr_t[var_dtype], {} lowercase : Tuple = apply_state or {} lowercase : Any = apply_state.get((var_device, var_dtype) ) if coefficients is None: lowercase : Dict = self._fallback_apply_state(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) lowercase : Optional[int] = coefficients return coefficients["lr_t"], {"apply_state": apply_state} def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__=None ): lowercase , lowercase : int = self._get_lr(var.device , var.dtype.base_dtype , SCREAMING_SNAKE_CASE__ ) lowercase : str = self._decay_weights_op(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) with tf.control_dependencies([decay] ): return super(SCREAMING_SNAKE_CASE__ , self )._resource_apply_dense(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , **SCREAMING_SNAKE_CASE__ ) def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__=None ): lowercase , lowercase : Union[str, Any] = self._get_lr(var.device , var.dtype.base_dtype , SCREAMING_SNAKE_CASE__ ) lowercase : Optional[int] = self._decay_weights_op(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) with tf.control_dependencies([decay] ): return super(SCREAMING_SNAKE_CASE__ , self )._resource_apply_sparse(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ , **SCREAMING_SNAKE_CASE__ ) def __lowerCamelCase ( self ): lowercase : Dict = super().get_config() config.update({'''weight_decay_rate''': self.weight_decay_rate} ) return config def __lowerCamelCase ( self , SCREAMING_SNAKE_CASE__ ): if self.weight_decay_rate == 0: return False if self._include_in_weight_decay: for r in self._include_in_weight_decay: if re.search(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) is not None: return True if self._exclude_from_weight_decay: for r in self._exclude_from_weight_decay: if re.search(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) is not None: return False return True class __SCREAMING_SNAKE_CASE ( A__ ): def __init__( self ): lowercase : Optional[Any] = [] lowercase : Tuple = None @property def __lowerCamelCase ( self ): if self._accum_steps is None: lowercase : Any = tf.Variable( tf.constant(0 , dtype=tf.intaa ) , trainable=SCREAMING_SNAKE_CASE__ , synchronization=tf.VariableSynchronization.ON_READ , aggregation=tf.VariableAggregation.ONLY_FIRST_REPLICA , ) return self._accum_steps.value() @property def __lowerCamelCase ( self ): if not self._gradients: raise ValueError('''The accumulator should be called first to initialize the gradients''' ) return [gradient.value() if gradient is not None else gradient for gradient in self._gradients] def __call__( self , SCREAMING_SNAKE_CASE__ ): if not self._gradients: lowercase : Optional[Any] = self.step # Create the step variable. self._gradients.extend( [ tf.Variable( tf.zeros_like(SCREAMING_SNAKE_CASE__ ) , trainable=SCREAMING_SNAKE_CASE__ , synchronization=tf.VariableSynchronization.ON_READ , aggregation=tf.VariableAggregation.ONLY_FIRST_REPLICA , ) if gradient is not None else gradient for gradient in gradients ] ) if len(SCREAMING_SNAKE_CASE__ ) != len(self._gradients ): raise ValueError(f"""Expected {len(self._gradients )} gradients, but got {len(SCREAMING_SNAKE_CASE__ )}""" ) for accum_gradient, gradient in zip(self._gradients , SCREAMING_SNAKE_CASE__ ): if accum_gradient is not None and gradient is not None: accum_gradient.assign_add(SCREAMING_SNAKE_CASE__ ) self._accum_steps.assign_add(1 ) def __lowerCamelCase ( self ): if not self._gradients: return self._accum_steps.assign(0 ) for gradient in self._gradients: if gradient is not None: gradient.assign(tf.zeros_like(SCREAMING_SNAKE_CASE__ ) )
173
0
'''simple docstring''' import logging import os from dataclasses import dataclass, field from typing import Dict, Optional import datasets import numpy as np import tensorflow as tf from transformers import ( AutoConfig, AutoTokenizer, EvalPrediction, HfArgumentParser, PreTrainedTokenizer, TFAutoModelForSequenceClassification, TFTrainer, TFTrainingArguments, ) from transformers.utils import logging as hf_logging hf_logging.set_verbosity_info() hf_logging.enable_default_handler() hf_logging.enable_explicit_format() def lowerCAmelCase (__A , __A , __A , __A , __A , __A = None , ): """simple docstring""" _a = {} if train_file is not None: _a = [train_file] if eval_file is not None: _a = [eval_file] if test_file is not None: _a = [test_file] _a = datasets.load_dataset('''csv''' , data_files=__a) _a = list(ds[list(files.keys())[0]].features.keys()) _a = features_name.pop(__a) _a = list(set(ds[list(files.keys())[0]][label_name])) _a = {label: i for i, label in enumerate(__a)} _a = tokenizer.model_input_names _a = {} if len(__a) == 1: for k in files.keys(): _a = ds[k].map( lambda __A: tokenizer.batch_encode_plus( example[features_name[0]] , truncation=__a , max_length=__a , padding='''max_length''') , batched=__a , ) elif len(__a) == 2: for k in files.keys(): _a = ds[k].map( lambda __A: tokenizer.batch_encode_plus( (example[features_name[0]], example[features_name[1]]) , truncation=__a , max_length=__a , padding='''max_length''' , ) , batched=__a , ) def gen_train(): for ex in transformed_ds[datasets.Split.TRAIN]: _a = {k: v for k, v in ex.items() if k in input_names} _a = labelaid[ex[label_name]] yield (d, label) def gen_val(): for ex in transformed_ds[datasets.Split.VALIDATION]: _a = {k: v for k, v in ex.items() if k in input_names} _a = labelaid[ex[label_name]] yield (d, label) def gen_test(): for ex in transformed_ds[datasets.Split.TEST]: _a = {k: v for k, v in ex.items() if k in input_names} _a = labelaid[ex[label_name]] yield (d, label) _a = ( tf.data.Dataset.from_generator( __a , ({k: tf.intaa for k in input_names}, tf.intaa) , ({k: tf.TensorShape([None]) for k in input_names}, tf.TensorShape([])) , ) if datasets.Split.TRAIN in transformed_ds else None ) if train_ds is not None: _a = train_ds.apply(tf.data.experimental.assert_cardinality(len(ds[datasets.Split.TRAIN]))) _a = ( tf.data.Dataset.from_generator( __a , ({k: tf.intaa for k in input_names}, tf.intaa) , ({k: tf.TensorShape([None]) for k in input_names}, tf.TensorShape([])) , ) if datasets.Split.VALIDATION in transformed_ds else None ) if val_ds is not None: _a = val_ds.apply(tf.data.experimental.assert_cardinality(len(ds[datasets.Split.VALIDATION]))) _a = ( tf.data.Dataset.from_generator( __a , ({k: tf.intaa for k in input_names}, tf.intaa) , ({k: tf.TensorShape([None]) for k in input_names}, tf.TensorShape([])) , ) if datasets.Split.TEST in transformed_ds else None ) if test_ds is not None: _a = test_ds.apply(tf.data.experimental.assert_cardinality(len(ds[datasets.Split.TEST]))) return train_ds, val_ds, test_ds, labelaid lowercase_ = logging.getLogger(__name__) @dataclass class __A : '''simple docstring''' __lowerCamelCase : Optional[Any] = field(metadata={'help': 'Which column contains the label'} ) __lowerCamelCase : List[str] = field(default=__lowerCamelCase , metadata={'help': 'The path of the training file'} ) __lowerCamelCase : Dict = field(default=__lowerCamelCase , metadata={'help': 'The path of the development file'} ) __lowerCamelCase : Optional[Any] = field(default=__lowerCamelCase , metadata={'help': 'The path of the test file'} ) __lowerCamelCase : Optional[int] = field( default=128 , metadata={ 'help': ( 'The maximum total input sequence length after tokenization. Sequences longer ' 'than this will be truncated, sequences shorter will be padded.' ) } , ) __lowerCamelCase : Any = field( default=__lowerCamelCase , metadata={'help': 'Overwrite the cached training and evaluation sets'} ) @dataclass class __A : '''simple docstring''' __lowerCamelCase : Any = field( metadata={'help': 'Path to pretrained model or model identifier from huggingface.co/models'} ) __lowerCamelCase : Dict = field( default=__lowerCamelCase , metadata={'help': 'Pretrained config name or path if not the same as model_name'} ) __lowerCamelCase : str = field( default=__lowerCamelCase , metadata={'help': 'Pretrained tokenizer name or path if not the same as model_name'} ) __lowerCamelCase : Optional[Any] = field(default=__lowerCamelCase , metadata={'help': 'Set this flag to use fast tokenization.'} ) # If you want to tweak more attributes on your tokenizer, you should do it in a distinct script, # or just modify its tokenizer_config.json. __lowerCamelCase : Union[str, Any] = field( default=__lowerCamelCase , metadata={'help': 'Where do you want to store the pretrained models downloaded from huggingface.co'} , ) def lowerCAmelCase (): """simple docstring""" _a = HfArgumentParser((ModelArguments, DataTrainingArguments, TFTrainingArguments)) _a , _a , _a = parser.parse_args_into_dataclasses() if ( os.path.exists(training_args.output_dir) and os.listdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir ): raise ValueError( F'''Output directory ({training_args.output_dir}) already exists and is not empty. Use''' ''' --overwrite_output_dir to overcome.''') # Setup logging logging.basicConfig( format='''%(asctime)s - %(levelname)s - %(name)s - %(message)s''' , datefmt='''%m/%d/%Y %H:%M:%S''' , level=logging.INFO , ) logger.info( F'''n_replicas: {training_args.n_replicas}, distributed training: {bool(training_args.n_replicas > 1)}, ''' F'''16-bits training: {training_args.fpaa}''') logger.info(F'''Training/evaluation parameters {training_args}''') # Load pretrained model and tokenizer # # Distributed training: # The .from_pretrained methods guarantee that only one local process can concurrently # download model & vocab. _a = AutoTokenizer.from_pretrained( model_args.tokenizer_name if model_args.tokenizer_name else model_args.model_name_or_path , cache_dir=model_args.cache_dir , ) _a , _a , _a , _a = get_tfds( train_file=data_args.train_file , eval_file=data_args.dev_file , test_file=data_args.test_file , tokenizer=__a , label_column_id=data_args.label_column_id , max_seq_length=data_args.max_seq_length , ) _a = AutoConfig.from_pretrained( model_args.config_name if model_args.config_name else model_args.model_name_or_path , num_labels=len(__a) , labelaid=__a , idalabel={id: label for label, id in labelaid.items()} , finetuning_task='''text-classification''' , cache_dir=model_args.cache_dir , ) with training_args.strategy.scope(): _a = TFAutoModelForSequenceClassification.from_pretrained( model_args.model_name_or_path , from_pt=bool('''.bin''' in model_args.model_name_or_path) , config=__a , cache_dir=model_args.cache_dir , ) def compute_metrics(__A) -> Dict: _a = np.argmax(p.predictions , axis=1) return {"acc": (preds == p.label_ids).mean()} # Initialize our Trainer _a = TFTrainer( model=__a , args=__a , train_dataset=__a , eval_dataset=__a , compute_metrics=__a , ) # Training if training_args.do_train: trainer.train() trainer.save_model() tokenizer.save_pretrained(training_args.output_dir) # Evaluation _a = {} if training_args.do_eval: logger.info('''*** Evaluate ***''') _a = trainer.evaluate() _a = os.path.join(training_args.output_dir , '''eval_results.txt''') with open(__a , '''w''') as writer: logger.info('''***** Eval results *****''') for key, value in result.items(): logger.info(F''' {key} = {value}''') writer.write(F'''{key} = {value}\n''') results.update(__a) return results if __name__ == "__main__": main()
211
import inspect import unittest from transformers import ConvNextVaConfig from transformers.models.auto import get_values from transformers.models.auto.modeling_auto import MODEL_FOR_BACKBONE_MAPPING_NAMES, MODEL_MAPPING_NAMES from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import ConvNextVaBackbone, ConvNextVaForImageClassification, ConvNextVaModel from transformers.models.convnextva.modeling_convnextva import CONVNEXTV2_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class __A: """simple docstring""" def __init__(self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_=13 , SCREAMING_SNAKE_CASE_=32 , SCREAMING_SNAKE_CASE_=3 , SCREAMING_SNAKE_CASE_=4 , SCREAMING_SNAKE_CASE_=[10, 20, 30, 40] , SCREAMING_SNAKE_CASE_=[2, 2, 3, 2] , SCREAMING_SNAKE_CASE_=True , SCREAMING_SNAKE_CASE_=True , SCREAMING_SNAKE_CASE_=37 , SCREAMING_SNAKE_CASE_="gelu" , SCREAMING_SNAKE_CASE_=10 , SCREAMING_SNAKE_CASE_=0.02 , SCREAMING_SNAKE_CASE_=["stage2", "stage3", "stage4"] , SCREAMING_SNAKE_CASE_=[2, 3, 4] , SCREAMING_SNAKE_CASE_=None , ): UpperCamelCase__ = parent UpperCamelCase__ = batch_size UpperCamelCase__ = image_size UpperCamelCase__ = num_channels UpperCamelCase__ = num_stages UpperCamelCase__ = hidden_sizes UpperCamelCase__ = depths UpperCamelCase__ = is_training UpperCamelCase__ = use_labels UpperCamelCase__ = intermediate_size UpperCamelCase__ = hidden_act UpperCamelCase__ = num_labels UpperCamelCase__ = initializer_range UpperCamelCase__ = out_features UpperCamelCase__ = out_indices UpperCamelCase__ = scope def UpperCAmelCase_ (self ): UpperCamelCase__ = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase__ = None if self.use_labels: UpperCamelCase__ = ids_tensor([self.batch_size] , self.num_labels ) UpperCamelCase__ = self.get_config() return config, pixel_values, labels def UpperCAmelCase_ (self ): return ConvNextVaConfig( num_channels=self.num_channels , hidden_sizes=self.hidden_sizes , depths=self.depths , num_stages=self.num_stages , hidden_act=self.hidden_act , is_decoder=SCREAMING_SNAKE_CASE_ , initializer_range=self.initializer_range , out_features=self.out_features , out_indices=self.out_indices , num_labels=self.num_labels , ) def UpperCAmelCase_ (self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ): UpperCamelCase__ = ConvNextVaModel(config=SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.eval() UpperCamelCase__ = model(SCREAMING_SNAKE_CASE_ ) # expected last hidden states: B, C, H // 32, W // 32 self.parent.assertEqual( result.last_hidden_state.shape , (self.batch_size, self.hidden_sizes[-1], self.image_size // 32, self.image_size // 32) , ) def UpperCAmelCase_ (self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ): UpperCamelCase__ = ConvNextVaForImageClassification(SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.eval() UpperCamelCase__ = model(SCREAMING_SNAKE_CASE_ , labels=SCREAMING_SNAKE_CASE_ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels) ) def UpperCAmelCase_ (self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ): UpperCamelCase__ = ConvNextVaBackbone(config=SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.eval() UpperCamelCase__ = model(SCREAMING_SNAKE_CASE_ ) # verify hidden states self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.hidden_sizes[1], 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[1:] ) # verify backbone works with out_features=None UpperCamelCase__ = None UpperCamelCase__ = ConvNextVaBackbone(config=SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.eval() UpperCamelCase__ = model(SCREAMING_SNAKE_CASE_ ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.hidden_sizes[-1], 1, 1] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def UpperCAmelCase_ (self ): UpperCamelCase__ = self.prepare_config_and_inputs() UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ = config_and_inputs UpperCamelCase__ = {"""pixel_values""": pixel_values} return config, inputs_dict def UpperCAmelCase_ (self ): UpperCamelCase__ = self.prepare_config_and_inputs() UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ = config_and_inputs UpperCamelCase__ = {"""pixel_values""": pixel_values, """labels""": labels} return config, inputs_dict @require_torch class __A( __lowerCamelCase , __lowerCamelCase , unittest.TestCase ): """simple docstring""" SCREAMING_SNAKE_CASE__ = ( ( ConvNextVaModel, ConvNextVaForImageClassification, ConvNextVaBackbone, ) if is_torch_available() else () ) SCREAMING_SNAKE_CASE__ = ( {"""feature-extraction""": ConvNextVaModel, """image-classification""": ConvNextVaForImageClassification} if is_torch_available() else {} ) SCREAMING_SNAKE_CASE__ = False SCREAMING_SNAKE_CASE__ = False SCREAMING_SNAKE_CASE__ = False SCREAMING_SNAKE_CASE__ = False SCREAMING_SNAKE_CASE__ = False def UpperCAmelCase_ (self ): UpperCamelCase__ = ConvNextVaModelTester(self ) UpperCamelCase__ = ConfigTester(self , config_class=SCREAMING_SNAKE_CASE_ , has_text_modality=SCREAMING_SNAKE_CASE_ , hidden_size=37 ) def UpperCAmelCase_ (self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def UpperCAmelCase_ (self ): return @unittest.skip(reason="""ConvNextV2 does not use inputs_embeds""" ) def UpperCAmelCase_ (self ): pass @unittest.skip(reason="""ConvNextV2 does not support input and output embeddings""" ) def UpperCAmelCase_ (self ): pass @unittest.skip(reason="""ConvNextV2 does not use feedforward chunking""" ) def UpperCAmelCase_ (self ): pass def UpperCAmelCase_ (self ): if not self.model_tester.is_training: return for model_class in self.all_model_classes: UpperCamelCase__ , UpperCamelCase__ = self.model_tester.prepare_config_and_inputs_with_labels() UpperCamelCase__ = True if model_class.__name__ in [ *get_values(SCREAMING_SNAKE_CASE_ ), *get_values(SCREAMING_SNAKE_CASE_ ), ]: continue UpperCamelCase__ = model_class(SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.train() UpperCamelCase__ = self._prepare_for_class(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , return_labels=SCREAMING_SNAKE_CASE_ ) UpperCamelCase__ = model(**SCREAMING_SNAKE_CASE_ ).loss loss.backward() def UpperCAmelCase_ (self ): if not self.model_tester.is_training: return for model_class in self.all_model_classes: UpperCamelCase__ , UpperCamelCase__ = self.model_tester.prepare_config_and_inputs_with_labels() UpperCamelCase__ = False UpperCamelCase__ = True if ( model_class.__name__ in [*get_values(SCREAMING_SNAKE_CASE_ ), *get_values(SCREAMING_SNAKE_CASE_ )] or not model_class.supports_gradient_checkpointing ): continue UpperCamelCase__ = model_class(SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.gradient_checkpointing_enable() model.train() UpperCamelCase__ = self._prepare_for_class(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , return_labels=SCREAMING_SNAKE_CASE_ ) UpperCamelCase__ = model(**SCREAMING_SNAKE_CASE_ ).loss loss.backward() def UpperCAmelCase_ (self ): UpperCamelCase__ , UpperCamelCase__ = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCamelCase__ = model_class(SCREAMING_SNAKE_CASE_ ) UpperCamelCase__ = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase__ = [*signature.parameters.keys()] UpperCamelCase__ = ["""pixel_values"""] self.assertListEqual(arg_names[:1] , SCREAMING_SNAKE_CASE_ ) def UpperCAmelCase_ (self ): UpperCamelCase__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*SCREAMING_SNAKE_CASE_ ) def UpperCAmelCase_ (self ): def check_hidden_states_output(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ): UpperCamelCase__ = model_class(SCREAMING_SNAKE_CASE_ ) model.to(SCREAMING_SNAKE_CASE_ ) model.eval() with torch.no_grad(): UpperCamelCase__ = model(**self._prepare_for_class(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ) ) UpperCamelCase__ = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states UpperCamelCase__ = self.model_tester.num_stages self.assertEqual(len(SCREAMING_SNAKE_CASE_ ) , expected_num_stages + 1 ) # ConvNextV2's feature maps are of shape (batch_size, num_channels, height, width) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [self.model_tester.image_size // 4, self.model_tester.image_size // 4] , ) UpperCamelCase__ , UpperCamelCase__ = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCamelCase__ = True check_hidden_states_output(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase__ = True check_hidden_states_output(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ) def UpperCAmelCase_ (self ): UpperCamelCase__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*SCREAMING_SNAKE_CASE_ ) @slow def UpperCAmelCase_ (self ): for model_name in CONVNEXTV2_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase__ = ConvNextVaModel.from_pretrained(SCREAMING_SNAKE_CASE_ ) self.assertIsNotNone(SCREAMING_SNAKE_CASE_ ) def __magic_name__ ( ): '''simple docstring''' UpperCamelCase__ = Image.open("""./tests/fixtures/tests_samples/COCO/000000039769.png""" ) return image @require_torch @require_vision class __A( unittest.TestCase ): """simple docstring""" @cached_property def UpperCAmelCase_ (self ): return AutoImageProcessor.from_pretrained("""facebook/convnextv2-tiny-1k-224""" ) if is_vision_available() else None @slow def UpperCAmelCase_ (self ): UpperCamelCase__ = ConvNextVaForImageClassification.from_pretrained("""facebook/convnextv2-tiny-1k-224""" ).to(SCREAMING_SNAKE_CASE_ ) UpperCamelCase__ = self.default_image_processor UpperCamelCase__ = prepare_img() UpperCamelCase__ = preprocessor(images=SCREAMING_SNAKE_CASE_ , return_tensors="""pt""" ).to(SCREAMING_SNAKE_CASE_ ) # forward pass with torch.no_grad(): UpperCamelCase__ = model(**SCREAMING_SNAKE_CASE_ ) # verify the logits UpperCamelCase__ = torch.Size((1, 10_00) ) self.assertEqual(outputs.logits.shape , SCREAMING_SNAKE_CASE_ ) UpperCamelCase__ = torch.tensor([0.9996, 0.1966, -0.4386] ).to(SCREAMING_SNAKE_CASE_ ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , SCREAMING_SNAKE_CASE_ , atol=1E-4 ) )
244
0
"""simple docstring""" from typing import Any def __A ( a_ :list , a_ :list , a_ :dict , a_ :dict , a_ :dict , ) -> list: _validation( a_ , a_ , a_ , a_ , a_ , ) # Creates data structures and fill initial step __a : dict = {} __a : dict = {} for state in states_space: __a : int = observations_space[0] __a : List[Any] = ( initial_probabilities[state] * emission_probabilities[state][observation] ) __a : int = None # Fills the data structure with the probabilities of # different transitions and pointers to previous states for o in range(1 , len(a_)): __a : Dict = observations_space[o] __a : Union[str, Any] = observations_space[o - 1] for state in states_space: # Calculates the argmax for probability function __a : Union[str, Any] = '''''' __a : Optional[Any] = -1 for k_state in states_space: __a : List[str] = ( probabilities[(k_state, prior_observation)] * transition_probabilities[k_state][state] * emission_probabilities[state][observation] ) if probability > max_probability: __a : List[Any] = probability __a : Any = k_state # Update probabilities and pointers dicts __a : Any = ( probabilities[(arg_max, prior_observation)] * transition_probabilities[arg_max][state] * emission_probabilities[state][observation] ) __a : Optional[int] = arg_max # The final observation __a : Optional[int] = observations_space[len(a_) - 1] # argmax for given final observation __a : str = '''''' __a : List[Any] = -1 for k_state in states_space: __a : List[str] = probabilities[(k_state, final_observation)] if probability > max_probability: __a : Union[str, Any] = probability __a : Any = k_state __a : Dict = arg_max # Process pointers backwards __a : Tuple = last_state __a : Tuple = [] for o in range(len(a_) - 1 , -1 , -1): result.append(a_) __a : List[str] = pointers[previous, observations_space[o]] result.reverse() return result def __A ( a_ :Any , a_ :Any , a_ :Any , a_ :Any , a_ :Any , ) -> None: _validate_not_empty( a_ , a_ , a_ , a_ , a_ , ) _validate_lists(a_ , a_) _validate_dicts( a_ , a_ , a_) def __A ( a_ :Any , a_ :Any , a_ :Any , a_ :Any , a_ :Any , ) -> None: if not all( [ observations_space, states_space, initial_probabilities, transition_probabilities, emission_probabilities, ]): raise ValueError('''There\'s an empty parameter''') def __A ( a_ :Any , a_ :Any) -> None: _validate_list(a_ , '''observations_space''') _validate_list(a_ , '''states_space''') def __A ( a_ :Any , a_ :str) -> None: if not isinstance(_object , a_): __a : Optional[int] = F"""{var_name} must be a list""" raise ValueError(a_) else: for x in _object: if not isinstance(a_ , a_): __a : Any = F"""{var_name} must be a list of strings""" raise ValueError(a_) def __A ( a_ :Any , a_ :Any , a_ :Any , ) -> None: _validate_dict(a_ , '''initial_probabilities''' , a_) _validate_nested_dict(a_ , '''transition_probabilities''') _validate_nested_dict(a_ , '''emission_probabilities''') def __A ( a_ :Any , a_ :str) -> None: _validate_dict(_object , a_ , a_) for x in _object.values(): _validate_dict(a_ , a_ , a_ , a_) def __A ( a_ :Any , a_ :str , a_ :type , a_ :bool = False) -> None: if not isinstance(_object , a_): __a : int = F"""{var_name} must be a dict""" raise ValueError(a_) if not all(isinstance(a_ , a_) for x in _object): __a : Any = F"""{var_name} all keys must be strings""" raise ValueError(a_) if not all(isinstance(a_ , a_) for x in _object.values()): __a : Dict = '''nested dictionary ''' if nested else '''''' __a : Optional[Any] = F"""{var_name} {nested_text}all values must be {value_type.__name__}""" raise ValueError(a_) if __name__ == "__main__": from doctest import testmod testmod()
366
"""simple docstring""" from pathlib import Path import numpy as np from PIL import Image def __A ( a_ :np.ndarray) -> np.ndarray: __a , __a , __a : Union[str, Any] = rgb[:, :, 0], rgb[:, :, 1], rgb[:, :, 2] return 0.2_9_8_9 * r + 0.5_8_7_0 * g + 0.1_1_4_0 * b def __A ( a_ :np.ndarray) -> np.ndarray: return (gray > 1_27) & (gray <= 2_55) def __A ( a_ :np.ndarray , a_ :np.ndarray) -> np.ndarray: __a : Optional[int] = np.zeros_like(a_) __a : Dict = np.zeros( (image.shape[0] + kernel.shape[0] - 1, image.shape[1] + kernel.shape[1] - 1)) # Copy image to padded image __a : int = image # Iterate over image & apply kernel for x in range(image.shape[1]): for y in range(image.shape[0]): __a : Optional[Any] = ( kernel * image_padded[y : y + kernel.shape[0], x : x + kernel.shape[1]] ).sum() __a : Any = int(summation > 0) return output if __name__ == "__main__": # read original image A = Path(__file__).resolve().parent / '''image_data''' / '''lena.jpg''' A = np.array(Image.open(lena_path)) # kernel to be applied A = np.array([[0, 1, 0], [1, 1, 1], [0, 1, 0]]) A = dilation(gray_to_binary(rgb_to_gray(lena)), structuring_element) # Save the output image A = Image.fromarray(output).convert('''RGB''') pil_img.save('''result_dilation.png''')
188
0
"""simple docstring""" from __future__ import annotations import copy import inspect import unittest import numpy as np from transformers import is_tf_available, is_vision_available from transformers.models.auto import get_values from transformers.testing_utils import require_tf, slow from transformers.utils import cached_property from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, floats_tensor, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import ( TF_LAYOUTLMV3_PRETRAINED_MODEL_ARCHIVE_LIST, TF_MODEL_FOR_MULTIPLE_CHOICE_MAPPING, TF_MODEL_FOR_QUESTION_ANSWERING_MAPPING, TF_MODEL_FOR_SEQUENCE_CLASSIFICATION_MAPPING, TF_MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING, LayoutLMvaConfig, TFLayoutLMvaForQuestionAnswering, TFLayoutLMvaForSequenceClassification, TFLayoutLMvaForTokenClassification, TFLayoutLMvaModel, ) if is_vision_available(): from PIL import Image from transformers import LayoutLMvaImageProcessor class a : def __init__( self , _lowerCamelCase , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=4 , _lowerCamelCase=2 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=9_9 , _lowerCamelCase=3_6 , _lowerCamelCase=2 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase="gelu" , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=5_1_2 , _lowerCamelCase=1_6 , _lowerCamelCase=2 , _lowerCamelCase=0.0_2 , _lowerCamelCase=6 , _lowerCamelCase=6 , _lowerCamelCase=3 , _lowerCamelCase=4 , _lowerCamelCase=None , _lowerCamelCase=1_0_0_0 , ): lowercase = parent lowercase = batch_size lowercase = num_channels lowercase = image_size lowercase = patch_size lowercase = is_training lowercase = use_input_mask lowercase = use_token_type_ids lowercase = use_labels lowercase = vocab_size lowercase = hidden_size lowercase = num_hidden_layers lowercase = num_attention_heads lowercase = intermediate_size lowercase = hidden_act lowercase = hidden_dropout_prob lowercase = attention_probs_dropout_prob lowercase = max_position_embeddings lowercase = type_vocab_size lowercase = type_sequence_label_size lowercase = initializer_range lowercase = coordinate_size lowercase = shape_size lowercase = num_labels lowercase = num_choices lowercase = scope lowercase = range_bbox # LayoutLMv3's sequence length equals the number of text tokens + number of patches + 1 (we add 1 for the CLS token) lowercase = text_seq_length lowercase = (image_size // patch_size) ** 2 + 1 lowercase = self.text_seq_length + self.image_seq_length def UpperCamelCase_ ( self ): lowercase = ids_tensor([self.batch_size, self.text_seq_length] , self.vocab_size ) lowercase = ids_tensor([self.batch_size, self.text_seq_length, 4] , self.range_bbox ) lowercase = bbox.numpy() # Ensure that bbox is legal for i in range(bbox.shape[0] ): for j in range(bbox.shape[1] ): if bbox[i, j, 3] < bbox[i, j, 1]: lowercase = bbox[i, j, 3] lowercase = bbox[i, j, 1] lowercase = tmp_coordinate if bbox[i, j, 2] < bbox[i, j, 0]: lowercase = bbox[i, j, 2] lowercase = bbox[i, j, 0] lowercase = tmp_coordinate lowercase = tf.constant(_lowerCamelCase ) lowercase = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) lowercase = None if self.use_input_mask: lowercase = random_attention_mask([self.batch_size, self.text_seq_length] ) lowercase = None if self.use_token_type_ids: lowercase = ids_tensor([self.batch_size, self.text_seq_length] , self.type_vocab_size ) lowercase = None lowercase = None if self.use_labels: lowercase = ids_tensor([self.batch_size] , self.type_sequence_label_size ) lowercase = ids_tensor([self.batch_size, self.text_seq_length] , self.num_labels ) lowercase = LayoutLMvaConfig( vocab_size=self.vocab_size , hidden_size=self.hidden_size , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , type_vocab_size=self.type_vocab_size , initializer_range=self.initializer_range , coordinate_size=self.coordinate_size , shape_size=self.shape_size , input_size=self.image_size , patch_size=self.patch_size , ) return config, input_ids, bbox, pixel_values, token_type_ids, input_mask, sequence_labels, token_labels def UpperCamelCase_ ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): lowercase = TFLayoutLMvaModel(config=_lowerCamelCase ) # text + image lowercase = model(_lowerCamelCase , pixel_values=_lowerCamelCase , training=_lowerCamelCase ) lowercase = model( _lowerCamelCase , bbox=_lowerCamelCase , pixel_values=_lowerCamelCase , attention_mask=_lowerCamelCase , token_type_ids=_lowerCamelCase , training=_lowerCamelCase , ) lowercase = model(_lowerCamelCase , bbox=_lowerCamelCase , pixel_values=_lowerCamelCase , training=_lowerCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) # text only lowercase = model(_lowerCamelCase , training=_lowerCamelCase ) self.parent.assertEqual( result.last_hidden_state.shape , (self.batch_size, self.text_seq_length, self.hidden_size) ) # image only lowercase = model({'pixel_values': pixel_values} , training=_lowerCamelCase ) self.parent.assertEqual( result.last_hidden_state.shape , (self.batch_size, self.image_seq_length, self.hidden_size) ) def UpperCamelCase_ ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): lowercase = self.num_labels lowercase = TFLayoutLMvaForSequenceClassification(config=_lowerCamelCase ) lowercase = model( _lowerCamelCase , bbox=_lowerCamelCase , pixel_values=_lowerCamelCase , attention_mask=_lowerCamelCase , token_type_ids=_lowerCamelCase , labels=_lowerCamelCase , training=_lowerCamelCase , ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels) ) def UpperCamelCase_ ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): lowercase = self.num_labels lowercase = TFLayoutLMvaForTokenClassification(config=_lowerCamelCase ) lowercase = model( _lowerCamelCase , bbox=_lowerCamelCase , pixel_values=_lowerCamelCase , attention_mask=_lowerCamelCase , token_type_ids=_lowerCamelCase , labels=_lowerCamelCase , training=_lowerCamelCase , ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.text_seq_length, self.num_labels) ) def UpperCamelCase_ ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): lowercase = 2 lowercase = TFLayoutLMvaForQuestionAnswering(config=_lowerCamelCase ) lowercase = model( _lowerCamelCase , bbox=_lowerCamelCase , pixel_values=_lowerCamelCase , attention_mask=_lowerCamelCase , token_type_ids=_lowerCamelCase , start_positions=_lowerCamelCase , end_positions=_lowerCamelCase , training=_lowerCamelCase , ) self.parent.assertEqual(result.start_logits.shape , (self.batch_size, self.seq_length) ) self.parent.assertEqual(result.end_logits.shape , (self.batch_size, self.seq_length) ) def UpperCamelCase_ ( self ): lowercase = self.prepare_config_and_inputs() ((lowercase) , (lowercase) , (lowercase) , (lowercase) , (lowercase) , (lowercase) , (lowercase) , (lowercase)) = config_and_inputs lowercase = { 'input_ids': input_ids, 'bbox': bbox, 'pixel_values': pixel_values, 'token_type_ids': token_type_ids, 'attention_mask': input_mask, } return config, inputs_dict @require_tf class a ( a_, a_, unittest.TestCase ): UpperCAmelCase_ : Optional[int] =( ( TFLayoutLMvaModel, TFLayoutLMvaForQuestionAnswering, TFLayoutLMvaForSequenceClassification, TFLayoutLMvaForTokenClassification, ) if is_tf_available() else () ) UpperCAmelCase_ : str =( {"document-question-answering": TFLayoutLMvaForQuestionAnswering, "feature-extraction": TFLayoutLMvaModel} if is_tf_available() else {} ) UpperCAmelCase_ : Tuple =False UpperCAmelCase_ : Union[str, Any] =False UpperCAmelCase_ : Any =False def UpperCamelCase_ ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): return True def UpperCamelCase_ ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=False ): lowercase = copy.deepcopy(_lowerCamelCase ) if model_class in get_values(_lowerCamelCase ): lowercase = { k: tf.tile(tf.expand_dims(_lowerCamelCase , 1 ) , (1, self.model_tester.num_choices) + (1,) * (v.ndim - 1) ) if isinstance(_lowerCamelCase , tf.Tensor ) and v.ndim > 0 else v for k, v in inputs_dict.items() } if return_labels: if model_class in get_values(_lowerCamelCase ): lowercase = tf.ones(self.model_tester.batch_size , dtype=tf.intaa ) elif model_class in get_values(_lowerCamelCase ): lowercase = tf.zeros(self.model_tester.batch_size , dtype=tf.intaa ) lowercase = tf.zeros(self.model_tester.batch_size , dtype=tf.intaa ) elif model_class in get_values(_lowerCamelCase ): lowercase = tf.zeros(self.model_tester.batch_size , dtype=tf.intaa ) elif model_class in get_values(_lowerCamelCase ): lowercase = tf.zeros( (self.model_tester.batch_size, self.model_tester.text_seq_length) , dtype=tf.intaa ) return inputs_dict def UpperCamelCase_ ( self ): lowercase = TFLayoutLMvaModelTester(self ) lowercase = ConfigTester(self , config_class=_lowerCamelCase , hidden_size=3_7 ) def UpperCamelCase_ ( self ): self.config_tester.run_common_tests() def UpperCamelCase_ ( self ): lowercase , lowercase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: lowercase = model_class(_lowerCamelCase ) if getattr(_lowerCamelCase , 'hf_compute_loss' , _lowerCamelCase ): # The number of elements in the loss should be the same as the number of elements in the label lowercase = self._prepare_for_class(inputs_dict.copy() , _lowerCamelCase , return_labels=_lowerCamelCase ) lowercase = prepared_for_class[ sorted(prepared_for_class.keys() - inputs_dict.keys() , reverse=_lowerCamelCase )[0] ] lowercase = added_label.shape.as_list()[:1] # Test that model correctly compute the loss with kwargs lowercase = self._prepare_for_class(inputs_dict.copy() , _lowerCamelCase , return_labels=_lowerCamelCase ) lowercase = prepared_for_class.pop('input_ids' ) lowercase = model(_lowerCamelCase , **_lowerCamelCase )[0] self.assertTrue(loss.shape.as_list() == expected_loss_size or loss.shape.as_list() == [1] ) # Test that model correctly compute the loss when we mask some positions lowercase = self._prepare_for_class(inputs_dict.copy() , _lowerCamelCase , return_labels=_lowerCamelCase ) lowercase = prepared_for_class.pop('input_ids' ) if "labels" in prepared_for_class: lowercase = prepared_for_class['labels'].numpy() if len(labels.shape ) > 1 and labels.shape[1] != 1: lowercase = -1_0_0 lowercase = tf.convert_to_tensor(_lowerCamelCase ) lowercase = model(_lowerCamelCase , **_lowerCamelCase )[0] self.assertTrue(loss.shape.as_list() == expected_loss_size or loss.shape.as_list() == [1] ) self.assertTrue(not np.any(np.isnan(loss.numpy() ) ) ) # Test that model correctly compute the loss with a dict lowercase = self._prepare_for_class(inputs_dict.copy() , _lowerCamelCase , return_labels=_lowerCamelCase ) lowercase = model(_lowerCamelCase )[0] self.assertTrue(loss.shape.as_list() == expected_loss_size or loss.shape.as_list() == [1] ) # Test that model correctly compute the loss with a tuple lowercase = self._prepare_for_class(inputs_dict.copy() , _lowerCamelCase , return_labels=_lowerCamelCase ) # Get keys that were added with the _prepare_for_class function lowercase = prepared_for_class.keys() - inputs_dict.keys() lowercase = inspect.signature(model.call ).parameters lowercase = list(signature.keys() ) # Create a dictionary holding the location of the tensors in the tuple lowercase = {0: 'input_ids'} for label_key in label_keys: lowercase = signature_names.index(_lowerCamelCase ) lowercase = label_key lowercase = sorted(tuple_index_mapping.items() ) # Initialize a list with their default values, update the values and convert to a tuple lowercase = [] for name in signature_names: if name != "kwargs": list_input.append(signature[name].default ) for index, value in sorted_tuple_index_mapping: lowercase = prepared_for_class[value] lowercase = tuple(_lowerCamelCase ) # Send to model lowercase = model(tuple_input[:-1] )[0] self.assertTrue(loss.shape.as_list() == expected_loss_size or loss.shape.as_list() == [1] ) def UpperCamelCase_ ( self ): ( ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ) = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def UpperCamelCase_ ( self ): ( ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ) = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: lowercase = type self.model_tester.create_and_check_model(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def UpperCamelCase_ ( self ): ( ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ) = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_sequence_classification( _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def UpperCamelCase_ ( self ): ( ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ) = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification( _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def UpperCamelCase_ ( self ): ( ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ( lowercase ) , ) = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_question_answering( _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) @slow def UpperCamelCase_ ( self ): for model_name in TF_LAYOUTLMV3_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: lowercase = TFLayoutLMvaModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _SCREAMING_SNAKE_CASE ( ): '''simple docstring''' lowercase = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) return image @require_tf class a ( unittest.TestCase ): @cached_property def UpperCamelCase_ ( self ): return LayoutLMvaImageProcessor(apply_ocr=_lowerCamelCase ) if is_vision_available() else None @slow def UpperCamelCase_ ( self ): lowercase = TFLayoutLMvaModel.from_pretrained('microsoft/layoutlmv3-base' ) lowercase = self.default_image_processor lowercase = prepare_img() lowercase = image_processor(images=_lowerCamelCase , return_tensors='tf' ).pixel_values lowercase = tf.constant([[1, 2]] ) lowercase = tf.expand_dims(tf.constant([[1, 2, 3, 4], [5, 6, 7, 8]] ) , axis=0 ) # forward pass lowercase = model(input_ids=_lowerCamelCase , bbox=_lowerCamelCase , pixel_values=_lowerCamelCase , training=_lowerCamelCase ) # verify the logits lowercase = (1, 1_9_9, 7_6_8) self.assertEqual(outputs.last_hidden_state.shape , _lowerCamelCase ) lowercase = tf.constant( [[-0.0_5_2_9, 0.3_6_1_8, 0.1_6_3_2], [-0.1_5_8_7, -0.1_6_6_7, -0.0_4_0_0], [-0.1_5_5_7, -0.1_6_7_1, -0.0_5_0_5]] ) self.assertTrue(np.allclose(outputs.last_hidden_state[0, :3, :3] , _lowerCamelCase , atol=1e-4 ) )
220
"""simple docstring""" import logging import os import sys from pathlib import Path from unittest.mock import patch from parameterized import parameterized from run_eval import run_generate from run_eval_search import run_search from transformers.testing_utils import CaptureStdout, TestCasePlus, slow from utils import ROUGE_KEYS logging.basicConfig(level=logging.DEBUG) _UpperCamelCase : Tuple = logging.getLogger() def _SCREAMING_SNAKE_CASE ( __snake_case : Path , __snake_case : list ): '''simple docstring''' lowercase = '\n'.join(__snake_case ) Path(__snake_case ).open('w' ).writelines(__snake_case ) _UpperCamelCase : Union[str, Any] = 'patrickvonplaten/t5-tiny-random' _UpperCamelCase : Union[str, Any] = 'sshleifer/bart-tiny-random' _UpperCamelCase : Tuple = 'sshleifer/tiny-mbart' _UpperCamelCase : Union[str, Any] = logging.StreamHandler(sys.stdout) logger.addHandler(stream_handler) logging.disable(logging.CRITICAL) # remove noisy download output from tracebacks class a ( a_ ): def UpperCamelCase_ ( self , _lowerCamelCase ): lowercase = Path(self.get_auto_remove_tmp_dir() ) / 'utest_input.source' lowercase = input_file_name.parent / 'utest_output.txt' assert not output_file_name.exists() lowercase = [' New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County.'] _dump_articles(_lowerCamelCase , _lowerCamelCase ) lowercase = str(Path(self.get_auto_remove_tmp_dir() ) / 'scores.json' ) lowercase = 'translation_en_to_de' if model == T5_TINY else 'summarization' lowercase = F'\n run_eval_search.py\n {model}\n {input_file_name}\n {output_file_name}\n --score_path {score_path}\n --task {task}\n --num_beams 2\n --length_penalty 2.0\n '.split() with patch.object(_lowerCamelCase , 'argv' , _lowerCamelCase ): run_generate() assert Path(_lowerCamelCase ).exists() # os.remove(Path(output_file_name)) def UpperCamelCase_ ( self ): self.run_eval_tester(_lowerCamelCase ) @parameterized.expand([BART_TINY, MBART_TINY] ) @slow def UpperCamelCase_ ( self , _lowerCamelCase ): self.run_eval_tester(_lowerCamelCase ) @parameterized.expand([T5_TINY, MBART_TINY] ) @slow def UpperCamelCase_ ( self , _lowerCamelCase ): lowercase = Path(self.get_auto_remove_tmp_dir() ) / 'utest_input.source' lowercase = input_file_name.parent / 'utest_output.txt' assert not output_file_name.exists() lowercase = { 'en': ['Machine learning is great, isn\'t it?', 'I like to eat bananas', 'Tomorrow is another great day!'], 'de': [ 'Maschinelles Lernen ist großartig, oder?', 'Ich esse gerne Bananen', 'Morgen ist wieder ein toller Tag!', ], } lowercase = Path(self.get_auto_remove_tmp_dir() ) lowercase = str(tmp_dir / 'scores.json' ) lowercase = str(tmp_dir / 'val.target' ) _dump_articles(_lowerCamelCase , text['en'] ) _dump_articles(_lowerCamelCase , text['de'] ) lowercase = 'translation_en_to_de' if model == T5_TINY else 'summarization' lowercase = F'\n run_eval_search.py\n {model}\n {str(_lowerCamelCase )}\n {str(_lowerCamelCase )}\n --score_path {score_path}\n --reference_path {reference_path}\n --task {task}\n '.split() testargs.extend(['--search', 'num_beams=1:2 length_penalty=0.9:1.0'] ) with patch.object(_lowerCamelCase , 'argv' , _lowerCamelCase ): with CaptureStdout() as cs: run_search() lowercase = [' num_beams | length_penalty', model, 'Best score args'] lowercase = ['Info'] if "translation" in task: expected_strings.append('bleu' ) else: expected_strings.extend(_lowerCamelCase ) for w in expected_strings: assert w in cs.out for w in un_expected_strings: assert w not in cs.out assert Path(_lowerCamelCase ).exists() os.remove(Path(_lowerCamelCase ) )
220
1
import numpy as np from nltk.translate import meteor_score import datasets from datasets.config import importlib_metadata, version _lowerCamelCase : Union[str, Any] = version.parse(importlib_metadata.version("nltk")) if NLTK_VERSION >= version.Version("3.6.4"): from nltk import word_tokenize _lowerCamelCase : Tuple = "\\n@inproceedings{banarjee2005,\n title = {{METEOR}: An Automatic Metric for {MT} Evaluation with Improved Correlation with Human Judgments},\n author = {Banerjee, Satanjeev and Lavie, Alon},\n booktitle = {Proceedings of the {ACL} Workshop on Intrinsic and Extrinsic Evaluation Measures for Machine Translation and/or Summarization},\n month = jun,\n year = {2005},\n address = {Ann Arbor, Michigan},\n publisher = {Association for Computational Linguistics},\n url = {https://www.aclweb.org/anthology/W05-0909},\n pages = {65--72},\n}\n" _lowerCamelCase : List[Any] = "\\nMETEOR, an automatic metric for machine translation evaluation\nthat is based on a generalized concept of unigram matching between the\nmachine-produced translation and human-produced reference translations.\nUnigrams can be matched based on their surface forms, stemmed forms,\nand meanings; furthermore, METEOR can be easily extended to include more\nadvanced matching strategies. Once all generalized unigram matches\nbetween the two strings have been found, METEOR computes a score for\nthis matching using a combination of unigram-precision, unigram-recall, and\na measure of fragmentation that is designed to directly capture how\nwell-ordered the matched words in the machine translation are in relation\nto the reference.\n\nMETEOR gets an R correlation value of 0.347 with human evaluation on the Arabic\ndata and 0.331 on the Chinese data. This is shown to be an improvement on\nusing simply unigram-precision, unigram-recall and their harmonic F1\ncombination.\n" _lowerCamelCase : int = "\nComputes METEOR score of translated segments against one or more references.\nArgs:\n predictions: list of predictions to score. Each prediction\n should be a string with tokens separated by spaces.\n references: list of reference for each prediction. Each\n reference should be a string with tokens separated by spaces.\n alpha: Parameter for controlling relative weights of precision and recall. default: 0.9\n beta: Parameter for controlling shape of penalty as a function of fragmentation. default: 3\n gamma: Relative weight assigned to fragmentation penalty. default: 0.5\nReturns:\n 'meteor': meteor score.\nExamples:\n\n >>> meteor = datasets.load_metric('meteor')\n >>> predictions = [\"It is a guide to action which ensures that the military always obeys the commands of the party\"]\n >>> references = [\"It is a guide to action that ensures that the military will forever heed Party commands\"]\n >>> results = meteor.compute(predictions=predictions, references=references)\n >>> print(round(results[\"meteor\"], 4))\n 0.6944\n" @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class __UpperCAmelCase ( datasets.Metric ): def __magic_name__ ( self : List[str] ): return datasets.MetricInfo( description=_DESCRIPTION, citation=_CITATION, inputs_description=_KWARGS_DESCRIPTION, features=datasets.Features( { '''predictions''': datasets.Value('''string''', id='''sequence''' ), '''references''': datasets.Value('''string''', id='''sequence''' ), } ), codebase_urls=['''https://github.com/nltk/nltk/blob/develop/nltk/translate/meteor_score.py'''], reference_urls=[ '''https://www.nltk.org/api/nltk.translate.html#module-nltk.translate.meteor_score''', '''https://en.wikipedia.org/wiki/METEOR''', ], ) def __magic_name__ ( self : int, __A : List[str] ): import nltk nltk.download('''wordnet''' ) if NLTK_VERSION >= version.Version('''3.6.5''' ): nltk.download('''punkt''' ) if NLTK_VERSION >= version.Version('''3.6.6''' ): nltk.download('''omw-1.4''' ) def __magic_name__ ( self : List[str], __A : List[Any], __A : Tuple, __A : List[str]=0.9, __A : Union[str, Any]=3, __A : Tuple=0.5 ): if NLTK_VERSION >= version.Version('''3.6.5''' ): UpperCAmelCase : List[Any] = [ meteor_score.single_meteor_score( word_tokenize(__A ), word_tokenize(__A ), alpha=__A, beta=__A, gamma=__A ) for ref, pred in zip(__A, __A ) ] else: UpperCAmelCase : Union[str, Any] = [ meteor_score.single_meteor_score(__A, __A, alpha=__A, beta=__A, gamma=__A ) for ref, pred in zip(__A, __A ) ] return {"meteor": np.mean(__A )}
99
import inspect import unittest from transformers import DPTConfig from transformers.file_utils import is_torch_available, is_vision_available from transformers.models.auto import get_values from transformers.testing_utils import require_torch, require_vision, slow, torch_device from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import MODEL_MAPPING, DPTForDepthEstimation, DPTForSemanticSegmentation, DPTModel from transformers.models.dpt.modeling_dpt import DPT_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import DPTImageProcessor class __UpperCAmelCase : def __init__( self : Any, __A : List[Any], __A : Optional[Any]=2, __A : List[Any]=3_2, __A : Tuple=1_6, __A : int=3, __A : Any=True, __A : List[Any]=True, __A : List[Any]=3_2, __A : List[Any]=4, __A : Union[str, Any]=[0, 1, 2, 3], __A : List[Any]=4, __A : Optional[int]=3_7, __A : int="gelu", __A : Any=0.1, __A : Tuple=0.1, __A : Any=0.0_2, __A : List[str]=3, __A : int=[1, 3_8_4, 2_4, 2_4], __A : Any=True, __A : List[str]=None, ): UpperCAmelCase : List[str] = parent UpperCAmelCase : List[Any] = batch_size UpperCAmelCase : Tuple = image_size UpperCAmelCase : Dict = patch_size UpperCAmelCase : str = num_channels UpperCAmelCase : Tuple = is_training UpperCAmelCase : Optional[Any] = use_labels UpperCAmelCase : Dict = hidden_size UpperCAmelCase : Optional[int] = num_hidden_layers UpperCAmelCase : str = backbone_out_indices UpperCAmelCase : Dict = num_attention_heads UpperCAmelCase : Dict = intermediate_size UpperCAmelCase : Union[str, Any] = hidden_act UpperCAmelCase : Optional[Any] = hidden_dropout_prob UpperCAmelCase : Tuple = attention_probs_dropout_prob UpperCAmelCase : str = initializer_range UpperCAmelCase : Optional[int] = num_labels UpperCAmelCase : int = backbone_featmap_shape UpperCAmelCase : Union[str, Any] = scope UpperCAmelCase : int = is_hybrid # sequence length of DPT = num_patches + 1 (we add 1 for the [CLS] token) UpperCAmelCase : Any = (image_size // patch_size) ** 2 UpperCAmelCase : Optional[Any] = num_patches + 1 def __magic_name__ ( self : Union[str, Any] ): UpperCAmelCase : Optional[Any] = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCAmelCase : Union[str, Any] = None if self.use_labels: UpperCAmelCase : List[Any] = ids_tensor([self.batch_size, self.image_size, self.image_size], self.num_labels ) UpperCAmelCase : Tuple = self.get_config() return config, pixel_values, labels def __magic_name__ ( self : Dict ): UpperCAmelCase : List[Any] = { '''global_padding''': '''same''', '''layer_type''': '''bottleneck''', '''depths''': [3, 4, 9], '''out_features''': ['''stage1''', '''stage2''', '''stage3'''], '''embedding_dynamic_padding''': True, '''hidden_sizes''': [9_6, 1_9_2, 3_8_4, 7_6_8], '''num_groups''': 2, } return DPTConfig( image_size=self.image_size, patch_size=self.patch_size, num_channels=self.num_channels, hidden_size=self.hidden_size, num_hidden_layers=self.num_hidden_layers, backbone_out_indices=self.backbone_out_indices, num_attention_heads=self.num_attention_heads, intermediate_size=self.intermediate_size, hidden_act=self.hidden_act, hidden_dropout_prob=self.hidden_dropout_prob, attention_probs_dropout_prob=self.attention_probs_dropout_prob, is_decoder=__A, initializer_range=self.initializer_range, is_hybrid=self.is_hybrid, backbone_config=__A, backbone_featmap_shape=self.backbone_featmap_shape, ) def __magic_name__ ( self : Optional[Any], __A : List[Any], __A : Union[str, Any], __A : Tuple ): UpperCAmelCase : Optional[Any] = DPTModel(config=__A ) model.to(__A ) model.eval() UpperCAmelCase : int = model(__A ) self.parent.assertEqual(result.last_hidden_state.shape, (self.batch_size, self.seq_length, self.hidden_size) ) def __magic_name__ ( self : Optional[int], __A : Any, __A : Dict, __A : Optional[int] ): UpperCAmelCase : Optional[Any] = self.num_labels UpperCAmelCase : List[Any] = DPTForDepthEstimation(__A ) model.to(__A ) model.eval() UpperCAmelCase : Tuple = model(__A ) self.parent.assertEqual(result.predicted_depth.shape, (self.batch_size, self.image_size, self.image_size) ) def __magic_name__ ( self : Union[str, Any], __A : Dict, __A : List[Any], __A : Optional[int] ): UpperCAmelCase : Dict = self.num_labels UpperCAmelCase : Tuple = DPTForSemanticSegmentation(__A ) model.to(__A ) model.eval() UpperCAmelCase : Dict = model(__A, labels=__A ) self.parent.assertEqual( result.logits.shape, (self.batch_size, self.num_labels, self.image_size, self.image_size) ) def __magic_name__ ( self : Optional[int] ): UpperCAmelCase : str = self.prepare_config_and_inputs() UpperCAmelCase , UpperCAmelCase , UpperCAmelCase : Union[str, Any] = config_and_inputs UpperCAmelCase : Union[str, Any] = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class __UpperCAmelCase ( lowerCamelCase__ , lowerCamelCase__ , unittest.TestCase ): UpperCamelCase = (DPTModel, DPTForDepthEstimation, DPTForSemanticSegmentation) if is_torch_available() else () UpperCamelCase = ( { """depth-estimation""": DPTForDepthEstimation, """feature-extraction""": DPTModel, """image-segmentation""": DPTForSemanticSegmentation, } if is_torch_available() else {} ) UpperCamelCase = False UpperCamelCase = False UpperCamelCase = False def __magic_name__ ( self : Tuple ): UpperCAmelCase : int = DPTModelTester(self ) UpperCAmelCase : List[Any] = ConfigTester(self, config_class=__A, has_text_modality=__A, hidden_size=3_7 ) def __magic_name__ ( self : Any ): self.config_tester.run_common_tests() @unittest.skip(reason='''DPT does not use inputs_embeds''' ) def __magic_name__ ( self : int ): pass def __magic_name__ ( self : List[Any] ): UpperCAmelCase , UpperCAmelCase : Optional[int] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCAmelCase : List[Any] = model_class(__A ) self.assertIsInstance(model.get_input_embeddings(), (nn.Module) ) UpperCAmelCase : Union[str, Any] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(__A, nn.Linear ) ) def __magic_name__ ( self : Dict ): UpperCAmelCase , UpperCAmelCase : Optional[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCAmelCase : Tuple = model_class(__A ) UpperCAmelCase : Tuple = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCAmelCase : Optional[int] = [*signature.parameters.keys()] UpperCAmelCase : Dict = ['''pixel_values'''] self.assertListEqual(arg_names[:1], __A ) def __magic_name__ ( self : Tuple ): UpperCAmelCase : Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__A ) def __magic_name__ ( self : Any ): UpperCAmelCase : int = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_depth_estimation(*__A ) def __magic_name__ ( self : List[str] ): UpperCAmelCase : List[str] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__A ) def __magic_name__ ( self : Union[str, Any] ): for model_class in self.all_model_classes: if model_class.__name__ == "DPTForDepthEstimation": continue UpperCAmelCase , UpperCAmelCase : Any = self.model_tester.prepare_config_and_inputs_for_common() UpperCAmelCase : str = True if model_class in get_values(__A ): continue UpperCAmelCase : Union[str, Any] = model_class(__A ) model.to(__A ) model.train() UpperCAmelCase : str = self._prepare_for_class(__A, __A, return_labels=__A ) UpperCAmelCase : Union[str, Any] = model(**__A ).loss loss.backward() def __magic_name__ ( self : Optional[int] ): for model_class in self.all_model_classes: if model_class.__name__ == "DPTForDepthEstimation": continue UpperCAmelCase , UpperCAmelCase : List[Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCAmelCase : int = False UpperCAmelCase : int = True if model_class in get_values(__A ) or not model_class.supports_gradient_checkpointing: continue UpperCAmelCase : Dict = model_class(__A ) model.to(__A ) model.gradient_checkpointing_enable() model.train() UpperCAmelCase : List[str] = self._prepare_for_class(__A, __A, return_labels=__A ) UpperCAmelCase : Any = model(**__A ).loss loss.backward() def __magic_name__ ( self : Dict ): UpperCAmelCase , UpperCAmelCase : List[Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCAmelCase : Optional[Any] = _config_zero_init(__A ) for model_class in self.all_model_classes: UpperCAmelCase : Dict = model_class(config=__A ) # Skip the check for the backbone UpperCAmelCase : Dict = [] for name, module in model.named_modules(): if module.__class__.__name__ == "DPTViTHybridEmbeddings": UpperCAmelCase : Optional[Any] = [F'''{name}.{key}''' for key in module.state_dict().keys()] break for name, param in model.named_parameters(): if param.requires_grad: if name in backbone_params: continue self.assertIn( ((param.data.mean() * 1E9).round() / 1E9).item(), [0.0, 1.0], msg=F'''Parameter {name} of model {model_class} seems not properly initialized''', ) @unittest.skip('''Will be fixed soon by reducing the size of the model used for common tests.''' ) def __magic_name__ ( self : Optional[int] ): pass @slow def __magic_name__ ( self : Optional[Any] ): for model_name in DPT_PRETRAINED_MODEL_ARCHIVE_LIST[1:]: UpperCAmelCase : Optional[int] = DPTModel.from_pretrained(__A ) self.assertIsNotNone(__A ) def __magic_name__ ( self : int ): # We do this test only for DPTForDepthEstimation since it is the only model that uses readout_type UpperCAmelCase , UpperCAmelCase : Optional[int] = self.model_tester.prepare_config_and_inputs_for_common() UpperCAmelCase : int = '''add''' with self.assertRaises(__A ): UpperCAmelCase : Dict = DPTForDepthEstimation(__A ) def a__ ( ) -> Tuple: UpperCAmelCase : Optional[Any] = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) return image @require_torch @require_vision @slow class __UpperCAmelCase ( unittest.TestCase ): def __magic_name__ ( self : Dict ): UpperCAmelCase : Dict = DPTImageProcessor.from_pretrained('''Intel/dpt-hybrid-midas''' ) UpperCAmelCase : Tuple = DPTForDepthEstimation.from_pretrained('''Intel/dpt-hybrid-midas''' ).to(__A ) UpperCAmelCase : List[Any] = prepare_img() UpperCAmelCase : Union[str, Any] = image_processor(images=__A, return_tensors='''pt''' ).to(__A ) # forward pass with torch.no_grad(): UpperCAmelCase : int = model(**__A ) UpperCAmelCase : int = outputs.predicted_depth # verify the predicted depth UpperCAmelCase : Tuple = torch.Size((1, 3_8_4, 3_8_4) ) self.assertEqual(predicted_depth.shape, __A ) UpperCAmelCase : Dict = torch.tensor( [[[5.6_4_3_7, 5.6_1_4_6, 5.6_5_1_1], [5.4_3_7_1, 5.5_6_4_9, 5.5_9_5_8], [5.5_2_1_5, 5.5_1_8_4, 5.5_2_9_3]]] ).to(__A ) self.assertTrue(torch.allclose(outputs.predicted_depth[:3, :3, :3] / 1_0_0, __A, atol=1E-4 ) )
99
1
def lowerCamelCase_ ( _UpperCamelCase , _UpperCamelCase ) -> List[str]: """simple docstring""" print('''\nThe shortest path matrix using Floyd Warshall algorithm\n''' ) for i in range(_UpperCamelCase ): for j in range(_UpperCamelCase ): if dist[i][j] != float('''inf''' ): print(int(dist[i][j] ) , end='''\t''' ) else: print('''INF''' , end='''\t''' ) print() def lowerCamelCase_ ( _UpperCamelCase , _UpperCamelCase ) -> Union[str, Any]: """simple docstring""" snake_case_ : int = [[float('''inf''' ) for _ in range(_UpperCamelCase )] for _ in range(_UpperCamelCase )] for i in range(_UpperCamelCase ): for j in range(_UpperCamelCase ): snake_case_ : Dict = graph[i][j] # check vertex k against all other vertices (i, j) for k in range(_UpperCamelCase ): # looping through rows of graph array for i in range(_UpperCamelCase ): # looping through columns of graph array for j in range(_UpperCamelCase ): if ( dist[i][k] != float('''inf''' ) and dist[k][j] != float('''inf''' ) and dist[i][k] + dist[k][j] < dist[i][j] ): snake_case_ : List[Any] = dist[i][k] + dist[k][j] _print_dist(_UpperCamelCase , _UpperCamelCase ) return dist, v if __name__ == "__main__": lowerCAmelCase_ = int(input('''Enter number of vertices: ''')) lowerCAmelCase_ = int(input('''Enter number of edges: ''')) lowerCAmelCase_ = [[float('''inf''') for i in range(v)] for j in range(v)] for i in range(v): lowerCAmelCase_ = 0.0 # src and dst are indices that must be within the array size graph[e][v] # failure to follow this will result in an error for i in range(e): print('''\nEdge ''', i + 1) lowerCAmelCase_ = int(input('''Enter source:''')) lowerCAmelCase_ = int(input('''Enter destination:''')) lowerCAmelCase_ = float(input('''Enter weight:''')) lowerCAmelCase_ = weight floyd_warshall(graph, v) # Example Input # Enter number of vertices: 3 # Enter number of edges: 2 # # generated graph from vertex and edge inputs # [[inf, inf, inf], [inf, inf, inf], [inf, inf, inf]] # [[0.0, inf, inf], [inf, 0.0, inf], [inf, inf, 0.0]] # specify source, destination and weight for edge #1 # Edge 1 # Enter source:1 # Enter destination:2 # Enter weight:2 # specify source, destination and weight for edge #2 # Edge 2 # Enter source:2 # Enter destination:1 # Enter weight:1 # # Expected Output from the vertice, edge and src, dst, weight inputs!! # 0 INF INF # INF 0 2 # INF 1 0
279
import argparse import logging import os import datasets import tensorflow as tf from transformers import AutoTokenizer lowerCAmelCase_ = logging.getLogger(__name__) def lowerCamelCase_ ( ) -> Optional[Any]: """simple docstring""" snake_case_ : List[str] = argparse.ArgumentParser( description='''Prepare TFRecord shards from pre-tokenized samples of the wikitext dataset.''' ) parser.add_argument( '''--dataset_name''' , type=_UpperCamelCase , default='''wikitext''' , help='''Name of the training. Explore datasets at: hf.co/datasets.''' , ) parser.add_argument( '''--dataset_config''' , type=_UpperCamelCase , default='''wikitext-103-raw-v1''' , help='''Configuration name of the dataset.''' ) parser.add_argument( '''--tokenizer_name_or_path''' , type=_UpperCamelCase , default='''sayakpaul/unigram-tokenizer-wikitext''' , help='''Tokenizer identifier. Can be a local filepath or a Hub identifier.''' , ) parser.add_argument( '''--shard_size''' , type=_UpperCamelCase , default=1_000 , help='''Number of entries to go in a single shard.''' , ) parser.add_argument('''--split''' , type=_UpperCamelCase , default='''train''' , choices=['''train''', '''test''', '''validation'''] ) parser.add_argument( '''--limit''' , default=_UpperCamelCase , type=_UpperCamelCase , help='''Limit the number of shards (used for debugging).''' , ) parser.add_argument( '''--max_length''' , type=_UpperCamelCase , default=512 , help='''Maximum sequence length. For training on TPUs, it helps to have a maximum''' ''' sequence length that is a multiple of 8.''' , ) parser.add_argument( '''--output_dir''' , default='''tf-tpu''' , type=_UpperCamelCase , help='''Output directory where the TFRecord shards will be saved. If the''' ''' path is appended with `gs://` (\'gs://tf-tpu\', for example) then the TFRecord''' ''' shards will be directly saved to a Google Cloud Storage bucket.''' , ) snake_case_ : List[Any] = parser.parse_args() return args def lowerCamelCase_ ( _UpperCamelCase ) -> Tuple: """simple docstring""" def fn(_UpperCamelCase ): return tokenizer(examples['''text'''] ) return fn def lowerCamelCase_ ( _UpperCamelCase ) -> Union[str, Any]: """simple docstring""" snake_case_ : Any = [] for i in range(len(tokenized_data['''input_ids'''] ) ): snake_case_ : Any = { '''input_ids''': tf.train.Feature(intaa_list=tf.train.IntaaList(value=tokenized_data['''input_ids'''][i] ) ), '''attention_mask''': tf.train.Feature( intaa_list=tf.train.IntaaList(value=tokenized_data['''attention_mask'''][i] ) ), } snake_case_ : Optional[int] = tf.train.Features(feature=_UpperCamelCase ) snake_case_ : Optional[Any] = tf.train.Example(features=_UpperCamelCase ) snake_case_ : Optional[Any] = example.SerializeToString() records.append(_UpperCamelCase ) return records def lowerCamelCase_ ( _UpperCamelCase ) -> Optional[int]: """simple docstring""" snake_case_ : int = datasets.load_dataset(args.dataset_name , args.dataset_config , split=args.split ) if args.limit is not None: snake_case_ : Union[str, Any] = min(len(_UpperCamelCase ) , args.limit ) snake_case_ : int = dataset.select(range(_UpperCamelCase ) ) print(f'''Limiting the dataset to {args.limit} entries.''' ) snake_case_ : Dict = AutoTokenizer.from_pretrained(args.tokenizer_name_or_path ) # Handle output directory creation. # For serializing into a Google Cloud Storage Bucket, one needs to first # create a bucket. if "gs" not in args.output_dir: if not os.path.exists(args.output_dir ): os.makedirs(args.output_dir ) snake_case_ : str = os.path.join(args.output_dir , args.split ) if not os.path.exists(_UpperCamelCase ): os.makedirs(_UpperCamelCase ) else: snake_case_ : Optional[Any] = os.path.join(args.output_dir , args.split ) # Tokenize the whole dataset at once. snake_case_ : Optional[Any] = tokenize_function(_UpperCamelCase ) snake_case_ : List[Any] = dataset.map(_UpperCamelCase , batched=_UpperCamelCase , num_proc=4 , remove_columns=['''text'''] ) # We need to concatenate all our texts together, and then split the result # into chunks of a fixed size, which we will call block_size. To do this, we # will use the map method again, with the option batched=True. When we use batched=True, # the function we pass to map() will be passed multiple inputs at once, allowing us # to group them into more or fewer examples than we had in the input. # This allows us to create our new fixed-length samples. The advantage of this # method is that we don't lose a whole lot of content from the dataset compared to the # case where we simply tokenize with a pre-defined max_length. def group_texts(_UpperCamelCase ): # Concatenate all texts. snake_case_ : Tuple = {k: sum(examples[k] , [] ) for k in examples.keys()} snake_case_ : List[str] = len(concatenated_examples[list(examples.keys() )[0]] ) # We drop the small remainder, though you could add padding instead if the model supports it # In this, as in all things, we advise you to follow your heart 🫀 snake_case_ : int = (total_length // args.max_length) * args.max_length # Split by chunks of max_len. snake_case_ : Union[str, Any] = { k: [t[i : i + args.max_length] for i in range(0 , _UpperCamelCase , args.max_length )] for k, t in concatenated_examples.items() } return result snake_case_ : int = dataset_tokenized.map(_UpperCamelCase , batched=_UpperCamelCase , batch_size=1_000 , num_proc=4 ) snake_case_ : str = 0 snake_case_ : Optional[Any] = 0 for shard in range(0 , len(_UpperCamelCase ) , args.shard_size ): snake_case_ : Any = grouped_dataset[shard : shard + args.shard_size] snake_case_ : str = len(dataset_snapshot['''input_ids'''] ) snake_case_ : Union[str, Any] = os.path.join(_UpperCamelCase , f'''dataset-{shard_count}-{records_containing}.tfrecord''' ) snake_case_ : Dict = get_serialized_examples(_UpperCamelCase ) with tf.io.TFRecordWriter(_UpperCamelCase ) as out_file: for i in range(len(_UpperCamelCase ) ): snake_case_ : List[str] = serialized_examples[i] out_file.write(_UpperCamelCase ) print('''Wrote file {} containing {} records'''.format(_UpperCamelCase , _UpperCamelCase ) ) shard_count += 1 total_records += records_containing with open(f'''split-{args.split}-records-count.txt''' , '''w''' ) as f: print(f'''Total {args.split} records: {total_records}''' , file=_UpperCamelCase ) if __name__ == "__main__": lowerCAmelCase_ = parse_args() main(args)
279
1
'''simple docstring''' import pickle import numpy as np from matplotlib import pyplot as plt class UpperCamelCase : """simple docstring""" def __init__( self : Dict , UpperCAmelCase_ : Optional[int] , UpperCAmelCase_ : Union[str, Any] , UpperCAmelCase_ : Tuple , UpperCAmelCase_ : str , UpperCAmelCase_ : Dict , UpperCAmelCase_ : str=0.2 , UpperCAmelCase_ : Optional[int]=0.2): """simple docstring""" a : int = bp_numa a : int = bp_numa a : List[Any] = bp_numa a : int = conva_get[:2] a : List[Any] = conva_get[2] a : List[Any] = size_pa a : Optional[Any] = rate_w a : Tuple = rate_t a : List[str] = [ np.mat(-1 * np.random.rand(self.conva[0] , self.conva[0]) + 0.5) for i in range(self.conva[1]) ] a : List[Any] = np.mat(-1 * np.random.rand(self.num_bpa , self.num_bpa) + 0.5) a : str = np.mat(-1 * np.random.rand(self.num_bpa , self.num_bpa) + 0.5) a : Dict = -2 * np.random.rand(self.conva[1]) + 1 a : List[str] = -2 * np.random.rand(self.num_bpa) + 1 a : Optional[Any] = -2 * np.random.rand(self.num_bpa) + 1 def SCREAMING_SNAKE_CASE_ ( self : Optional[Any] , UpperCAmelCase_ : Dict): """simple docstring""" a : Tuple = { 'num_bp1': self.num_bpa, 'num_bp2': self.num_bpa, 'num_bp3': self.num_bpa, 'conv1': self.conva, 'step_conv1': self.step_conva, 'size_pooling1': self.size_poolinga, 'rate_weight': self.rate_weight, 'rate_thre': self.rate_thre, 'w_conv1': self.w_conva, 'wkj': self.wkj, 'vji': self.vji, 'thre_conv1': self.thre_conva, 'thre_bp2': self.thre_bpa, 'thre_bp3': self.thre_bpa, } with open(UpperCAmelCase_ , 'wb') as f: pickle.dump(UpperCAmelCase_ , UpperCAmelCase_) print(f"""Model saved: {save_path}""") @classmethod def SCREAMING_SNAKE_CASE_ ( cls : List[str] , UpperCAmelCase_ : Optional[int]): """simple docstring""" with open(UpperCAmelCase_ , 'rb') as f: a : str = pickle.load(UpperCAmelCase_) # noqa: S301 a : Any = model_dic.get('conv1') conv_get.append(model_dic.get('step_conv1')) a : Dict = model_dic.get('size_pooling1') a : str = model_dic.get('num_bp1') a : Union[str, Any] = model_dic.get('num_bp2') a : str = model_dic.get('num_bp3') a : List[str] = model_dic.get('rate_weight') a : str = model_dic.get('rate_thre') # create model instance a : Optional[Any] = CNN(UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_) # modify model parameter a : Union[str, Any] = model_dic.get('w_conv1') a : int = model_dic.get('wkj') a : List[Any] = model_dic.get('vji') a : List[Any] = model_dic.get('thre_conv1') a : Optional[Any] = model_dic.get('thre_bp2') a : int = model_dic.get('thre_bp3') return conv_ins def SCREAMING_SNAKE_CASE_ ( self : int , UpperCAmelCase_ : int): """simple docstring""" return 1 / (1 + np.exp(-1 * x)) def SCREAMING_SNAKE_CASE_ ( self : List[Any] , UpperCAmelCase_ : List[str]): """simple docstring""" return round(UpperCAmelCase_ , 3) def SCREAMING_SNAKE_CASE_ ( self : int , UpperCAmelCase_ : int , UpperCAmelCase_ : List[str] , UpperCAmelCase_ : Optional[int] , UpperCAmelCase_ : List[Any] , UpperCAmelCase_ : List[Any]): """simple docstring""" a : Dict = convs[0] a : Tuple = convs[1] a : Any = np.shape(UpperCAmelCase_)[0] # get the data slice of original image data, data_focus a : str = [] for i_focus in range(0 , size_data - size_conv + 1 , UpperCAmelCase_): for j_focus in range(0 , size_data - size_conv + 1 , UpperCAmelCase_): a : Optional[Any] = data[ i_focus : i_focus + size_conv, j_focus : j_focus + size_conv ] data_focus.append(UpperCAmelCase_) # calculate the feature map of every single kernel, and saved as list of matrix a : Union[str, Any] = [] a : Optional[Any] = int((size_data - size_conv) / conv_step + 1) for i_map in range(UpperCAmelCase_): a : Union[str, Any] = [] for i_focus in range(len(UpperCAmelCase_)): a : List[Any] = ( np.sum(np.multiply(data_focus[i_focus] , w_convs[i_map])) - thre_convs[i_map] ) featuremap.append(self.sig(UpperCAmelCase_)) a : str = np.asmatrix(UpperCAmelCase_).reshape( UpperCAmelCase_ , UpperCAmelCase_) data_featuremap.append(UpperCAmelCase_) # expanding the data slice to One dimenssion a : Optional[int] = [] for each_focus in data_focus: focusa_list.extend(self.Expand_Mat(UpperCAmelCase_)) a : Union[str, Any] = np.asarray(UpperCAmelCase_) return focus_list, data_featuremap def SCREAMING_SNAKE_CASE_ ( self : Optional[int] , UpperCAmelCase_ : Tuple , UpperCAmelCase_ : Union[str, Any] , UpperCAmelCase_ : Tuple="average_pool"): """simple docstring""" a : Dict = len(featuremaps[0]) a : Union[str, Any] = int(size_map / size_pooling) a : Tuple = [] for i_map in range(len(UpperCAmelCase_)): a : Dict = featuremaps[i_map] a : str = [] for i_focus in range(0 , UpperCAmelCase_ , UpperCAmelCase_): for j_focus in range(0 , UpperCAmelCase_ , UpperCAmelCase_): a : Dict = feature_map[ i_focus : i_focus + size_pooling, j_focus : j_focus + size_pooling, ] if pooling_type == "average_pool": # average pooling map_pooled.append(np.average(UpperCAmelCase_)) elif pooling_type == "max_pooling": # max pooling map_pooled.append(np.max(UpperCAmelCase_)) a : Any = np.asmatrix(UpperCAmelCase_).reshape(UpperCAmelCase_ , UpperCAmelCase_) featuremap_pooled.append(UpperCAmelCase_) return featuremap_pooled def SCREAMING_SNAKE_CASE_ ( self : Union[str, Any] , UpperCAmelCase_ : Dict): """simple docstring""" a : int = [] for i in range(len(UpperCAmelCase_)): a : int = np.shape(data[i]) a : int = data[i].reshape(1 , shapes[0] * shapes[1]) a : Optional[Any] = data_listed.getA().tolist()[0] data_expanded.extend(UpperCAmelCase_) a : Optional[int] = np.asarray(UpperCAmelCase_) return data_expanded def SCREAMING_SNAKE_CASE_ ( self : Optional[int] , UpperCAmelCase_ : int): """simple docstring""" a : Any = np.asarray(UpperCAmelCase_) a : List[Any] = np.shape(UpperCAmelCase_) a : Optional[int] = data_mat.reshape(1 , shapes[0] * shapes[1]) return data_expanded def SCREAMING_SNAKE_CASE_ ( self : Union[str, Any] , UpperCAmelCase_ : Union[str, Any] , UpperCAmelCase_ : int , UpperCAmelCase_ : int , UpperCAmelCase_ : Union[str, Any] , UpperCAmelCase_ : str): """simple docstring""" a : Any = [] a : Optional[int] = 0 for i_map in range(UpperCAmelCase_): a : Any = np.ones((size_map, size_map)) for i in range(0 , UpperCAmelCase_ , UpperCAmelCase_): for j in range(0 , UpperCAmelCase_ , UpperCAmelCase_): a : Dict = pd_pool[ i_pool ] a : List[str] = i_pool + 1 a : Dict = np.multiply( UpperCAmelCase_ , np.multiply(out_map[i_map] , (1 - out_map[i_map]))) pd_all.append(UpperCAmelCase_) return pd_all def SCREAMING_SNAKE_CASE_ ( self : Optional[int] , UpperCAmelCase_ : List[str] , UpperCAmelCase_ : Optional[int] , UpperCAmelCase_ : Any , UpperCAmelCase_ : int , UpperCAmelCase_ : Union[str, Any] , UpperCAmelCase_ : List[Any]=bool): """simple docstring""" print('----------------------Start Training-------------------------') print((' - - Shape: Train_Data ', np.shape(UpperCAmelCase_))) print((' - - Shape: Teach_Data ', np.shape(UpperCAmelCase_))) a : Optional[Any] = 0 a : Dict = [] a : str = 1_0_0_0_0 while rp < n_repeat and mse >= error_accuracy: a : str = 0 print(f"""-------------Learning Time {rp}--------------""") for p in range(len(UpperCAmelCase_)): # print('------------Learning Image: %d--------------'%p) a : str = np.asmatrix(datas_train[p]) a : int = np.asarray(datas_teach[p]) a , a : Dict = self.convolute( UpperCAmelCase_ , self.conva , self.w_conva , self.thre_conva , conv_step=self.step_conva , ) a : Any = self.pooling(UpperCAmelCase_ , self.size_poolinga) a : Dict = np.shape(UpperCAmelCase_) a : List[Any] = self._expand(UpperCAmelCase_) a : Union[str, Any] = data_bp_input a : List[Any] = np.dot(UpperCAmelCase_ , self.vji.T) - self.thre_bpa a : List[Any] = self.sig(UpperCAmelCase_) a : str = np.dot(UpperCAmelCase_ , self.wkj.T) - self.thre_bpa a : List[str] = self.sig(UpperCAmelCase_) # --------------Model Leaning ------------------------ # calculate error and gradient--------------- a : int = np.multiply( (data_teach - bp_outa) , np.multiply(UpperCAmelCase_ , (1 - bp_outa))) a : Dict = np.multiply( np.dot(UpperCAmelCase_ , self.wkj) , np.multiply(UpperCAmelCase_ , (1 - bp_outa))) a : List[str] = np.dot(UpperCAmelCase_ , self.vji) a : Any = pd_i_all / (self.size_poolinga * self.size_poolinga) a : Any = pd_conva_pooled.T.getA().tolist() a : Dict = self._calculate_gradient_from_pool( UpperCAmelCase_ , UpperCAmelCase_ , shape_featuremapa[0] , shape_featuremapa[1] , self.size_poolinga , ) # weight and threshold learning process--------- # convolution layer for k_conv in range(self.conva[1]): a : Tuple = self._expand_mat(pd_conva_all[k_conv]) a : Any = self.rate_weight * np.dot(UpperCAmelCase_ , UpperCAmelCase_) a : List[str] = self.w_conva[k_conv] + delta_w.reshape( (self.conva[0], self.conva[0])) a : Tuple = ( self.thre_conva[k_conv] - np.sum(pd_conva_all[k_conv]) * self.rate_thre ) # all connected layer a : Tuple = self.wkj + pd_k_all.T * bp_outa * self.rate_weight a : List[str] = self.vji + pd_j_all.T * bp_outa * self.rate_weight a : str = self.thre_bpa - pd_k_all * self.rate_thre a : Optional[Any] = self.thre_bpa - pd_j_all * self.rate_thre # calculate the sum error of all single image a : Union[str, Any] = np.sum(abs(data_teach - bp_outa)) error_count += errors # print(' ----Teach ',data_teach) # print(' ----BP_output ',bp_out3) a : Union[str, Any] = rp + 1 a : Tuple = error_count / patterns all_mse.append(UpperCAmelCase_) def draw_error(): a : Tuple = [error_accuracy for i in range(int(n_repeat * 1.2))] plt.plot(UpperCAmelCase_ , '+-') plt.plot(UpperCAmelCase_ , 'r--') plt.xlabel('Learning Times') plt.ylabel('All_mse') plt.grid(UpperCAmelCase_ , alpha=0.5) plt.show() print('------------------Training Complished---------------------') print((' - - Training epoch: ', rp, f""" - - Mse: {mse:.6f}""")) if draw_e: draw_error() return mse def SCREAMING_SNAKE_CASE_ ( self : List[Any] , UpperCAmelCase_ : List[Any]): """simple docstring""" a : Dict = [] print('-------------------Start Testing-------------------------') print((' - - Shape: Test_Data ', np.shape(UpperCAmelCase_))) for p in range(len(UpperCAmelCase_)): a : int = np.asmatrix(datas_test[p]) a , a : int = self.convolute( UpperCAmelCase_ , self.conva , self.w_conva , self.thre_conva , conv_step=self.step_conva , ) a : Tuple = self.pooling(UpperCAmelCase_ , self.size_poolinga) a : str = self._expand(UpperCAmelCase_) a : str = data_bp_input a : Union[str, Any] = bp_outa * self.vji.T - self.thre_bpa a : Union[str, Any] = self.sig(UpperCAmelCase_) a : List[Any] = bp_outa * self.wkj.T - self.thre_bpa a : Tuple = self.sig(UpperCAmelCase_) produce_out.extend(bp_outa.getA().tolist()) a : Optional[int] = [list(map(self.do_round , UpperCAmelCase_)) for each in produce_out] return np.asarray(UpperCAmelCase_) def SCREAMING_SNAKE_CASE_ ( self : Union[str, Any] , UpperCAmelCase_ : Union[str, Any]): """simple docstring""" a : int = np.asmatrix(UpperCAmelCase_) a , a : int = self.convolute( UpperCAmelCase_ , self.conva , self.w_conva , self.thre_conva , conv_step=self.step_conva , ) a : Union[str, Any] = self.pooling(UpperCAmelCase_ , self.size_poolinga) return data_conveda, data_pooleda if __name__ == "__main__": pass
345
'''simple docstring''' import faiss # noqa: F401 # Here to have a nice missing dependency error message early on import numpy # noqa: F401 # Here to have a nice missing dependency error message early on import requests # noqa: F401 # Here to have a nice missing dependency error message early on import sklearn # noqa: F401 # Here to have a nice missing dependency error message early on import tqdm # noqa: F401 # Here to have a nice missing dependency error message early on from mauve import compute_mauve # From: mauve-text import datasets UpperCamelCase : Optional[int] = """\ @inproceedings{pillutla-etal:mauve:neurips2021, title={MAUVE: Measuring the Gap Between Neural Text and Human Text using Divergence Frontiers}, author={Pillutla, Krishna and Swayamdipta, Swabha and Zellers, Rowan and Thickstun, John and Welleck, Sean and Choi, Yejin and Harchaoui, Zaid}, booktitle = {NeurIPS}, year = {2021} } """ UpperCamelCase : Optional[Any] = """\ MAUVE is a library built on PyTorch and HuggingFace Transformers to measure the gap between neural text and human text with the eponymous MAUVE measure. MAUVE summarizes both Type I and Type II errors measured softly using Kullback–Leibler (KL) divergences. For details, see the MAUVE paper: https://arxiv.org/abs/2102.01454 (Neurips, 2021). This metrics is a wrapper around the official implementation of MAUVE: https://github.com/krishnap25/mauve """ UpperCamelCase : str = """ Calculates MAUVE scores between two lists of generated text and reference text. Args: predictions: list of generated text to score. Each predictions should be a string with tokens separated by spaces. references: list of reference for each prediction. Each reference should be a string with tokens separated by spaces. Optional Args: num_buckets: the size of the histogram to quantize P and Q. Options: 'auto' (default) or an integer pca_max_data: the number data points to use for PCA dimensionality reduction prior to clustering. If -1, use all the data. Default -1 kmeans_explained_var: amount of variance of the data to keep in dimensionality reduction by PCA. Default 0.9 kmeans_num_redo: number of times to redo k-means clustering (the best objective is kept). Default 5 kmeans_max_iter: maximum number of k-means iterations. Default 500 featurize_model_name: name of the model from which features are obtained. Default 'gpt2-large' Use one of ['gpt2', 'gpt2-medium', 'gpt2-large', 'gpt2-xl']. device_id: Device for featurization. Supply a GPU id (e.g. 0 or 3) to use GPU. If no GPU with this id is found, use CPU max_text_length: maximum number of tokens to consider. Default 1024 divergence_curve_discretization_size: Number of points to consider on the divergence curve. Default 25 mauve_scaling_factor: \"c\" from the paper. Default 5. verbose: If True (default), print running time updates seed: random seed to initialize k-means cluster assignments. Returns: mauve: MAUVE score, a number between 0 and 1. Larger values indicate that P and Q are closer, frontier_integral: Frontier Integral, a number between 0 and 1. Smaller values indicate that P and Q are closer, divergence_curve: a numpy.ndarray of shape (m, 2); plot it with matplotlib to view the divergence curve, p_hist: a discrete distribution, which is a quantized version of the text distribution p_text, q_hist: same as above, but with q_text. Examples: >>> # faiss segfaults in doctest for some reason, so the .compute call is not tested with doctest >>> import datasets >>> mauve = datasets.load_metric('mauve') >>> predictions = [\"hello there\", \"general kenobi\"] >>> references = [\"hello there\", \"general kenobi\"] >>> out = mauve.compute(predictions=predictions, references=references) # doctest: +SKIP >>> print(out.mauve) # doctest: +SKIP 1.0 """ @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class UpperCamelCase ( datasets.Metric ): """simple docstring""" def SCREAMING_SNAKE_CASE_ ( self : Optional[int]): """simple docstring""" return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , homepage='https://github.com/krishnap25/mauve' , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { 'predictions': datasets.Value('string' , id='sequence'), 'references': datasets.Value('string' , id='sequence'), }) , codebase_urls=['https://github.com/krishnap25/mauve'] , reference_urls=[ 'https://arxiv.org/abs/2102.01454', 'https://github.com/krishnap25/mauve', ] , ) def SCREAMING_SNAKE_CASE_ ( self : str , UpperCAmelCase_ : Union[str, Any] , UpperCAmelCase_ : Any , UpperCAmelCase_ : Optional[Any]=None , UpperCAmelCase_ : int=None , UpperCAmelCase_ : Any=None , UpperCAmelCase_ : Optional[int]=None , UpperCAmelCase_ : Tuple="auto" , UpperCAmelCase_ : Any=-1 , UpperCAmelCase_ : Optional[int]=0.9 , UpperCAmelCase_ : Union[str, Any]=5 , UpperCAmelCase_ : int=5_0_0 , UpperCAmelCase_ : int="gpt2-large" , UpperCAmelCase_ : Tuple=-1 , UpperCAmelCase_ : Dict=1_0_2_4 , UpperCAmelCase_ : List[str]=2_5 , UpperCAmelCase_ : int=5 , UpperCAmelCase_ : Any=True , UpperCAmelCase_ : str=2_5 , ): """simple docstring""" a : List[str] = compute_mauve( p_text=UpperCAmelCase_ , q_text=UpperCAmelCase_ , p_features=UpperCAmelCase_ , q_features=UpperCAmelCase_ , p_tokens=UpperCAmelCase_ , q_tokens=UpperCAmelCase_ , num_buckets=UpperCAmelCase_ , pca_max_data=UpperCAmelCase_ , kmeans_explained_var=UpperCAmelCase_ , kmeans_num_redo=UpperCAmelCase_ , kmeans_max_iter=UpperCAmelCase_ , featurize_model_name=UpperCAmelCase_ , device_id=UpperCAmelCase_ , max_text_length=UpperCAmelCase_ , divergence_curve_discretization_size=UpperCAmelCase_ , mauve_scaling_factor=UpperCAmelCase_ , verbose=UpperCAmelCase_ , seed=UpperCAmelCase_ , ) return out
345
1
'''simple docstring''' import collections import json import math import os import re import time from fnmatch import fnmatch from typing import Dict import requests from slack_sdk import WebClient A =WebClient(token=os.environ['CI_SLACK_BOT_TOKEN']) def snake_case_ (_a : Tuple ): UpperCAmelCase = test_results.split(''' ''' ) UpperCAmelCase = 0 UpperCAmelCase = 0 # When the output is short enough, the output is surrounded by = signs: "== OUTPUT ==" # When it is too long, those signs are not present. UpperCAmelCase = expressions[-2] if '''=''' in expressions[-1] else expressions[-1] for i, expression in enumerate(_a ): if "failed" in expression: failed += int(expressions[i - 1] ) if "passed" in expression: success += int(expressions[i - 1] ) return failed, success, time_spent def snake_case_ (_a : Optional[int] ): UpperCAmelCase = {} UpperCAmelCase = None UpperCAmelCase = False for line in failures_short_lines.split('''\n''' ): if re.search(R'''_ \[doctest\]''' , _a ): UpperCAmelCase = True UpperCAmelCase = line.split(''' ''' )[2] elif in_error and not line.split(''' ''' )[0].isdigit(): UpperCAmelCase = line UpperCAmelCase = False return failures class _a : def __init__( self : Dict , lowercase : str , lowercase : Dict ): '''simple docstring''' UpperCAmelCase = title UpperCAmelCase = doc_test_results['''time_spent'''].split(''',''' )[0] UpperCAmelCase = doc_test_results['''success'''] UpperCAmelCase = doc_test_results['''failures'''] UpperCAmelCase = self.n_success + self.n_failures # Failures and success of the modeling tests UpperCAmelCase = doc_test_results @property def A ( self : Any ): '''simple docstring''' UpperCAmelCase = [self._time_spent] UpperCAmelCase = 0 for time in time_spent: UpperCAmelCase = time.split(''':''' ) # Time can be formatted as xx:xx:xx, as .xx, or as x.xx if the time spent was less than a minute. if len(lowercase ) == 1: UpperCAmelCase = [0, 0, time_parts[0]] UpperCAmelCase , UpperCAmelCase , UpperCAmelCase = int(time_parts[0] ), int(time_parts[1] ), float(time_parts[2] ) total_secs += hours * 3_600 + minutes * 60 + seconds UpperCAmelCase , UpperCAmelCase , UpperCAmelCase = total_secs // 3_600, (total_secs % 3_600) // 60, total_secs % 60 return f"{int(lowercase )}h{int(lowercase )}m{int(lowercase )}s" @property def A ( self : int ): '''simple docstring''' return {"type": "header", "text": {"type": "plain_text", "text": self.title}} @property def A ( self : Union[str, Any] ): '''simple docstring''' return { "type": "section", "text": { "type": "plain_text", "text": f"🌞 There were no failures: all {self.n_tests} tests passed. The suite ran in {self.time}.", "emoji": True, }, "accessory": { "type": "button", "text": {"type": "plain_text", "text": "Check Action results", "emoji": True}, "url": f"https://github.com/huggingface/transformers/actions/runs/{os.environ['GITHUB_RUN_ID']}", }, } @property def A ( self : int ): '''simple docstring''' return { "type": "section", "text": { "type": "plain_text", "text": ( f"There were {self.n_failures} failures, out of {self.n_tests} tests.\nThe suite ran in" f" {self.time}." ), "emoji": True, }, "accessory": { "type": "button", "text": {"type": "plain_text", "text": "Check Action results", "emoji": True}, "url": f"https://github.com/huggingface/transformers/actions/runs/{os.environ['GITHUB_RUN_ID']}", }, } @property def A ( self : Optional[int] ): '''simple docstring''' UpperCAmelCase = 40 UpperCAmelCase = {k: v['''failed'''] for k, v in doc_test_results.items() if isinstance(lowercase , lowercase )} UpperCAmelCase = '''''' for category, failures in category_failures.items(): if len(lowercase ) == 0: continue if report != "": report += "\n\n" report += f"*{category} failures*:".ljust(line_length // 2 ).rjust(line_length // 2 ) + "\n" report += "`" report += "`\n`".join(lowercase ) report += "`" return { "type": "section", "text": { "type": "mrkdwn", "text": f"The following examples had failures:\n\n\n{report}\n", }, } @property def A ( self : Any ): '''simple docstring''' UpperCAmelCase = [self.header] if self.n_failures > 0: blocks.append(self.failures ) if self.n_failures > 0: blocks.extend([self.category_failures] ) if self.n_failures == 0: blocks.append(self.no_failures ) return json.dumps(lowercase ) @staticmethod def A ( ): '''simple docstring''' UpperCAmelCase = [ { '''type''': '''section''', '''text''': { '''type''': '''plain_text''', '''text''': '''There was an issue running the tests.''', }, '''accessory''': { '''type''': '''button''', '''text''': {'''type''': '''plain_text''', '''text''': '''Check Action results''', '''emoji''': True}, '''url''': f"https://github.com/huggingface/transformers/actions/runs/{os.environ['GITHUB_RUN_ID']}", }, } ] print('''Sending the following payload''' ) print(json.dumps({'''blocks''': json.loads(lowercase )} ) ) client.chat_postMessage( channel=os.environ['''CI_SLACK_CHANNEL_ID_DAILY'''] , text='''There was an issue running the tests.''' , blocks=lowercase , ) def A ( self : Optional[Any] ): '''simple docstring''' print('''Sending the following payload''' ) print(json.dumps({'''blocks''': json.loads(self.payload )} ) ) UpperCAmelCase = f"{self.n_failures} failures out of {self.n_tests} tests," if self.n_failures else '''All tests passed.''' UpperCAmelCase = client.chat_postMessage( channel=os.environ['''CI_SLACK_CHANNEL_ID_DAILY'''] , blocks=self.payload , text=lowercase , ) def A ( self : Optional[int] , lowercase : Any , lowercase : Any , lowercase : Union[str, Any] , lowercase : List[str] ): '''simple docstring''' UpperCAmelCase = '''''' for key, value in failures.items(): UpperCAmelCase = value[:200] + ''' [Truncated]''' if len(lowercase ) > 250 else value failures_text += f"*{key}*\n_{value}_\n\n" UpperCAmelCase = job_name UpperCAmelCase = {'''type''': '''section''', '''text''': {'''type''': '''mrkdwn''', '''text''': text}} if job_link is not None: UpperCAmelCase = { '''type''': '''button''', '''text''': {'''type''': '''plain_text''', '''text''': '''GitHub Action job''', '''emoji''': True}, '''url''': job_link, } return [ {"type": "header", "text": {"type": "plain_text", "text": title.upper(), "emoji": True}}, content, {"type": "section", "text": {"type": "mrkdwn", "text": failures_text}}, ] def A ( self : Optional[int] ): '''simple docstring''' if self.thread_ts is None: raise ValueError('''Can only post reply if a post has been made.''' ) UpperCAmelCase = self.doc_test_results.pop('''job_link''' ) self.doc_test_results.pop('''failures''' ) self.doc_test_results.pop('''success''' ) self.doc_test_results.pop('''time_spent''' ) UpperCAmelCase = sorted(self.doc_test_results.items() , key=lambda lowercase : t[0] ) for job, job_result in sorted_dict: if len(job_result['''failures'''] ): UpperCAmelCase = f"*Num failures* :{len(job_result['failed'] )} \n" UpperCAmelCase = job_result['''failures'''] UpperCAmelCase = self.get_reply_blocks(lowercase , lowercase , lowercase , text=lowercase ) print('''Sending the following reply''' ) print(json.dumps({'''blocks''': blocks} ) ) client.chat_postMessage( channel=os.environ['''CI_SLACK_CHANNEL_ID_DAILY'''] , text=f"Results for {job}" , blocks=lowercase , thread_ts=self.thread_ts['''ts'''] , ) time.sleep(1 ) def snake_case_ (): UpperCAmelCase = os.environ['''GITHUB_RUN_ID'''] UpperCAmelCase = F"https://api.github.com/repos/huggingface/transformers/actions/runs/{run_id}/jobs?per_page=100" UpperCAmelCase = requests.get(_a ).json() UpperCAmelCase = {} try: jobs.update({job['''name''']: job['''html_url'''] for job in result['''jobs''']} ) UpperCAmelCase = math.ceil((result['''total_count'''] - 1_0_0) / 1_0_0 ) for i in range(_a ): UpperCAmelCase = requests.get(url + F"&page={i + 2}" ).json() jobs.update({job['''name''']: job['''html_url'''] for job in result['''jobs''']} ) return jobs except Exception as e: print('''Unknown error, could not fetch links.''' , _a ) return {} def snake_case_ (_a : str ): UpperCAmelCase = {} if os.path.exists(_a ): UpperCAmelCase = os.listdir(_a ) for file in files: try: with open(os.path.join(_a , _a ) , encoding='''utf-8''' ) as f: UpperCAmelCase = f.read() except UnicodeDecodeError as e: raise ValueError(F"Could not open {os.path.join(_a , _a )}." ) from e return _artifact def snake_case_ (): class _a : def __init__( self : Any , lowercase : str ): '''simple docstring''' UpperCAmelCase = name UpperCAmelCase = [] def __str__( self : Tuple ): '''simple docstring''' return self.name def A ( self : List[Any] , lowercase : str ): '''simple docstring''' self.paths.append({'''name''': self.name, '''path''': path} ) UpperCAmelCase = {} UpperCAmelCase = filter(os.path.isdir , os.listdir() ) for directory in directories: UpperCAmelCase = directory if artifact_name not in _available_artifacts: UpperCAmelCase = Artifact(_a ) _available_artifacts[artifact_name].add_path(_a ) return _available_artifacts if __name__ == "__main__": A =get_job_links() A =retrieve_available_artifacts() A =collections.OrderedDict( [ ('*.py', 'API Examples'), ('*.md', 'MD Examples'), ] ) # This dict will contain all the information relative to each doc test category: # - failed: list of failed tests # - failures: dict in the format 'test': 'error_message' A ={ v: { 'failed': [], 'failures': {}, } for v in docs.values() } # Link to the GitHub Action job A =github_actions_job_links.get('run_doctests') A =available_artifacts['doc_tests_gpu_test_reports'].paths[0] A =retrieve_artifact(artifact_path['name']) if "stats" in artifact: A , A , A =handle_test_results(artifact['stats']) A =failed A =success A =time_spent[1:-1] + ', ' A =extract_first_line_failure(artifact['failures_short']) for line in artifact["summary_short"].split('\n'): if re.search('FAILED', line): A =line.replace('FAILED ', '') A =line.split()[0].replace('\n', '') if "::" in line: A , A =line.split('::') else: A , A =line, line for file_regex in docs.keys(): if fnmatch(file_path, file_regex): A =docs[file_regex] doc_test_results[category]["failed"].append(test) A =all_failures[test] if test in all_failures else 'N/A' A =failure break A =Message('🤗 Results of the doc tests.', doc_test_results) message.post() message.post_reply()
34
'''simple docstring''' class _a : def __init__( self : Any ): '''simple docstring''' UpperCAmelCase = {} # Mapping from char to TrieNode UpperCAmelCase = False def A ( self : int , lowercase : list[str] ): '''simple docstring''' for word in words: self.insert(lowercase ) def A ( self : Optional[int] , lowercase : str ): '''simple docstring''' UpperCAmelCase = self for char in word: if char not in curr.nodes: UpperCAmelCase = TrieNode() UpperCAmelCase = curr.nodes[char] UpperCAmelCase = True def A ( self : Optional[int] , lowercase : str ): '''simple docstring''' UpperCAmelCase = self for char in word: if char not in curr.nodes: return False UpperCAmelCase = curr.nodes[char] return curr.is_leaf def A ( self : str , lowercase : str ): '''simple docstring''' def _delete(lowercase : TrieNode , lowercase : str , lowercase : int ) -> bool: if index == len(lowercase ): # If word does not exist if not curr.is_leaf: return False UpperCAmelCase = False return len(curr.nodes ) == 0 UpperCAmelCase = word[index] UpperCAmelCase = curr.nodes.get(lowercase ) # If char not in current trie node if not char_node: return False # Flag to check if node can be deleted UpperCAmelCase = _delete(lowercase , lowercase , index + 1 ) if delete_curr: del curr.nodes[char] return len(curr.nodes ) == 0 return delete_curr _delete(self , lowercase , 0 ) def snake_case_ (_a : TrieNode , _a : str ): if node.is_leaf: print(_a , end=''' ''' ) for key, value in node.nodes.items(): print_words(_a , word + key ) def snake_case_ (): UpperCAmelCase = '''banana bananas bandana band apple all beast'''.split() UpperCAmelCase = TrieNode() root.insert_many(_a ) # print_words(root, "") assert all(root.find(_a ) for word in words ) assert root.find('''banana''' ) assert not root.find('''bandanas''' ) assert not root.find('''apps''' ) assert root.find('''apple''' ) assert root.find('''all''' ) root.delete('''all''' ) assert not root.find('''all''' ) root.delete('''banana''' ) assert not root.find('''banana''' ) assert root.find('''bananas''' ) return True def snake_case_ (_a : str , _a : bool ): print(str(_a ) , '''works!''' if passes else '''doesn\'t work :(''' ) def snake_case_ (): assert test_trie() def snake_case_ (): print_results('''Testing trie functionality''' , test_trie() ) if __name__ == "__main__": main()
34
1
"""simple docstring""" import argparse import json from pathlib import Path import requests import torch from huggingface_hub import cached_download, hf_hub_download, hf_hub_url from PIL import Image from transformers import DetaConfig, DetaForObjectDetection, DetaImageProcessor, SwinConfig from transformers.utils import logging logging.set_verbosity_info() _snake_case = logging.get_logger(__name__) def _UpperCamelCase ( snake_case__ ) -> Tuple: __UpperCAmelCase : List[str] = SwinConfig( embed_dim=192, depths=(2, 2, 18, 2), num_heads=(6, 12, 24, 48), window_size=12, out_features=["stage2", "stage3", "stage4"], ) __UpperCAmelCase : Any = DetaConfig( backbone_config=_lowerCamelCase, num_queries=900, encoder_ffn_dim=2048, decoder_ffn_dim=2048, num_feature_levels=5, assign_first_stage=_lowerCamelCase, with_box_refine=_lowerCamelCase, two_stage=_lowerCamelCase, ) # set labels __UpperCAmelCase : Any = """huggingface/label-files""" if "o365" in model_name: __UpperCAmelCase : str = 366 __UpperCAmelCase : Union[str, Any] = """object365-id2label.json""" else: __UpperCAmelCase : str = 91 __UpperCAmelCase : Any = """coco-detection-id2label.json""" __UpperCAmelCase : Dict = num_labels __UpperCAmelCase : str = json.load(open(cached_download(hf_hub_url(_lowerCamelCase, _lowerCamelCase, repo_type="dataset" ) ), "r" ) ) __UpperCAmelCase : str = {int(_lowerCamelCase ): v for k, v in idalabel.items()} __UpperCAmelCase : str = idalabel __UpperCAmelCase : Optional[Any] = {v: k for k, v in idalabel.items()} return config def _UpperCamelCase ( snake_case__ ) -> List[Any]: __UpperCAmelCase : Any = [] # stem # fmt: off rename_keys.append(("backbone.0.body.patch_embed.proj.weight", "model.backbone.model.embeddings.patch_embeddings.projection.weight") ) rename_keys.append(("backbone.0.body.patch_embed.proj.bias", "model.backbone.model.embeddings.patch_embeddings.projection.bias") ) rename_keys.append(("backbone.0.body.patch_embed.norm.weight", "model.backbone.model.embeddings.norm.weight") ) rename_keys.append(("backbone.0.body.patch_embed.norm.bias", "model.backbone.model.embeddings.norm.bias") ) # stages for i in range(len(config.backbone_config.depths ) ): for j in range(config.backbone_config.depths[i] ): rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.norm1.weight''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.layernorm_before.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.norm1.bias''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.layernorm_before.bias''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.attn.relative_position_bias_table''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.attention.self.relative_position_bias_table''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.attn.relative_position_index''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.attention.self.relative_position_index''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.attn.proj.weight''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.attention.output.dense.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.attn.proj.bias''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.attention.output.dense.bias''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.norm2.weight''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.layernorm_after.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.norm2.bias''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.layernorm_after.bias''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.mlp.fc1.weight''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.intermediate.dense.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.mlp.fc1.bias''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.intermediate.dense.bias''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.mlp.fc2.weight''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.output.dense.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.blocks.{j}.mlp.fc2.bias''', f'''model.backbone.model.encoder.layers.{i}.blocks.{j}.output.dense.bias''') ) if i < 3: rename_keys.append((f'''backbone.0.body.layers.{i}.downsample.reduction.weight''', f'''model.backbone.model.encoder.layers.{i}.downsample.reduction.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.downsample.norm.weight''', f'''model.backbone.model.encoder.layers.{i}.downsample.norm.weight''') ) rename_keys.append((f'''backbone.0.body.layers.{i}.downsample.norm.bias''', f'''model.backbone.model.encoder.layers.{i}.downsample.norm.bias''') ) rename_keys.append(("backbone.0.body.norm1.weight", "model.backbone.model.hidden_states_norms.stage2.weight") ) rename_keys.append(("backbone.0.body.norm1.bias", "model.backbone.model.hidden_states_norms.stage2.bias") ) rename_keys.append(("backbone.0.body.norm2.weight", "model.backbone.model.hidden_states_norms.stage3.weight") ) rename_keys.append(("backbone.0.body.norm2.bias", "model.backbone.model.hidden_states_norms.stage3.bias") ) rename_keys.append(("backbone.0.body.norm3.weight", "model.backbone.model.hidden_states_norms.stage4.weight") ) rename_keys.append(("backbone.0.body.norm3.bias", "model.backbone.model.hidden_states_norms.stage4.bias") ) # transformer encoder for i in range(config.encoder_layers ): rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.sampling_offsets.weight''', f'''model.encoder.layers.{i}.self_attn.sampling_offsets.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.sampling_offsets.bias''', f'''model.encoder.layers.{i}.self_attn.sampling_offsets.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.attention_weights.weight''', f'''model.encoder.layers.{i}.self_attn.attention_weights.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.attention_weights.bias''', f'''model.encoder.layers.{i}.self_attn.attention_weights.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.value_proj.weight''', f'''model.encoder.layers.{i}.self_attn.value_proj.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.value_proj.bias''', f'''model.encoder.layers.{i}.self_attn.value_proj.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.output_proj.weight''', f'''model.encoder.layers.{i}.self_attn.output_proj.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.self_attn.output_proj.bias''', f'''model.encoder.layers.{i}.self_attn.output_proj.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.norm1.weight''', f'''model.encoder.layers.{i}.self_attn_layer_norm.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.norm1.bias''', f'''model.encoder.layers.{i}.self_attn_layer_norm.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.linear1.weight''', f'''model.encoder.layers.{i}.fc1.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.linear1.bias''', f'''model.encoder.layers.{i}.fc1.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.linear2.weight''', f'''model.encoder.layers.{i}.fc2.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.linear2.bias''', f'''model.encoder.layers.{i}.fc2.bias''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.norm2.weight''', f'''model.encoder.layers.{i}.final_layer_norm.weight''') ) rename_keys.append((f'''transformer.encoder.layers.{i}.norm2.bias''', f'''model.encoder.layers.{i}.final_layer_norm.bias''') ) # transformer decoder for i in range(config.decoder_layers ): rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.sampling_offsets.weight''', f'''model.decoder.layers.{i}.encoder_attn.sampling_offsets.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.sampling_offsets.bias''', f'''model.decoder.layers.{i}.encoder_attn.sampling_offsets.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.attention_weights.weight''', f'''model.decoder.layers.{i}.encoder_attn.attention_weights.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.attention_weights.bias''', f'''model.decoder.layers.{i}.encoder_attn.attention_weights.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.value_proj.weight''', f'''model.decoder.layers.{i}.encoder_attn.value_proj.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.value_proj.bias''', f'''model.decoder.layers.{i}.encoder_attn.value_proj.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.output_proj.weight''', f'''model.decoder.layers.{i}.encoder_attn.output_proj.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.cross_attn.output_proj.bias''', f'''model.decoder.layers.{i}.encoder_attn.output_proj.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.norm1.weight''', f'''model.decoder.layers.{i}.encoder_attn_layer_norm.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.norm1.bias''', f'''model.decoder.layers.{i}.encoder_attn_layer_norm.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.self_attn.out_proj.weight''', f'''model.decoder.layers.{i}.self_attn.out_proj.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.self_attn.out_proj.bias''', f'''model.decoder.layers.{i}.self_attn.out_proj.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.norm2.weight''', f'''model.decoder.layers.{i}.self_attn_layer_norm.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.norm2.bias''', f'''model.decoder.layers.{i}.self_attn_layer_norm.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.linear1.weight''', f'''model.decoder.layers.{i}.fc1.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.linear1.bias''', f'''model.decoder.layers.{i}.fc1.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.linear2.weight''', f'''model.decoder.layers.{i}.fc2.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.linear2.bias''', f'''model.decoder.layers.{i}.fc2.bias''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.norm3.weight''', f'''model.decoder.layers.{i}.final_layer_norm.weight''') ) rename_keys.append((f'''transformer.decoder.layers.{i}.norm3.bias''', f'''model.decoder.layers.{i}.final_layer_norm.bias''') ) # fmt: on return rename_keys def _UpperCamelCase ( snake_case__, snake_case__, snake_case__ ) -> Tuple: __UpperCAmelCase : Optional[int] = dct.pop(_lowerCamelCase ) __UpperCAmelCase : Tuple = val def _UpperCamelCase ( snake_case__, snake_case__ ) -> List[Any]: __UpperCAmelCase : Dict = [int(backbone_config.embed_dim * 2**i ) for i in range(len(backbone_config.depths ) )] for i in range(len(backbone_config.depths ) ): __UpperCAmelCase : int = num_features[i] for j in range(backbone_config.depths[i] ): # fmt: off # read in weights + bias of input projection layer (in original implementation, this is a single matrix + bias) __UpperCAmelCase : int = state_dict.pop(f'''backbone.0.body.layers.{i}.blocks.{j}.attn.qkv.weight''' ) __UpperCAmelCase : Optional[Any] = state_dict.pop(f'''backbone.0.body.layers.{i}.blocks.{j}.attn.qkv.bias''' ) # next, add query, keys and values (in that order) to the state dict __UpperCAmelCase : List[str] = in_proj_weight[:dim, :] __UpperCAmelCase : int = in_proj_bias[: dim] __UpperCAmelCase : Dict = in_proj_weight[ dim : dim * 2, : ] __UpperCAmelCase : Optional[Any] = in_proj_bias[ dim : dim * 2 ] __UpperCAmelCase : List[str] = in_proj_weight[ -dim :, : ] __UpperCAmelCase : Optional[int] = in_proj_bias[-dim :] # fmt: on def _UpperCamelCase ( snake_case__, snake_case__ ) -> int: __UpperCAmelCase : Optional[int] = config.d_model for i in range(config.decoder_layers ): # read in weights + bias of input projection layer of self-attention __UpperCAmelCase : List[Any] = state_dict.pop(f'''transformer.decoder.layers.{i}.self_attn.in_proj_weight''' ) __UpperCAmelCase : str = state_dict.pop(f'''transformer.decoder.layers.{i}.self_attn.in_proj_bias''' ) # next, add query, keys and values (in that order) to the state dict __UpperCAmelCase : Optional[Any] = in_proj_weight[:hidden_size, :] __UpperCAmelCase : Tuple = in_proj_bias[:hidden_size] __UpperCAmelCase : Any = in_proj_weight[ hidden_size : hidden_size * 2, : ] __UpperCAmelCase : Optional[int] = in_proj_bias[hidden_size : hidden_size * 2] __UpperCAmelCase : Optional[Any] = in_proj_weight[-hidden_size:, :] __UpperCAmelCase : Optional[int] = in_proj_bias[-hidden_size:] def _UpperCamelCase ( ) -> Any: __UpperCAmelCase : int = """http://images.cocodataset.org/val2017/000000039769.jpg""" __UpperCAmelCase : Dict = Image.open(requests.get(_lowerCamelCase, stream=_lowerCamelCase ).raw ) return im @torch.no_grad() def _UpperCamelCase ( snake_case__, snake_case__, snake_case__ ) -> Optional[int]: __UpperCAmelCase : List[Any] = get_deta_config(_lowerCamelCase ) # load original state dict if model_name == "deta-swin-large": __UpperCAmelCase : List[Any] = hf_hub_download(repo_id="nielsr/deta-checkpoints", filename="adet_swin_ft.pth" ) elif model_name == "deta-swin-large-o365": __UpperCAmelCase : Optional[int] = hf_hub_download(repo_id="jozhang97/deta-swin-l-o365", filename="deta_swin_pt_o365.pth" ) else: raise ValueError(f'''Model name {model_name} not supported''' ) __UpperCAmelCase : str = torch.load(_lowerCamelCase, map_location="cpu" )["""model"""] # original state dict for name, param in state_dict.items(): print(_lowerCamelCase, param.shape ) # rename keys __UpperCAmelCase : List[str] = create_rename_keys(_lowerCamelCase ) for src, dest in rename_keys: rename_key(_lowerCamelCase, _lowerCamelCase, _lowerCamelCase ) read_in_swin_q_k_v(_lowerCamelCase, config.backbone_config ) read_in_decoder_q_k_v(_lowerCamelCase, _lowerCamelCase ) # fix some prefixes for key in state_dict.copy().keys(): if "transformer.decoder.class_embed" in key or "transformer.decoder.bbox_embed" in key: __UpperCAmelCase : List[str] = state_dict.pop(_lowerCamelCase ) __UpperCAmelCase : Tuple = val if "input_proj" in key: __UpperCAmelCase : List[str] = state_dict.pop(_lowerCamelCase ) __UpperCAmelCase : Any = val if "level_embed" in key or "pos_trans" in key or "pix_trans" in key or "enc_output" in key: __UpperCAmelCase : int = state_dict.pop(_lowerCamelCase ) __UpperCAmelCase : Union[str, Any] = val # finally, create HuggingFace model and load state dict __UpperCAmelCase : Dict = DetaForObjectDetection(_lowerCamelCase ) model.load_state_dict(_lowerCamelCase ) model.eval() __UpperCAmelCase : Dict = """cuda""" if torch.cuda.is_available() else """cpu""" model.to(_lowerCamelCase ) # load image processor __UpperCAmelCase : str = DetaImageProcessor(format="coco_detection" ) # verify our conversion on image __UpperCAmelCase : Optional[int] = prepare_img() __UpperCAmelCase : Tuple = processor(images=_lowerCamelCase, return_tensors="pt" ) __UpperCAmelCase : Union[str, Any] = encoding["""pixel_values"""] __UpperCAmelCase : List[str] = model(pixel_values.to(_lowerCamelCase ) ) # verify logits print("Logits:", outputs.logits[0, :3, :3] ) print("Boxes:", outputs.pred_boxes[0, :3, :3] ) if model_name == "deta-swin-large": __UpperCAmelCase : Tuple = torch.tensor( [[-7.6308, -2.8485, -5.3737], [-7.2037, -4.5505, -4.8027], [-7.2943, -4.2611, -4.6617]] ) __UpperCAmelCase : Optional[int] = torch.tensor([[0.4987, 0.4969, 0.9999], [0.2549, 0.5498, 0.4805], [0.5498, 0.2757, 0.0569]] ) elif model_name == "deta-swin-large-o365": __UpperCAmelCase : Dict = torch.tensor( [[-8.0122, -3.5720, -4.9717], [-8.1547, -3.6886, -4.6389], [-7.6610, -3.6194, -5.0134]] ) __UpperCAmelCase : List[str] = torch.tensor([[0.2523, 0.5549, 0.4881], [0.7715, 0.4149, 0.4601], [0.5503, 0.2753, 0.0575]] ) assert torch.allclose(outputs.logits[0, :3, :3], expected_logits.to(_lowerCamelCase ), atol=1e-4 ) assert torch.allclose(outputs.pred_boxes[0, :3, :3], expected_boxes.to(_lowerCamelCase ), atol=1e-4 ) print("Everything ok!" ) if pytorch_dump_folder_path: # Save model and processor logger.info(f'''Saving PyTorch model and processor to {pytorch_dump_folder_path}...''' ) Path(_lowerCamelCase ).mkdir(exist_ok=_lowerCamelCase ) model.save_pretrained(_lowerCamelCase ) processor.save_pretrained(_lowerCamelCase ) # Push to hub if push_to_hub: print("Pushing model and processor to hub..." ) model.push_to_hub(f'''jozhang97/{model_name}''' ) processor.push_to_hub(f'''jozhang97/{model_name}''' ) if __name__ == "__main__": _snake_case = argparse.ArgumentParser() parser.add_argument( '''--model_name''', type=str, default='''deta-swin-large''', choices=['''deta-swin-large''', '''deta-swin-large-o365'''], help='''Name of the model you\'d like to convert.''', ) parser.add_argument( '''--pytorch_dump_folder_path''', default=None, type=str, help='''Path to the folder to output PyTorch model.''', ) parser.add_argument( '''--push_to_hub''', action='''store_true''', help='''Whether or not to push the converted model to the 🤗 hub.''' ) _snake_case = parser.parse_args() convert_deta_checkpoint(args.model_name, args.pytorch_dump_folder_path, args.push_to_hub)
363
import logging import os from .state import PartialState class _snake_case ( logging.LoggerAdapter ): @staticmethod def _lowerCamelCase ( __lowerCamelCase: Any ) -> int: __UpperCAmelCase : str = PartialState() return not main_process_only or (main_process_only and state.is_main_process) def _lowerCamelCase ( self: Tuple , __lowerCamelCase: Union[str, Any] , __lowerCamelCase: Optional[Any] , *__lowerCamelCase: List[str] , **__lowerCamelCase: List[Any] ) -> Optional[int]: if PartialState._shared_state == {}: raise RuntimeError( "You must initialize the accelerate state by calling either `PartialState()` or `Accelerator()` before using the logging utility." ) __UpperCAmelCase : Any = kwargs.pop("main_process_only" , __lowerCamelCase ) __UpperCAmelCase : Union[str, Any] = kwargs.pop("in_order" , __lowerCamelCase ) if self.isEnabledFor(__lowerCamelCase ): if self._should_log(__lowerCamelCase ): __UpperCAmelCase , __UpperCAmelCase : int = self.process(__lowerCamelCase , __lowerCamelCase ) self.logger.log(__lowerCamelCase , __lowerCamelCase , *__lowerCamelCase , **__lowerCamelCase ) elif in_order: __UpperCAmelCase : Optional[int] = PartialState() for i in range(state.num_processes ): if i == state.process_index: __UpperCAmelCase , __UpperCAmelCase : List[Any] = self.process(__lowerCamelCase , __lowerCamelCase ) self.logger.log(__lowerCamelCase , __lowerCamelCase , *__lowerCamelCase , **__lowerCamelCase ) state.wait_for_everyone() def _UpperCamelCase ( snake_case__, snake_case__ = None ) -> List[str]: if log_level is None: __UpperCAmelCase : List[Any] = os.environ.get("ACCELERATE_LOG_LEVEL", snake_case__ ) __UpperCAmelCase : Union[str, Any] = logging.getLogger(snake_case__ ) if log_level is not None: logger.setLevel(log_level.upper() ) logger.root.setLevel(log_level.upper() ) return MultiProcessAdapter(snake_case__, {} )
342
0
from __future__ import annotations import unittest from transformers import DebertaVaConfig, is_tf_available from transformers.testing_utils import require_tf, slow from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import ( TFDebertaVaForMaskedLM, TFDebertaVaForQuestionAnswering, TFDebertaVaForSequenceClassification, TFDebertaVaForTokenClassification, TFDebertaVaModel, ) class SCREAMING_SNAKE_CASE_ : def __init__( self : Any , _A : int , _A : Optional[int]=13 , _A : str=7 , _A : int=True , _A : List[str]=True , _A : Dict=True , _A : Any=True , _A : Tuple=99 , _A : Optional[Any]=32 , _A : Optional[int]=2 , _A : Tuple=4 , _A : Tuple=37 , _A : Union[str, Any]="gelu" , _A : List[str]=0.1 , _A : int=0.1 , _A : str=512 , _A : Union[str, Any]=16 , _A : List[Any]=2 , _A : str=0.0_2 , _A : int=False , _A : Union[str, Any]=True , _A : Optional[Any]="None" , _A : Optional[int]=3 , _A : Any=4 , _A : Optional[int]=None , ) -> Optional[Any]: """simple docstring""" snake_case_ : Any = parent snake_case_ : Any = batch_size snake_case_ : Optional[Any] = seq_length snake_case_ : List[str] = is_training snake_case_ : List[str] = use_input_mask snake_case_ : List[str] = use_token_type_ids snake_case_ : Optional[Any] = use_labels snake_case_ : Optional[Any] = vocab_size snake_case_ : str = hidden_size snake_case_ : Optional[Any] = num_hidden_layers snake_case_ : List[Any] = num_attention_heads snake_case_ : List[str] = intermediate_size snake_case_ : Union[str, Any] = hidden_act snake_case_ : Any = hidden_dropout_prob snake_case_ : str = attention_probs_dropout_prob snake_case_ : Optional[Any] = max_position_embeddings snake_case_ : int = type_vocab_size snake_case_ : Any = type_sequence_label_size snake_case_ : Any = initializer_range snake_case_ : Tuple = num_labels snake_case_ : str = num_choices snake_case_ : Optional[Any] = relative_attention snake_case_ : Tuple = position_biased_input snake_case_ : int = pos_att_type snake_case_ : str = scope def UpperCAmelCase_ ( self : int ) -> Any: """simple docstring""" snake_case_ : Dict = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case_ : Optional[int] = None if self.use_input_mask: snake_case_ : Any = random_attention_mask([self.batch_size, self.seq_length] ) snake_case_ : Union[str, Any] = None if self.use_token_type_ids: snake_case_ : Any = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case_ : Tuple = None snake_case_ : str = None snake_case_ : Dict = None if self.use_labels: snake_case_ : Tuple = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case_ : List[Any] = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case_ : int = DebertaVaConfig( vocab_size=self.vocab_size , hidden_size=self.hidden_size , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , type_vocab_size=self.type_vocab_size , relative_attention=self.relative_attention , position_biased_input=self.position_biased_input , initializer_range=self.initializer_range , return_dict=UpperCAmelCase_ , ) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase_ ( self : Optional[Any] , _A : int , _A : Optional[Any] , _A : str , _A : int , _A : List[str] , _A : List[str] , _A : Union[str, Any] ) -> Union[str, Any]: """simple docstring""" snake_case_ : int = TFDebertaVaModel(config=UpperCAmelCase_ ) snake_case_ : Optional[Any] = {'input_ids': input_ids, 'attention_mask': input_mask, 'token_type_ids': token_type_ids} snake_case_ : Union[str, Any] = [input_ids, input_mask] snake_case_ : Tuple = model(UpperCAmelCase_ ) snake_case_ : Optional[int] = model(UpperCAmelCase_ ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def UpperCAmelCase_ ( self : Tuple , _A : Optional[int] , _A : List[str] , _A : Tuple , _A : int , _A : Optional[Any] , _A : str , _A : Union[str, Any] ) -> int: """simple docstring""" snake_case_ : Any = TFDebertaVaForMaskedLM(config=UpperCAmelCase_ ) snake_case_ : List[str] = { 'input_ids': input_ids, 'attention_mask': input_mask, 'token_type_ids': token_type_ids, } snake_case_ : Optional[int] = model(UpperCAmelCase_ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def UpperCAmelCase_ ( self : Any , _A : Any , _A : List[str] , _A : Dict , _A : List[str] , _A : str , _A : int , _A : int ) -> Tuple: """simple docstring""" snake_case_ : List[Any] = self.num_labels snake_case_ : Union[str, Any] = TFDebertaVaForSequenceClassification(config=UpperCAmelCase_ ) snake_case_ : List[str] = { 'input_ids': input_ids, 'attention_mask': input_mask, 'token_type_ids': token_type_ids, } snake_case_ : Tuple = model(UpperCAmelCase_ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels) ) def UpperCAmelCase_ ( self : Optional[Any] , _A : Optional[int] , _A : Optional[int] , _A : Optional[int] , _A : List[Any] , _A : Any , _A : List[Any] , _A : Any ) -> Dict: """simple docstring""" snake_case_ : List[str] = self.num_labels snake_case_ : Union[str, Any] = TFDebertaVaForTokenClassification(config=UpperCAmelCase_ ) snake_case_ : Optional[Any] = { 'input_ids': input_ids, 'attention_mask': input_mask, 'token_type_ids': token_type_ids, } snake_case_ : Union[str, Any] = model(UpperCAmelCase_ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels) ) def UpperCAmelCase_ ( self : Any , _A : Optional[Any] , _A : Tuple , _A : Union[str, Any] , _A : str , _A : str , _A : Any , _A : Dict ) -> List[str]: """simple docstring""" snake_case_ : Dict = TFDebertaVaForQuestionAnswering(config=UpperCAmelCase_ ) snake_case_ : List[str] = { 'input_ids': input_ids, 'attention_mask': input_mask, 'token_type_ids': token_type_ids, } snake_case_ : Union[str, Any] = model(UpperCAmelCase_ ) self.parent.assertEqual(result.start_logits.shape , (self.batch_size, self.seq_length) ) self.parent.assertEqual(result.end_logits.shape , (self.batch_size, self.seq_length) ) def UpperCAmelCase_ ( self : List[Any] ) -> Dict: """simple docstring""" snake_case_ : List[Any] = self.prepare_config_and_inputs() ( ( snake_case_ ) ,( snake_case_ ) ,( snake_case_ ) ,( snake_case_ ) ,( snake_case_ ) ,( snake_case_ ) ,( snake_case_ ) , ) : Any = config_and_inputs snake_case_ : Any = {'input_ids': input_ids, 'token_type_ids': token_type_ids, 'attention_mask': input_mask} return config, inputs_dict @require_tf class SCREAMING_SNAKE_CASE_ ( _UpperCAmelCase , _UpperCAmelCase , unittest.TestCase ): __magic_name__: int = ( ( TFDebertaVaModel, TFDebertaVaForMaskedLM, TFDebertaVaForQuestionAnswering, TFDebertaVaForSequenceClassification, TFDebertaVaForTokenClassification, ) if is_tf_available() else () ) __magic_name__: Union[str, Any] = ( { "feature-extraction": TFDebertaVaModel, "fill-mask": TFDebertaVaForMaskedLM, "question-answering": TFDebertaVaForQuestionAnswering, "text-classification": TFDebertaVaForSequenceClassification, "token-classification": TFDebertaVaForTokenClassification, "zero-shot": TFDebertaVaForSequenceClassification, } if is_tf_available() else {} ) __magic_name__: Dict = False __magic_name__: Optional[Any] = False def UpperCAmelCase_ ( self : Union[str, Any] ) -> Union[str, Any]: """simple docstring""" snake_case_ : str = TFDebertaVaModelTester(self ) snake_case_ : int = ConfigTester(self , config_class=UpperCAmelCase_ , hidden_size=37 ) def UpperCAmelCase_ ( self : Tuple ) -> List[str]: """simple docstring""" self.config_tester.run_common_tests() def UpperCAmelCase_ ( self : List[Any] ) -> str: """simple docstring""" snake_case_ : str = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCAmelCase_ ) def UpperCAmelCase_ ( self : List[Any] ) -> Optional[int]: """simple docstring""" snake_case_ : str = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_lm(*UpperCAmelCase_ ) def UpperCAmelCase_ ( self : Any ) -> Union[str, Any]: """simple docstring""" snake_case_ : Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_question_answering(*UpperCAmelCase_ ) def UpperCAmelCase_ ( self : Tuple ) -> Union[str, Any]: """simple docstring""" snake_case_ : str = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_sequence_classification(*UpperCAmelCase_ ) def UpperCAmelCase_ ( self : Optional[int] ) -> Any: """simple docstring""" snake_case_ : Tuple = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification(*UpperCAmelCase_ ) @slow def UpperCAmelCase_ ( self : Any ) -> int: """simple docstring""" snake_case_ : Optional[int] = TFDebertaVaModel.from_pretrained('kamalkraj/deberta-v2-xlarge' ) self.assertIsNotNone(UpperCAmelCase_ ) @require_tf class SCREAMING_SNAKE_CASE_ ( unittest.TestCase ): @unittest.skip(reason='Model not available yet' ) def UpperCAmelCase_ ( self : Tuple ) -> List[Any]: """simple docstring""" pass @slow def UpperCAmelCase_ ( self : List[Any] ) -> str: """simple docstring""" snake_case_ : str = TFDebertaVaModel.from_pretrained('kamalkraj/deberta-v2-xlarge' ) snake_case_ : str = tf.constant([[0, 31414, 232, 328, 740, 1140, 12695, 69, 46078, 1588, 2]] ) snake_case_ : Optional[Any] = tf.constant([[0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]] ) snake_case_ : Union[str, Any] = model(UpperCAmelCase_ , attention_mask=UpperCAmelCase_ )[0] snake_case_ : Union[str, Any] = tf.constant( [[[0.2_3_5_6, 0.1_9_4_8, 0.0_3_6_9], [-0.1_0_6_3, 0.3_5_8_6, -0.5_1_5_2], [-0.6_3_9_9, -0.0_2_5_9, -0.2_5_2_5]]] ) tf.debugging.assert_near(output[:, 1:4, 1:4] , UpperCAmelCase_ , atol=1E-4 )
327
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tokenizers_available, is_torch_available UpperCamelCase = { '''configuration_altclip''': [ '''ALTCLIP_PRETRAINED_CONFIG_ARCHIVE_MAP''', '''AltCLIPConfig''', '''AltCLIPTextConfig''', '''AltCLIPVisionConfig''', ], '''processing_altclip''': ['''AltCLIPProcessor'''], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: UpperCamelCase = [ '''ALTCLIP_PRETRAINED_MODEL_ARCHIVE_LIST''', '''AltCLIPPreTrainedModel''', '''AltCLIPModel''', '''AltCLIPTextModel''', '''AltCLIPVisionModel''', ] if TYPE_CHECKING: from .configuration_altclip import ( ALTCLIP_PRETRAINED_CONFIG_ARCHIVE_MAP, AltCLIPConfig, AltCLIPTextConfig, AltCLIPVisionConfig, ) from .processing_altclip import AltCLIPProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_altclip import ( ALTCLIP_PRETRAINED_MODEL_ARCHIVE_LIST, AltCLIPModel, AltCLIPPreTrainedModel, AltCLIPTextModel, AltCLIPVisionModel, ) else: import sys UpperCamelCase = _LazyModule(__name__, globals()['''__file__'''], _import_structure, module_spec=__spec__)
306
0
"""simple docstring""" import argparse import json import os import evaluate import torch from datasets import load_dataset from torch.optim import AdamW from torch.utils.data import DataLoader from transformers import AutoModelForSequenceClassification, AutoTokenizer, get_linear_schedule_with_warmup, set_seed from accelerate import Accelerator, DistributedType from accelerate.utils.deepspeed import DummyOptim, DummyScheduler _A = 1_6 _A = 3_2 def UpperCAmelCase ( a_, a_ = 16, a_ = "bert-base-cased" ) -> Tuple: '''simple docstring''' lowerCamelCase : Optional[int] = AutoTokenizer.from_pretrained(_a ) lowerCamelCase : List[Any] = load_dataset('glue', 'mrpc' ) def tokenize_function(a_ ): # max_length=None => use the model max length (it's actually the default) lowerCamelCase : int = tokenizer(examples['sentence1'], examples['sentence2'], truncation=_a, max_length=_a ) return outputs # Apply the method we just defined to all the examples in all the splits of the dataset lowerCamelCase : Optional[Any] = datasets.map( _a, batched=_a, remove_columns=['idx', 'sentence1', 'sentence2'], load_from_cache_file=_a ) # We also rename the 'label' column to 'labels' which is the expected name for labels by the models of the # transformers library lowerCamelCase : List[str] = tokenized_datasets.rename_column('label', 'labels' ) def collate_fn(a_ ): # On TPU it's best to pad everything to the same length or training will be very slow. if accelerator.distributed_type == DistributedType.TPU: return tokenizer.pad(_a, padding='max_length', max_length=128, return_tensors='pt' ) return tokenizer.pad(_a, padding='longest', return_tensors='pt' ) # Instantiate dataloaders. lowerCamelCase : Optional[Any] = DataLoader( tokenized_datasets['train'], shuffle=_a, collate_fn=_a, batch_size=_a ) lowerCamelCase : List[str] = DataLoader( tokenized_datasets['validation'], shuffle=_a, collate_fn=_a, batch_size=_a ) return train_dataloader, eval_dataloader def UpperCAmelCase ( a_, a_, a_, a_ ) -> Optional[int]: '''simple docstring''' model.eval() lowerCamelCase : List[Any] = 0 for step, batch in enumerate(_a ): # We could avoid this line since we set the accelerator with `device_placement=True`. batch.to(accelerator.device ) with torch.no_grad(): lowerCamelCase : Optional[int] = model(**_a ) lowerCamelCase : str = outputs.logits.argmax(dim=-1 ) # It is slightly faster to call this once, than multiple times lowerCamelCase , lowerCamelCase : int = accelerator.gather( (predictions, batch['labels']) ) # If we are in a multiprocess environment, the last batch has duplicates if accelerator.use_distributed: if step == len(_a ) - 1: lowerCamelCase : str = predictions[: len(eval_dataloader.dataset ) - samples_seen] lowerCamelCase : Tuple = references[: len(eval_dataloader.dataset ) - samples_seen] else: samples_seen += references.shape[0] metric.add_batch( predictions=_a, references=_a, ) lowerCamelCase : Optional[Any] = metric.compute() return eval_metric["accuracy"] def UpperCAmelCase ( a_, a_ ) -> Any: '''simple docstring''' lowerCamelCase : Dict = Accelerator() # Sample hyper-parameters for learning rate, batch size, seed and a few other HPs lowerCamelCase : Any = config['lr'] lowerCamelCase : Union[str, Any] = int(config['num_epochs'] ) lowerCamelCase : str = int(config['seed'] ) lowerCamelCase : int = int(config['batch_size'] ) lowerCamelCase : Tuple = args.model_name_or_path set_seed(_a ) lowerCamelCase , lowerCamelCase : Dict = get_dataloaders(_a, _a, _a ) # Instantiate the model (we build the model here so that the seed also control new weights initialization) lowerCamelCase : Tuple = AutoModelForSequenceClassification.from_pretrained(_a, return_dict=_a ) # Instantiate optimizer lowerCamelCase : Optional[Any] = ( AdamW if accelerator.state.deepspeed_plugin is None or 'optimizer' not in accelerator.state.deepspeed_plugin.deepspeed_config else DummyOptim ) lowerCamelCase : Union[str, Any] = optimizer_cls(params=model.parameters(), lr=_a ) if accelerator.state.deepspeed_plugin is not None: lowerCamelCase : List[Any] = accelerator.state.deepspeed_plugin.deepspeed_config[ 'gradient_accumulation_steps' ] else: lowerCamelCase : Union[str, Any] = 1 lowerCamelCase : Optional[int] = (len(_a ) * num_epochs) // gradient_accumulation_steps # Instantiate scheduler if ( accelerator.state.deepspeed_plugin is None or "scheduler" not in accelerator.state.deepspeed_plugin.deepspeed_config ): lowerCamelCase : List[str] = get_linear_schedule_with_warmup( optimizer=_a, num_warmup_steps=0, num_training_steps=_a, ) else: lowerCamelCase : Union[str, Any] = DummyScheduler(_a, total_num_steps=_a, warmup_num_steps=0 ) # Prepare everything # There is no specific order to remember, we just need to unpack the objects in the same order we gave them to the # prepare method. lowerCamelCase , lowerCamelCase , lowerCamelCase , lowerCamelCase , lowerCamelCase : Union[str, Any] = accelerator.prepare( _a, _a, _a, _a, _a ) # We need to keep track of how many total steps we have iterated over lowerCamelCase : Optional[int] = 0 # We also need to keep track of the stating epoch so files are named properly lowerCamelCase : Dict = 0 lowerCamelCase : Optional[Any] = evaluate.load('glue', 'mrpc' ) lowerCamelCase : int = num_epochs if args.partial_train_epoch is not None: lowerCamelCase : int = args.partial_train_epoch if args.resume_from_checkpoint: accelerator.load_state(args.resume_from_checkpoint ) lowerCamelCase : Union[str, Any] = args.resume_from_checkpoint.split('epoch_' )[1] lowerCamelCase : Optional[int] = '' for char in epoch_string: if char.isdigit(): state_epoch_num += char else: break lowerCamelCase : Optional[Any] = int(_a ) + 1 lowerCamelCase : Any = evaluation_loop(_a, _a, _a, _a ) accelerator.print('resumed checkpoint performance:', _a ) accelerator.print('resumed checkpoint\'s scheduler\'s lr:', lr_scheduler.get_lr()[0] ) accelerator.print('resumed optimizers\'s lr:', optimizer.param_groups[0]['lr'] ) with open(os.path.join(args.output_dir, F"""state_{starting_epoch-1}.json""" ), 'r' ) as f: lowerCamelCase : List[Any] = json.load(_a ) assert resumed_state["accuracy"] == accuracy, "Accuracy mismatch, loading from checkpoint failed" assert ( resumed_state["lr"] == lr_scheduler.get_lr()[0] ), "Scheduler learning rate mismatch, loading from checkpoint failed" assert ( resumed_state["optimizer_lr"] == optimizer.param_groups[0]["lr"] ), "Optimizer learning rate mismatch, loading from checkpoint failed" assert resumed_state["epoch"] == starting_epoch - 1, "Epoch mismatch, loading from checkpoint failed" return # Now we train the model lowerCamelCase : Optional[int] = {} for epoch in range(_a, _a ): model.train() for step, batch in enumerate(_a ): lowerCamelCase : Optional[Any] = model(**_a ) lowerCamelCase : str = outputs.loss lowerCamelCase : Optional[Any] = loss / gradient_accumulation_steps accelerator.backward(_a ) if step % gradient_accumulation_steps == 0: optimizer.step() lr_scheduler.step() optimizer.zero_grad() overall_step += 1 lowerCamelCase : List[Any] = F"""epoch_{epoch}""" lowerCamelCase : Tuple = os.path.join(args.output_dir, _a ) accelerator.save_state(_a ) lowerCamelCase : Union[str, Any] = evaluation_loop(_a, _a, _a, _a ) lowerCamelCase : Tuple = accuracy lowerCamelCase : List[Any] = lr_scheduler.get_lr()[0] lowerCamelCase : Tuple = optimizer.param_groups[0]['lr'] lowerCamelCase : str = epoch lowerCamelCase : Union[str, Any] = overall_step accelerator.print(F"""epoch {epoch}:""", _a ) accelerator.wait_for_everyone() if accelerator.is_main_process: with open(os.path.join(args.output_dir, F"""state_{epoch}.json""" ), 'w' ) as f: json.dump(_a, _a ) def UpperCAmelCase ( ) -> Optional[Any]: '''simple docstring''' lowerCamelCase : Dict = argparse.ArgumentParser(description='Simple example of training script tracking peak GPU memory usage.' ) parser.add_argument( '--model_name_or_path', type=_a, default='bert-base-cased', help='Path to pretrained model or model identifier from huggingface.co/models.', required=_a, ) parser.add_argument( '--output_dir', type=_a, default='.', help='Optional save directory where all checkpoint folders will be stored. Default is the current working directory.', ) parser.add_argument( '--resume_from_checkpoint', type=_a, default=_a, help='If the training should continue from a checkpoint folder.', ) parser.add_argument( '--partial_train_epoch', type=_a, default=_a, help='If passed, the training will stop after this number of epochs.', ) parser.add_argument( '--num_epochs', type=_a, default=2, help='Number of train epochs.', ) lowerCamelCase : Union[str, Any] = parser.parse_args() lowerCamelCase : str = {'lr': 2E-5, 'num_epochs': args.num_epochs, 'seed': 42, 'batch_size': 16} training_function(_a, _a ) if __name__ == "__main__": main()
361
"""simple docstring""" from __future__ import annotations _A = [ [-1, 0], # left [0, -1], # down [1, 0], # right [0, 1], # up ] def UpperCAmelCase ( a_, a_, a_, a_, a_, ): '''simple docstring''' lowerCamelCase : Dict = [ [0 for col in range(len(grid[0] ) )] for row in range(len(a_ ) ) ] # the reference grid lowerCamelCase : Union[str, Any] = 1 lowerCamelCase : Any = [ [0 for col in range(len(grid[0] ) )] for row in range(len(a_ ) ) ] # the action grid lowerCamelCase : List[str] = init[0] lowerCamelCase : Optional[Any] = init[1] lowerCamelCase : List[Any] = 0 lowerCamelCase : List[str] = g + heuristic[x][y] # cost from starting cell to destination cell lowerCamelCase : Union[str, Any] = [[f, g, x, y]] lowerCamelCase : Union[str, Any] = False # flag that is set when search is complete lowerCamelCase : str = False # flag set if we can't find expand while not found and not resign: if len(a_ ) == 0: raise ValueError('Algorithm is unable to find solution' ) else: # to choose the least costliest action so as to move closer to the goal cell.sort() cell.reverse() lowerCamelCase : int = cell.pop() lowerCamelCase : str = next_cell[2] lowerCamelCase : Union[str, Any] = next_cell[3] lowerCamelCase : List[str] = next_cell[1] if x == goal[0] and y == goal[1]: lowerCamelCase : Any = True else: for i in range(len(a_ ) ): # to try out different valid actions lowerCamelCase : Tuple = x + DIRECTIONS[i][0] lowerCamelCase : Union[str, Any] = y + DIRECTIONS[i][1] if xa >= 0 and xa < len(a_ ) and ya >= 0 and ya < len(grid[0] ): if closed[xa][ya] == 0 and grid[xa][ya] == 0: lowerCamelCase : str = g + cost lowerCamelCase : Tuple = ga + heuristic[xa][ya] cell.append([fa, ga, xa, ya] ) lowerCamelCase : Union[str, Any] = 1 lowerCamelCase : Any = i lowerCamelCase : Any = [] lowerCamelCase : Optional[int] = goal[0] lowerCamelCase : Dict = goal[1] invpath.append([x, y] ) # we get the reverse path from here while x != init[0] or y != init[1]: lowerCamelCase : Dict = x - DIRECTIONS[action[x][y]][0] lowerCamelCase : Dict = y - DIRECTIONS[action[x][y]][1] lowerCamelCase : Optional[Any] = xa lowerCamelCase : Union[str, Any] = ya invpath.append([x, y] ) lowerCamelCase : Optional[int] = [] for i in range(len(a_ ) ): path.append(invpath[len(a_ ) - 1 - i] ) return path, action if __name__ == "__main__": _A = [ [0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 0, 0], # 0 are free path whereas 1's are obstacles [0, 1, 0, 0, 0, 0], [0, 1, 0, 0, 1, 0], [0, 0, 0, 0, 1, 0], ] _A = [0, 0] # all coordinates are given in format [y,x] _A = [len(grid) - 1, len(grid[0]) - 1] _A = 1 # the cost map which pushes the path closer to the goal _A = [[0 for row in range(len(grid[0]))] for col in range(len(grid))] for i in range(len(grid)): for j in range(len(grid[0])): _A = abs(i - goal[0]) + abs(j - goal[1]) if grid[i][j] == 1: # added extra penalty in the heuristic map _A = 9_9 _A , _A = search(grid, init, goal, cost, heuristic) print('ACTION MAP') for i in range(len(action)): print(action[i]) for i in range(len(path)): print(path[i])
205
0
from collections import UserDict from typing import Union import numpy as np import requests from ..utils import ( add_end_docstrings, logging, ) from .audio_classification import ffmpeg_read from .base import PIPELINE_INIT_ARGS, Pipeline _lowercase: List[Any] = logging.get_logger(__name__) @add_end_docstrings(lowerCAmelCase ) class _lowercase ( lowerCAmelCase ): """simple docstring""" def __init__(self , **lowerCamelCase_ ): """simple docstring""" super().__init__(**_SCREAMING_SNAKE_CASE ) if self.framework != "pt": raise ValueError(F'''The {self.__class__} is only available in PyTorch.''' ) # No specific FOR_XXX available yet def __call__(self , lowerCamelCase_ , **lowerCamelCase_ ): """simple docstring""" return super().__call__(_SCREAMING_SNAKE_CASE , **_SCREAMING_SNAKE_CASE ) def UpperCamelCase_ (self , **lowerCamelCase_ ): """simple docstring""" a = {} if "candidate_labels" in kwargs: a = kwargs["candidate_labels"] if "hypothesis_template" in kwargs: a = kwargs["hypothesis_template"] return preprocess_params, {}, {} def UpperCamelCase_ (self , lowerCamelCase_ , lowerCamelCase_=None , lowerCamelCase_="This is a sound of {}." ): """simple docstring""" if isinstance(_SCREAMING_SNAKE_CASE , _SCREAMING_SNAKE_CASE ): if audio.startswith("http://" ) or audio.startswith("https://" ): # We need to actually check for a real protocol, otherwise it's impossible to use a local file # like http_huggingface_co.png a = requests.get(_SCREAMING_SNAKE_CASE ).content else: with open(_SCREAMING_SNAKE_CASE , "rb" ) as f: a = f.read() if isinstance(_SCREAMING_SNAKE_CASE , _SCREAMING_SNAKE_CASE ): a = ffmpeg_read(_SCREAMING_SNAKE_CASE , self.feature_extractor.sampling_rate ) if not isinstance(_SCREAMING_SNAKE_CASE , np.ndarray ): raise ValueError("We expect a numpy ndarray as input" ) if len(audio.shape ) != 1: raise ValueError("We expect a single channel audio input for ZeroShotAudioClassificationPipeline" ) a = self.feature_extractor( [audio] , sampling_rate=self.feature_extractor.sampling_rate , return_tensors="pt" ) a = candidate_labels a = [hypothesis_template.format(_SCREAMING_SNAKE_CASE ) for x in candidate_labels] a = self.tokenizer(_SCREAMING_SNAKE_CASE , return_tensors=self.framework , padding=_SCREAMING_SNAKE_CASE ) a = [text_inputs] return inputs def UpperCamelCase_ (self , lowerCamelCase_ ): """simple docstring""" a = model_inputs.pop("candidate_labels" ) a = model_inputs.pop("text_inputs" ) if isinstance(text_inputs[0] , _SCREAMING_SNAKE_CASE ): a = text_inputs[0] else: # Batching case. a = text_inputs[0][0] a = self.model(**_SCREAMING_SNAKE_CASE , **_SCREAMING_SNAKE_CASE ) a = { "candidate_labels": candidate_labels, "logits": outputs.logits_per_audio, } return model_outputs def UpperCamelCase_ (self , lowerCamelCase_ ): """simple docstring""" a = model_outputs.pop("candidate_labels" ) a = model_outputs["logits"][0] if self.framework == "pt": a = logits.softmax(dim=0 ) a = probs.tolist() else: raise ValueError("`tf` framework not supported." ) a = [ {"score": score, "label": candidate_label} for score, candidate_label in sorted(zip(_SCREAMING_SNAKE_CASE , _SCREAMING_SNAKE_CASE ) , key=lambda lowerCamelCase_ : -x[0] ) ] return result
227
from urllib.parse import quote import pytest from datasets.utils.hub import hf_hub_url @pytest.mark.parametrize('repo_id' , ['canonical_dataset_name', 'org-name/dataset-name'] ) @pytest.mark.parametrize('path' , ['filename.csv', 'filename with blanks.csv'] ) @pytest.mark.parametrize('revision' , [None, 'v2'] ) def lowerCAmelCase__ ( a__: Any , a__: Tuple , a__: Union[str, Any] ) -> Tuple: '''simple docstring''' _UpperCAmelCase = hf_hub_url(repo_id=a__ , path=a__ , revision=a__ ) assert url == F'''https://huggingface.co/datasets/{repo_id}/resolve/{revision or "main"}/{quote(a__ )}'''
329
0
import warnings from ...utils import logging from .image_processing_owlvit import OwlViTImageProcessor __UpperCAmelCase = logging.get_logger(__name__) class UpperCamelCase__ ( __SCREAMING_SNAKE_CASE ): """simple docstring""" def __init__( self , *_A , **_A ) -> None: warnings.warn( '''The class OwlViTFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please''' ''' use OwlViTImageProcessor instead.''' , _A , ) super().__init__(*_A , **_A )
257
import itertools from dataclasses import dataclass from typing import Optional import pandas as pd import pyarrow as pa import datasets from datasets.table import table_cast @dataclass class UpperCamelCase__ ( datasets.BuilderConfig ): """simple docstring""" UpperCAmelCase_ =None class UpperCamelCase__ ( datasets.ArrowBasedBuilder ): """simple docstring""" UpperCAmelCase_ =PandasConfig def _UpperCamelCase ( self ) -> int: return datasets.DatasetInfo(features=self.config.features ) def _UpperCamelCase ( self , _A ) -> Tuple: if not self.config.data_files: raise ValueError(F'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) SCREAMING_SNAKE_CASE_ = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_A , (str, list, tuple) ): SCREAMING_SNAKE_CASE_ = data_files if isinstance(_A , _A ): SCREAMING_SNAKE_CASE_ = [files] # Use `dl_manager.iter_files` to skip hidden files in an extracted archive SCREAMING_SNAKE_CASE_ = [dl_manager.iter_files(_A ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'''files''': files} )] SCREAMING_SNAKE_CASE_ = [] for split_name, files in data_files.items(): if isinstance(_A , _A ): SCREAMING_SNAKE_CASE_ = [files] # Use `dl_manager.iter_files` to skip hidden files in an extracted archive SCREAMING_SNAKE_CASE_ = [dl_manager.iter_files(_A ) for file in files] splits.append(datasets.SplitGenerator(name=_A , gen_kwargs={'''files''': files} ) ) return splits def _UpperCamelCase ( self , _A ) -> pa.Table: if self.config.features is not None: # more expensive cast to support nested features with keys in a different order # allows str <-> int/float or str to Audio for example SCREAMING_SNAKE_CASE_ = table_cast(_A , self.config.features.arrow_schema ) return pa_table def _UpperCamelCase ( self , _A ) -> Any: for i, file in enumerate(itertools.chain.from_iterable(_A ) ): with open(_A , '''rb''' ) as f: SCREAMING_SNAKE_CASE_ = pa.Table.from_pandas(pd.read_pickle(_A ) ) yield i, self._cast_table(_A )
257
1
from __future__ import annotations from collections.abc import Iterable, Iterator from dataclasses import dataclass a_ = (3, 9, -11, 0, 7, 5, 1, -1) a_ = (4, 6, 2, 0, 8, 10, 3, -2) @dataclass class lowercase__ : a_ =42 a_ =42 class lowercase__ : def __init__( self , __UpperCAmelCase )-> None: '''simple docstring''' lowerCAmelCase__ = None for i in sorted(__UpperCAmelCase , reverse=__UpperCAmelCase ): lowerCAmelCase__ = Node(__UpperCAmelCase , self.head ) def __iter__( self )-> Iterator[int]: '''simple docstring''' lowerCAmelCase__ = self.head while node: yield node.data lowerCAmelCase__ = node.next_node def __len__( self )-> int: '''simple docstring''' return sum(1 for _ in self ) def __str__( self )-> str: '''simple docstring''' return " -> ".join([str(__UpperCAmelCase ) for node in self] ) def _a ( UpperCamelCase_ : SortedLinkedList , UpperCamelCase_ : SortedLinkedList ) -> SortedLinkedList: """simple docstring""" return SortedLinkedList(list(UpperCamelCase_ ) + list(UpperCamelCase_ ) ) if __name__ == "__main__": import doctest doctest.testmod() a_ = SortedLinkedList print(merge_lists(SSL(test_data_odd), SSL(test_data_even)))
340
from collections import UserDict from typing import List, Union from ..utils import ( add_end_docstrings, is_tf_available, is_torch_available, is_vision_available, logging, requires_backends, ) from .base import PIPELINE_INIT_ARGS, Pipeline if is_vision_available(): from PIL import Image from ..image_utils import load_image if is_torch_available(): from ..models.auto.modeling_auto import MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING if is_tf_available(): from ..models.auto.modeling_tf_auto import TF_MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING from ..tf_utils import stable_softmax a_ = logging.get_logger(__name__) @add_end_docstrings(_UpperCAmelCase ) class lowercase__ ( _UpperCAmelCase ): def __init__( self , **__UpperCAmelCase )-> List[str]: '''simple docstring''' super().__init__(**__UpperCAmelCase ) requires_backends(self , "vision" ) self.check_model_type( TF_MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING if self.framework == "tf" else MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING ) def __call__( self , __UpperCAmelCase , **__UpperCAmelCase )-> int: '''simple docstring''' return super().__call__(__UpperCAmelCase , **__UpperCAmelCase ) def UpperCAmelCase ( self , **__UpperCAmelCase )-> List[str]: '''simple docstring''' lowerCAmelCase__ = {} if "candidate_labels" in kwargs: lowerCAmelCase__ = kwargs["candidate_labels"] if "hypothesis_template" in kwargs: lowerCAmelCase__ = kwargs["hypothesis_template"] return preprocess_params, {}, {} def UpperCAmelCase ( self , __UpperCAmelCase , __UpperCAmelCase=None , __UpperCAmelCase="This is a photo of {}." )-> Optional[int]: '''simple docstring''' lowerCAmelCase__ = load_image(__UpperCAmelCase ) lowerCAmelCase__ = self.image_processor(images=[image] , return_tensors=self.framework ) lowerCAmelCase__ = candidate_labels lowerCAmelCase__ = [hypothesis_template.format(__UpperCAmelCase ) for x in candidate_labels] lowerCAmelCase__ = self.tokenizer(__UpperCAmelCase , return_tensors=self.framework , padding=__UpperCAmelCase ) lowerCAmelCase__ = [text_inputs] return inputs def UpperCAmelCase ( self , __UpperCAmelCase )-> int: '''simple docstring''' lowerCAmelCase__ = model_inputs.pop("candidate_labels" ) lowerCAmelCase__ = model_inputs.pop("text_inputs" ) if isinstance(text_inputs[0] , __UpperCAmelCase ): lowerCAmelCase__ = text_inputs[0] else: # Batching case. lowerCAmelCase__ = text_inputs[0][0] lowerCAmelCase__ = self.model(**__UpperCAmelCase , **__UpperCAmelCase ) lowerCAmelCase__ = { "candidate_labels": candidate_labels, "logits": outputs.logits_per_image, } return model_outputs def UpperCAmelCase ( self , __UpperCAmelCase )-> Tuple: '''simple docstring''' lowerCAmelCase__ = model_outputs.pop("candidate_labels" ) lowerCAmelCase__ = model_outputs["logits"][0] if self.framework == "pt": lowerCAmelCase__ = logits.softmax(dim=-1 ).squeeze(-1 ) lowerCAmelCase__ = probs.tolist() if not isinstance(__UpperCAmelCase , __UpperCAmelCase ): lowerCAmelCase__ = [scores] elif self.framework == "tf": lowerCAmelCase__ = stable_softmax(__UpperCAmelCase , axis=-1 ) lowerCAmelCase__ = probs.numpy().tolist() else: raise ValueError(F"Unsupported framework: {self.framework}" ) lowerCAmelCase__ = [ {"score": score, "label": candidate_label} for score, candidate_label in sorted(zip(__UpperCAmelCase , __UpperCAmelCase ) , key=lambda __UpperCAmelCase : -x[0] ) ] return result
340
1
'''simple docstring''' import fire from torch.utils.data import DataLoader from tqdm import tqdm from transformers import AutoTokenizer from utils import SeqaSeqDataset, pickle_save def _SCREAMING_SNAKE_CASE ( UpperCamelCase , UpperCamelCase , UpperCamelCase=1024 , UpperCamelCase=1024 , UpperCamelCase=False , **UpperCamelCase ): """simple docstring""" lowerCAmelCase__ : Any = AutoTokenizer.from_pretrained(__snake_case ) lowerCAmelCase__ : int = SeqaSeqDataset(__snake_case , __snake_case , __snake_case , __snake_case , type_path="""train""" , **__snake_case ) lowerCAmelCase__ : Dict = tok.pad_token_id def get_lens(UpperCamelCase ): lowerCAmelCase__ : int = tqdm( DataLoader(__snake_case , batch_size=512 , num_workers=8 , shuffle=__snake_case , collate_fn=ds.collate_fn ) , desc=str(ds.len_file ) , ) lowerCAmelCase__ : Dict = [] for batch in dl: lowerCAmelCase__ : Tuple = batch["""input_ids"""].ne(__snake_case ).sum(1 ).tolist() lowerCAmelCase__ : str = batch["""labels"""].ne(__snake_case ).sum(1 ).tolist() if consider_target: for src, tgt in zip(__snake_case , __snake_case ): max_lens.append(max(__snake_case , __snake_case ) ) else: max_lens.extend(__snake_case ) return max_lens lowerCAmelCase__ : Any = get_lens(__snake_case ) lowerCAmelCase__ : int = SeqaSeqDataset(__snake_case , __snake_case , __snake_case , __snake_case , type_path="""val""" , **__snake_case ) lowerCAmelCase__ : Any = get_lens(__snake_case ) pickle_save(__snake_case , train_ds.len_file ) pickle_save(__snake_case , val_ds.len_file ) if __name__ == "__main__": fire.Fire(save_len_file)
362
'''simple docstring''' from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available _lowerCAmelCase = { '''configuration_blip_2''': [ '''BLIP_2_PRETRAINED_CONFIG_ARCHIVE_MAP''', '''Blip2Config''', '''Blip2QFormerConfig''', '''Blip2VisionConfig''', ], '''processing_blip_2''': ['''Blip2Processor'''], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _lowerCAmelCase = [ '''BLIP_2_PRETRAINED_MODEL_ARCHIVE_LIST''', '''Blip2Model''', '''Blip2QFormerModel''', '''Blip2PreTrainedModel''', '''Blip2ForConditionalGeneration''', '''Blip2VisionModel''', ] if TYPE_CHECKING: from .configuration_blip_a import ( BLIP_2_PRETRAINED_CONFIG_ARCHIVE_MAP, BlipaConfig, BlipaQFormerConfig, BlipaVisionConfig, ) from .processing_blip_a import BlipaProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_blip_a import ( BLIP_2_PRETRAINED_MODEL_ARCHIVE_LIST, BlipaForConditionalGeneration, BlipaModel, BlipaPreTrainedModel, BlipaQFormerModel, BlipaVisionModel, ) else: import sys _lowerCAmelCase = _LazyModule(__name__, globals()['''__file__'''], _import_structure, module_spec=__spec__)
184
0
'''simple docstring''' def snake_case_ ( _lowerCAmelCase : list[int] , _lowerCAmelCase : str ) -> list[int]: UpperCAmelCase : Optional[Any] = int(_lowerCAmelCase ) # Initialize Result UpperCAmelCase : List[Any] = [] # Traverse through all denomination for denomination in reversed(_lowerCAmelCase ): # Find denominations while int(_lowerCAmelCase ) >= int(_lowerCAmelCase ): total_value -= int(_lowerCAmelCase ) answer.append(_lowerCAmelCase ) # Append the "answers" array return answer # Driver Code if __name__ == "__main__": UpperCamelCase__: int = [] UpperCamelCase__: Optional[Any] = "0" if ( input("Do you want to enter your denominations ? (yY/n): ").strip().lower() == "y" ): UpperCamelCase__: int = int(input("Enter the number of denominations you want to add: ").strip()) for i in range(0, n): denominations.append(int(input(F"Denomination {i}: ").strip())) UpperCamelCase__: int = input("Enter the change you want to make in Indian Currency: ").strip() else: # All denominations of Indian Currency if user does not enter UpperCamelCase__: Any = [1, 2, 5, 10, 20, 50, 100, 500, 2000] UpperCamelCase__: Any = input("Enter the change you want to make: ").strip() if int(value) == 0 or int(value) < 0: print("The total value cannot be zero or negative.") else: print(F"Following is minimal change for {value}: ") UpperCamelCase__: Union[str, Any] = find_minimum_change(denominations, value) # Print result for i in range(len(answer)): print(answer[i], end=" ")
23
'''simple docstring''' import os from distutils.util import strtobool def snake_case_ (_a : Union[str, Any] , _a : List[Any] ): for e in env_keys: UpperCAmelCase = int(os.environ.get(_a , -1 ) ) if val >= 0: return val return default def snake_case_ (_a : Dict , _a : Any=False ): UpperCAmelCase = os.environ.get(_a , str(_a ) ) return strtobool(_a ) == 1 # As its name indicates `strtobool` actually returns an int... def snake_case_ (_a : str , _a : Optional[Any]="no" ): UpperCAmelCase = os.environ.get(_a , str(_a ) ) return value
34
0
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { "facebook/wav2vec2-base-960h": "https://huggingface.co/facebook/wav2vec2-base-960h/resolve/main/config.json", # See all Wav2Vec2 models at https://huggingface.co/models?filter=wav2vec2 } class A_ (snake_case__ ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : str = """wav2vec2""" def __init__( self , lowercase_=32 , lowercase_=768 , lowercase_=12 , lowercase_=12 , lowercase_=3072 , lowercase_="gelu" , lowercase_=0.1 , lowercase_=0.1 , lowercase_=0.1 , lowercase_=0.0 , lowercase_=0.0 , lowercase_=0.1 , lowercase_=0.1 , lowercase_=0.02 , lowercase_=1E-5 , lowercase_="group" , lowercase_="gelu" , lowercase_=(512, 512, 512, 512, 512, 512, 512) , lowercase_=(5, 2, 2, 2, 2, 2, 2) , lowercase_=(10, 3, 3, 3, 3, 2, 2) , lowercase_=False , lowercase_=128 , lowercase_=16 , lowercase_=False , lowercase_=True , lowercase_=0.05 , lowercase_=10 , lowercase_=2 , lowercase_=0.0 , lowercase_=10 , lowercase_=0 , lowercase_=320 , lowercase_=2 , lowercase_=0.1 , lowercase_=100 , lowercase_=256 , lowercase_=256 , lowercase_=0.1 , lowercase_="sum" , lowercase_=False , lowercase_=False , lowercase_=256 , lowercase_=(512, 512, 512, 512, 1500) , lowercase_=(5, 3, 3, 1, 1) , lowercase_=(1, 2, 3, 1, 1) , lowercase_=512 , lowercase_=0 , lowercase_=1 , lowercase_=2 , lowercase_=False , lowercase_=3 , lowercase_=2 , lowercase_=3 , lowercase_=None , lowercase_=None , **lowercase_ , ): """simple docstring""" super().__init__(**UpperCAmelCase_ , pad_token_id=UpperCAmelCase_ , bos_token_id=UpperCAmelCase_ , eos_token_id=UpperCAmelCase_ ) UpperCAmelCase_ : Tuple = hidden_size UpperCAmelCase_ : List[str] = feat_extract_norm UpperCAmelCase_ : Any = feat_extract_activation UpperCAmelCase_ : List[str] = list(UpperCAmelCase_ ) UpperCAmelCase_ : Any = list(UpperCAmelCase_ ) UpperCAmelCase_ : List[str] = list(UpperCAmelCase_ ) UpperCAmelCase_ : Union[str, Any] = conv_bias UpperCAmelCase_ : str = num_conv_pos_embeddings UpperCAmelCase_ : str = num_conv_pos_embedding_groups UpperCAmelCase_ : Optional[int] = len(self.conv_dim ) UpperCAmelCase_ : Any = num_hidden_layers UpperCAmelCase_ : List[str] = intermediate_size UpperCAmelCase_ : str = hidden_act UpperCAmelCase_ : int = num_attention_heads UpperCAmelCase_ : Optional[int] = hidden_dropout UpperCAmelCase_ : int = attention_dropout UpperCAmelCase_ : List[Any] = activation_dropout UpperCAmelCase_ : Tuple = feat_proj_dropout UpperCAmelCase_ : Union[str, Any] = final_dropout UpperCAmelCase_ : str = layerdrop UpperCAmelCase_ : Optional[Any] = layer_norm_eps UpperCAmelCase_ : Tuple = initializer_range UpperCAmelCase_ : Any = vocab_size UpperCAmelCase_ : Tuple = do_stable_layer_norm UpperCAmelCase_ : List[Any] = use_weighted_layer_sum if ( (len(self.conv_stride ) != self.num_feat_extract_layers) or (len(self.conv_kernel ) != self.num_feat_extract_layers) or (len(self.conv_dim ) != self.num_feat_extract_layers) ): raise ValueError( "Configuration 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) =" F""" {len(self.conv_dim )}`, `len(config.conv_stride) = {len(self.conv_stride )}`,""" F""" `len(config.conv_kernel) = {len(self.conv_kernel )}`.""" ) # fine-tuning config parameters for SpecAugment: https://arxiv.org/abs/1904.08779 UpperCAmelCase_ : str = apply_spec_augment UpperCAmelCase_ : List[str] = mask_time_prob UpperCAmelCase_ : List[Any] = mask_time_length UpperCAmelCase_ : Dict = mask_time_min_masks UpperCAmelCase_ : Tuple = mask_feature_prob UpperCAmelCase_ : Dict = mask_feature_length UpperCAmelCase_ : int = mask_feature_min_masks # parameters for pretraining with codevector quantized representations UpperCAmelCase_ : Union[str, Any] = num_codevectors_per_group UpperCAmelCase_ : Any = num_codevector_groups UpperCAmelCase_ : List[Any] = contrastive_logits_temperature UpperCAmelCase_ : int = feat_quantizer_dropout UpperCAmelCase_ : Union[str, Any] = num_negatives UpperCAmelCase_ : Optional[Any] = codevector_dim UpperCAmelCase_ : Any = proj_codevector_dim UpperCAmelCase_ : str = diversity_loss_weight # ctc loss UpperCAmelCase_ : Dict = ctc_loss_reduction UpperCAmelCase_ : Any = ctc_zero_infinity # adapter UpperCAmelCase_ : Union[str, Any] = add_adapter UpperCAmelCase_ : int = adapter_kernel_size UpperCAmelCase_ : Tuple = adapter_stride UpperCAmelCase_ : Dict = num_adapter_layers UpperCAmelCase_ : Any = output_hidden_size or hidden_size UpperCAmelCase_ : Dict = adapter_attn_dim # SequenceClassification-specific parameter. Feel free to ignore for other classes. UpperCAmelCase_ : Tuple = classifier_proj_size # XVector-specific parameters. Feel free to ignore for other classes. UpperCAmelCase_ : Tuple = list(UpperCAmelCase_ ) UpperCAmelCase_ : Union[str, Any] = list(UpperCAmelCase_ ) UpperCAmelCase_ : Tuple = list(UpperCAmelCase_ ) UpperCAmelCase_ : List[str] = xvector_output_dim @property def UpperCamelCase__ ( self ): """simple docstring""" return functools.reduce(operator.mul , self.conv_stride , 1 )
364
"""simple docstring""" import argparse import json from pathlib import Path import requests import timm import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import DeiTConfig, DeiTForImageClassificationWithTeacher, DeiTImageProcessor from transformers.utils import logging logging.set_verbosity_info() _a = logging.get_logger(__name__) def __a ( __lowerCamelCase, __lowerCamelCase=False ): UpperCAmelCase_ : Optional[int] = [] for i in range(config.num_hidden_layers ): # encoder layers: output projection, 2 feedforward neural networks and 2 layernorms rename_keys.append((f"""blocks.{i}.norm1.weight""", f"""deit.encoder.layer.{i}.layernorm_before.weight""") ) rename_keys.append((f"""blocks.{i}.norm1.bias""", f"""deit.encoder.layer.{i}.layernorm_before.bias""") ) rename_keys.append((f"""blocks.{i}.attn.proj.weight""", f"""deit.encoder.layer.{i}.attention.output.dense.weight""") ) rename_keys.append((f"""blocks.{i}.attn.proj.bias""", f"""deit.encoder.layer.{i}.attention.output.dense.bias""") ) rename_keys.append((f"""blocks.{i}.norm2.weight""", f"""deit.encoder.layer.{i}.layernorm_after.weight""") ) rename_keys.append((f"""blocks.{i}.norm2.bias""", f"""deit.encoder.layer.{i}.layernorm_after.bias""") ) rename_keys.append((f"""blocks.{i}.mlp.fc1.weight""", f"""deit.encoder.layer.{i}.intermediate.dense.weight""") ) rename_keys.append((f"""blocks.{i}.mlp.fc1.bias""", f"""deit.encoder.layer.{i}.intermediate.dense.bias""") ) rename_keys.append((f"""blocks.{i}.mlp.fc2.weight""", f"""deit.encoder.layer.{i}.output.dense.weight""") ) rename_keys.append((f"""blocks.{i}.mlp.fc2.bias""", f"""deit.encoder.layer.{i}.output.dense.bias""") ) # projection layer + position embeddings rename_keys.extend( [ ("cls_token", "deit.embeddings.cls_token"), ("dist_token", "deit.embeddings.distillation_token"), ("patch_embed.proj.weight", "deit.embeddings.patch_embeddings.projection.weight"), ("patch_embed.proj.bias", "deit.embeddings.patch_embeddings.projection.bias"), ("pos_embed", "deit.embeddings.position_embeddings"), ] ) if base_model: # layernorm + pooler rename_keys.extend( [ ("norm.weight", "layernorm.weight"), ("norm.bias", "layernorm.bias"), ("pre_logits.fc.weight", "pooler.dense.weight"), ("pre_logits.fc.bias", "pooler.dense.bias"), ] ) # if just the base model, we should remove "deit" from all keys that start with "deit" UpperCAmelCase_ : Dict = [(pair[0], pair[1][4:]) if pair[1].startswith("deit" ) else pair for pair in rename_keys] else: # layernorm + classification heads rename_keys.extend( [ ("norm.weight", "deit.layernorm.weight"), ("norm.bias", "deit.layernorm.bias"), ("head.weight", "cls_classifier.weight"), ("head.bias", "cls_classifier.bias"), ("head_dist.weight", "distillation_classifier.weight"), ("head_dist.bias", "distillation_classifier.bias"), ] ) return rename_keys def __a ( __lowerCamelCase, __lowerCamelCase, __lowerCamelCase=False ): for i in range(config.num_hidden_layers ): if base_model: UpperCAmelCase_ : int = "" else: UpperCAmelCase_ : Union[str, Any] = "deit." # read in weights + bias of input projection layer (in timm, this is a single matrix + bias) UpperCAmelCase_ : Tuple = state_dict.pop(f"""blocks.{i}.attn.qkv.weight""" ) UpperCAmelCase_ : Dict = state_dict.pop(f"""blocks.{i}.attn.qkv.bias""" ) # next, add query, keys and values (in that order) to the state dict UpperCAmelCase_ : Union[str, Any] = in_proj_weight[ : config.hidden_size, : ] UpperCAmelCase_ : Any = in_proj_bias[: config.hidden_size] UpperCAmelCase_ : Optional[Any] = in_proj_weight[ config.hidden_size : config.hidden_size * 2, : ] UpperCAmelCase_ : Dict = in_proj_bias[ config.hidden_size : config.hidden_size * 2 ] UpperCAmelCase_ : List[Any] = in_proj_weight[ -config.hidden_size :, : ] UpperCAmelCase_ : str = in_proj_bias[-config.hidden_size :] def __a ( __lowerCamelCase, __lowerCamelCase, __lowerCamelCase ): UpperCAmelCase_ : Tuple = dct.pop(__lowerCamelCase ) UpperCAmelCase_ : Tuple = val def __a ( ): UpperCAmelCase_ : Union[str, Any] = "http://images.cocodataset.org/val2017/000000039769.jpg" UpperCAmelCase_ : str = Image.open(requests.get(__lowerCamelCase, stream=__lowerCamelCase ).raw ) return im @torch.no_grad() def __a ( __lowerCamelCase, __lowerCamelCase ): UpperCAmelCase_ : List[str] = DeiTConfig() # all deit models have fine-tuned heads UpperCAmelCase_ : Optional[int] = False # dataset (fine-tuned on ImageNet 2012), patch_size and image_size UpperCAmelCase_ : Tuple = 1000 UpperCAmelCase_ : str = "huggingface/label-files" UpperCAmelCase_ : str = "imagenet-1k-id2label.json" UpperCAmelCase_ : List[Any] = json.load(open(hf_hub_download(__lowerCamelCase, __lowerCamelCase, repo_type="dataset" ), "r" ) ) UpperCAmelCase_ : List[str] = {int(__lowerCamelCase ): v for k, v in idalabel.items()} UpperCAmelCase_ : Any = idalabel UpperCAmelCase_ : int = {v: k for k, v in idalabel.items()} UpperCAmelCase_ : Any = int(deit_name[-6:-4] ) UpperCAmelCase_ : Dict = int(deit_name[-3:] ) # size of the architecture if deit_name[9:].startswith("tiny" ): UpperCAmelCase_ : Any = 192 UpperCAmelCase_ : Union[str, Any] = 768 UpperCAmelCase_ : Union[str, Any] = 12 UpperCAmelCase_ : int = 3 elif deit_name[9:].startswith("small" ): UpperCAmelCase_ : List[str] = 384 UpperCAmelCase_ : List[str] = 1536 UpperCAmelCase_ : Dict = 12 UpperCAmelCase_ : Any = 6 if deit_name[9:].startswith("base" ): pass elif deit_name[4:].startswith("large" ): UpperCAmelCase_ : int = 1024 UpperCAmelCase_ : List[Any] = 4096 UpperCAmelCase_ : Optional[int] = 24 UpperCAmelCase_ : int = 16 # load original model from timm UpperCAmelCase_ : Union[str, Any] = timm.create_model(__lowerCamelCase, pretrained=__lowerCamelCase ) timm_model.eval() # load state_dict of original model, remove and rename some keys UpperCAmelCase_ : Optional[Any] = timm_model.state_dict() UpperCAmelCase_ : Tuple = create_rename_keys(__lowerCamelCase, __lowerCamelCase ) for src, dest in rename_keys: rename_key(__lowerCamelCase, __lowerCamelCase, __lowerCamelCase ) read_in_q_k_v(__lowerCamelCase, __lowerCamelCase, __lowerCamelCase ) # load HuggingFace model UpperCAmelCase_ : str = DeiTForImageClassificationWithTeacher(__lowerCamelCase ).eval() model.load_state_dict(__lowerCamelCase ) # Check outputs on an image, prepared by DeiTImageProcessor UpperCAmelCase_ : Union[str, Any] = int( (256 / 224) * config.image_size ) # to maintain same ratio w.r.t. 224 images, see https://github.com/facebookresearch/deit/blob/ab5715372db8c6cad5740714b2216d55aeae052e/datasets.py#L103 UpperCAmelCase_ : Optional[Any] = DeiTImageProcessor(size=__lowerCamelCase, crop_size=config.image_size ) UpperCAmelCase_ : Any = image_processor(images=prepare_img(), return_tensors="pt" ) UpperCAmelCase_ : int = encoding["pixel_values"] UpperCAmelCase_ : Optional[Any] = model(__lowerCamelCase ) UpperCAmelCase_ : Any = timm_model(__lowerCamelCase ) assert timm_logits.shape == outputs.logits.shape assert torch.allclose(__lowerCamelCase, outputs.logits, atol=1E-3 ) Path(__lowerCamelCase ).mkdir(exist_ok=__lowerCamelCase ) print(f"""Saving model {deit_name} to {pytorch_dump_folder_path}""" ) model.save_pretrained(__lowerCamelCase ) print(f"""Saving image processor to {pytorch_dump_folder_path}""" ) image_processor.save_pretrained(__lowerCamelCase ) if __name__ == "__main__": _a = argparse.ArgumentParser() # Required parameters parser.add_argument( '--deit_name', default='vit_deit_base_distilled_patch16_224', type=str, help='Name of the DeiT timm model you\'d like to convert.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model directory.' ) _a = parser.parse_args() convert_deit_checkpoint(args.deit_name, args.pytorch_dump_folder_path)
23
0
'''simple docstring''' import datasets from .evaluate import evaluate __lowercase : Any = '''\ @article{hendrycks2021cuad, title={CUAD: An Expert-Annotated NLP Dataset for Legal Contract Review}, author={Dan Hendrycks and Collin Burns and Anya Chen and Spencer Ball}, journal={arXiv preprint arXiv:2103.06268}, year={2021} } ''' __lowercase : int = ''' This metric wrap the official scoring script for version 1 of the Contract Understanding Atticus Dataset (CUAD). Contract Understanding Atticus Dataset (CUAD) v1 is a corpus of more than 13,000 labels in 510 commercial legal contracts that have been manually labeled to identify 41 categories of important clauses that lawyers look for when reviewing contracts in connection with corporate transactions. ''' __lowercase : Any = ''' Computes CUAD scores (EM, F1, AUPR, Precision@80%Recall, and Precision@90%Recall). Args: predictions: List of question-answers dictionaries with the following key-values: - \'id\': id of the question-answer pair as given in the references (see below) - \'prediction_text\': list of possible texts for the answer, as a list of strings depending on a threshold on the confidence probability of each prediction. references: List of question-answers dictionaries with the following key-values: - \'id\': id of the question-answer pair (see above), - \'answers\': a Dict in the CUAD dataset format { \'text\': list of possible texts for the answer, as a list of strings \'answer_start\': list of start positions for the answer, as a list of ints } Note that answer_start values are not taken into account to compute the metric. Returns: \'exact_match\': Exact match (the normalized answer exactly match the gold answer) \'f1\': The F-score of predicted tokens versus the gold answer \'aupr\': Area Under the Precision-Recall curve \'prec_at_80_recall\': Precision at 80% recall \'prec_at_90_recall\': Precision at 90% recall Examples: >>> predictions = [{\'prediction_text\': [\'The seller:\', \'The buyer/End-User: Shenzhen LOHAS Supply Chain Management Co., Ltd.\'], \'id\': \'LohaCompanyltd_20191209_F-1_EX-10.16_11917878_EX-10.16_Supply Agreement__Parties\'}] >>> references = [{\'answers\': {\'answer_start\': [143, 49], \'text\': [\'The seller:\', \'The buyer/End-User: Shenzhen LOHAS Supply Chain Management Co., Ltd.\']}, \'id\': \'LohaCompanyltd_20191209_F-1_EX-10.16_11917878_EX-10.16_Supply Agreement__Parties\'}] >>> cuad_metric = datasets.load_metric("cuad") >>> results = cuad_metric.compute(predictions=predictions, references=references) >>> print(results) {\'exact_match\': 100.0, \'f1\': 100.0, \'aupr\': 0.0, \'prec_at_80_recall\': 1.0, \'prec_at_90_recall\': 1.0} ''' @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class __lowercase ( datasets.Metric ): def UpperCAmelCase__ (self ): return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { '''predictions''': { '''id''': datasets.Value('''string''' ), '''prediction_text''': datasets.features.Sequence(datasets.Value('''string''' ) ), }, '''references''': { '''id''': datasets.Value('''string''' ), '''answers''': datasets.features.Sequence( { '''text''': datasets.Value('''string''' ), '''answer_start''': datasets.Value('''int32''' ), } ), }, } ) , codebase_urls=['''https://www.atticusprojectai.org/cuad'''] , reference_urls=['''https://www.atticusprojectai.org/cuad'''] , ) def UpperCAmelCase__ (self , A , A ): lowerCamelCase_ : Optional[Any] = {prediction['''id''']: prediction['''prediction_text'''] for prediction in predictions} lowerCamelCase_ : Union[str, Any] = [ { '''paragraphs''': [ { '''qas''': [ { '''answers''': [{'''text''': answer_text} for answer_text in ref['''answers''']['''text''']], '''id''': ref['''id'''], } for ref in references ] } ] } ] lowerCamelCase_ : Optional[int] = evaluate(dataset=A , predictions=A ) return score
318
'''simple docstring''' from multiprocessing import Lock, Pipe, Process # lock used to ensure that two processes do not access a pipe at the same time __lowercase : str = Lock() def lowercase_ ( _lowercase , _lowercase , _lowercase , _lowercase , _lowercase , _lowercase , _lowercase ) -> List[Any]: '''simple docstring''' global process_lock # we perform n swaps since after n swaps we know we are sorted # we *could* stop early if we are sorted already, but it takes as long to # find out we are sorted as it does to sort the list with this algorithm for i in range(0 , 10 ): if (i + position) % 2 == 0 and r_send is not None: # send your value to your right neighbor process_lock.acquire() r_send[1].send(_lowercase ) process_lock.release() # receive your right neighbor's value process_lock.acquire() lowerCamelCase_ : Dict = rr_cv[0].recv() process_lock.release() # take the lower value since you are on the left lowerCamelCase_ : Union[str, Any] = min(_lowercase , _lowercase ) elif (i + position) % 2 != 0 and l_send is not None: # send your value to your left neighbor process_lock.acquire() l_send[1].send(_lowercase ) process_lock.release() # receive your left neighbor's value process_lock.acquire() lowerCamelCase_ : str = lr_cv[0].recv() process_lock.release() # take the higher value since you are on the right lowerCamelCase_ : Any = max(_lowercase , _lowercase ) # after all swaps are performed, send the values back to main result_pipe[1].send(_lowercase ) def lowercase_ ( _lowercase ) -> int: '''simple docstring''' lowerCamelCase_ : int = [] lowerCamelCase_ : Tuple = [] # initialize the list of pipes where the values will be retrieved for _ in arr: result_pipe.append(Pipe() ) # creates the processes # the first and last process only have one neighbor so they are made outside # of the loop lowerCamelCase_ : str = Pipe() lowerCamelCase_ : List[Any] = Pipe() process_array_.append( Process( target=_lowercase , args=(0, arr[0], None, temp_rs, None, temp_rr, result_pipe[0]) , ) ) lowerCamelCase_ : Optional[Any] = temp_rs lowerCamelCase_ : List[str] = temp_rr for i in range(1 , len(_lowercase ) - 1 ): lowerCamelCase_ : str = Pipe() lowerCamelCase_ : Any = Pipe() process_array_.append( Process( target=_lowercase , args=(i, arr[i], temp_ls, temp_rs, temp_lr, temp_rr, result_pipe[i]) , ) ) lowerCamelCase_ : Dict = temp_rs lowerCamelCase_ : Tuple = temp_rr process_array_.append( Process( target=_lowercase , args=( len(_lowercase ) - 1, arr[len(_lowercase ) - 1], temp_ls, None, temp_lr, None, result_pipe[len(_lowercase ) - 1], ) , ) ) # start the processes for p in process_array_: p.start() # wait for the processes to end and write their values to the list for p in range(0 , len(_lowercase ) ): lowerCamelCase_ : Optional[Any] = result_pipe[p][0].recv() process_array_[p].join() return arr def lowercase_ ( ) -> Any: '''simple docstring''' lowerCamelCase_ : Union[str, Any] = list(range(10 , 0 , -1 ) ) print('''Initial List''' ) print(*_lowercase ) lowerCamelCase_ : Optional[int] = odd_even_transposition(_lowercase ) print('''Sorted List\n''' ) print(*_lowercase ) if __name__ == "__main__": main()
318
1
'''simple docstring''' from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available _SCREAMING_SNAKE_CASE = { '''configuration_xlm_roberta_xl''': [ '''XLM_ROBERTA_XL_PRETRAINED_CONFIG_ARCHIVE_MAP''', '''XLMRobertaXLConfig''', '''XLMRobertaXLOnnxConfig''', ], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _SCREAMING_SNAKE_CASE = [ '''XLM_ROBERTA_XL_PRETRAINED_MODEL_ARCHIVE_LIST''', '''XLMRobertaXLForCausalLM''', '''XLMRobertaXLForMaskedLM''', '''XLMRobertaXLForMultipleChoice''', '''XLMRobertaXLForQuestionAnswering''', '''XLMRobertaXLForSequenceClassification''', '''XLMRobertaXLForTokenClassification''', '''XLMRobertaXLModel''', '''XLMRobertaXLPreTrainedModel''', ] if TYPE_CHECKING: from .configuration_xlm_roberta_xl import ( XLM_ROBERTA_XL_PRETRAINED_CONFIG_ARCHIVE_MAP, XLMRobertaXLConfig, XLMRobertaXLOnnxConfig, ) try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_xlm_roberta_xl import ( XLM_ROBERTA_XL_PRETRAINED_MODEL_ARCHIVE_LIST, XLMRobertaXLForCausalLM, XLMRobertaXLForMaskedLM, XLMRobertaXLForMultipleChoice, XLMRobertaXLForQuestionAnswering, XLMRobertaXLForSequenceClassification, XLMRobertaXLForTokenClassification, XLMRobertaXLModel, XLMRobertaXLPreTrainedModel, ) else: import sys _SCREAMING_SNAKE_CASE = _LazyModule(__name__, globals()['''__file__'''], _import_structure)
363
'''simple docstring''' from typing import Dict, List, Optional, Tuple, Union import numpy as np from ...image_processing_utils import BaseImageProcessor, BatchFeature, get_size_dict from ...image_transforms import ( center_crop, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_STANDARD_MEAN, IMAGENET_STANDARD_STD, ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_torch_available, is_torch_tensor, logging if is_torch_available(): import torch _SCREAMING_SNAKE_CASE = logging.get_logger(__name__) class __lowercase ( lowerCAmelCase__ ): '''simple docstring''' a : int = ["pixel_values"] def __init__(self ,_lowerCamelCase = True ,_lowerCamelCase = None ,_lowerCamelCase = PILImageResampling.BILINEAR ,_lowerCamelCase = True ,_lowerCamelCase = None ,_lowerCamelCase = True ,_lowerCamelCase = 1 / 255 ,_lowerCamelCase = True ,_lowerCamelCase = None ,_lowerCamelCase = None ,**_lowerCamelCase ,) -> None: '''simple docstring''' super().__init__(**_lowerCamelCase ) __lowercase = size if size is not None else {'''shortest_edge''': 256} __lowercase = get_size_dict(_lowerCamelCase ,default_to_square=_lowerCamelCase ) __lowercase = crop_size if crop_size is not None else {'''height''': 224, '''width''': 224} __lowercase = get_size_dict(_lowerCamelCase ,param_name='''crop_size''' ) __lowercase = do_resize __lowercase = size __lowercase = resample __lowercase = do_center_crop __lowercase = crop_size __lowercase = do_rescale __lowercase = rescale_factor __lowercase = do_normalize __lowercase = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN __lowercase = image_std if image_std is not None else IMAGENET_STANDARD_STD def _UpperCAmelCase (self ,_lowerCamelCase ,_lowerCamelCase ,_lowerCamelCase = PILImageResampling.BICUBIC ,_lowerCamelCase = None ,**_lowerCamelCase ,) -> np.ndarray: '''simple docstring''' __lowercase = get_size_dict(_lowerCamelCase ,default_to_square=_lowerCamelCase ) if "shortest_edge" not in size: raise ValueError(f"The `size` parameter must contain the key `shortest_edge`. Got {size.keys()}" ) __lowercase = get_resize_output_image_size(_lowerCamelCase ,size=size['''shortest_edge'''] ,default_to_square=_lowerCamelCase ) return resize(_lowerCamelCase ,size=_lowerCamelCase ,resample=_lowerCamelCase ,data_format=_lowerCamelCase ,**_lowerCamelCase ) def _UpperCAmelCase (self ,_lowerCamelCase ,_lowerCamelCase ,_lowerCamelCase = None ,**_lowerCamelCase ,) -> np.ndarray: '''simple docstring''' __lowercase = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f"The `size` parameter must contain the keys `height` and `width`. Got {size.keys()}" ) return center_crop(_lowerCamelCase ,size=(size['''height'''], size['''width''']) ,data_format=_lowerCamelCase ,**_lowerCamelCase ) def _UpperCAmelCase (self ,_lowerCamelCase ,_lowerCamelCase ,_lowerCamelCase = None ,**_lowerCamelCase ) -> np.ndarray: '''simple docstring''' return rescale(_lowerCamelCase ,scale=_lowerCamelCase ,data_format=_lowerCamelCase ,**_lowerCamelCase ) def _UpperCAmelCase (self ,_lowerCamelCase ,_lowerCamelCase ,_lowerCamelCase ,_lowerCamelCase = None ,**_lowerCamelCase ,) -> np.ndarray: '''simple docstring''' return normalize(_lowerCamelCase ,mean=_lowerCamelCase ,std=_lowerCamelCase ,data_format=_lowerCamelCase ,**_lowerCamelCase ) def _UpperCAmelCase (self ,_lowerCamelCase ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = None ,_lowerCamelCase = ChannelDimension.FIRST ,**_lowerCamelCase ,) -> Any: '''simple docstring''' __lowercase = do_resize if do_resize is not None else self.do_resize __lowercase = size if size is not None else self.size __lowercase = get_size_dict(_lowerCamelCase ,default_to_square=_lowerCamelCase ) __lowercase = resample if resample is not None else self.resample __lowercase = do_center_crop if do_center_crop is not None else self.do_center_crop __lowercase = crop_size if crop_size is not None else self.crop_size __lowercase = get_size_dict(_lowerCamelCase ,param_name='''crop_size''' ) __lowercase = do_rescale if do_rescale is not None else self.do_rescale __lowercase = rescale_factor if rescale_factor is not None else self.rescale_factor __lowercase = do_normalize if do_normalize is not None else self.do_normalize __lowercase = image_mean if image_mean is not None else self.image_mean __lowercase = image_std if image_std is not None else self.image_std __lowercase = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( '''Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ''' '''torch.Tensor, tf.Tensor or jax.ndarray.''' ) if do_resize and size is None: raise ValueError('''Size must be specified if do_resize is True.''' ) if do_center_crop and crop_size is None: raise ValueError('''Crop size must be specified if do_center_crop is True.''' ) if do_rescale and rescale_factor is None: raise ValueError('''Rescale factor must be specified if do_rescale is True.''' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('''Image mean and std must be specified if do_normalize is True.''' ) # All transformations expect numpy arrays. __lowercase = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: __lowercase = [self.resize(image=_lowerCamelCase ,size=_lowerCamelCase ,resample=_lowerCamelCase ) for image in images] if do_center_crop: __lowercase = [self.center_crop(image=_lowerCamelCase ,size=_lowerCamelCase ) for image in images] if do_rescale: __lowercase = [self.rescale(image=_lowerCamelCase ,scale=_lowerCamelCase ) for image in images] if do_normalize: __lowercase = [self.normalize(image=_lowerCamelCase ,mean=_lowerCamelCase ,std=_lowerCamelCase ) for image in images] __lowercase = [to_channel_dimension_format(_lowerCamelCase ,_lowerCamelCase ) for image in images] __lowercase = {'''pixel_values''': images} return BatchFeature(data=_lowerCamelCase ,tensor_type=_lowerCamelCase ) def _UpperCAmelCase (self ,_lowerCamelCase ,_lowerCamelCase = None ) -> str: '''simple docstring''' __lowercase = outputs.logits # Resize logits and compute semantic segmentation maps if target_sizes is not None: if len(_lowerCamelCase ) != len(_lowerCamelCase ): raise ValueError( '''Make sure that you pass in as many target sizes as the batch dimension of the logits''' ) if is_torch_tensor(_lowerCamelCase ): __lowercase = target_sizes.numpy() __lowercase = [] for idx in range(len(_lowerCamelCase ) ): __lowercase = torch.nn.functional.interpolate( logits[idx].unsqueeze(dim=0 ) ,size=target_sizes[idx] ,mode='''bilinear''' ,align_corners=_lowerCamelCase ) __lowercase = resized_logits[0].argmax(dim=0 ) semantic_segmentation.append(_lowerCamelCase ) else: __lowercase = logits.argmax(dim=1 ) __lowercase = [semantic_segmentation[i] for i in range(semantic_segmentation.shape[0] )] return semantic_segmentation
217
0
"""simple docstring""" def __SCREAMING_SNAKE_CASE ( A_ = 10_00 ): return sum(e for e in range(3 , A_ ) if e % 3 == 0 or e % 5 == 0 ) if __name__ == "__main__": print(F'''{solution() = }''')
106
'''simple docstring''' __snake_case = 65521 def a ( __a ) -> int: '''simple docstring''' UpperCamelCase__ :Tuple = 1 UpperCamelCase__ :Any = 0 for plain_chr in plain_text: UpperCamelCase__ :List[str] = (a + ord(__a )) % MOD_ADLER UpperCamelCase__ :Tuple = (b + a) % MOD_ADLER return (b << 16) | a
97
0
def A ( a_ ) -> int: __UpperCamelCase : str =len(a_ ) __UpperCamelCase : str =len(matrix[0] ) __UpperCamelCase : Tuple =min(a_ ,a_ ) for row in range(a_ ): # Check if diagonal element is not zero if matrix[row][row] != 0: # Eliminate all the elements below the diagonal for col in range(row + 1 ,a_ ): __UpperCamelCase : Any =matrix[col][row] / matrix[row][row] for i in range(a_ ,a_ ): matrix[col][i] -= multiplier * matrix[row][i] else: # Find a non-zero diagonal element to swap rows __UpperCamelCase : List[str] =True for i in range(row + 1 ,a_ ): if matrix[i][row] != 0: __UpperCamelCase , __UpperCamelCase : List[Any] =matrix[i], matrix[row] __UpperCamelCase : int =False break if reduce: rank -= 1 for i in range(a_ ): __UpperCamelCase : Union[str, Any] =matrix[i][rank] # Reduce the row pointer by one to stay on the same row row -= 1 return rank if __name__ == "__main__": import doctest doctest.testmod()
245
from typing import Dict, List, Optional, Union import numpy as np from ...image_processing_utils import BaseImageProcessor, BatchFeature, get_size_dict from ...image_transforms import ( center_crop, convert_to_rgb, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( OPENAI_CLIP_MEAN, OPENAI_CLIP_STD, ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging A_ :Any = logging.get_logger(__name__) if is_vision_available(): import PIL class __A ( a ): """simple docstring""" UpperCamelCase__ : Optional[Any] =["""pixel_values"""] def __init__( self , lowerCamelCase__ = True , lowerCamelCase__ = None , lowerCamelCase__ = PILImageResampling.BICUBIC , lowerCamelCase__ = True , lowerCamelCase__ = None , lowerCamelCase__ = True , lowerCamelCase__ = 1 / 255 , lowerCamelCase__ = True , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = True , **lowerCamelCase__ , ): """simple docstring""" super().__init__(**lowerCamelCase__ ) __UpperCamelCase : Optional[int] =size if size is not None else {'shortest_edge': 224} __UpperCamelCase : Dict =get_size_dict(lowerCamelCase__ , default_to_square=lowerCamelCase__ ) __UpperCamelCase : Optional[int] =crop_size if crop_size is not None else {'height': 224, 'width': 224} __UpperCamelCase : List[str] =get_size_dict(lowerCamelCase__ , default_to_square=lowerCamelCase__ , param_name='crop_size' ) __UpperCamelCase : Optional[Any] =do_resize __UpperCamelCase : Optional[int] =size __UpperCamelCase : List[Any] =resample __UpperCamelCase : Optional[int] =do_center_crop __UpperCamelCase : Optional[int] =crop_size __UpperCamelCase : str =do_rescale __UpperCamelCase : Any =rescale_factor __UpperCamelCase : Union[str, Any] =do_normalize __UpperCamelCase : Union[str, Any] =image_mean if image_mean is not None else OPENAI_CLIP_MEAN __UpperCamelCase : List[Any] =image_std if image_std is not None else OPENAI_CLIP_STD __UpperCamelCase : Any =do_convert_rgb def __lowercase ( self , lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ = PILImageResampling.BICUBIC , lowerCamelCase__ = None , **lowerCamelCase__ , ): """simple docstring""" __UpperCamelCase : Optional[Any] =get_size_dict(lowerCamelCase__ , default_to_square=lowerCamelCase__ ) if "shortest_edge" not in size: raise ValueError(f'The `size` parameter must contain the key `shortest_edge`. Got {size.keys()}' ) __UpperCamelCase : Tuple =get_resize_output_image_size(lowerCamelCase__ , size=size['shortest_edge'] , default_to_square=lowerCamelCase__ ) return resize(lowerCamelCase__ , size=lowerCamelCase__ , resample=lowerCamelCase__ , data_format=lowerCamelCase__ , **lowerCamelCase__ ) def __lowercase ( self , lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ = None , **lowerCamelCase__ , ): """simple docstring""" __UpperCamelCase : List[str] =get_size_dict(lowerCamelCase__ ) if "height" not in size or "width" not in size: raise ValueError(f'The `size` parameter must contain the keys (height, width). Got {size.keys()}' ) return center_crop(lowerCamelCase__ , size=(size['height'], size['width']) , data_format=lowerCamelCase__ , **lowerCamelCase__ ) def __lowercase ( self , lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ = None , **lowerCamelCase__ , ): """simple docstring""" return rescale(lowerCamelCase__ , scale=lowerCamelCase__ , data_format=lowerCamelCase__ , **lowerCamelCase__ ) def __lowercase ( self , lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ = None , **lowerCamelCase__ , ): """simple docstring""" return normalize(lowerCamelCase__ , mean=lowerCamelCase__ , std=lowerCamelCase__ , data_format=lowerCamelCase__ , **lowerCamelCase__ ) def __lowercase ( self , lowerCamelCase__ , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = None , lowerCamelCase__ = ChannelDimension.FIRST , **lowerCamelCase__ , ): """simple docstring""" __UpperCamelCase : int =do_resize if do_resize is not None else self.do_resize __UpperCamelCase : Dict =size if size is not None else self.size __UpperCamelCase : List[Any] =get_size_dict(lowerCamelCase__ , param_name='size' , default_to_square=lowerCamelCase__ ) __UpperCamelCase : Tuple =resample if resample is not None else self.resample __UpperCamelCase : Any =do_center_crop if do_center_crop is not None else self.do_center_crop __UpperCamelCase : Tuple =crop_size if crop_size is not None else self.crop_size __UpperCamelCase : Any =get_size_dict(lowerCamelCase__ , param_name='crop_size' , default_to_square=lowerCamelCase__ ) __UpperCamelCase : List[Any] =do_rescale if do_rescale is not None else self.do_rescale __UpperCamelCase : Optional[Any] =rescale_factor if rescale_factor is not None else self.rescale_factor __UpperCamelCase : Dict =do_normalize if do_normalize is not None else self.do_normalize __UpperCamelCase : Optional[Any] =image_mean if image_mean is not None else self.image_mean __UpperCamelCase : List[str] =image_std if image_std is not None else self.image_std __UpperCamelCase : Union[str, Any] =do_convert_rgb if do_convert_rgb is not None else self.do_convert_rgb __UpperCamelCase : int =make_list_of_images(lowerCamelCase__ ) if not valid_images(lowerCamelCase__ ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None: raise ValueError('Size must be specified if do_resize is True.' ) if do_center_crop and crop_size is None: raise ValueError('Crop size must be specified if do_center_crop is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # PIL RGBA images are converted to RGB if do_convert_rgb: __UpperCamelCase : Union[str, Any] =[convert_to_rgb(lowerCamelCase__ ) for image in images] # All transformations expect numpy arrays. __UpperCamelCase : List[str] =[to_numpy_array(lowerCamelCase__ ) for image in images] if do_resize: __UpperCamelCase : str =[self.resize(image=lowerCamelCase__ , size=lowerCamelCase__ , resample=lowerCamelCase__ ) for image in images] if do_center_crop: __UpperCamelCase : Union[str, Any] =[self.center_crop(image=lowerCamelCase__ , size=lowerCamelCase__ ) for image in images] if do_rescale: __UpperCamelCase : Optional[Any] =[self.rescale(image=lowerCamelCase__ , scale=lowerCamelCase__ ) for image in images] if do_normalize: __UpperCamelCase : Optional[int] =[self.normalize(image=lowerCamelCase__ , mean=lowerCamelCase__ , std=lowerCamelCase__ ) for image in images] __UpperCamelCase : List[Any] =[to_channel_dimension_format(lowerCamelCase__ , lowerCamelCase__ ) for image in images] __UpperCamelCase : List[Any] ={'pixel_values': images} return BatchFeature(data=lowerCamelCase__ , tensor_type=lowerCamelCase__ )
245
1
"""simple docstring""" def __lowerCamelCase ( a_ : int ) -> int: __SCREAMING_SNAKE_CASE :Optional[Any] = 1 for i in range(1 , num + 1 ): fact *= i return fact def __lowerCamelCase ( a_ : int ) -> int: __SCREAMING_SNAKE_CASE :Tuple = 0 while number > 0: __SCREAMING_SNAKE_CASE :Union[str, Any] = number % 10 sum_of_digits += last_digit __SCREAMING_SNAKE_CASE :Optional[Any] = number // 10 # Removing the last_digit from the given number return sum_of_digits def __lowerCamelCase ( a_ : int = 1_00 ) -> int: __SCREAMING_SNAKE_CASE :int = factorial(a_ ) __SCREAMING_SNAKE_CASE :List[str] = split_and_add(a_ ) return result if __name__ == "__main__": print(solution(int(input("Enter the Number: ").strip())))
191
"""simple docstring""" import argparse import pickle import numpy as np import torch from torch import nn from transformers import ReformerConfig, ReformerModelWithLMHead from transformers.utils import logging logging.set_verbosity_info() def __lowerCamelCase ( a_ : Union[str, Any] , a_ : Tuple , a_ : str=None ) -> Union[str, Any]: # set parameter of one layer assert torch_layer.weight.shape == weight.shape, f'''{torch_layer} layer.weight does not match''' __SCREAMING_SNAKE_CASE :Dict = nn.Parameter(a_ ) if bias is not None: assert torch_layer.bias.shape == bias.shape, f'''{torch_layer} layer.bias does not match''' __SCREAMING_SNAKE_CASE :Optional[int] = nn.Parameter(a_ ) def __lowerCamelCase ( a_ : Dict , a_ : str , a_ : Optional[int] ) -> Any: # set torch weights for 1-to-1 comparison __SCREAMING_SNAKE_CASE :List[Any] = np.asarray(weights[0] ) __SCREAMING_SNAKE_CASE :Optional[int] = np.asarray(weights[1] ) __SCREAMING_SNAKE_CASE :Optional[int] = np.asarray(weights[2] ) set_param( torch_layer.self_attention.query_key , torch.tensor(a_ ).transpose(1 , 2 ).contiguous().view(-1 , a_ ) , ) set_param( torch_layer.self_attention.value , torch.tensor(a_ ).transpose(1 , 2 ).contiguous().view(-1 , a_ ) , ) set_param( torch_layer.output.dense , torch.tensor(a_ ).view(-1 , a_ ).contiguous().transpose(0 , 1 ) , ) def __lowerCamelCase ( a_ : List[Any] , a_ : Dict , a_ : List[str] ) -> Union[str, Any]: # set torch weights for 1-to-1 comparison __SCREAMING_SNAKE_CASE :Union[str, Any] = np.asarray(weights[0] ) __SCREAMING_SNAKE_CASE :Union[str, Any] = np.asarray(weights[1] ) __SCREAMING_SNAKE_CASE :Any = np.asarray(weights[2] ) __SCREAMING_SNAKE_CASE :Dict = np.asarray(weights[3] ) set_param( torch_layer.self_attention.query , torch.tensor(a_ ).transpose(1 , 2 ).contiguous().view(-1 , a_ ) , ) set_param( torch_layer.self_attention.key , torch.tensor(a_ ).transpose(1 , 2 ).contiguous().view(-1 , a_ ) , ) set_param( torch_layer.self_attention.value , torch.tensor(a_ ).transpose(1 , 2 ).contiguous().view(-1 , a_ ) , ) set_param( torch_layer.output.dense , torch.tensor(a_ ).view(-1 , a_ ).contiguous().transpose(0 , 1 ) , ) def __lowerCamelCase ( a_ : Any , a_ : List[str] , a_ : Optional[int] ) -> Union[str, Any]: # layernorm 1 __SCREAMING_SNAKE_CASE :Any = weights[0][0][0] __SCREAMING_SNAKE_CASE :Union[str, Any] = np.asarray(layer_norm_a[0] ) __SCREAMING_SNAKE_CASE :Union[str, Any] = np.asarray(layer_norm_a[1] ) set_param( torch_block.attention.layer_norm , torch.tensor(a_ ) , torch.tensor(a_ ) , ) # lsh weights + output __SCREAMING_SNAKE_CASE :List[Any] = weights[0][1] if len(a_ ) < 4: set_layer_weights_in_torch_lsh(a_ , torch_block.attention , a_ ) else: set_layer_weights_in_torch_local(a_ , torch_block.attention , a_ ) # intermediate weighs __SCREAMING_SNAKE_CASE :List[Any] = weights[2][0][1][2] # Chunked Feed Forward if len(a_ ) == 4: __SCREAMING_SNAKE_CASE :List[str] = intermediate_weights[2] # layernorm 2 __SCREAMING_SNAKE_CASE :Tuple = np.asarray(intermediate_weights[0][0] ) __SCREAMING_SNAKE_CASE :Union[str, Any] = np.asarray(intermediate_weights[0][1] ) set_param( torch_block.feed_forward.layer_norm , torch.tensor(a_ ) , torch.tensor(a_ ) , ) # intermediate dense __SCREAMING_SNAKE_CASE :int = np.asarray(intermediate_weights[1][0] ) __SCREAMING_SNAKE_CASE :int = np.asarray(intermediate_weights[1][1] ) set_param( torch_block.feed_forward.dense.dense , torch.tensor(a_ ).transpose(0 , 1 ).contiguous() , torch.tensor(a_ ) , ) # intermediate out __SCREAMING_SNAKE_CASE :str = np.asarray(intermediate_weights[4][0] ) __SCREAMING_SNAKE_CASE :str = np.asarray(intermediate_weights[4][1] ) set_param( torch_block.feed_forward.output.dense , torch.tensor(a_ ).transpose(0 , 1 ).contiguous() , torch.tensor(a_ ) , ) def __lowerCamelCase ( a_ : List[str] , a_ : str , a_ : List[Any] ) -> Optional[Any]: # reformer model __SCREAMING_SNAKE_CASE :Dict = torch_model.reformer # word embeds __SCREAMING_SNAKE_CASE :List[Any] = np.asarray(weights[1] ) set_param( torch_model_reformer.embeddings.word_embeddings , torch.tensor(a_ ) , ) if isinstance(weights[3] , a_ ): __SCREAMING_SNAKE_CASE :List[Any] = torch_model_reformer.embeddings.position_embeddings for emb_idx in range(len(position_embeddings.weights ) ): __SCREAMING_SNAKE_CASE :List[str] = np.asarray(weights[3][emb_idx][0] ) assert ( position_embeddings.weights[emb_idx].shape == emb_weights.shape ), f'''{position_embeddings[emb_idx]} emb does not match''' __SCREAMING_SNAKE_CASE :str = nn.Parameter(torch.tensor(a_ ) ) __SCREAMING_SNAKE_CASE :Optional[int] = weights[5] assert len(torch_model_reformer.encoder.layers ) * 4 == len( a_ ), "HF and trax model do not have the same number of layers" for layer_idx, layer in enumerate(torch_model_reformer.encoder.layers ): __SCREAMING_SNAKE_CASE :Dict = trax_layer_weights[4 * layer_idx : 4 * (layer_idx + 1)] set_block_weights_in_torch(a_ , a_ , a_ ) # output layer norm __SCREAMING_SNAKE_CASE :Optional[int] = np.asarray(weights[7][0] ) __SCREAMING_SNAKE_CASE :List[Any] = np.asarray(weights[7][1] ) set_param( torch_model_reformer.encoder.layer_norm , torch.tensor(a_ ) , torch.tensor(a_ ) , ) # output embeddings __SCREAMING_SNAKE_CASE :Optional[int] = np.asarray(weights[9][0] ) __SCREAMING_SNAKE_CASE :str = np.asarray(weights[9][1] ) set_param( torch_model.lm_head.decoder , torch.tensor(a_ ).transpose(0 , 1 ).contiguous() , torch.tensor(a_ ) , ) def __lowerCamelCase ( a_ : Any , a_ : Dict , a_ : Dict ) -> Tuple: # Initialise PyTorch model __SCREAMING_SNAKE_CASE :List[str] = ReformerConfig.from_json_file(a_ ) print(f'''Building PyTorch model from configuration: {config}''' ) __SCREAMING_SNAKE_CASE :List[Any] = ReformerModelWithLMHead(a_ ) with open(a_ , '''rb''' ) as f: __SCREAMING_SNAKE_CASE :Any = pickle.load(a_ )['''weights'''] set_model_weights_in_torch(a_ , a_ , config.hidden_size ) # Save pytorch-model print(f'''Save PyTorch model to {pytorch_dump_path}''' ) torch.save(model.state_dict() , a_ ) if __name__ == "__main__": lowerCamelCase_ = argparse.ArgumentParser() # Required parameters parser.add_argument( "--trax_model_pkl_path", default=None, type=str, required=True, help="Path to the TensorFlow checkpoint path." ) parser.add_argument( "--config_file", default=None, type=str, required=True, help=( "The config json file corresponding to the pre-trained Reformer model. \n" "This specifies the model architecture." ), ) parser.add_argument( "--pytorch_dump_path", default=None, type=str, required=True, help="Path to the output PyTorch model." ) lowerCamelCase_ = parser.parse_args() convert_trax_checkpoint_to_pytorch(args.trax_model_pkl_path, args.config_file, args.pytorch_dump_path)
191
1
import torch from transformers import PreTrainedModel, XLMRobertaConfig, XLMRobertaModel class __lowerCAmelCase ( SCREAMING_SNAKE_CASE__): _lowercase : str = 'M-CLIP' def __init__( self , lowerCAmelCase__=1_0_2_4 , lowerCAmelCase__=7_6_8 , **lowerCAmelCase__ ) -> Optional[int]: '''simple docstring''' a__ : str =transformerDimSize a__ : Any =imageDimSize super().__init__(**a_ ) class __lowerCAmelCase ( SCREAMING_SNAKE_CASE__): _lowercase : int = MCLIPConfig def __init__( self , lowerCAmelCase__ , *lowerCAmelCase__ , **lowerCAmelCase__ ) -> str: '''simple docstring''' super().__init__(a_ , *a_ , **a_ ) a__ : int =XLMRobertaModel(a_ ) a__ : int =torch.nn.Linear( in_features=config.transformerDimensions , out_features=config.numDims ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ ) -> Tuple: '''simple docstring''' a__ : Any =self.transformer(input_ids=a_ , attention_mask=a_ )[0] a__ : int =(embs * attention_mask.unsqueeze(2 )).sum(dim=1 ) / attention_mask.sum(dim=1 )[:, None] return self.LinearTransformation(a_ ), embs
359
import unittest from transformers import AutoTokenizer, NystromformerConfig, is_torch_available from transformers.testing_utils import require_torch, slow, torch_device from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import ( NystromformerForMaskedLM, NystromformerForMultipleChoice, NystromformerForQuestionAnswering, NystromformerForSequenceClassification, NystromformerForTokenClassification, NystromformerModel, ) from transformers.models.nystromformer.modeling_nystromformer import NYSTROMFORMER_PRETRAINED_MODEL_ARCHIVE_LIST class __lowerCAmelCase : def __init__( self , lowerCAmelCase__ , lowerCAmelCase__=1_3 , lowerCAmelCase__=7 , lowerCAmelCase__=True , lowerCAmelCase__=True , lowerCAmelCase__=True , lowerCAmelCase__=True , lowerCAmelCase__=9_9 , lowerCAmelCase__=3_2 , lowerCAmelCase__=5 , lowerCAmelCase__=4 , lowerCAmelCase__=3_7 , lowerCAmelCase__="gelu" , lowerCAmelCase__=0.1 , lowerCAmelCase__=0.1 , lowerCAmelCase__=5_1_2 , lowerCAmelCase__=1_6 , lowerCAmelCase__=2 , lowerCAmelCase__=0.02 , lowerCAmelCase__=3 , lowerCAmelCase__=4 , lowerCAmelCase__=None , ) -> List[Any]: '''simple docstring''' a__ : Optional[Any] =parent a__ : Tuple =batch_size a__ : List[Any] =seq_length a__ : Dict =is_training a__ : Any =use_input_mask a__ : int =use_token_type_ids a__ : Optional[Any] =use_labels a__ : Optional[Any] =vocab_size a__ : List[str] =hidden_size a__ : int =num_hidden_layers a__ : Tuple =num_attention_heads a__ : Union[str, Any] =intermediate_size a__ : Optional[int] =hidden_act a__ : int =hidden_dropout_prob a__ : Union[str, Any] =attention_probs_dropout_prob a__ : List[Any] =max_position_embeddings a__ : str =type_vocab_size a__ : Optional[Any] =type_sequence_label_size a__ : Union[str, Any] =initializer_range a__ : List[Any] =num_labels a__ : str =num_choices a__ : int =scope def _lowercase ( self ) -> int: '''simple docstring''' a__ : List[Any] =ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) a__ : str =None if self.use_input_mask: a__ : List[Any] =random_attention_mask([self.batch_size, self.seq_length] ) a__ : str =None if self.use_token_type_ids: a__ : List[str] =ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) a__ : Dict =None a__ : str =None a__ : str =None if self.use_labels: a__ : List[str] =ids_tensor([self.batch_size] , self.type_sequence_label_size ) a__ : Tuple =ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) a__ : Dict =ids_tensor([self.batch_size] , self.num_choices ) a__ : Tuple =self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def _lowercase ( self ) -> Tuple: '''simple docstring''' return NystromformerConfig( vocab_size=self.vocab_size , hidden_size=self.hidden_size , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , type_vocab_size=self.type_vocab_size , is_decoder=lowerCAmelCase__ , initializer_range=self.initializer_range , ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> List[Any]: '''simple docstring''' a__ : Tuple =NystromformerModel(config=lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() a__ : Optional[Any] =model(lowerCAmelCase__ , attention_mask=lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ ) a__ : str =model(lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ ) a__ : Optional[int] =model(lowerCAmelCase__ ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> int: '''simple docstring''' a__ : int =NystromformerForMaskedLM(config=lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() a__ : Dict =model(lowerCAmelCase__ , attention_mask=lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ , labels=lowerCAmelCase__ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> Any: '''simple docstring''' a__ : Optional[int] =NystromformerForQuestionAnswering(config=lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() a__ : str =model( lowerCAmelCase__ , attention_mask=lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ , start_positions=lowerCAmelCase__ , end_positions=lowerCAmelCase__ , ) self.parent.assertEqual(result.start_logits.shape , (self.batch_size, self.seq_length) ) self.parent.assertEqual(result.end_logits.shape , (self.batch_size, self.seq_length) ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> Optional[int]: '''simple docstring''' a__ : Optional[Any] =self.num_labels a__ : Dict =NystromformerForSequenceClassification(lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() a__ : List[str] =model(lowerCAmelCase__ , attention_mask=lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ , labels=lowerCAmelCase__ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels) ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> List[str]: '''simple docstring''' a__ : Tuple =self.num_labels a__ : List[str] =NystromformerForTokenClassification(config=lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() a__ : List[Any] =model(lowerCAmelCase__ , attention_mask=lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ , labels=lowerCAmelCase__ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels) ) def _lowercase ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> Tuple: '''simple docstring''' a__ : List[Any] =self.num_choices a__ : Optional[Any] =NystromformerForMultipleChoice(config=lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() a__ : List[str] =input_ids.unsqueeze(1 ).expand(-1 , self.num_choices , -1 ).contiguous() a__ : List[Any] =token_type_ids.unsqueeze(1 ).expand(-1 , self.num_choices , -1 ).contiguous() a__ : List[Any] =input_mask.unsqueeze(1 ).expand(-1 , self.num_choices , -1 ).contiguous() a__ : Dict =model( lowerCAmelCase__ , attention_mask=lowerCAmelCase__ , token_type_ids=lowerCAmelCase__ , labels=lowerCAmelCase__ , ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_choices) ) def _lowercase ( self ) -> Tuple: '''simple docstring''' a__ : Optional[Any] =self.prepare_config_and_inputs() ( ( a__ ) , ( a__ ) , ( a__ ) , ( a__ ) , ( a__ ) , ( a__ ) , ( a__ ) , ) : List[str] =config_and_inputs a__ : str ={"input_ids": input_ids, "token_type_ids": token_type_ids, "attention_mask": input_mask} return config, inputs_dict @require_torch class __lowerCAmelCase ( UpperCamelCase__ , UpperCamelCase__ , unittest.TestCase): _lowercase : int = ( ( NystromformerModel, NystromformerForMaskedLM, NystromformerForMultipleChoice, NystromformerForQuestionAnswering, NystromformerForSequenceClassification, NystromformerForTokenClassification, ) if is_torch_available() else () ) _lowercase : Union[str, Any] = ( { """feature-extraction""": NystromformerModel, """fill-mask""": NystromformerForMaskedLM, """question-answering""": NystromformerForQuestionAnswering, """text-classification""": NystromformerForSequenceClassification, """token-classification""": NystromformerForTokenClassification, """zero-shot""": NystromformerForSequenceClassification, } if is_torch_available() else {} ) _lowercase : Union[str, Any] = False _lowercase : Union[str, Any] = False def _lowercase ( self ) -> List[str]: '''simple docstring''' a__ : Optional[int] =NystromformerModelTester(self ) a__ : Optional[int] =ConfigTester(self , config_class=lowerCAmelCase__ , hidden_size=3_7 ) def _lowercase ( self ) -> int: '''simple docstring''' self.config_tester.run_common_tests() def _lowercase ( self ) -> Dict: '''simple docstring''' a__ : List[str] =self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*lowerCAmelCase__ ) def _lowercase ( self ) -> Optional[Any]: '''simple docstring''' a__ : Tuple =self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: a__ : int =type self.model_tester.create_and_check_model(*lowerCAmelCase__ ) def _lowercase ( self ) -> Optional[Any]: '''simple docstring''' a__ : Optional[Any] =self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_lm(*lowerCAmelCase__ ) def _lowercase ( self ) -> Dict: '''simple docstring''' a__ : str =self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_multiple_choice(*lowerCAmelCase__ ) def _lowercase ( self ) -> List[str]: '''simple docstring''' a__ : Tuple =self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_question_answering(*lowerCAmelCase__ ) def _lowercase ( self ) -> Union[str, Any]: '''simple docstring''' a__ : Tuple =self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_sequence_classification(*lowerCAmelCase__ ) def _lowercase ( self ) -> Optional[Any]: '''simple docstring''' a__ : int =self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification(*lowerCAmelCase__ ) @slow def _lowercase ( self ) -> str: '''simple docstring''' for model_name in NYSTROMFORMER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: a__ : int =NystromformerModel.from_pretrained(lowerCAmelCase__ ) self.assertIsNotNone(lowerCAmelCase__ ) @require_torch class __lowerCAmelCase ( unittest.TestCase): @slow def _lowercase ( self ) -> str: '''simple docstring''' a__ : str =NystromformerModel.from_pretrained("uw-madison/nystromformer-512" ) a__ : int =torch.tensor([[0, 1, 2, 3, 4, 5]] ) with torch.no_grad(): a__ : Tuple =model(lowerCAmelCase__ )[0] a__ : List[str] =torch.Size((1, 6, 7_6_8) ) self.assertEqual(output.shape , lowerCAmelCase__ ) a__ : int =torch.tensor( [[[-0.45_32, -0.09_36, 0.51_37], [-0.26_76, 0.06_28, 0.61_86], [-0.36_29, -0.17_26, 0.47_16]]] ) self.assertTrue(torch.allclose(output[:, :3, :3] , lowerCAmelCase__ , atol=1E-4 ) ) @slow def _lowercase ( self ) -> Optional[Any]: '''simple docstring''' a__ : Union[str, Any] ="the [MASK] of Belgium is Brussels" a__ : str =AutoTokenizer.from_pretrained("uw-madison/nystromformer-512" ) a__ : int =NystromformerForMaskedLM.from_pretrained("uw-madison/nystromformer-512" ) a__ : List[Any] =tokenizer(lowerCAmelCase__ , return_tensors="pt" ) with torch.no_grad(): a__ : str =model(encoding.input_ids ).logits a__ : List[str] =token_logits[:, 2, :].argmax(-1 )[0] self.assertEqual(tokenizer.decode(lowerCAmelCase__ ) , "capital" )
148
0
import pytest from datasets.utils.sharding import _distribute_shards, _number_of_shards_in_gen_kwargs, _split_gen_kwargs @pytest.mark.parametrize( '''kwargs, expected''' , [ ({'''num_shards''': 0, '''max_num_jobs''': 1}, []), ({'''num_shards''': 10, '''max_num_jobs''': 1}, [range(10 )]), ({'''num_shards''': 10, '''max_num_jobs''': 10}, [range(SCREAMING_SNAKE_CASE , i + 1 ) for i in range(10 )]), ({'''num_shards''': 1, '''max_num_jobs''': 10}, [range(1 )]), ({'''num_shards''': 10, '''max_num_jobs''': 3}, [range(0 , 4 ), range(4 , 7 ), range(7 , 10 )]), ({'''num_shards''': 3, '''max_num_jobs''': 10}, [range(0 , 1 ), range(1 , 2 ), range(2 , 3 )]), ] , ) def _a ( SCREAMING_SNAKE_CASE : Tuple , SCREAMING_SNAKE_CASE : Dict ): """simple docstring""" UpperCamelCase__ : Tuple = _distribute_shards(**SCREAMING_SNAKE_CASE ) assert out == expected @pytest.mark.parametrize( '''gen_kwargs, max_num_jobs, expected''' , [ ({'''foo''': 0}, 10, [{'''foo''': 0}]), ({'''shards''': [0, 1, 2, 3]}, 1, [{'''shards''': [0, 1, 2, 3]}]), ({'''shards''': [0, 1, 2, 3]}, 4, [{'''shards''': [0]}, {'''shards''': [1]}, {'''shards''': [2]}, {'''shards''': [3]}]), ({'''shards''': [0, 1]}, 4, [{'''shards''': [0]}, {'''shards''': [1]}]), ({'''shards''': [0, 1, 2, 3]}, 2, [{'''shards''': [0, 1]}, {'''shards''': [2, 3]}]), ] , ) def _a ( SCREAMING_SNAKE_CASE : Any , SCREAMING_SNAKE_CASE : List[str] , SCREAMING_SNAKE_CASE : Tuple ): """simple docstring""" UpperCamelCase__ : Any = _split_gen_kwargs(SCREAMING_SNAKE_CASE , SCREAMING_SNAKE_CASE ) assert out == expected @pytest.mark.parametrize( '''gen_kwargs, expected''' , [ ({'''foo''': 0}, 1), ({'''shards''': [0]}, 1), ({'''shards''': [0, 1, 2, 3]}, 4), ({'''shards''': [0, 1, 2, 3], '''foo''': 0}, 4), ({'''shards''': [0, 1, 2, 3], '''other''': (0, 1)}, 4), ({'''shards''': [0, 1, 2, 3], '''shards2''': [0, 1]}, RuntimeError), ] , ) def _a ( SCREAMING_SNAKE_CASE : str , SCREAMING_SNAKE_CASE : List[Any] ): """simple docstring""" if expected is RuntimeError: with pytest.raises(SCREAMING_SNAKE_CASE ): _number_of_shards_in_gen_kwargs(SCREAMING_SNAKE_CASE ) else: UpperCamelCase__ : Union[str, Any] = _number_of_shards_in_gen_kwargs(SCREAMING_SNAKE_CASE ) assert out == expected
146
'''simple docstring''' import itertools import os import random import tempfile import unittest import numpy as np from datasets import load_dataset from transformers import is_speech_available from transformers.testing_utils import check_json_file_has_correct_format, require_torch, require_torchaudio from transformers.utils.import_utils import is_torch_available from ...test_sequence_feature_extraction_common import SequenceFeatureExtractionTestMixin if is_speech_available(): from transformers import WhisperFeatureExtractor if is_torch_available(): import torch _snake_case = random.Random() def _A ( snake_case , snake_case=1.0 , snake_case=None , snake_case=None ) -> Optional[Any]: if rng is None: _lowercase : List[str] = global_rng _lowercase : Optional[Any] = [] for batch_idx in range(shape[0] ): values.append([] ) for _ in range(shape[1] ): values[-1].append(rng.random() * scale ) return values @require_torch @require_torchaudio class a__ ( unittest.TestCase ): def __init__( self , _UpperCamelCase , _UpperCamelCase=7 , _UpperCamelCase=400 , _UpperCamelCase=2000 , _UpperCamelCase=10 , _UpperCamelCase=160 , _UpperCamelCase=8 , _UpperCamelCase=0.0 , _UpperCamelCase=4000 , _UpperCamelCase=False , _UpperCamelCase=True , ): """simple docstring""" _lowercase : int = parent _lowercase : Optional[int] = batch_size _lowercase : List[Any] = min_seq_length _lowercase : Union[str, Any] = max_seq_length _lowercase : int = (self.max_seq_length - self.min_seq_length) // (self.batch_size - 1) _lowercase : Union[str, Any] = padding_value _lowercase : Dict = sampling_rate _lowercase : Any = return_attention_mask _lowercase : Union[str, Any] = do_normalize _lowercase : int = feature_size _lowercase : str = chunk_length _lowercase : Any = hop_length def _lowerCamelCase ( self ): """simple docstring""" return { "feature_size": self.feature_size, "hop_length": self.hop_length, "chunk_length": self.chunk_length, "padding_value": self.padding_value, "sampling_rate": self.sampling_rate, "return_attention_mask": self.return_attention_mask, "do_normalize": self.do_normalize, } def _lowerCamelCase ( self , _UpperCamelCase=False , _UpperCamelCase=False ): """simple docstring""" def _flatten(_UpperCamelCase ): return list(itertools.chain(*_UpperCamelCase ) ) if equal_length: _lowercase : List[Any] = [floats_list((self.max_seq_length, self.feature_size) ) for _ in range(self.batch_size )] else: # make sure that inputs increase in size _lowercase : Optional[int] = [ floats_list((x, self.feature_size) ) for x in range(self.min_seq_length , self.max_seq_length , self.seq_length_diff ) ] if numpify: _lowercase : Optional[Any] = [np.asarray(_UpperCamelCase ) for x in speech_inputs] return speech_inputs @require_torch @require_torchaudio class a__ ( lowerCamelCase_ , unittest.TestCase ): _SCREAMING_SNAKE_CASE : Tuple = WhisperFeatureExtractor if is_speech_available() else None def _lowerCamelCase ( self ): """simple docstring""" _lowercase : Union[str, Any] = WhisperFeatureExtractionTester(self ) def _lowerCamelCase ( self ): """simple docstring""" _lowercase : List[str] = self.feature_extraction_class(**self.feat_extract_dict ) with tempfile.TemporaryDirectory() as tmpdirname: _lowercase : List[Any] = feat_extract_first.save_pretrained(_UpperCamelCase )[0] check_json_file_has_correct_format(_UpperCamelCase ) _lowercase : Tuple = self.feature_extraction_class.from_pretrained(_UpperCamelCase ) _lowercase : List[Any] = feat_extract_first.to_dict() _lowercase : List[str] = feat_extract_second.to_dict() _lowercase : Tuple = feat_extract_first.mel_filters _lowercase : List[str] = feat_extract_second.mel_filters self.assertTrue(np.allclose(_UpperCamelCase , _UpperCamelCase ) ) self.assertEqual(_UpperCamelCase , _UpperCamelCase ) def _lowerCamelCase ( self ): """simple docstring""" _lowercase : List[Any] = self.feature_extraction_class(**self.feat_extract_dict ) with tempfile.TemporaryDirectory() as tmpdirname: _lowercase : Optional[int] = os.path.join(_UpperCamelCase , "feat_extract.json" ) feat_extract_first.to_json_file(_UpperCamelCase ) _lowercase : Any = self.feature_extraction_class.from_json_file(_UpperCamelCase ) _lowercase : List[Any] = feat_extract_first.to_dict() _lowercase : str = feat_extract_second.to_dict() _lowercase : List[str] = feat_extract_first.mel_filters _lowercase : Optional[Any] = feat_extract_second.mel_filters self.assertTrue(np.allclose(_UpperCamelCase , _UpperCamelCase ) ) self.assertEqual(_UpperCamelCase , _UpperCamelCase ) def _lowerCamelCase ( self ): """simple docstring""" _lowercase : str = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) # create three inputs of length 800, 1000, and 1200 _lowercase : int = [floats_list((1, x) )[0] for x in range(800 , 1400 , 200 )] _lowercase : Optional[Any] = [np.asarray(_UpperCamelCase ) for speech_input in speech_inputs] # Test feature size _lowercase : int = feature_extractor(_UpperCamelCase , padding="max_length" , return_tensors="np" ).input_features self.assertTrue(input_features.ndim == 3 ) self.assertTrue(input_features.shape[-1] == feature_extractor.nb_max_frames ) self.assertTrue(input_features.shape[-2] == feature_extractor.feature_size ) # Test not batched input _lowercase : List[str] = feature_extractor(speech_inputs[0] , return_tensors="np" ).input_features _lowercase : str = feature_extractor(np_speech_inputs[0] , return_tensors="np" ).input_features self.assertTrue(np.allclose(_UpperCamelCase , _UpperCamelCase , atol=1E-3 ) ) # Test batched _lowercase : Dict = feature_extractor(_UpperCamelCase , return_tensors="np" ).input_features _lowercase : Optional[Any] = feature_extractor(_UpperCamelCase , return_tensors="np" ).input_features for enc_seq_a, enc_seq_a in zip(_UpperCamelCase , _UpperCamelCase ): self.assertTrue(np.allclose(_UpperCamelCase , _UpperCamelCase , atol=1E-3 ) ) # Test 2-D numpy arrays are batched. _lowercase : Optional[int] = [floats_list((1, x) )[0] for x in (800, 800, 800)] _lowercase : List[str] = np.asarray(_UpperCamelCase ) _lowercase : Optional[Any] = feature_extractor(_UpperCamelCase , return_tensors="np" ).input_features _lowercase : str = feature_extractor(_UpperCamelCase , return_tensors="np" ).input_features for enc_seq_a, enc_seq_a in zip(_UpperCamelCase , _UpperCamelCase ): self.assertTrue(np.allclose(_UpperCamelCase , _UpperCamelCase , atol=1E-3 ) ) # Test truncation required _lowercase : List[Any] = [floats_list((1, x) )[0] for x in range(200 , (feature_extractor.n_samples + 500) , 200 )] _lowercase : List[str] = [np.asarray(_UpperCamelCase ) for speech_input in speech_inputs] _lowercase : Any = [x[: feature_extractor.n_samples] for x in speech_inputs] _lowercase : Any = [np.asarray(_UpperCamelCase ) for speech_input in speech_inputs_truncated] _lowercase : List[str] = feature_extractor(_UpperCamelCase , return_tensors="np" ).input_features _lowercase : Union[str, Any] = feature_extractor(_UpperCamelCase , return_tensors="np" ).input_features for enc_seq_a, enc_seq_a in zip(_UpperCamelCase , _UpperCamelCase ): self.assertTrue(np.allclose(_UpperCamelCase , _UpperCamelCase , atol=1E-3 ) ) def _lowerCamelCase ( self ): """simple docstring""" import torch _lowercase : Optional[int] = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) _lowercase : Optional[Any] = np.random.rand(100 , 32 ).astype(np.floataa ) _lowercase : Dict = np_speech_inputs.tolist() for inputs in [py_speech_inputs, np_speech_inputs]: _lowercase : Optional[int] = feature_extractor.pad([{"input_features": inputs}] , return_tensors="np" ) self.assertTrue(np_processed.input_features.dtype == np.floataa ) _lowercase : Optional[int] = feature_extractor.pad([{"input_features": inputs}] , return_tensors="pt" ) self.assertTrue(pt_processed.input_features.dtype == torch.floataa ) def _lowerCamelCase ( self , _UpperCamelCase ): """simple docstring""" _lowercase : int = load_dataset("hf-internal-testing/librispeech_asr_dummy" , "clean" , split="validation" ) # automatic decoding with librispeech _lowercase : Optional[int] = ds.sort("id" ).select(range(_UpperCamelCase ) )[:num_samples]["audio"] return [x["array"] for x in speech_samples] def _lowerCamelCase ( self ): """simple docstring""" _lowercase : str = torch.tensor( [ 0.1_1_9_3, -0.0_9_4_6, -0.1_0_9_8, -0.0_1_9_6, 0.0_2_2_5, -0.0_6_9_0, -0.1_7_3_6, 0.0_9_5_1, 0.0_9_7_1, -0.0_8_1_7, -0.0_7_0_2, 0.0_1_6_2, 0.0_2_6_0, 0.0_0_1_7, -0.0_1_9_2, -0.1_6_7_8, 0.0_7_0_9, -0.1_8_6_7, -0.0_6_5_5, -0.0_2_7_4, -0.0_2_3_4, -0.1_8_8_4, -0.0_5_1_6, -0.0_5_5_4, -0.0_2_7_4, -0.1_4_2_5, -0.1_4_2_3, 0.0_8_3_7, 0.0_3_7_7, -0.0_8_5_4 ] ) # fmt: on _lowercase : str = self._load_datasamples(1 ) _lowercase : Union[str, Any] = WhisperFeatureExtractor() _lowercase : Any = feature_extractor(_UpperCamelCase , return_tensors="pt" ).input_features self.assertEqual(input_features.shape , (1, 80, 3000) ) self.assertTrue(torch.allclose(input_features[0, 0, :30] , _UpperCamelCase , atol=1E-4 ) ) def _lowerCamelCase ( self ): """simple docstring""" _lowercase : Union[str, Any] = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) _lowercase : str = self._load_datasamples(1 )[0] _lowercase : List[str] = ((audio - audio.min()) / (audio.max() - audio.min())) * 65535 # Rescale to [0, 65535] to show issue _lowercase : Optional[int] = feat_extract.zero_mean_unit_var_norm([audio] , attention_mask=_UpperCamelCase )[0] self.assertTrue(np.all(np.mean(_UpperCamelCase ) < 1E-3 ) ) self.assertTrue(np.all(np.abs(np.var(_UpperCamelCase ) - 1 ) < 1E-3 ) )
250
0
from __future__ import annotations import unittest from transformers import is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, require_tokenizers, slow if is_tf_available(): import tensorflow as tf from transformers import AutoTokenizer, TFAutoModelForSeqaSeqLM @require_tf @require_sentencepiece @require_tokenizers class __magic_name__ ( unittest.TestCase ): @slow def __magic_name__ ( self ) -> List[str]: '''simple docstring''' __a =TFAutoModelForSeqaSeqLM.from_pretrained('google/mt5-small' ) __a =AutoTokenizer.from_pretrained('google/mt5-small' ) __a =tokenizer('Hello there' , return_tensors='tf' ).input_ids __a =tokenizer('Hi I am' , return_tensors='tf' ).input_ids __a =model(__snake_case , labels=__snake_case ).loss __a =-tf.math.reduce_mean(__snake_case ).numpy() __a =-21.22_8168 self.assertTrue(abs(mtf_score - EXPECTED_SCORE ) < 2e-4 )
354
def UpperCamelCase_( _snake_case : str , _snake_case : int ): """simple docstring""" return [sentence[i : i + ngram_size] for i in range(len(_snake_case ) - ngram_size + 1 )] if __name__ == "__main__": from doctest import testmod testmod()
308
0
"""simple docstring""" import os from typing import Any, Callable, Dict, List, Optional, Tuple, Union import torch from torch import nn from ...models.controlnet import ControlNetModel, ControlNetOutput from ...models.modeling_utils import ModelMixin from ...utils import logging UpperCAmelCase_ : Tuple = logging.get_logger(__name__) class lowerCAmelCase__ ( UpperCAmelCase__ ): '''simple docstring''' def __init__( self : Any , lowercase_ : Optional[int]): '''simple docstring''' super().__init__() SCREAMING_SNAKE_CASE_ : Dict = nn.ModuleList(lowercase_) def _SCREAMING_SNAKE_CASE ( self : List[str] , lowercase_ : Optional[int] , lowercase_ : int , lowercase_ : Optional[int] , lowercase_ : Optional[Any] , lowercase_ : Optional[Any] , lowercase_ : int = None , lowercase_ : Optional[int] = None , lowercase_ : Optional[int] = None , lowercase_ : int = None , lowercase_ : Optional[Any] = False , lowercase_ : int = True , ): '''simple docstring''' for i, (image, scale, controlnet) in enumerate(zip(lowercase_ , lowercase_ , self.nets)): SCREAMING_SNAKE_CASE_ : Tuple = controlnet( lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , lowercase_ , ) # merge samples if i == 0: SCREAMING_SNAKE_CASE_ : Union[str, Any] = down_samples, mid_sample else: SCREAMING_SNAKE_CASE_ : Any = [ samples_prev + samples_curr for samples_prev, samples_curr in zip(lowercase_ , lowercase_) ] mid_block_res_sample += mid_sample return down_block_res_samples, mid_block_res_sample def _SCREAMING_SNAKE_CASE ( self : Any , lowercase_ : Any , lowercase_ : Dict = True , lowercase_ : int = None , lowercase_ : Optional[Any] = False , lowercase_ : Tuple = None , ): '''simple docstring''' SCREAMING_SNAKE_CASE_ : Tuple = 0 SCREAMING_SNAKE_CASE_ : Optional[Any] = save_directory for controlnet in self.nets: controlnet.save_pretrained( lowercase_ , is_main_process=lowercase_ , save_function=lowercase_ , safe_serialization=lowercase_ , variant=lowercase_ , ) idx += 1 SCREAMING_SNAKE_CASE_ : List[Any] = model_path_to_save + F'_{idx}' @classmethod def _SCREAMING_SNAKE_CASE ( cls : Tuple , lowercase_ : Dict , **lowercase_ : int): '''simple docstring''' SCREAMING_SNAKE_CASE_ : Optional[int] = 0 SCREAMING_SNAKE_CASE_ : Any = [] # load controlnet and append to list until no controlnet directory exists anymore # first controlnet has to be saved under `./mydirectory/controlnet` to be compliant with `DiffusionPipeline.from_prertained` # second, third, ... controlnets have to be saved under `./mydirectory/controlnet_1`, `./mydirectory/controlnet_2`, ... SCREAMING_SNAKE_CASE_ : Optional[int] = pretrained_model_path while os.path.isdir(lowercase_): SCREAMING_SNAKE_CASE_ : Tuple = ControlNetModel.from_pretrained(lowercase_ , **lowercase_) controlnets.append(lowercase_) idx += 1 SCREAMING_SNAKE_CASE_ : List[str] = pretrained_model_path + F'_{idx}' logger.info(F'{len(lowercase_)} controlnets loaded from {pretrained_model_path}.') if len(lowercase_) == 0: raise ValueError( F'No ControlNets found under {os.path.dirname(lowercase_)}. Expected at least {pretrained_model_path + "_0"}.') return cls(lowercase_)
91
"""simple docstring""" from __future__ import annotations import math def lowerCamelCase_ (UpperCamelCase__ : int , UpperCamelCase__ : int , UpperCamelCase__ : bool , UpperCamelCase__ : list[int] , UpperCamelCase__ : float ): if depth < 0: raise ValueError('''Depth cannot be less than 0''' ) if len(UpperCamelCase__ ) == 0: raise ValueError('''Scores cannot be empty''' ) if depth == height: return scores[node_index] if is_max: return max( minimax(depth + 1 , node_index * 2 , UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ ) , minimax(depth + 1 , node_index * 2 + 1 , UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ ) , ) return min( minimax(depth + 1 , node_index * 2 , UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ ) , minimax(depth + 1 , node_index * 2 + 1 , UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ ) , ) def lowerCamelCase_ (): _UpperCAmelCase : Any = [90, 23, 6, 33, 21, 65, 123, 3_4423] _UpperCAmelCase : Any = math.log(len(UpperCamelCase__ ) , 2 ) print('''Optimal value : ''' , end='''''' ) print(minimax(0 , 0 , UpperCamelCase__ , UpperCamelCase__ , UpperCamelCase__ ) ) if __name__ == "__main__": import doctest doctest.testmod() main()
263
0
"""simple docstring""" from ...configuration_utils import PretrainedConfig from ...utils import logging lowercase__ = logging.get_logger(__name__) lowercase__ = { 'studio-ousia/luke-base': 'https://huggingface.co/studio-ousia/luke-base/resolve/main/config.json', 'studio-ousia/luke-large': 'https://huggingface.co/studio-ousia/luke-large/resolve/main/config.json', } class __snake_case ( __lowerCAmelCase ): a__ = """luke""" def __init__( self , lowercase=5_02_67 , lowercase=50_00_00 , lowercase=7_68 , lowercase=2_56 , lowercase=12 , lowercase=12 , lowercase=30_72 , lowercase="gelu" , lowercase=0.1 , lowercase=0.1 , lowercase=5_12 , lowercase=2 , lowercase=0.02 , lowercase=1e-12 , lowercase=True , lowercase=None , lowercase=1 , lowercase=0 , lowercase=2 , **lowercase , ) -> int: '''simple docstring''' super().__init__(pad_token_id=lowercase , bos_token_id=lowercase , eos_token_id=lowercase , **lowercase) a__: int = vocab_size a__: Optional[int] = entity_vocab_size a__: str = hidden_size a__: Tuple = entity_emb_size a__: List[str] = num_hidden_layers a__: List[Any] = num_attention_heads a__: Optional[int] = hidden_act a__: Any = intermediate_size a__: str = hidden_dropout_prob a__: List[str] = attention_probs_dropout_prob a__: str = max_position_embeddings a__: Tuple = type_vocab_size a__: Any = initializer_range a__: List[Any] = layer_norm_eps a__: Optional[int] = use_entity_aware_attention a__: int = classifier_dropout
203
"""simple docstring""" import unittest from transformers import AutoConfig, AutoTokenizer, BertConfig, TensorType, is_flax_available from transformers.testing_utils import DUMMY_UNKNOWN_IDENTIFIER, require_flax, slow if is_flax_available(): import jax from transformers.models.auto.modeling_flax_auto import FlaxAutoModel from transformers.models.bert.modeling_flax_bert import FlaxBertModel from transformers.models.roberta.modeling_flax_roberta import FlaxRobertaModel @require_flax class __snake_case ( unittest.TestCase ): @slow def lowerCamelCase_ ( self) -> Tuple: '''simple docstring''' for model_name in ["bert-base-cased", "bert-large-uncased"]: with self.subTest(lowercase): a__: Optional[Any] = AutoConfig.from_pretrained(lowercase) self.assertIsNotNone(lowercase) self.assertIsInstance(lowercase , lowercase) a__: Any = FlaxAutoModel.from_pretrained(lowercase) self.assertIsNotNone(lowercase) self.assertIsInstance(lowercase , lowercase) @slow def lowerCamelCase_ ( self) -> Tuple: '''simple docstring''' for model_name in ["roberta-base", "roberta-large"]: with self.subTest(lowercase): a__: str = AutoConfig.from_pretrained(lowercase) self.assertIsNotNone(lowercase) self.assertIsInstance(lowercase , lowercase) a__: Any = FlaxAutoModel.from_pretrained(lowercase) self.assertIsNotNone(lowercase) self.assertIsInstance(lowercase , lowercase) @slow def lowerCamelCase_ ( self) -> str: '''simple docstring''' for model_name in ["bert-base-cased", "bert-large-uncased"]: a__: Dict = AutoTokenizer.from_pretrained(lowercase) a__: Union[str, Any] = FlaxBertModel.from_pretrained(lowercase) a__: List[str] = tokenizer('Do you support jax jitted function?' , return_tensors=TensorType.JAX) @jax.jit def eval(**lowercase): return model(**lowercase) eval(**lowercase).block_until_ready() @slow def lowerCamelCase_ ( self) -> str: '''simple docstring''' for model_name in ["roberta-base", "roberta-large"]: a__: Optional[Any] = AutoTokenizer.from_pretrained(lowercase) a__: Any = FlaxRobertaModel.from_pretrained(lowercase) a__: int = tokenizer('Do you support jax jitted function?' , return_tensors=TensorType.JAX) @jax.jit def eval(**lowercase): return model(**lowercase) eval(**lowercase).block_until_ready() def lowerCamelCase_ ( self) -> Any: '''simple docstring''' with self.assertRaisesRegex( lowercase , 'bert-base is not a local folder and is not a valid model identifier'): a__: str = FlaxAutoModel.from_pretrained('bert-base') def lowerCamelCase_ ( self) -> Optional[int]: '''simple docstring''' with self.assertRaisesRegex( lowercase , r'aaaaaa is not a valid git identifier \(branch name, tag name or commit id\)'): a__: List[str] = FlaxAutoModel.from_pretrained(lowercase , revision='aaaaaa') def lowerCamelCase_ ( self) -> Tuple: '''simple docstring''' with self.assertRaisesRegex( lowercase , 'hf-internal-testing/config-no-model does not appear to have a file named flax_model.msgpack' , ): a__: List[str] = FlaxAutoModel.from_pretrained('hf-internal-testing/config-no-model') def lowerCamelCase_ ( self) -> List[str]: '''simple docstring''' with self.assertRaisesRegex(lowercase , 'Use `from_pt=True` to load this model'): a__: List[str] = FlaxAutoModel.from_pretrained('hf-internal-testing/tiny-bert-pt-only')
203
1
import json import os import re import shutil import tempfile import unittest from typing import Tuple from transformers import AddedToken, BatchEncoding, PerceiverTokenizer from transformers.utils import cached_property, is_tf_available, is_torch_available from ...test_tokenization_common import TokenizerTesterMixin if is_torch_available(): lowercase_ : int = 'pt' elif is_tf_available(): lowercase_ : Dict = 'tf' else: lowercase_ : Optional[Any] = 'jax' class __lowerCAmelCase ( UpperCAmelCase__ , unittest.TestCase ): snake_case_ : Tuple = PerceiverTokenizer snake_case_ : List[Any] = False def UpperCamelCase ( self : Any ): """simple docstring""" super().setUp() _UpperCAmelCase = PerceiverTokenizer() tokenizer.save_pretrained(self.tmpdirname ) @cached_property def UpperCamelCase ( self : Optional[Any] ): """simple docstring""" return PerceiverTokenizer.from_pretrained("deepmind/language-perceiver" ) def UpperCamelCase ( self : List[str] , **snake_case__ : Any ): """simple docstring""" return self.tokenizer_class.from_pretrained(self.tmpdirname , **snake_case__ ) def UpperCamelCase ( self : str , snake_case__ : List[Any] , snake_case__ : List[str]=False , snake_case__ : Dict=20 , snake_case__ : Dict=5 ): """simple docstring""" _UpperCAmelCase = [] for i in range(len(snake_case__ ) ): try: _UpperCAmelCase = tokenizer.decode([i] , clean_up_tokenization_spaces=snake_case__ ) except UnicodeDecodeError: pass toks.append((i, tok) ) _UpperCAmelCase = list(filter(lambda snake_case__ : re.match(R"^[ a-zA-Z]+$" , t[1] ) , snake_case__ ) ) _UpperCAmelCase = list(filter(lambda snake_case__ : [t[0]] == tokenizer.encode(t[1] , add_special_tokens=snake_case__ ) , snake_case__ ) ) if max_length is not None and len(snake_case__ ) > max_length: _UpperCAmelCase = toks[:max_length] if min_length is not None and len(snake_case__ ) < min_length and len(snake_case__ ) > 0: while len(snake_case__ ) < min_length: _UpperCAmelCase = toks + toks # toks_str = [t[1] for t in toks] _UpperCAmelCase = [t[0] for t in toks] # Ensure consistency _UpperCAmelCase = tokenizer.decode(snake_case__ , clean_up_tokenization_spaces=snake_case__ ) if " " not in output_txt and len(snake_case__ ) > 1: _UpperCAmelCase = ( tokenizer.decode([toks_ids[0]] , clean_up_tokenization_spaces=snake_case__ ) + " " + tokenizer.decode(toks_ids[1:] , clean_up_tokenization_spaces=snake_case__ ) ) if with_prefix_space: _UpperCAmelCase = " " + output_txt _UpperCAmelCase = tokenizer.encode(snake_case__ , add_special_tokens=snake_case__ ) return output_txt, output_ids def UpperCamelCase ( self : Tuple ): """simple docstring""" _UpperCAmelCase = self.perceiver_tokenizer _UpperCAmelCase = "Unicode €." _UpperCAmelCase = tokenizer(snake_case__ ) _UpperCAmelCase = [4, 91, 116, 111, 105, 117, 106, 107, 38, 232, 136, 178, 52, 5] self.assertEqual(encoded["input_ids"] , snake_case__ ) # decoding _UpperCAmelCase = tokenizer.decode(snake_case__ ) self.assertEqual(snake_case__ , "[CLS]Unicode €.[SEP]" ) _UpperCAmelCase = tokenizer("e è é ê ë" ) _UpperCAmelCase = [4, 107, 38, 201, 174, 38, 201, 175, 38, 201, 176, 38, 201, 177, 5] self.assertEqual(encoded["input_ids"] , snake_case__ ) # decoding _UpperCAmelCase = tokenizer.decode(snake_case__ ) self.assertEqual(snake_case__ , "[CLS]e è é ê ë[SEP]" ) # encode/decode, but with `encode` instead of `__call__` self.assertEqual(tokenizer.decode(tokenizer.encode("e è é ê ë" ) ) , "[CLS]e è é ê ë[SEP]" ) def UpperCamelCase ( self : Dict ): """simple docstring""" _UpperCAmelCase = self.perceiver_tokenizer _UpperCAmelCase = ["A long paragraph for summarization.", "Another paragraph for summarization."] # fmt: off _UpperCAmelCase = [4, 71, 38, 114, 117, 116, 109, 38, 118, 103, 120, 103, 109, 120, 103, 118, 110, 38, 108, 117, 120, 38, 121, 123, 115, 115, 103, 120, 111, 128, 103, 122, 111, 117, 116, 52, 5, 0] # fmt: on _UpperCAmelCase = tokenizer(snake_case__ , padding=snake_case__ , return_tensors=snake_case__ ) self.assertIsInstance(snake_case__ , snake_case__ ) if FRAMEWORK != "jax": _UpperCAmelCase = list(batch.input_ids.numpy()[0] ) else: _UpperCAmelCase = list(batch.input_ids.tolist()[0] ) self.assertListEqual(snake_case__ , snake_case__ ) self.assertEqual((2, 38) , batch.input_ids.shape ) self.assertEqual((2, 38) , batch.attention_mask.shape ) def UpperCamelCase ( self : List[str] ): """simple docstring""" _UpperCAmelCase = self.perceiver_tokenizer _UpperCAmelCase = ["A long paragraph for summarization.", "Another paragraph for summarization."] _UpperCAmelCase = tokenizer(snake_case__ , padding=snake_case__ , return_tensors=snake_case__ ) # check if input_ids are returned and no decoder_input_ids self.assertIn("input_ids" , snake_case__ ) self.assertIn("attention_mask" , snake_case__ ) self.assertNotIn("decoder_input_ids" , snake_case__ ) self.assertNotIn("decoder_attention_mask" , snake_case__ ) def UpperCamelCase ( self : Dict ): """simple docstring""" _UpperCAmelCase = self.perceiver_tokenizer _UpperCAmelCase = [ "Summary of the text.", "Another summary.", ] _UpperCAmelCase = tokenizer( text_target=snake_case__ , max_length=32 , padding="max_length" , truncation=snake_case__ , return_tensors=snake_case__ ) self.assertEqual(32 , targets["input_ids"].shape[1] ) def UpperCamelCase ( self : List[str] ): """simple docstring""" _UpperCAmelCase = self.get_tokenizers() for tokenizer in tokenizers: with self.subTest(F"""{tokenizer.__class__.__name__}""" ): self.assertNotEqual(tokenizer.model_max_length , 42 ) # Now let's start the test _UpperCAmelCase = self.get_tokenizers() for tokenizer in tokenizers: with self.subTest(F"""{tokenizer.__class__.__name__}""" ): # Isolate this from the other tests because we save additional tokens/etc _UpperCAmelCase = tempfile.mkdtemp() _UpperCAmelCase = " He is very happy, UNwant\u00E9d,running" _UpperCAmelCase = tokenizer.encode(snake_case__ , add_special_tokens=snake_case__ ) tokenizer.save_pretrained(snake_case__ ) _UpperCAmelCase = tokenizer.__class__.from_pretrained(snake_case__ ) _UpperCAmelCase = after_tokenizer.encode(snake_case__ , add_special_tokens=snake_case__ ) self.assertListEqual(snake_case__ , snake_case__ ) shutil.rmtree(snake_case__ ) _UpperCAmelCase = self.get_tokenizers(model_max_length=42 ) for tokenizer in tokenizers: with self.subTest(F"""{tokenizer.__class__.__name__}""" ): # Isolate this from the other tests because we save additional tokens/etc _UpperCAmelCase = tempfile.mkdtemp() _UpperCAmelCase = " He is very happy, UNwant\u00E9d,running" tokenizer.add_tokens(["bim", "bambam"] ) _UpperCAmelCase = tokenizer.additional_special_tokens additional_special_tokens.append("new_additional_special_token" ) tokenizer.add_special_tokens({"additional_special_tokens": additional_special_tokens} ) _UpperCAmelCase = tokenizer.encode(snake_case__ , add_special_tokens=snake_case__ ) tokenizer.save_pretrained(snake_case__ ) _UpperCAmelCase = tokenizer.__class__.from_pretrained(snake_case__ ) _UpperCAmelCase = after_tokenizer.encode(snake_case__ , add_special_tokens=snake_case__ ) self.assertListEqual(snake_case__ , snake_case__ ) self.assertIn("new_additional_special_token" , after_tokenizer.additional_special_tokens ) self.assertEqual(after_tokenizer.model_max_length , 42 ) _UpperCAmelCase = tokenizer.__class__.from_pretrained(snake_case__ , model_max_length=43 ) self.assertEqual(tokenizer.model_max_length , 43 ) shutil.rmtree(snake_case__ ) def UpperCamelCase ( self : List[Any] ): """simple docstring""" _UpperCAmelCase = [] if self.test_slow_tokenizer: tokenizer_list.append((self.tokenizer_class, self.get_tokenizer()) ) if self.test_rust_tokenizer: tokenizer_list.append((self.rust_tokenizer_class, self.get_rust_tokenizer()) ) for tokenizer_class, tokenizer_utils in tokenizer_list: with tempfile.TemporaryDirectory() as tmp_dir: tokenizer_utils.save_pretrained(snake_case__ ) with open(os.path.join(snake_case__ , "special_tokens_map.json" ) , encoding="utf-8" ) as json_file: _UpperCAmelCase = json.load(snake_case__ ) with open(os.path.join(snake_case__ , "tokenizer_config.json" ) , encoding="utf-8" ) as json_file: _UpperCAmelCase = json.load(snake_case__ ) _UpperCAmelCase = [F"""<extra_id_{i}>""" for i in range(125 )] _UpperCAmelCase = added_tokens_extra_ids + [ "an_additional_special_token" ] _UpperCAmelCase = added_tokens_extra_ids + [ "an_additional_special_token" ] with open(os.path.join(snake_case__ , "special_tokens_map.json" ) , "w" , encoding="utf-8" ) as outfile: json.dump(snake_case__ , snake_case__ ) with open(os.path.join(snake_case__ , "tokenizer_config.json" ) , "w" , encoding="utf-8" ) as outfile: json.dump(snake_case__ , snake_case__ ) # the following checks allow us to verify that our test works as expected, i.e. that the tokenizer takes # into account the new value of additional_special_tokens given in the "tokenizer_config.json" and # "special_tokens_map.json" files _UpperCAmelCase = tokenizer_class.from_pretrained( snake_case__ , ) self.assertIn( "an_additional_special_token" , tokenizer_without_change_in_init.additional_special_tokens ) self.assertEqual( ["an_additional_special_token"] , tokenizer_without_change_in_init.convert_ids_to_tokens( tokenizer_without_change_in_init.convert_tokens_to_ids(["an_additional_special_token"] ) ) , ) # Now we test that we can change the value of additional_special_tokens in the from_pretrained _UpperCAmelCase = added_tokens_extra_ids + [AddedToken("a_new_additional_special_token" , lstrip=snake_case__ )] _UpperCAmelCase = tokenizer_class.from_pretrained( snake_case__ , additional_special_tokens=snake_case__ , ) self.assertIn("a_new_additional_special_token" , tokenizer.additional_special_tokens ) self.assertEqual( ["a_new_additional_special_token"] , tokenizer.convert_ids_to_tokens( tokenizer.convert_tokens_to_ids(["a_new_additional_special_token"] ) ) , ) def UpperCamelCase ( self : Optional[Any] ): """simple docstring""" _UpperCAmelCase = self.perceiver_tokenizer self.assertEqual(tokenizer.decode([178] ) , "�" ) def UpperCamelCase ( self : Union[str, Any] ): """simple docstring""" pass def UpperCamelCase ( self : Tuple ): """simple docstring""" pass def UpperCamelCase ( self : Union[str, Any] ): """simple docstring""" pass def UpperCamelCase ( self : Optional[int] ): """simple docstring""" pass def UpperCamelCase ( self : Optional[int] ): """simple docstring""" _UpperCAmelCase = self.get_tokenizers(fast=snake_case__ , do_lower_case=snake_case__ ) for tokenizer in tokenizers: with self.subTest(F"""{tokenizer.__class__.__name__}""" ): _UpperCAmelCase = ["[CLS]", "t", "h", "i", "s", " ", "i", "s", " ", "a", " ", "t", "e", "s", "t", "[SEP]"] _UpperCAmelCase = tokenizer.convert_tokens_to_string(snake_case__ ) self.assertIsInstance(snake_case__ , snake_case__ )
133
from typing import Any class __lowerCAmelCase : def __init__( self : List[Any] , snake_case__ : Any ): """simple docstring""" _UpperCAmelCase = data _UpperCAmelCase = None class __lowerCAmelCase : def __init__( self : Optional[Any] ): """simple docstring""" _UpperCAmelCase = None def UpperCamelCase ( self : List[Any] ): """simple docstring""" _UpperCAmelCase = self.head while temp is not None: print(temp.data , end=" " ) _UpperCAmelCase = temp.next print() def UpperCamelCase ( self : Any , snake_case__ : Any ): """simple docstring""" _UpperCAmelCase = Node(snake_case__ ) _UpperCAmelCase = self.head _UpperCAmelCase = new_node def UpperCamelCase ( self : List[str] , snake_case__ : int , snake_case__ : Optional[Any] ): """simple docstring""" if node_data_a == node_data_a: return else: _UpperCAmelCase = self.head while node_a is not None and node_a.data != node_data_a: _UpperCAmelCase = node_a.next _UpperCAmelCase = self.head while node_a is not None and node_a.data != node_data_a: _UpperCAmelCase = node_a.next if node_a is None or node_a is None: return _UpperCAmelCase , _UpperCAmelCase = node_a.data, node_a.data if __name__ == "__main__": lowercase_ : Union[str, Any] = LinkedList() for i in range(5, 0, -1): ll.push(i) ll.print_list() ll.swap_nodes(1, 4) print('After swapping') ll.print_list()
133
1
'''simple docstring''' from abc import ABC, abstractmethod from typing import List, Optional class a__ ( __A ): """simple docstring""" def __init__(self ): # test for the above condition self.test() def _snake_case (self ): __lowerCAmelCase = 0 __lowerCAmelCase = False while not completed: if counter == 1: self.reset() __lowerCAmelCase = self.advance() if not self.does_advance(__lowercase ): raise Exception( '''Custom Constraint is not defined correctly. self.does_advance(self.advance()) must be true.''' ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = self.update(__lowercase ) counter += 1 if counter > 1_00_00: raise Exception('''update() does not fulfill the constraint.''' ) if self.remaining() != 0: raise Exception('''Custom Constraint is not defined correctly.''' ) @abstractmethod def _snake_case (self ): raise NotImplementedError( F"""{self.__class__} is an abstract class. Only classes inheriting this class can be called.""" ) @abstractmethod def _snake_case (self , __lowercase ): raise NotImplementedError( F"""{self.__class__} is an abstract class. Only classes inheriting this class can be called.""" ) @abstractmethod def _snake_case (self , __lowercase ): raise NotImplementedError( F"""{self.__class__} is an abstract class. Only classes inheriting this class can be called.""" ) @abstractmethod def _snake_case (self ): raise NotImplementedError( F"""{self.__class__} is an abstract class. Only classes inheriting this class can be called.""" ) @abstractmethod def _snake_case (self ): raise NotImplementedError( F"""{self.__class__} is an abstract class. Only classes inheriting this class can be called.""" ) @abstractmethod def _snake_case (self , __lowercase=False ): raise NotImplementedError( F"""{self.__class__} is an abstract class. Only classes inheriting this class can be called.""" ) class a__ ( __A ): """simple docstring""" def __init__(self , __lowercase ): super(__lowercase , self ).__init__() if not isinstance(__lowercase , __lowercase ) or len(__lowercase ) == 0: raise ValueError(F"""`token_ids` has to be a non-empty list, but is {token_ids}.""" ) if any((not isinstance(__lowercase , __lowercase ) or token_id < 0) for token_id in token_ids ): raise ValueError(F"""Each list in `token_ids` has to be a list of positive integers, but is {token_ids}.""" ) __lowerCAmelCase = token_ids __lowerCAmelCase = len(self.token_ids ) __lowerCAmelCase = -1 # the index of the currently fulfilled step __lowerCAmelCase = False def _snake_case (self ): if self.completed: return None return self.token_ids[self.fulfilled_idx + 1] def _snake_case (self , __lowercase ): if not isinstance(__lowercase , __lowercase ): raise ValueError(F"""`token_id` has to be an `int`, but is {token_id} of type {type(__lowercase )}""" ) if self.completed: return False return token_id == self.token_ids[self.fulfilled_idx + 1] def _snake_case (self , __lowercase ): if not isinstance(__lowercase , __lowercase ): raise ValueError(F"""`token_id` has to be an `int`, but is {token_id} of type {type(__lowercase )}""" ) __lowerCAmelCase = False __lowerCAmelCase = False __lowerCAmelCase = False if self.does_advance(__lowercase ): self.fulfilled_idx += 1 __lowerCAmelCase = True if self.fulfilled_idx == (self.seqlen - 1): __lowerCAmelCase = True __lowerCAmelCase = completed else: # failed to make progress. __lowerCAmelCase = True self.reset() return stepped, completed, reset def _snake_case (self ): __lowerCAmelCase = False __lowerCAmelCase = 0 def _snake_case (self ): return self.seqlen - (self.fulfilled_idx + 1) def _snake_case (self , __lowercase=False ): __lowerCAmelCase = PhrasalConstraint(self.token_ids ) if stateful: __lowerCAmelCase = self.seqlen __lowerCAmelCase = self.fulfilled_idx __lowerCAmelCase = self.completed return new_constraint class a__ : """simple docstring""" def __init__(self , __lowercase , __lowercase=True ): __lowerCAmelCase = max([len(__lowercase ) for one in nested_token_ids] ) __lowerCAmelCase = {} for token_ids in nested_token_ids: __lowerCAmelCase = root for tidx, token_id in enumerate(__lowercase ): if token_id not in level: __lowerCAmelCase = {} __lowerCAmelCase = level[token_id] if no_subsets and self.has_subsets(__lowercase , __lowercase ): raise ValueError( '''Each list in `nested_token_ids` can\'t be a complete subset of another list, but is''' F""" {nested_token_ids}.""" ) __lowerCAmelCase = root def _snake_case (self , __lowercase ): __lowerCAmelCase = self.trie for current_token in current_seq: __lowerCAmelCase = start[current_token] __lowerCAmelCase = list(start.keys() ) return next_tokens def _snake_case (self , __lowercase ): __lowerCAmelCase = self.next_tokens(__lowercase ) return len(__lowercase ) == 0 def _snake_case (self , __lowercase ): __lowerCAmelCase = list(root.values() ) if len(__lowercase ) == 0: return 1 else: return sum([self.count_leaves(__lowercase ) for nn in next_nodes] ) def _snake_case (self , __lowercase , __lowercase ): __lowerCAmelCase = self.count_leaves(__lowercase ) return len(__lowercase ) != leaf_count class a__ ( __A ): """simple docstring""" def __init__(self , __lowercase ): super(__lowercase , self ).__init__() if not isinstance(__lowercase , __lowercase ) or len(__lowercase ) == 0: raise ValueError(F"""`nested_token_ids` has to be a non-empty list, but is {nested_token_ids}.""" ) if any(not isinstance(__lowercase , __lowercase ) for token_ids in nested_token_ids ): raise ValueError(F"""`nested_token_ids` has to be a list of lists, but is {nested_token_ids}.""" ) if any( any((not isinstance(__lowercase , __lowercase ) or token_id < 0) for token_id in token_ids ) for token_ids in nested_token_ids ): raise ValueError( F"""Each list in `nested_token_ids` has to be a list of positive integers, but is {nested_token_ids}.""" ) __lowerCAmelCase = DisjunctiveTrie(__lowercase ) __lowerCAmelCase = nested_token_ids __lowerCAmelCase = self.trie.max_height __lowerCAmelCase = [] __lowerCAmelCase = False def _snake_case (self ): __lowerCAmelCase = self.trie.next_tokens(self.current_seq ) if len(__lowercase ) == 0: return None else: return token_list def _snake_case (self , __lowercase ): if not isinstance(__lowercase , __lowercase ): raise ValueError(F"""`token_id` is supposed to be type `int`, but is {token_id} of type {type(__lowercase )}""" ) __lowerCAmelCase = self.trie.next_tokens(self.current_seq ) return token_id in next_tokens def _snake_case (self , __lowercase ): if not isinstance(__lowercase , __lowercase ): raise ValueError(F"""`token_id` is supposed to be type `int`, but is {token_id} of type {type(__lowercase )}""" ) __lowerCAmelCase = False __lowerCAmelCase = False __lowerCAmelCase = False if self.does_advance(__lowercase ): self.current_seq.append(__lowercase ) __lowerCAmelCase = True else: __lowerCAmelCase = True self.reset() __lowerCAmelCase = self.trie.reached_leaf(self.current_seq ) __lowerCAmelCase = completed return stepped, completed, reset def _snake_case (self ): __lowerCAmelCase = False __lowerCAmelCase = [] def _snake_case (self ): if self.completed: # since this can be completed without reaching max height return 0 else: return self.seqlen - len(self.current_seq ) def _snake_case (self , __lowercase=False ): __lowerCAmelCase = DisjunctiveConstraint(self.token_ids ) if stateful: __lowerCAmelCase = self.seqlen __lowerCAmelCase = self.current_seq __lowerCAmelCase = self.completed return new_constraint class a__ : """simple docstring""" def __init__(self , __lowercase ): __lowerCAmelCase = constraints # max # of steps required to fulfill a given constraint __lowerCAmelCase = max([c.seqlen for c in constraints] ) __lowerCAmelCase = len(__lowercase ) __lowerCAmelCase = False self.init_state() def _snake_case (self ): __lowerCAmelCase = [] __lowerCAmelCase = None __lowerCAmelCase = [constraint.copy(stateful=__lowercase ) for constraint in self.constraints] def _snake_case (self ): __lowerCAmelCase = 0 if self.inprogress_constraint: # extra points for having a constraint mid-fulfilled add += self.max_seqlen - self.inprogress_constraint.remaining() return (len(self.complete_constraints ) * self.max_seqlen) + add def _snake_case (self ): __lowerCAmelCase = [] if self.inprogress_constraint is None: for constraint in self.pending_constraints: # "pending" == "unfulfilled yet" __lowerCAmelCase = constraint.advance() if isinstance(__lowercase , __lowercase ): token_list.append(__lowercase ) elif isinstance(__lowercase , __lowercase ): token_list.extend(__lowercase ) else: __lowerCAmelCase = self.inprogress_constraint.advance() if isinstance(__lowercase , __lowercase ): token_list.append(__lowercase ) elif isinstance(__lowercase , __lowercase ): token_list.extend(__lowercase ) if len(__lowercase ) == 0: return None else: return token_list def _snake_case (self , __lowercase ): self.init_state() if token_ids is not None: for token in token_ids: # completes or steps **one** constraint __lowerCAmelCase , __lowerCAmelCase = self.add(__lowercase ) # the entire list of constraints are fulfilled if self.completed: break def _snake_case (self , __lowercase ): if not isinstance(__lowercase , __lowercase ): raise ValueError(F"""`token_id` should be an `int`, but is `{token_id}`.""" ) __lowerCAmelCase , __lowerCAmelCase = False, False if self.completed: __lowerCAmelCase = True __lowerCAmelCase = False return complete, stepped if self.inprogress_constraint is not None: # In the middle of fulfilling a constraint. If the `token_id` *does* makes an incremental progress to current # job, simply update the state __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = self.inprogress_constraint.update(__lowercase ) if reset: # 1. If the next token breaks the progress, then we must restart. # e.g. constraint = "I love pies" and sequence so far is "I love" but `token_id` == "books". # But that doesn't mean we self.init_state(), since we only reset the state for this particular # constraint, not the full list of constraints. self.pending_constraints.append(self.inprogress_constraint.copy(stateful=__lowercase ) ) __lowerCAmelCase = None if complete: # 2. If the next token completes the constraint, move it to completed list, set # inprogress to None. If there are no pending constraints either, then this full list of constraints # is complete. self.complete_constraints.append(self.inprogress_constraint ) __lowerCAmelCase = None if len(self.pending_constraints ) == 0: # we're done! __lowerCAmelCase = True else: # Not in the middle of fulfilling a constraint. So does this `token_id` helps us step towards any of our list # of constraints? for cidx, pending_constraint in enumerate(self.pending_constraints ): if pending_constraint.does_advance(__lowercase ): __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = pending_constraint.update(__lowercase ) if not stepped: raise Exception( '''`constraint.update(token_id)` is not yielding incremental progress, ''' '''even though `constraint.does_advance(token_id)` is true.''' ) if complete: self.complete_constraints.append(__lowercase ) __lowerCAmelCase = None if not complete and stepped: __lowerCAmelCase = pending_constraint if complete or stepped: # If we made any progress at all, then it's at least not a "pending constraint". __lowerCAmelCase = ( self.pending_constraints[:cidx] + self.pending_constraints[cidx + 1 :] ) if len(self.pending_constraints ) == 0 and self.inprogress_constraint is None: # If there's no longer any pending after this and no inprogress either, then we must be # complete. __lowerCAmelCase = True break # prevent accidentally stepping through multiple constraints with just one token. return complete, stepped def _snake_case (self , __lowercase=True ): __lowerCAmelCase = ConstraintListState(self.constraints ) # we actually never though self.constraints objects # throughout this process. So it's at initialization state. if stateful: __lowerCAmelCase = [ constraint.copy(stateful=__lowercase ) for constraint in self.complete_constraints ] if self.inprogress_constraint is not None: __lowerCAmelCase = self.inprogress_constraint.copy(stateful=__lowercase ) __lowerCAmelCase = [constraint.copy() for constraint in self.pending_constraints] return new_state
9
'''simple docstring''' import unittest from transformers import is_torch_available from transformers.testing_utils import require_torch if is_torch_available(): import torch from transformers.generation import DisjunctiveConstraint @require_torch class a__ ( unittest.TestCase ): """simple docstring""" def _snake_case (self ): # For consistency across different places the DisjunctiveConstraint is called, # dc.token_ids is a list of integers. It is also initialized only by integers. __lowerCAmelCase = [[1, 2, 4], [1, 2, 3, 4]] __lowerCAmelCase = DisjunctiveConstraint(__lowercase ) self.assertTrue(isinstance(dc.token_ids , __lowercase ) ) with self.assertRaises(__lowercase ): DisjunctiveConstraint(torch.LongTensor([[1, 2, 4], [1, 2, 3]] ) ) with self.assertRaises(__lowercase ): DisjunctiveConstraint([torch.LongTensor([1, 2, 4] ), torch.LongTensor([1, 2, 3, 4, 5] )] ) def _snake_case (self ): # We can't have constraints that are complete subsets of another. This leads to a preverse # interpretation of "constraint fulfillment": does generating [1,2,3] fulfill the constraint? # It would mean that it generated [1,2] which fulfills it, but it's in the middle of potentially # fulfilling [1,2,3,4]. If we believe that [1,2,3] does fulfill the constraint, then the algorithm # will necessarily never reach [1,2,3,4], giving users a false sense of control (better to just not allow it). __lowerCAmelCase = [[1, 2], [1, 2, 3, 4]] with self.assertRaises(__lowercase ): DisjunctiveConstraint(__lowercase ) # fails here def _snake_case (self ): __lowerCAmelCase = [[1, 2, 3], [1, 2, 4]] __lowerCAmelCase = DisjunctiveConstraint(__lowercase ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(1 ) __lowerCAmelCase = stepped is True and completed is False and reset is False self.assertTrue(__lowercase ) self.assertTrue(not dc.completed ) self.assertTrue(dc.current_seq == [1] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(2 ) __lowerCAmelCase = stepped is True and completed is False and reset is False self.assertTrue(__lowercase ) self.assertTrue(not dc.completed ) self.assertTrue(dc.current_seq == [1, 2] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(3 ) __lowerCAmelCase = stepped is True and completed is True and reset is False self.assertTrue(__lowercase ) self.assertTrue(dc.completed ) # Completed! self.assertTrue(dc.current_seq == [1, 2, 3] ) def _snake_case (self ): __lowerCAmelCase = [[1, 2, 3], [1, 2, 4, 5], [1, 2, 5]] __lowerCAmelCase = DisjunctiveConstraint(__lowercase ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(1 ) self.assertTrue(not dc.completed ) self.assertTrue(dc.current_seq == [1] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(2 ) self.assertTrue(not dc.completed ) self.assertTrue(dc.current_seq == [1, 2] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(4 ) self.assertTrue(not dc.completed ) self.assertTrue(dc.current_seq == [1, 2, 4] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(5 ) self.assertTrue(dc.completed ) # Completed! self.assertTrue(dc.current_seq == [1, 2, 4, 5] ) dc.reset() __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(1 ) self.assertTrue(not dc.completed ) self.assertTrue(dc.remaining() == 3 ) self.assertTrue(dc.current_seq == [1] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(2 ) self.assertTrue(not dc.completed ) self.assertTrue(dc.remaining() == 2 ) self.assertTrue(dc.current_seq == [1, 2] ) __lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase = dc.update(5 ) self.assertTrue(dc.completed ) # Completed! self.assertTrue(dc.remaining() == 0 ) self.assertTrue(dc.current_seq == [1, 2, 5] )
9
1
"""simple docstring""" def a_ ( _lowerCAmelCase : int , _lowerCAmelCase : int ): '''simple docstring''' return x if y == 0 else greatest_common_divisor(_lowerCAmelCase , x % y ) def a_ ( _lowerCAmelCase : int , _lowerCAmelCase : int ): '''simple docstring''' return (x * y) // greatest_common_divisor(_lowerCAmelCase , _lowerCAmelCase ) def a_ ( _lowerCAmelCase : int = 20 ): '''simple docstring''' lowercase__ : Dict = 1 for i in range(1 , n + 1 ): lowercase__ : List[Any] = lcm(_lowerCAmelCase , _lowerCAmelCase ) return g if __name__ == "__main__": print(f'''{solution() = }''')
77
"""simple docstring""" import unittest import numpy as np from transformers.testing_utils import require_pytesseract, require_torch from transformers.utils import is_pytesseract_available, is_torch_available from ...test_image_processing_common import ImageProcessingSavingTestMixin, prepare_image_inputs if is_torch_available(): import torch if is_pytesseract_available(): from PIL import Image from transformers import LayoutLMvaImageProcessor class snake_case ( unittest.TestCase ): '''simple docstring''' def __init__( self : List[Any], _lowerCamelCase : int, _lowerCamelCase : List[Any]=7, _lowerCamelCase : int=3, _lowerCamelCase : Optional[Any]=18, _lowerCamelCase : Any=30, _lowerCamelCase : str=4_00, _lowerCamelCase : int=True, _lowerCamelCase : Union[str, Any]=None, _lowerCamelCase : str=True, ): '''simple docstring''' __A = size if size is not None else {'''height''': 18, '''width''': 18} __A = parent __A = batch_size __A = num_channels __A = image_size __A = min_resolution __A = max_resolution __A = do_resize __A = size __A = apply_ocr def _SCREAMING_SNAKE_CASE ( self : Union[str, Any] ): '''simple docstring''' return {"do_resize": self.do_resize, "size": self.size, "apply_ocr": self.apply_ocr} @require_torch @require_pytesseract class snake_case ( _lowerCAmelCase , unittest.TestCase ): '''simple docstring''' A_ : Optional[int] = LayoutLMvaImageProcessor if is_pytesseract_available() else None def _SCREAMING_SNAKE_CASE ( self : Dict ): '''simple docstring''' __A = LayoutLMvaImageProcessingTester(self ) @property def _SCREAMING_SNAKE_CASE ( self : Union[str, Any] ): '''simple docstring''' return self.image_processor_tester.prepare_image_processor_dict() def _SCREAMING_SNAKE_CASE ( self : int ): '''simple docstring''' __A = self.image_processing_class(**self.image_processor_dict ) self.assertTrue(hasattr(_lowerCamelCase, '''do_resize''' ) ) self.assertTrue(hasattr(_lowerCamelCase, '''size''' ) ) self.assertTrue(hasattr(_lowerCamelCase, '''apply_ocr''' ) ) def _SCREAMING_SNAKE_CASE ( self : Union[str, Any] ): '''simple docstring''' __A = self.image_processing_class.from_dict(self.image_processor_dict ) self.assertEqual(image_processor.size, {'''height''': 18, '''width''': 18} ) __A = self.image_processing_class.from_dict(self.image_processor_dict, size=42 ) self.assertEqual(image_processor.size, {'''height''': 42, '''width''': 42} ) def _SCREAMING_SNAKE_CASE ( self : Optional[Any] ): '''simple docstring''' pass def _SCREAMING_SNAKE_CASE ( self : Optional[Any] ): '''simple docstring''' # Initialize image_processing __A = self.image_processing_class(**self.image_processor_dict ) # create random PIL images __A = prepare_image_inputs(self.image_processor_tester, equal_resolution=_lowerCamelCase ) for image in image_inputs: self.assertIsInstance(_lowerCamelCase, Image.Image ) # Test not batched input __A = image_processing(image_inputs[0], return_tensors='''pt''' ) self.assertEqual( encoding.pixel_values.shape, ( 1, self.image_processor_tester.num_channels, self.image_processor_tester.size['''height'''], self.image_processor_tester.size['''width'''], ), ) self.assertIsInstance(encoding.words, _lowerCamelCase ) self.assertIsInstance(encoding.boxes, _lowerCamelCase ) # Test batched __A = image_processing(_lowerCamelCase, return_tensors='''pt''' ).pixel_values self.assertEqual( encoded_images.shape, ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, self.image_processor_tester.size['''height'''], self.image_processor_tester.size['''width'''], ), ) def _SCREAMING_SNAKE_CASE ( self : Any ): '''simple docstring''' # Initialize image_processing __A = self.image_processing_class(**self.image_processor_dict ) # create random numpy tensors __A = prepare_image_inputs(self.image_processor_tester, equal_resolution=_lowerCamelCase, numpify=_lowerCamelCase ) for image in image_inputs: self.assertIsInstance(_lowerCamelCase, np.ndarray ) # Test not batched input __A = image_processing(image_inputs[0], return_tensors='''pt''' ).pixel_values self.assertEqual( encoded_images.shape, ( 1, self.image_processor_tester.num_channels, self.image_processor_tester.size['''height'''], self.image_processor_tester.size['''width'''], ), ) # Test batched __A = image_processing(_lowerCamelCase, return_tensors='''pt''' ).pixel_values self.assertEqual( encoded_images.shape, ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, self.image_processor_tester.size['''height'''], self.image_processor_tester.size['''width'''], ), ) def _SCREAMING_SNAKE_CASE ( self : Optional[Any] ): '''simple docstring''' # Initialize image_processing __A = self.image_processing_class(**self.image_processor_dict ) # create random PyTorch tensors __A = prepare_image_inputs(self.image_processor_tester, equal_resolution=_lowerCamelCase, torchify=_lowerCamelCase ) for image in image_inputs: self.assertIsInstance(_lowerCamelCase, torch.Tensor ) # Test not batched input __A = image_processing(image_inputs[0], return_tensors='''pt''' ).pixel_values self.assertEqual( encoded_images.shape, ( 1, self.image_processor_tester.num_channels, self.image_processor_tester.size['''height'''], self.image_processor_tester.size['''width'''], ), ) # Test batched __A = image_processing(_lowerCamelCase, return_tensors='''pt''' ).pixel_values self.assertEqual( encoded_images.shape, ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, self.image_processor_tester.size['''height'''], self.image_processor_tester.size['''width'''], ), ) def _SCREAMING_SNAKE_CASE ( self : List[str] ): '''simple docstring''' # with apply_OCR = True __A = LayoutLMvaImageProcessor() from datasets import load_dataset __A = load_dataset('''hf-internal-testing/fixtures_docvqa''', split='''test''' ) __A = Image.open(ds[0]['''file'''] ).convert('''RGB''' ) __A = image_processing(_lowerCamelCase, return_tensors='''pt''' ) self.assertEqual(encoding.pixel_values.shape, (1, 3, 2_24, 2_24) ) self.assertEqual(len(encoding.words ), len(encoding.boxes ) ) # fmt: off # the words and boxes were obtained with Tesseract 4.1.1 __A = [['''11:14''', '''to''', '''11:39''', '''a.m''', '''11:39''', '''to''', '''11:44''', '''a.m.''', '''11:44''', '''a.m.''', '''to''', '''12:25''', '''p.m.''', '''12:25''', '''to''', '''12:58''', '''p.m.''', '''12:58''', '''to''', '''4:00''', '''p.m.''', '''2:00''', '''to''', '''5:00''', '''p.m.''', '''Coffee''', '''Break''', '''Coffee''', '''will''', '''be''', '''served''', '''for''', '''men''', '''and''', '''women''', '''in''', '''the''', '''lobby''', '''adjacent''', '''to''', '''exhibit''', '''area.''', '''Please''', '''move''', '''into''', '''exhibit''', '''area.''', '''(Exhibits''', '''Open)''', '''TRRF''', '''GENERAL''', '''SESSION''', '''(PART''', '''|)''', '''Presiding:''', '''Lee''', '''A.''', '''Waller''', '''TRRF''', '''Vice''', '''President''', '''“Introductory''', '''Remarks”''', '''Lee''', '''A.''', '''Waller,''', '''TRRF''', '''Vice''', '''Presi-''', '''dent''', '''Individual''', '''Interviews''', '''with''', '''TRRF''', '''Public''', '''Board''', '''Members''', '''and''', '''Sci-''', '''entific''', '''Advisory''', '''Council''', '''Mem-''', '''bers''', '''Conducted''', '''by''', '''TRRF''', '''Treasurer''', '''Philip''', '''G.''', '''Kuehn''', '''to''', '''get''', '''answers''', '''which''', '''the''', '''public''', '''refrigerated''', '''warehousing''', '''industry''', '''is''', '''looking''', '''for.''', '''Plus''', '''questions''', '''from''', '''the''', '''floor.''', '''Dr.''', '''Emil''', '''M.''', '''Mrak,''', '''University''', '''of''', '''Cal-''', '''ifornia,''', '''Chairman,''', '''TRRF''', '''Board;''', '''Sam''', '''R.''', '''Cecil,''', '''University''', '''of''', '''Georgia''', '''College''', '''of''', '''Agriculture;''', '''Dr.''', '''Stanley''', '''Charm,''', '''Tufts''', '''University''', '''School''', '''of''', '''Medicine;''', '''Dr.''', '''Robert''', '''H.''', '''Cotton,''', '''ITT''', '''Continental''', '''Baking''', '''Company;''', '''Dr.''', '''Owen''', '''Fennema,''', '''University''', '''of''', '''Wis-''', '''consin;''', '''Dr.''', '''Robert''', '''E.''', '''Hardenburg,''', '''USDA.''', '''Questions''', '''and''', '''Answers''', '''Exhibits''', '''Open''', '''Capt.''', '''Jack''', '''Stoney''', '''Room''', '''TRRF''', '''Scientific''', '''Advisory''', '''Council''', '''Meeting''', '''Ballroom''', '''Foyer''']] # noqa: E231 __A = [[[1_41, 57, 2_14, 69], [2_28, 58, 2_52, 69], [1_41, 75, 2_16, 88], [2_30, 79, 2_80, 88], [1_42, 2_60, 2_18, 2_73], [2_30, 2_61, 2_55, 2_73], [1_43, 2_79, 2_18, 2_90], [2_31, 2_82, 2_90, 2_91], [1_43, 3_42, 2_18, 3_54], [2_31, 3_45, 2_89, 3_55], [2_02, 3_62, 2_27, 3_73], [1_43, 3_79, 2_20, 3_92], [2_31, 3_82, 2_91, 3_94], [1_44, 7_14, 2_20, 7_26], [2_31, 7_15, 2_56, 7_26], [1_44, 7_32, 2_20, 7_45], [2_32, 7_36, 2_91, 7_47], [1_44, 7_69, 2_18, 7_82], [2_31, 7_70, 2_56, 7_82], [1_41, 7_88, 2_02, 8_01], [2_15, 7_91, 2_74, 8_04], [1_43, 8_26, 2_04, 8_38], [2_15, 8_26, 2_40, 8_38], [1_42, 8_44, 2_02, 8_57], [2_15, 8_47, 2_74, 8_59], [3_34, 57, 4_27, 69], [4_40, 57, 5_22, 69], [3_69, 75, 4_61, 88], [4_69, 75, 5_16, 88], [5_28, 76, 5_62, 88], [5_70, 76, 6_67, 88], [6_75, 75, 7_11, 87], [7_21, 79, 7_78, 88], [7_89, 75, 8_40, 88], [3_69, 97, 4_70, 1_07], [4_84, 94, 5_07, 1_06], [5_18, 94, 5_62, 1_07], [5_76, 94, 6_55, 1_10], [6_68, 94, 7_92, 1_09], [8_04, 95, 8_29, 1_07], [3_69, 1_13, 4_65, 1_25], [4_77, 1_16, 5_47, 1_25], [5_62, 1_13, 6_58, 1_25], [6_71, 1_16, 7_48, 1_25], [7_61, 1_13, 8_11, 1_25], [3_69, 1_31, 4_65, 1_43], [4_77, 1_33, 5_48, 1_43], [5_63, 1_30, 6_98, 1_45], [7_10, 1_30, 8_02, 1_46], [3_36, 1_71, 4_12, 1_83], [4_23, 1_71, 5_72, 1_83], [5_82, 1_70, 7_16, 1_84], [7_28, 1_71, 8_17, 1_87], [8_29, 1_71, 8_44, 1_86], [3_38, 1_97, 4_82, 2_12], [5_07, 1_96, 5_57, 2_09], [5_69, 1_96, 5_95, 2_08], [6_10, 1_96, 7_02, 2_09], [5_05, 2_14, 5_83, 2_26], [5_95, 2_14, 6_56, 2_27], [6_70, 2_15, 8_07, 2_27], [3_35, 2_59, 5_43, 2_74], [5_56, 2_59, 7_08, 2_72], [3_72, 2_79, 4_22, 2_91], [4_35, 2_79, 4_60, 2_91], [4_74, 2_79, 5_74, 2_92], [5_87, 2_78, 6_64, 2_91], [6_76, 2_78, 7_38, 2_91], [7_51, 2_79, 8_34, 2_91], [3_72, 2_98, 4_34, 3_10], [3_35, 3_41, 4_83, 3_54], [4_97, 3_41, 6_55, 3_54], [6_67, 3_41, 7_28, 3_54], [7_40, 3_41, 8_25, 3_54], [3_35, 3_60, 4_30, 3_72], [4_42, 3_60, 5_34, 3_72], [5_45, 3_59, 6_87, 3_72], [6_97, 3_60, 7_54, 3_72], [7_65, 3_60, 8_23, 3_73], [3_34, 3_78, 4_28, 3_91], [4_40, 3_78, 5_77, 3_94], [5_90, 3_78, 7_05, 3_91], [7_20, 3_78, 8_01, 3_91], [3_34, 3_97, 4_00, 4_09], [3_70, 4_16, 5_29, 4_29], [5_44, 4_16, 5_76, 4_32], [5_87, 4_16, 6_65, 4_28], [6_77, 4_16, 8_14, 4_29], [3_72, 4_35, 4_52, 4_50], [4_65, 4_34, 4_95, 4_47], [5_11, 4_34, 6_00, 4_47], [6_11, 4_36, 6_37, 4_47], [6_49, 4_36, 6_94, 4_51], [7_05, 4_38, 8_24, 4_47], [3_69, 4_53, 4_52, 4_66], [4_64, 4_54, 5_09, 4_66], [5_22, 4_53, 6_11, 4_69], [6_25, 4_53, 7_92, 4_69], [3_70, 4_72, 5_56, 4_88], [5_70, 4_72, 6_84, 4_87], [6_97, 4_72, 7_18, 4_85], [7_32, 4_72, 8_35, 4_88], [3_69, 4_90, 4_11, 5_03], [4_25, 4_90, 4_84, 5_03], [4_96, 4_90, 6_35, 5_06], [6_45, 4_90, 7_07, 5_03], [7_18, 4_91, 7_61, 5_03], [7_71, 4_90, 8_40, 5_03], [3_36, 5_10, 3_74, 5_21], [3_88, 5_10, 4_47, 5_22], [4_60, 5_10, 4_89, 5_21], [5_03, 5_10, 5_80, 5_22], [5_92, 5_09, 7_36, 5_25], [7_45, 5_09, 7_70, 5_22], [7_81, 5_09, 8_40, 5_22], [3_38, 5_28, 4_34, 5_41], [4_48, 5_28, 5_96, 5_41], [6_09, 5_27, 6_87, 5_40], [7_00, 5_28, 7_92, 5_41], [3_36, 5_46, 3_97, 5_59], [4_07, 5_46, 4_31, 5_59], [4_43, 5_46, 5_25, 5_60], [5_37, 5_46, 6_80, 5_62], [6_88, 5_46, 7_14, 5_59], [7_22, 5_46, 8_37, 5_62], [3_36, 5_65, 4_49, 5_81], [4_61, 5_65, 4_85, 5_77], [4_97, 5_65, 6_65, 5_81], [6_81, 5_65, 7_18, 5_77], [7_32, 5_65, 8_37, 5_80], [3_37, 5_84, 4_38, 5_97], [4_52, 5_83, 5_21, 5_96], [5_35, 5_84, 6_77, 5_99], [6_90, 5_83, 7_87, 5_96], [8_01, 5_83, 8_25, 5_96], [3_38, 6_02, 4_78, 6_15], [4_92, 6_02, 5_30, 6_14], [5_43, 6_02, 6_38, 6_15], [6_50, 6_02, 6_76, 6_14], [6_88, 6_02, 7_88, 6_15], [8_02, 6_02, 8_43, 6_14], [3_37, 6_21, 5_02, 6_33], [5_16, 6_21, 6_15, 6_37], [6_29, 6_21, 7_74, 6_36], [7_89, 6_21, 8_27, 6_33], [3_37, 6_39, 4_18, 6_52], [4_32, 6_40, 5_71, 6_53], [5_87, 6_39, 7_31, 6_55], [7_43, 6_39, 7_69, 6_52], [7_80, 6_39, 8_41, 6_52], [3_38, 6_58, 4_40, 6_73], [4_55, 6_58, 4_91, 6_70], [5_08, 6_58, 6_02, 6_71], [6_16, 6_58, 6_38, 6_70], [6_54, 6_58, 8_35, 6_74], [3_37, 6_77, 4_29, 6_89], [3_37, 7_14, 4_82, 7_26], [4_95, 7_14, 5_48, 7_26], [5_61, 7_14, 6_83, 7_26], [3_38, 7_70, 4_61, 7_82], [4_74, 7_69, 5_54, 7_85], [4_89, 7_88, 5_62, 8_03], [5_76, 7_88, 6_43, 8_01], [6_56, 7_87, 7_51, 8_04], [7_64, 7_88, 8_44, 8_01], [3_34, 8_25, 4_21, 8_38], [4_30, 8_24, 5_74, 8_38], [5_84, 8_24, 7_23, 8_41], [3_35, 8_44, 4_50, 8_57], [4_64, 8_43, 5_83, 8_60], [6_28, 8_62, 7_55, 8_75], [7_69, 8_61, 8_48, 8_78]]] # noqa: E231 # fmt: on self.assertListEqual(encoding.words, _lowerCamelCase ) self.assertListEqual(encoding.boxes, _lowerCamelCase ) # with apply_OCR = False __A = LayoutLMvaImageProcessor(apply_ocr=_lowerCamelCase ) __A = image_processing(_lowerCamelCase, return_tensors='''pt''' ) self.assertEqual(encoding.pixel_values.shape, (1, 3, 2_24, 2_24) )
266
0
import argparse import glob import logging import os import sys import time from collections import defaultdict from pathlib import Path from typing import Dict, List, Tuple import numpy as np import pytorch_lightning as pl import torch from callbacks import SeqaSeqLoggingCallback, get_checkpoint_callback, get_early_stopping_callback from torch import nn from torch.utils.data import DataLoader from transformers import MBartTokenizer, TaForConditionalGeneration from transformers.models.bart.modeling_bart import shift_tokens_right from utils import ( ROUGE_KEYS, LegacySeqaSeqDataset, SeqaSeqDataset, assert_all_frozen, calculate_bleu, calculate_rouge, check_output_dir, flatten_list, freeze_embeds, freeze_params, get_git_info, label_smoothed_nll_loss, lmap, pickle_save, save_git_info, save_json, use_task_specific_params, ) # need the parent dir module sys.path.insert(2, str(Path(__file__).resolve().parents[1])) from lightning_base import BaseTransformer, add_generic_args, generic_train # noqa _SCREAMING_SNAKE_CASE = logging.getLogger(__name__) class SCREAMING_SNAKE_CASE_ ( __lowerCamelCase ): __magic_name__: Any = 'summarization' __magic_name__: List[str] = ['loss'] __magic_name__: Union[str, Any] = ROUGE_KEYS __magic_name__: List[str] = 'rouge2' def __init__( self : Optional[Any] , _A : Optional[int] , **_A : Any ) -> Optional[int]: """simple docstring""" if hparams.sortish_sampler and hparams.gpus > 1: snake_case_ : int = False elif hparams.max_tokens_per_batch is not None: if hparams.gpus > 1: raise NotImplementedError('Dynamic Batch size does not work for multi-gpu training' ) if hparams.sortish_sampler: raise ValueError('--sortish_sampler and --max_tokens_per_batch may not be used simultaneously' ) super().__init__(UpperCamelCase_ , num_labels=UpperCamelCase_ , mode=self.mode , **UpperCamelCase_ ) use_task_specific_params(self.model , 'summarization' ) save_git_info(self.hparams.output_dir ) snake_case_ : Optional[int] = Path(self.output_dir ) / 'metrics.json' snake_case_ : Dict = Path(self.output_dir ) / 'hparams.pkl' pickle_save(self.hparams , self.hparams_save_path ) snake_case_ : Tuple = 0 snake_case_ : Tuple = defaultdict(UpperCamelCase_ ) snake_case_ : int = self.config.model_type snake_case_ : Union[str, Any] = self.config.tgt_vocab_size if self.model_type == 'fsmt' else self.config.vocab_size snake_case_ : Optional[Any] = { 'data_dir': self.hparams.data_dir, 'max_source_length': self.hparams.max_source_length, 'prefix': self.model.config.prefix or '', } snake_case_ : Any = { 'train': self.hparams.n_train, 'val': self.hparams.n_val, 'test': self.hparams.n_test, } snake_case_ : Optional[Any] = {k: v if v >= 0 else None for k, v in n_observations_per_split.items()} snake_case_ : List[str] = { 'train': self.hparams.max_target_length, 'val': self.hparams.val_max_target_length, 'test': self.hparams.test_max_target_length, } assert self.target_lens["train"] <= self.target_lens["val"], F"""target_lens: {self.target_lens}""" assert self.target_lens["train"] <= self.target_lens["test"], F"""target_lens: {self.target_lens}""" if self.hparams.freeze_embeds: freeze_embeds(self.model ) if self.hparams.freeze_encoder: freeze_params(self.model.get_encoder() ) assert_all_frozen(self.model.get_encoder() ) snake_case_ : int = get_git_info()['repo_sha'] snake_case_ : Optional[int] = hparams.num_workers snake_case_ : Any = None # default to config if self.model.config.decoder_start_token_id is None and isinstance(self.tokenizer , UpperCamelCase_ ): snake_case_ : Dict = self.tokenizer.lang_code_to_id[hparams.tgt_lang] snake_case_ : Union[str, Any] = self.decoder_start_token_id snake_case_ : Any = ( SeqaSeqDataset if hasattr(self.tokenizer , 'prepare_seq2seq_batch' ) else LegacySeqaSeqDataset ) snake_case_ : str = False snake_case_ : List[Any] = self.model.config.num_beams if self.hparams.eval_beams is None else self.hparams.eval_beams if self.hparams.eval_max_gen_length is not None: snake_case_ : int = self.hparams.eval_max_gen_length else: snake_case_ : Tuple = self.model.config.max_length snake_case_ : List[Any] = self.default_val_metric if self.hparams.val_metric is None else self.hparams.val_metric def UpperCAmelCase_ ( self : Tuple , _A : Dict[str, torch.Tensor] ) -> List[str]: """simple docstring""" snake_case_ : Optional[int] = { k: self.tokenizer.batch_decode(v.tolist() ) if 'mask' not in k else v.shape for k, v in batch.items() } save_json(UpperCamelCase_ , Path(self.output_dir ) / 'text_batch.json' ) save_json({k: v.tolist() for k, v in batch.items()} , Path(self.output_dir ) / 'tok_batch.json' ) snake_case_ : List[str] = True return readable_batch def UpperCAmelCase_ ( self : Union[str, Any] , _A : List[str] , **_A : List[str] ) -> str: """simple docstring""" return self.model(UpperCamelCase_ , **UpperCamelCase_ ) def UpperCAmelCase_ ( self : List[Any] , _A : List[int] ) -> Union[str, Any]: """simple docstring""" snake_case_ : Optional[int] = self.tokenizer.batch_decode( UpperCamelCase_ , skip_special_tokens=UpperCamelCase_ , clean_up_tokenization_spaces=UpperCamelCase_ ) return lmap(str.strip , UpperCamelCase_ ) def UpperCAmelCase_ ( self : Tuple , _A : dict ) -> Optional[Any]: """simple docstring""" snake_case_ : Union[str, Any] = self.tokenizer.pad_token_id snake_case_ ,snake_case_ : Dict = batch['input_ids'], batch['attention_mask'] snake_case_ : List[Any] = batch['labels'] if isinstance(self.model , UpperCamelCase_ ): snake_case_ : int = self.model._shift_right(UpperCamelCase_ ) else: snake_case_ : Union[str, Any] = shift_tokens_right(UpperCamelCase_ , UpperCamelCase_ ) if not self.already_saved_batch: # This would be slightly better if it only happened on rank zero snake_case_ : List[Any] = decoder_input_ids self.save_readable_batch(UpperCamelCase_ ) snake_case_ : Tuple = self(UpperCamelCase_ , attention_mask=UpperCamelCase_ , decoder_input_ids=UpperCamelCase_ , use_cache=UpperCamelCase_ ) snake_case_ : str = outputs['logits'] if self.hparams.label_smoothing == 0: # Same behavior as modeling_bart.py, besides ignoring pad_token_id snake_case_ : Optional[Any] = nn.CrossEntropyLoss(ignore_index=UpperCamelCase_ ) assert lm_logits.shape[-1] == self.vocab_size snake_case_ : Dict = ce_loss_fct(lm_logits.view(-1 , lm_logits.shape[-1] ) , tgt_ids.view(-1 ) ) else: snake_case_ : Any = nn.functional.log_softmax(UpperCamelCase_ , dim=-1 ) snake_case_ ,snake_case_ : Union[str, Any] = label_smoothed_nll_loss( UpperCamelCase_ , UpperCamelCase_ , self.hparams.label_smoothing , ignore_index=UpperCamelCase_ ) return (loss,) @property def UpperCAmelCase_ ( self : Any ) -> List[Any]: """simple docstring""" return self.tokenizer.pad_token_id def UpperCAmelCase_ ( self : List[Any] , _A : Union[str, Any] , _A : Tuple ) -> Tuple: """simple docstring""" snake_case_ : int = self._step(UpperCamelCase_ ) snake_case_ : Optional[int] = dict(zip(self.loss_names , UpperCamelCase_ ) ) # tokens per batch snake_case_ : Any = batch['input_ids'].ne(self.pad ).sum() + batch['labels'].ne(self.pad ).sum() snake_case_ : List[Any] = batch['input_ids'].shape[0] snake_case_ : List[Any] = batch['input_ids'].eq(self.pad ).sum() snake_case_ : str = batch['input_ids'].eq(self.pad ).float().mean() # TODO(SS): make a wandb summary metric for this return {"loss": loss_tensors[0], "log": logs} def UpperCAmelCase_ ( self : Union[str, Any] , _A : Dict , _A : str ) -> Union[str, Any]: """simple docstring""" return self._generative_step(UpperCamelCase_ ) def UpperCAmelCase_ ( self : Any , _A : List[Any] , _A : Optional[Any]="val" ) -> List[str]: """simple docstring""" self.step_count += 1 snake_case_ : Any = {k: torch.stack([x[k] for x in outputs] ).mean() for k in self.loss_names} snake_case_ : Tuple = losses['loss'] snake_case_ : Dict = { k: np.array([x[k] for x in outputs] ).mean() for k in self.metric_names + ['gen_time', 'gen_len'] } snake_case_ : List[str] = ( generative_metrics[self.val_metric] if self.val_metric in generative_metrics else losses[self.val_metric] ) snake_case_ : List[str] = torch.tensor(UpperCamelCase_ ).type_as(UpperCamelCase_ ) generative_metrics.update({k: v.item() for k, v in losses.items()} ) losses.update(UpperCamelCase_ ) snake_case_ : str = {F"""{prefix}_avg_{k}""": x for k, x in losses.items()} snake_case_ : Union[str, Any] = self.step_count self.metrics[prefix].append(UpperCamelCase_ ) # callback writes this to self.metrics_save_path snake_case_ : List[Any] = flatten_list([x['preds'] for x in outputs] ) return { "log": all_metrics, "preds": preds, F"""{prefix}_loss""": loss, F"""{prefix}_{self.val_metric}""": metric_tensor, } def UpperCAmelCase_ ( self : List[str] , _A : Union[str, Any] , _A : Optional[int] ) -> str: """simple docstring""" return calculate_rouge(UpperCamelCase_ , UpperCamelCase_ ) def UpperCAmelCase_ ( self : Optional[int] , _A : dict ) -> Any: """simple docstring""" snake_case_ : Dict = time.time() # parser.add_argument('--eval_max_gen_length', type=int, default=None, help='never generate more than n tokens') snake_case_ : int = self.model.generate( batch['input_ids'] , attention_mask=batch['attention_mask'] , use_cache=UpperCamelCase_ , decoder_start_token_id=self.decoder_start_token_id , num_beams=self.eval_beams , max_length=self.eval_max_length , ) snake_case_ : List[str] = (time.time() - ta) / batch['input_ids'].shape[0] snake_case_ : Optional[Any] = self.ids_to_clean_text(UpperCamelCase_ ) snake_case_ : int = self.ids_to_clean_text(batch['labels'] ) snake_case_ : List[str] = self._step(UpperCamelCase_ ) snake_case_ : Tuple = dict(zip(self.loss_names , UpperCamelCase_ ) ) snake_case_ : Optional[int] = self.calc_generative_metrics(UpperCamelCase_ , UpperCamelCase_ ) snake_case_ : int = np.mean(lmap(UpperCamelCase_ , UpperCamelCase_ ) ) base_metrics.update(gen_time=UpperCamelCase_ , gen_len=UpperCamelCase_ , preds=UpperCamelCase_ , target=UpperCamelCase_ , **UpperCamelCase_ ) return base_metrics def UpperCAmelCase_ ( self : int , _A : Any , _A : Dict ) -> int: """simple docstring""" return self._generative_step(UpperCamelCase_ ) def UpperCAmelCase_ ( self : Dict , _A : Tuple ) -> Optional[Any]: """simple docstring""" return self.validation_epoch_end(UpperCamelCase_ , prefix='test' ) def UpperCAmelCase_ ( self : Optional[int] , _A : str ) -> List[Any]: """simple docstring""" snake_case_ : Optional[int] = self.n_obs[type_path] snake_case_ : Optional[Any] = self.target_lens[type_path] snake_case_ : List[str] = self.dataset_class( self.tokenizer , type_path=UpperCamelCase_ , n_obs=UpperCamelCase_ , max_target_length=UpperCamelCase_ , **self.dataset_kwargs , ) return dataset def UpperCAmelCase_ ( self : Union[str, Any] , _A : str , _A : int , _A : bool = False ) -> Tuple: """simple docstring""" snake_case_ : List[str] = self.get_dataset(UpperCamelCase_ ) if self.hparams.sortish_sampler and type_path != "test" and type_path != "val": snake_case_ : Optional[Any] = dataset.make_sortish_sampler(UpperCamelCase_ , distributed=self.hparams.gpus > 1 ) return DataLoader( UpperCamelCase_ , batch_size=UpperCamelCase_ , collate_fn=dataset.collate_fn , shuffle=UpperCamelCase_ , num_workers=self.num_workers , sampler=UpperCamelCase_ , ) elif self.hparams.max_tokens_per_batch is not None and type_path != "test" and type_path != "val": snake_case_ : str = dataset.make_dynamic_sampler( self.hparams.max_tokens_per_batch , distributed=self.hparams.gpus > 1 ) return DataLoader( UpperCamelCase_ , batch_sampler=UpperCamelCase_ , collate_fn=dataset.collate_fn , num_workers=self.num_workers , ) else: return DataLoader( UpperCamelCase_ , batch_size=UpperCamelCase_ , collate_fn=dataset.collate_fn , shuffle=UpperCamelCase_ , num_workers=self.num_workers , sampler=UpperCamelCase_ , ) def UpperCAmelCase_ ( self : Optional[int] ) -> List[Any]: """simple docstring""" snake_case_ : Optional[Any] = self.get_dataloader('train' , batch_size=self.hparams.train_batch_size , shuffle=UpperCamelCase_ ) return dataloader def UpperCAmelCase_ ( self : Union[str, Any] ) -> Dict: """simple docstring""" return self.get_dataloader('val' , batch_size=self.hparams.eval_batch_size ) def UpperCAmelCase_ ( self : Any ) -> str: """simple docstring""" return self.get_dataloader('test' , batch_size=self.hparams.eval_batch_size ) @staticmethod def UpperCAmelCase_ ( _A : Any , _A : int ) -> Union[str, Any]: """simple docstring""" BaseTransformer.add_model_specific_args(UpperCamelCase_ , UpperCamelCase_ ) add_generic_args(UpperCamelCase_ , UpperCamelCase_ ) parser.add_argument( '--max_source_length' , default=1024 , type=UpperCamelCase_ , help=( 'The maximum total input sequence length after tokenization. Sequences longer ' 'than this will be truncated, sequences shorter will be padded.' ) , ) parser.add_argument( '--max_target_length' , default=56 , type=UpperCamelCase_ , help=( 'The maximum total input sequence length after tokenization. Sequences longer ' 'than this will be truncated, sequences shorter will be padded.' ) , ) parser.add_argument( '--val_max_target_length' , default=142 , type=UpperCamelCase_ , help=( 'The maximum total input sequence length after tokenization. Sequences longer ' 'than this will be truncated, sequences shorter will be padded.' ) , ) parser.add_argument( '--test_max_target_length' , default=142 , type=UpperCamelCase_ , help=( 'The maximum total input sequence length after tokenization. Sequences longer ' 'than this will be truncated, sequences shorter will be padded.' ) , ) parser.add_argument('--freeze_encoder' , action='store_true' ) parser.add_argument('--freeze_embeds' , action='store_true' ) parser.add_argument('--sortish_sampler' , action='store_true' , default=UpperCamelCase_ ) parser.add_argument('--overwrite_output_dir' , action='store_true' , default=UpperCamelCase_ ) parser.add_argument('--max_tokens_per_batch' , type=UpperCamelCase_ , default=UpperCamelCase_ ) parser.add_argument('--logger_name' , type=UpperCamelCase_ , choices=['default', 'wandb', 'wandb_shared'] , default='default' ) parser.add_argument('--n_train' , type=UpperCamelCase_ , default=-1 , required=UpperCamelCase_ , help='# examples. -1 means use all.' ) parser.add_argument('--n_val' , type=UpperCamelCase_ , default=500 , required=UpperCamelCase_ , help='# examples. -1 means use all.' ) parser.add_argument('--n_test' , type=UpperCamelCase_ , default=-1 , required=UpperCamelCase_ , help='# examples. -1 means use all.' ) parser.add_argument( '--task' , type=UpperCamelCase_ , default='summarization' , required=UpperCamelCase_ , help='# examples. -1 means use all.' ) parser.add_argument('--label_smoothing' , type=UpperCamelCase_ , default=0.0 , required=UpperCamelCase_ ) parser.add_argument('--src_lang' , type=UpperCamelCase_ , default='' , required=UpperCamelCase_ ) parser.add_argument('--tgt_lang' , type=UpperCamelCase_ , default='' , required=UpperCamelCase_ ) parser.add_argument('--eval_beams' , type=UpperCamelCase_ , default=UpperCamelCase_ , required=UpperCamelCase_ ) parser.add_argument( '--val_metric' , type=UpperCamelCase_ , default=UpperCamelCase_ , required=UpperCamelCase_ , choices=['bleu', 'rouge2', 'loss', None] ) parser.add_argument('--eval_max_gen_length' , type=UpperCamelCase_ , default=UpperCamelCase_ , help='never generate more than n tokens' ) parser.add_argument('--save_top_k' , type=UpperCamelCase_ , default=1 , required=UpperCamelCase_ , help='How many checkpoints to save' ) parser.add_argument( '--early_stopping_patience' , type=UpperCamelCase_ , default=-1 , required=UpperCamelCase_ , help=( '-1 means never early stop. early_stopping_patience is measured in validation checks, not epochs. So' ' val_check_interval will effect it.' ) , ) return parser class SCREAMING_SNAKE_CASE_ ( __lowerCamelCase ): __magic_name__: Optional[int] = 'translation' __magic_name__: Any = ['loss'] __magic_name__: List[str] = ['bleu'] __magic_name__: List[str] = 'bleu' def __init__( self : Tuple , _A : Union[str, Any] , **_A : Dict ) -> List[str]: """simple docstring""" super().__init__(UpperCamelCase_ , **UpperCamelCase_ ) snake_case_ : Union[str, Any] = hparams.src_lang snake_case_ : Optional[Any] = hparams.tgt_lang def UpperCAmelCase_ ( self : Optional[int] , _A : int , _A : Any ) -> Any: """simple docstring""" return calculate_bleu(UpperCamelCase_ , UpperCamelCase_ ) def SCREAMING_SNAKE_CASE__ ( __a , __a=None ): Path(args.output_dir ).mkdir(exist_ok=A__ ) check_output_dir(A__ , expected_items=3 ) if model is None: if "summarization" in args.task: snake_case_ : List[str] = SummarizationModule(A__ ) else: snake_case_ : Any = TranslationModule(A__ ) snake_case_ : int = Path(args.data_dir ).name if ( args.logger_name == "default" or args.fast_dev_run or str(args.output_dir ).startswith('/tmp' ) or str(args.output_dir ).startswith('/var' ) ): snake_case_ : int = True # don't pollute wandb logs unnecessarily elif args.logger_name == "wandb": from pytorch_lightning.loggers import WandbLogger snake_case_ : List[Any] = os.environ.get('WANDB_PROJECT' , A__ ) snake_case_ : Optional[Any] = WandbLogger(name=model.output_dir.name , project=A__ ) elif args.logger_name == "wandb_shared": from pytorch_lightning.loggers import WandbLogger snake_case_ : Optional[int] = WandbLogger(name=model.output_dir.name , project=f"""hf_{dataset}""" ) if args.early_stopping_patience >= 0: snake_case_ : Dict = get_early_stopping_callback(model.val_metric , args.early_stopping_patience ) else: snake_case_ : str = False snake_case_ : Optional[Any] = args.val_metric == 'loss' snake_case_ : int = generic_train( A__ , A__ , logging_callback=SeqaSeqLoggingCallback() , checkpoint_callback=get_checkpoint_callback( args.output_dir , model.val_metric , args.save_top_k , A__ ) , early_stopping_callback=A__ , logger=A__ , ) pickle_save(model.hparams , model.output_dir / 'hparams.pkl' ) if not args.do_predict: return model snake_case_ : Dict = '' snake_case_ : int = sorted(glob.glob(os.path.join(args.output_dir , '*.ckpt' ) , recursive=A__ ) ) if checkpoints: snake_case_ : Optional[Any] = checkpoints[-1] snake_case_ : int = checkpoints[-1] trainer.logger.log_hyperparams(model.hparams ) # test() without a model tests using the best checkpoint automatically trainer.test() return model if __name__ == "__main__": _SCREAMING_SNAKE_CASE = argparse.ArgumentParser() _SCREAMING_SNAKE_CASE = pl.Trainer.add_argparse_args(parser) _SCREAMING_SNAKE_CASE = SummarizationModule.add_model_specific_args(parser, os.getcwd()) _SCREAMING_SNAKE_CASE = parser.parse_args() main(args)
357
import argparse from collections import defaultdict import yaml _SCREAMING_SNAKE_CASE = """docs/source/en/_toctree.yml""" def SCREAMING_SNAKE_CASE__ ( __a ): snake_case_ : List[Any] = defaultdict(__a ) snake_case_ : Optional[Any] = [] snake_case_ : Optional[Any] = [] for doc in doc_list: if "local" in doc: counts[doc["local"]] += 1 if doc["title"].lower() == "overview": overview_doc.append({'local': doc['local'], 'title': doc['title']} ) else: new_doc_list.append(__a ) snake_case_ : Any = new_doc_list snake_case_ : str = [key for key, value in counts.items() if value > 1] snake_case_ : Any = [] for duplicate_key in duplicates: snake_case_ : Any = list({doc['title'] for doc in doc_list if doc['local'] == duplicate_key} ) if len(__a ) > 1: raise ValueError( f"""{duplicate_key} is present several times in the documentation table of content at """ '`docs/source/en/_toctree.yml` with different *Title* values. Choose one of those and remove the ' 'others.' ) # Only add this once new_doc.append({'local': duplicate_key, 'title': titles[0]} ) # Add none duplicate-keys new_doc.extend([doc for doc in doc_list if 'local' not in counts or counts[doc['local']] == 1] ) snake_case_ : str = sorted(__a , key=lambda __a : s["title"].lower() ) # "overview" gets special treatment and is always first if len(__a ) > 1: raise ValueError('{doc_list} has two \'overview\' docs which is not allowed.' ) overview_doc.extend(__a ) # Sort return overview_doc def SCREAMING_SNAKE_CASE__ ( __a=False ): with open(__a , encoding='utf-8' ) as f: snake_case_ : int = yaml.safe_load(f.read() ) # Get to the API doc snake_case_ : str = 0 while content[api_idx]["title"] != "API": api_idx += 1 snake_case_ : Dict = content[api_idx]['sections'] # Then to the model doc snake_case_ : Tuple = 0 while api_doc[scheduler_idx]["title"] != "Schedulers": scheduler_idx += 1 snake_case_ : Union[str, Any] = api_doc[scheduler_idx]['sections'] snake_case_ : Optional[Any] = clean_doc_toc(__a ) snake_case_ : int = False if new_scheduler_doc != scheduler_doc: snake_case_ : int = True if overwrite: snake_case_ : Union[str, Any] = new_scheduler_doc if diff: if overwrite: snake_case_ : Optional[int] = api_doc with open(__a , 'w' , encoding='utf-8' ) as f: f.write(yaml.dump(__a , allow_unicode=__a ) ) else: raise ValueError( 'The model doc part of the table of content is not properly sorted, run `make style` to fix this.' ) def SCREAMING_SNAKE_CASE__ ( __a=False ): with open(__a , encoding='utf-8' ) as f: snake_case_ : Dict = yaml.safe_load(f.read() ) # Get to the API doc snake_case_ : Any = 0 while content[api_idx]["title"] != "API": api_idx += 1 snake_case_ : str = content[api_idx]['sections'] # Then to the model doc snake_case_ : List[Any] = 0 while api_doc[pipeline_idx]["title"] != "Pipelines": pipeline_idx += 1 snake_case_ : Dict = False snake_case_ : Union[str, Any] = api_doc[pipeline_idx]['sections'] snake_case_ : Union[str, Any] = [] # sort sub pipeline docs for pipeline_doc in pipeline_docs: if "section" in pipeline_doc: snake_case_ : Optional[Any] = pipeline_doc['section'] snake_case_ : Optional[int] = clean_doc_toc(__a ) if overwrite: snake_case_ : Tuple = new_sub_pipeline_doc new_pipeline_docs.append(__a ) # sort overall pipeline doc snake_case_ : Optional[Any] = clean_doc_toc(__a ) if new_pipeline_docs != pipeline_docs: snake_case_ : List[str] = True if overwrite: snake_case_ : List[str] = new_pipeline_docs if diff: if overwrite: snake_case_ : List[Any] = api_doc with open(__a , 'w' , encoding='utf-8' ) as f: f.write(yaml.dump(__a , allow_unicode=__a ) ) else: raise ValueError( 'The model doc part of the table of content is not properly sorted, run `make style` to fix this.' ) if __name__ == "__main__": _SCREAMING_SNAKE_CASE = argparse.ArgumentParser() parser.add_argument("""--fix_and_overwrite""", action="""store_true""", help="""Whether to fix inconsistencies.""") _SCREAMING_SNAKE_CASE = parser.parse_args() check_scheduler_doc(args.fix_and_overwrite) check_pipeline_doc(args.fix_and_overwrite)
88
0
'''simple docstring''' import math class UpperCAmelCase : def lowercase__ ( self : int , __snake_case : list[list[float]] , __snake_case : list[int] ) -> int: _lowerCAmelCase = 0.0 _lowerCAmelCase = 0.0 for i in range(len(__snake_case ) ): da += math.pow((sample[i] - weights[0][i]) , 2 ) da += math.pow((sample[i] - weights[1][i]) , 2 ) return 0 if da > da else 1 return 0 def lowercase__ ( self : str , __snake_case : list[list[int | float]] , __snake_case : list[int] , __snake_case : int , __snake_case : float ) -> list[list[int | float]]: for i in range(len(__snake_case ) ): weights[j][i] += alpha * (sample[i] - weights[j][i]) return weights def UpperCamelCase__ ( ): """simple docstring""" _lowerCAmelCase = [[1, 1, 0, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 0, 1, 1]] # weight initialization ( n, C ) _lowerCAmelCase = [[0.2, 0.6, 0.5, 0.9], [0.8, 0.4, 0.7, 0.3]] # training _lowerCAmelCase = SelfOrganizingMap() _lowerCAmelCase = 3 _lowerCAmelCase = 0.5 for _ in range(lowerCAmelCase ): for j in range(len(lowerCAmelCase ) ): # training sample _lowerCAmelCase = training_samples[j] # Compute the winning vector _lowerCAmelCase = self_organizing_map.get_winner(lowerCAmelCase , lowerCAmelCase ) # Update the winning vector _lowerCAmelCase = self_organizing_map.update(lowerCAmelCase , lowerCAmelCase , lowerCAmelCase , lowerCAmelCase ) # classify test sample _lowerCAmelCase = [0, 0, 0, 1] _lowerCAmelCase = self_organizing_map.get_winner(lowerCAmelCase , lowerCAmelCase ) # results print(f"Clusters that the test sample belongs to : {winner}" ) print(f"Weights that have been trained : {weights}" ) # running the main() function if __name__ == "__main__": main()
70
'''simple docstring''' from torch import nn def UpperCamelCase__ ( lowerCAmelCase ): """simple docstring""" if act_fn in ["swish", "silu"]: return nn.SiLU() elif act_fn == "mish": return nn.Mish() elif act_fn == "gelu": return nn.GELU() else: raise ValueError(f"Unsupported activation function: {act_fn}" )
70
1
"""simple docstring""" from unittest import TestCase from datasets import Sequence, Value from datasets.arrow_dataset import Dataset class lowercase ( snake_case_ ): def a ( self ): return [ {"col_1": 3, "col_2": "a"}, {"col_1": 2, "col_2": "b"}, {"col_1": 1, "col_2": "c"}, {"col_1": 0, "col_2": "d"}, ] def a ( self ): snake_case_ = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']} return Dataset.from_dict(snake_case ) def a ( self ): snake_case_ = self._create_example_records() snake_case_ = Dataset.from_list(snake_case ) self.assertListEqual(dset.column_names , ['col_1', 'col_2'] ) for i, r in enumerate(snake_case ): self.assertDictEqual(snake_case , example_records[i] ) def a ( self ): snake_case_ = self._create_example_records() snake_case_ = Dataset.from_list(snake_case ) snake_case_ = Dataset.from_dict({k: [r[k] for r in example_records] for k in example_records[0]} ) self.assertEqual(dset.info , dset_from_dict.info ) def a ( self ): # checks what happens with missing columns snake_case_ = [{'col_1': 1}, {'col_2': 'x'}] snake_case_ = Dataset.from_list(snake_case ) self.assertDictEqual(dset[0] , {'col_1': 1} ) self.assertDictEqual(dset[1] , {'col_1': None} ) # NB: first record is used for columns def a ( self ): # checks if the type can be inferred from the second record snake_case_ = [{'col_1': []}, {'col_1': [1, 2]}] snake_case_ = Dataset.from_list(snake_case ) self.assertEqual(dset.info.features['col_1'] , Sequence(Value('int64' ) ) ) def a ( self ): snake_case_ = Dataset.from_list([] ) self.assertEqual(len(snake_case ) , 0 ) self.assertListEqual(dset.column_names , [] )
353
import unittest from transformers import BarthezTokenizer, BarthezTokenizerFast, BatchEncoding from transformers.testing_utils import require_sentencepiece, require_tokenizers, require_torch, slow from ...test_tokenization_common import TokenizerTesterMixin @require_tokenizers @require_sentencepiece @slow # see https://github.com/huggingface/transformers/issues/11457 class lowercase ( lowercase_ , unittest.TestCase ): __SCREAMING_SNAKE_CASE : List[str] = BarthezTokenizer __SCREAMING_SNAKE_CASE : str = BarthezTokenizerFast __SCREAMING_SNAKE_CASE : Optional[Any] = True __SCREAMING_SNAKE_CASE : str = True def a ( self ): super().setUp() snake_case_ = BarthezTokenizerFast.from_pretrained('moussaKam/mbarthez' ) tokenizer.save_pretrained(self.tmpdirname ) tokenizer.save_pretrained(self.tmpdirname , legacy_format=snake_case ) snake_case_ = tokenizer def a ( self ): snake_case_ = '<pad>' snake_case_ = 1 self.assertEqual(self.get_tokenizer()._convert_token_to_id(snake_case ) , snake_case ) self.assertEqual(self.get_tokenizer()._convert_id_to_token(snake_case ) , snake_case ) def a ( self ): snake_case_ = list(self.get_tokenizer().get_vocab().keys() ) self.assertEqual(vocab_keys[0] , '<s>' ) self.assertEqual(vocab_keys[1] , '<pad>' ) self.assertEqual(vocab_keys[-1] , '<mask>' ) self.assertEqual(len(snake_case ) , 10_1122 ) def a ( self ): self.assertEqual(self.get_tokenizer().vocab_size , 10_1122 ) @require_torch def a ( self ): snake_case_ = ['A long paragraph for summarization.', 'Another paragraph for summarization.'] snake_case_ = [0, 57, 3018, 7_0307, 91, 2] snake_case_ = self.tokenizer( snake_case , max_length=len(snake_case ) , padding=snake_case , truncation=snake_case , return_tensors='pt' ) self.assertIsInstance(snake_case , snake_case ) self.assertEqual((2, 6) , batch.input_ids.shape ) self.assertEqual((2, 6) , batch.attention_mask.shape ) snake_case_ = batch.input_ids.tolist()[0] self.assertListEqual(snake_case , snake_case ) def a ( self ): if not self.test_rust_tokenizer: return snake_case_ = self.get_tokenizer() snake_case_ = self.get_rust_tokenizer() snake_case_ = 'I was born in 92000, and this is falsé.' snake_case_ = tokenizer.tokenize(snake_case ) snake_case_ = rust_tokenizer.tokenize(snake_case ) self.assertListEqual(snake_case , snake_case ) snake_case_ = tokenizer.encode(snake_case , add_special_tokens=snake_case ) snake_case_ = rust_tokenizer.encode(snake_case , add_special_tokens=snake_case ) self.assertListEqual(snake_case , snake_case ) snake_case_ = self.get_rust_tokenizer() snake_case_ = tokenizer.encode(snake_case ) snake_case_ = rust_tokenizer.encode(snake_case ) self.assertListEqual(snake_case , snake_case ) @slow def a ( self ): # fmt: off snake_case_ = {'input_ids': [[0, 490, 1_4328, 4507, 354, 47, 4_3669, 95, 25, 7_8117, 2_0215, 1_9779, 190, 22, 400, 4, 3_5343, 8_0310, 603, 86, 2_4937, 105, 3_3438, 9_4762, 196, 3_9642, 7, 15, 1_5933, 173, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1_0534, 87, 25, 66, 3358, 196, 5_5289, 8, 8_2961, 81, 2204, 7_5203, 7, 15, 763, 1_2956, 216, 178, 1_4328, 9595, 1377, 6_9693, 7, 448, 7_1021, 196, 1_8106, 1437, 1_3974, 108, 9083, 4, 4_9315, 7, 39, 86, 1326, 2793, 4_6333, 4, 448, 196, 7_4588, 7, 4_9315, 7, 39, 21, 822, 3_8470, 74, 21, 6_6723, 6_2480, 8, 2_2050, 5, 2]], 'attention_mask': [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]} # noqa: E501 # fmt: on # moussaKam/mbarthez is a french model. So we also use french texts. snake_case_ = [ 'Le transformeur est un modèle d\'apprentissage profond introduit en 2017, ' 'utilisé principalement dans le domaine du traitement automatique des langues (TAL).', 'À l\'instar des réseaux de neurones récurrents (RNN), les transformeurs sont conçus ' 'pour gérer des données séquentielles, telles que le langage naturel, pour des tâches ' 'telles que la traduction et la synthèse de texte.', ] self.tokenizer_integration_test_util( expected_encoding=snake_case , model_name='moussaKam/mbarthez' , revision='c2e4ecbca5e3cd2c37fe1ac285ca4fbdf1366fb6' , sequences=snake_case , )
200
0
"""simple docstring""" from __future__ import annotations def snake_case_ ( A_ : list[int] ): '''simple docstring''' if len(A_ ) == 0: return array _lowerCamelCase , _lowerCamelCase : List[str] = min(A_ ), max(A_ ) # Compute the variables _lowerCamelCase : int = _max - _min + 1 _lowerCamelCase , _lowerCamelCase : Dict = [0] * holes_range, [0] * holes_range # Make the sorting. for i in array: _lowerCamelCase : Optional[int] = i - _min _lowerCamelCase : Union[str, Any] = i holes_repeat[index] += 1 # Makes the array back by replacing the numbers. _lowerCamelCase : List[Any] = 0 for i in range(A_ ): while holes_repeat[i] > 0: _lowerCamelCase : Tuple = holes[i] index += 1 holes_repeat[i] -= 1 # Returns the sorted array. return array if __name__ == "__main__": import doctest doctest.testmod() lowerCAmelCase__ = input('''Enter numbers separated by comma:\n''') lowerCAmelCase__ = [int(x) for x in user_input.split(''',''')] print(pigeon_sort(unsorted))
72
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging lowerCAmelCase__ = logging.get_logger(__name__) lowerCAmelCase__ = { '''microsoft/unispeech-large-1500h-cv''': ( '''https://huggingface.co/microsoft/unispeech-large-1500h-cv/resolve/main/config.json''' ), # See all UniSpeech models at https://huggingface.co/models?filter=unispeech } class __snake_case ( _lowercase): snake_case__ : List[str] = "unispeech" def __init__( self : List[str] , __lowerCAmelCase : List[Any]=3_2 , __lowerCAmelCase : str=7_6_8 , __lowerCAmelCase : int=1_2 , __lowerCAmelCase : int=1_2 , __lowerCAmelCase : int=3_0_7_2 , __lowerCAmelCase : Tuple="gelu" , __lowerCAmelCase : Dict=0.1 , __lowerCAmelCase : Dict=0.1 , __lowerCAmelCase : str=0.1 , __lowerCAmelCase : Tuple=0.0 , __lowerCAmelCase : Optional[int]=0.0 , __lowerCAmelCase : List[Any]=0.1 , __lowerCAmelCase : Optional[int]=0.1 , __lowerCAmelCase : Tuple=0.02 , __lowerCAmelCase : Dict=1E-5 , __lowerCAmelCase : Optional[int]="group" , __lowerCAmelCase : Dict="gelu" , __lowerCAmelCase : int=(5_1_2, 5_1_2, 5_1_2, 5_1_2, 5_1_2, 5_1_2, 5_1_2) , __lowerCAmelCase : Optional[int]=(5, 2, 2, 2, 2, 2, 2) , __lowerCAmelCase : Union[str, Any]=(1_0, 3, 3, 3, 3, 2, 2) , __lowerCAmelCase : List[Any]=False , __lowerCAmelCase : List[str]=1_2_8 , __lowerCAmelCase : Any=1_6 , __lowerCAmelCase : Optional[int]=False , __lowerCAmelCase : Optional[Any]=True , __lowerCAmelCase : Union[str, Any]=0.05 , __lowerCAmelCase : Union[str, Any]=1_0 , __lowerCAmelCase : List[Any]=2 , __lowerCAmelCase : Dict=0.0 , __lowerCAmelCase : Optional[int]=1_0 , __lowerCAmelCase : Dict=0 , __lowerCAmelCase : List[str]=3_2_0 , __lowerCAmelCase : List[Any]=2 , __lowerCAmelCase : Dict=0.1 , __lowerCAmelCase : Tuple=1_0_0 , __lowerCAmelCase : Dict=2_5_6 , __lowerCAmelCase : str=2_5_6 , __lowerCAmelCase : List[Any]=0.1 , __lowerCAmelCase : Dict="mean" , __lowerCAmelCase : Union[str, Any]=False , __lowerCAmelCase : Dict=False , __lowerCAmelCase : Optional[Any]=2_5_6 , __lowerCAmelCase : Dict=8_0 , __lowerCAmelCase : int=0 , __lowerCAmelCase : Optional[int]=1 , __lowerCAmelCase : Dict=2 , __lowerCAmelCase : Any=0.5 , **__lowerCAmelCase : Optional[Any] , ): """simple docstring""" super().__init__(**__lowerCAmelCase , pad_token_id=__lowerCAmelCase , bos_token_id=__lowerCAmelCase , eos_token_id=__lowerCAmelCase ) _lowerCamelCase : Dict = hidden_size _lowerCamelCase : Any = feat_extract_norm _lowerCamelCase : List[Any] = feat_extract_activation _lowerCamelCase : Any = list(__lowerCAmelCase ) _lowerCamelCase : Tuple = list(__lowerCAmelCase ) _lowerCamelCase : int = list(__lowerCAmelCase ) _lowerCamelCase : List[str] = conv_bias _lowerCamelCase : List[str] = num_conv_pos_embeddings _lowerCamelCase : Tuple = num_conv_pos_embedding_groups _lowerCamelCase : List[str] = len(self.conv_dim ) _lowerCamelCase : Tuple = num_hidden_layers _lowerCamelCase : List[Any] = intermediate_size _lowerCamelCase : Dict = hidden_act _lowerCamelCase : Union[str, Any] = num_attention_heads _lowerCamelCase : Tuple = hidden_dropout _lowerCamelCase : List[Any] = attention_dropout _lowerCamelCase : Optional[int] = activation_dropout _lowerCamelCase : Optional[Any] = feat_proj_dropout _lowerCamelCase : Optional[int] = final_dropout _lowerCamelCase : Any = layerdrop _lowerCamelCase : Any = layer_norm_eps _lowerCamelCase : List[Any] = initializer_range _lowerCamelCase : List[str] = num_ctc_classes _lowerCamelCase : List[Any] = vocab_size _lowerCamelCase : Optional[Any] = do_stable_layer_norm _lowerCamelCase : Tuple = use_weighted_layer_sum _lowerCamelCase : List[Any] = classifier_proj_size if ( (len(self.conv_stride ) != self.num_feat_extract_layers) or (len(self.conv_kernel ) != self.num_feat_extract_layers) or (len(self.conv_dim ) != self.num_feat_extract_layers) ): raise ValueError( '''Configuration 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) =''' f''' {len(self.conv_dim )}`, `len(config.conv_stride) = {len(self.conv_stride )}`,''' f''' `len(config.conv_kernel) = {len(self.conv_kernel )}`.''' ) # fine-tuning config parameters for SpecAugment: https://arxiv.org/abs/1904.08779 _lowerCamelCase : Any = apply_spec_augment _lowerCamelCase : Dict = mask_time_prob _lowerCamelCase : List[str] = mask_time_length _lowerCamelCase : Optional[Any] = mask_time_min_masks _lowerCamelCase : List[str] = mask_feature_prob _lowerCamelCase : int = mask_feature_length _lowerCamelCase : Dict = mask_feature_min_masks # parameters for pretraining with codevector quantized representations _lowerCamelCase : Optional[Any] = num_codevectors_per_group _lowerCamelCase : int = num_codevector_groups _lowerCamelCase : List[Any] = contrastive_logits_temperature _lowerCamelCase : List[str] = feat_quantizer_dropout _lowerCamelCase : Dict = num_negatives _lowerCamelCase : Optional[int] = codevector_dim _lowerCamelCase : List[Any] = proj_codevector_dim _lowerCamelCase : List[Any] = diversity_loss_weight # ctc loss _lowerCamelCase : Union[str, Any] = ctc_loss_reduction _lowerCamelCase : Any = ctc_zero_infinity # pretraining loss _lowerCamelCase : str = replace_prob @property def SCREAMING_SNAKE_CASE ( self : int ): """simple docstring""" return functools.reduce(operator.mul , self.conv_stride , 1 )
72
1
"""simple docstring""" import gc import random import unittest import numpy as np import torch from transformers import ( CLIPImageProcessor, CLIPTextConfig, CLIPTextModelWithProjection, CLIPTokenizer, CLIPVisionConfig, CLIPVisionModelWithProjection, ) from diffusers import ( DiffusionPipeline, UnCLIPImageVariationPipeline, UnCLIPScheduler, UNetaDConditionModel, UNetaDModel, ) from diffusers.pipelines.unclip.text_proj import UnCLIPTextProjModel from diffusers.utils import floats_tensor, load_numpy, slow, torch_device from diffusers.utils.testing_utils import enable_full_determinism, load_image, require_torch_gpu, skip_mps from ..pipeline_params import IMAGE_VARIATION_BATCH_PARAMS, IMAGE_VARIATION_PARAMS from ..test_pipelines_common import PipelineTesterMixin, assert_mean_pixel_difference enable_full_determinism() class a ( lowerCAmelCase_ , unittest.TestCase ): _snake_case : Union[str, Any] = UnCLIPImageVariationPipeline _snake_case : Optional[int] = IMAGE_VARIATION_PARAMS - {'height', 'width', 'guidance_scale'} _snake_case : int = IMAGE_VARIATION_BATCH_PARAMS _snake_case : Dict = [ 'generator', 'return_dict', 'decoder_num_inference_steps', 'super_res_num_inference_steps', ] _snake_case : Dict = False @property def lowerCAmelCase_ ( self : Optional[int] ): return 32 @property def lowerCAmelCase_ ( self : Tuple ): return 32 @property def lowerCAmelCase_ ( self : str ): return self.time_input_dim @property def lowerCAmelCase_ ( self : Dict ): return self.time_input_dim * 4 @property def lowerCAmelCase_ ( self : Optional[int] ): return 100 @property def lowerCAmelCase_ ( self : List[str] ): _UpperCAmelCase = CLIPTokenizer.from_pretrained("""hf-internal-testing/tiny-random-clip""" ) return tokenizer @property def lowerCAmelCase_ ( self : Dict ): torch.manual_seed(0 ) _UpperCAmelCase = CLIPTextConfig( bos_token_id=0 , eos_token_id=2 , hidden_size=self.text_embedder_hidden_size , projection_dim=self.text_embedder_hidden_size , intermediate_size=37 , layer_norm_eps=1e-0_5 , num_attention_heads=4 , num_hidden_layers=5 , pad_token_id=1 , vocab_size=1000 , ) return CLIPTextModelWithProjection(__lowerCAmelCase ) @property def lowerCAmelCase_ ( self : Dict ): torch.manual_seed(0 ) _UpperCAmelCase = CLIPVisionConfig( hidden_size=self.text_embedder_hidden_size , projection_dim=self.text_embedder_hidden_size , num_hidden_layers=5 , num_attention_heads=4 , image_size=32 , intermediate_size=37 , patch_size=1 , ) return CLIPVisionModelWithProjection(__lowerCAmelCase ) @property def lowerCAmelCase_ ( self : Optional[int] ): torch.manual_seed(0 ) _UpperCAmelCase = { """clip_embeddings_dim""": self.text_embedder_hidden_size, """time_embed_dim""": self.time_embed_dim, """cross_attention_dim""": self.cross_attention_dim, } _UpperCAmelCase = UnCLIPTextProjModel(**__lowerCAmelCase ) return model @property def lowerCAmelCase_ ( self : Optional[int] ): torch.manual_seed(0 ) _UpperCAmelCase = { """sample_size""": 32, # RGB in channels """in_channels""": 3, # Out channels is double in channels because predicts mean and variance """out_channels""": 6, """down_block_types""": ("""ResnetDownsampleBlock2D""", """SimpleCrossAttnDownBlock2D"""), """up_block_types""": ("""SimpleCrossAttnUpBlock2D""", """ResnetUpsampleBlock2D"""), """mid_block_type""": """UNetMidBlock2DSimpleCrossAttn""", """block_out_channels""": (self.block_out_channels_a, self.block_out_channels_a * 2), """layers_per_block""": 1, """cross_attention_dim""": self.cross_attention_dim, """attention_head_dim""": 4, """resnet_time_scale_shift""": """scale_shift""", """class_embed_type""": """identity""", } _UpperCAmelCase = UNetaDConditionModel(**__lowerCAmelCase ) return model @property def lowerCAmelCase_ ( self : List[Any] ): return { "sample_size": 64, "layers_per_block": 1, "down_block_types": ("ResnetDownsampleBlock2D", "ResnetDownsampleBlock2D"), "up_block_types": ("ResnetUpsampleBlock2D", "ResnetUpsampleBlock2D"), "block_out_channels": (self.block_out_channels_a, self.block_out_channels_a * 2), "in_channels": 6, "out_channels": 3, } @property def lowerCAmelCase_ ( self : Any ): torch.manual_seed(0 ) _UpperCAmelCase = UNetaDModel(**self.dummy_super_res_kwargs ) return model @property def lowerCAmelCase_ ( self : int ): # seeded differently to get different unet than `self.dummy_super_res_first` torch.manual_seed(1 ) _UpperCAmelCase = UNetaDModel(**self.dummy_super_res_kwargs ) return model def lowerCAmelCase_ ( self : Dict ): _UpperCAmelCase = self.dummy_decoder _UpperCAmelCase = self.dummy_text_proj _UpperCAmelCase = self.dummy_text_encoder _UpperCAmelCase = self.dummy_tokenizer _UpperCAmelCase = self.dummy_super_res_first _UpperCAmelCase = self.dummy_super_res_last _UpperCAmelCase = UnCLIPScheduler( variance_type="""learned_range""" , prediction_type="""epsilon""" , num_train_timesteps=1000 , ) _UpperCAmelCase = UnCLIPScheduler( variance_type="""fixed_small_log""" , prediction_type="""epsilon""" , num_train_timesteps=1000 , ) _UpperCAmelCase = CLIPImageProcessor(crop_size=32 , size=32 ) _UpperCAmelCase = self.dummy_image_encoder return { "decoder": decoder, "text_encoder": text_encoder, "tokenizer": tokenizer, "text_proj": text_proj, "feature_extractor": feature_extractor, "image_encoder": image_encoder, "super_res_first": super_res_first, "super_res_last": super_res_last, "decoder_scheduler": decoder_scheduler, "super_res_scheduler": super_res_scheduler, } def lowerCAmelCase_ ( self : int , __lowerCAmelCase : Union[str, Any] , __lowerCAmelCase : Optional[int]=0 , __lowerCAmelCase : str=True ): _UpperCAmelCase = floats_tensor((1, 3, 32, 32) , rng=random.Random(__lowerCAmelCase ) ).to(__lowerCAmelCase ) if str(__lowerCAmelCase ).startswith("""mps""" ): _UpperCAmelCase = torch.manual_seed(__lowerCAmelCase ) else: _UpperCAmelCase = torch.Generator(device=__lowerCAmelCase ).manual_seed(__lowerCAmelCase ) if pil_image: _UpperCAmelCase = input_image * 0.5 + 0.5 _UpperCAmelCase = input_image.clamp(0 , 1 ) _UpperCAmelCase = input_image.cpu().permute(0 , 2 , 3 , 1 ).float().numpy() _UpperCAmelCase = DiffusionPipeline.numpy_to_pil(__lowerCAmelCase )[0] return { "image": input_image, "generator": generator, "decoder_num_inference_steps": 2, "super_res_num_inference_steps": 2, "output_type": "np", } def lowerCAmelCase_ ( self : int ): _UpperCAmelCase = """cpu""" _UpperCAmelCase = self.get_dummy_components() _UpperCAmelCase = self.pipeline_class(**__lowerCAmelCase ) _UpperCAmelCase = pipe.to(__lowerCAmelCase ) pipe.set_progress_bar_config(disable=__lowerCAmelCase ) _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = pipe(**__lowerCAmelCase ) _UpperCAmelCase = output.images _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = pipe( **__lowerCAmelCase , return_dict=__lowerCAmelCase , )[0] _UpperCAmelCase = image[0, -3:, -3:, -1] _UpperCAmelCase = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (1, 64, 64, 3) _UpperCAmelCase = np.array( [ 0.9_997, 0.0_002, 0.9_997, 0.9_997, 0.9_969, 0.0_023, 0.9_997, 0.9_969, 0.9_970, ] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 1e-2 def lowerCAmelCase_ ( self : str ): _UpperCAmelCase = """cpu""" _UpperCAmelCase = self.get_dummy_components() _UpperCAmelCase = self.pipeline_class(**__lowerCAmelCase ) _UpperCAmelCase = pipe.to(__lowerCAmelCase ) pipe.set_progress_bar_config(disable=__lowerCAmelCase ) _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = pipe(**__lowerCAmelCase ) _UpperCAmelCase = output.images _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = pipe( **__lowerCAmelCase , return_dict=__lowerCAmelCase , )[0] _UpperCAmelCase = image[0, -3:, -3:, -1] _UpperCAmelCase = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (1, 64, 64, 3) _UpperCAmelCase = np.array([0.9_997, 0.0_003, 0.9_997, 0.9_997, 0.9_970, 0.0_024, 0.9_997, 0.9_971, 0.9_971] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 1e-2 def lowerCAmelCase_ ( self : Union[str, Any] ): _UpperCAmelCase = """cpu""" _UpperCAmelCase = self.get_dummy_components() _UpperCAmelCase = self.pipeline_class(**__lowerCAmelCase ) _UpperCAmelCase = pipe.to(__lowerCAmelCase ) pipe.set_progress_bar_config(disable=__lowerCAmelCase ) _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = [ pipeline_inputs["""image"""], pipeline_inputs["""image"""], ] _UpperCAmelCase = pipe(**__lowerCAmelCase ) _UpperCAmelCase = output.images _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = [ tuple_pipeline_inputs["""image"""], tuple_pipeline_inputs["""image"""], ] _UpperCAmelCase = pipe( **__lowerCAmelCase , return_dict=__lowerCAmelCase , )[0] _UpperCAmelCase = image[0, -3:, -3:, -1] _UpperCAmelCase = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (2, 64, 64, 3) _UpperCAmelCase = np.array( [ 0.9_997, 0.9_989, 0.0_008, 0.0_021, 0.9_960, 0.0_018, 0.0_014, 0.0_002, 0.9_933, ] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 1e-2 def lowerCAmelCase_ ( self : List[str] ): _UpperCAmelCase = torch.device("""cpu""" ) class a : _snake_case : Union[str, Any] = 1 _UpperCAmelCase = self.get_dummy_components() _UpperCAmelCase = self.pipeline_class(**__lowerCAmelCase ) _UpperCAmelCase = pipe.to(__lowerCAmelCase ) pipe.set_progress_bar_config(disable=__lowerCAmelCase ) _UpperCAmelCase = torch.Generator(device=__lowerCAmelCase ).manual_seed(0 ) _UpperCAmelCase = pipe.decoder.dtype _UpperCAmelCase = 1 _UpperCAmelCase = ( batch_size, pipe.decoder.config.in_channels, pipe.decoder.config.sample_size, pipe.decoder.config.sample_size, ) _UpperCAmelCase = pipe.prepare_latents( __lowerCAmelCase , dtype=__lowerCAmelCase , device=__lowerCAmelCase , generator=__lowerCAmelCase , latents=__lowerCAmelCase , scheduler=DummyScheduler() ) _UpperCAmelCase = ( batch_size, pipe.super_res_first.config.in_channels // 2, pipe.super_res_first.config.sample_size, pipe.super_res_first.config.sample_size, ) _UpperCAmelCase = pipe.prepare_latents( __lowerCAmelCase , dtype=__lowerCAmelCase , device=__lowerCAmelCase , generator=__lowerCAmelCase , latents=__lowerCAmelCase , scheduler=DummyScheduler() ) _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) _UpperCAmelCase = pipe( **__lowerCAmelCase , decoder_latents=__lowerCAmelCase , super_res_latents=__lowerCAmelCase ).images _UpperCAmelCase = self.get_dummy_inputs(__lowerCAmelCase , pil_image=__lowerCAmelCase ) # Don't pass image, instead pass embedding _UpperCAmelCase = pipeline_inputs.pop("""image""" ) _UpperCAmelCase = pipe.image_encoder(__lowerCAmelCase ).image_embeds _UpperCAmelCase = pipe( **__lowerCAmelCase , decoder_latents=__lowerCAmelCase , super_res_latents=__lowerCAmelCase , image_embeddings=__lowerCAmelCase , ).images # make sure passing text embeddings manually is identical assert np.abs(img_out_a - img_out_a ).max() < 1e-4 @skip_mps def lowerCAmelCase_ ( self : List[str] ): _UpperCAmelCase = torch_device == """cpu""" # Check is relaxed because there is not a torch 2.0 sliced attention added kv processor _UpperCAmelCase = 1e-2 self._test_attention_slicing_forward_pass( test_max_difference=__lowerCAmelCase , expected_max_diff=__lowerCAmelCase ) @skip_mps def lowerCAmelCase_ ( self : int ): _UpperCAmelCase = torch_device == """cpu""" _UpperCAmelCase = True _UpperCAmelCase = [ """decoder_num_inference_steps""", """super_res_num_inference_steps""", ] self._test_inference_batch_single_identical( test_max_difference=__lowerCAmelCase , relax_max_difference=__lowerCAmelCase , additional_params_copy_to_batched_inputs=__lowerCAmelCase , ) def lowerCAmelCase_ ( self : Dict ): _UpperCAmelCase = [ """decoder_num_inference_steps""", """super_res_num_inference_steps""", ] if torch_device == "mps": # TODO: MPS errors with larger batch sizes _UpperCAmelCase = [2, 3] self._test_inference_batch_consistent( batch_sizes=__lowerCAmelCase , additional_params_copy_to_batched_inputs=__lowerCAmelCase , ) else: self._test_inference_batch_consistent( additional_params_copy_to_batched_inputs=__lowerCAmelCase ) @skip_mps def lowerCAmelCase_ ( self : Any ): return super().test_dict_tuple_outputs_equivalent() @skip_mps def lowerCAmelCase_ ( self : Dict ): return super().test_save_load_local() @skip_mps def lowerCAmelCase_ ( self : List[Any] ): return super().test_save_load_optional_components() @slow @require_torch_gpu class a ( unittest.TestCase ): def lowerCAmelCase_ ( self : Any ): # clean up the VRAM after each test super().tearDown() gc.collect() torch.cuda.empty_cache() def lowerCAmelCase_ ( self : Tuple ): _UpperCAmelCase = load_image( """https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/unclip/cat.png""" ) _UpperCAmelCase = load_numpy( """https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main""" """/unclip/karlo_v1_alpha_cat_variation_fp16.npy""" ) _UpperCAmelCase = UnCLIPImageVariationPipeline.from_pretrained( """kakaobrain/karlo-v1-alpha-image-variations""" , torch_dtype=torch.floataa ) _UpperCAmelCase = pipeline.to(__lowerCAmelCase ) pipeline.set_progress_bar_config(disable=__lowerCAmelCase ) _UpperCAmelCase = torch.Generator(device="""cpu""" ).manual_seed(0 ) _UpperCAmelCase = pipeline( __lowerCAmelCase , generator=__lowerCAmelCase , output_type="""np""" , ) _UpperCAmelCase = output.images[0] assert image.shape == (256, 256, 3) assert_mean_pixel_difference(__lowerCAmelCase , __lowerCAmelCase , 15 )
30
"""simple docstring""" import argparse from transformers import CLIPImageProcessor, CLIPVisionModelWithProjection from diffusers import UnCLIPImageVariationPipeline, UnCLIPPipeline if __name__ == "__main__": UpperCAmelCase__ = argparse.ArgumentParser() parser.add_argument("""--dump_path""", default=None, type=str, required=True, help="""Path to the output model.""") parser.add_argument( """--txt2img_unclip""", default="""kakaobrain/karlo-v1-alpha""", type=str, required=False, help="""The pretrained txt2img unclip.""", ) UpperCAmelCase__ = parser.parse_args() UpperCAmelCase__ = UnCLIPPipeline.from_pretrained(args.txtaimg_unclip) UpperCAmelCase__ = CLIPImageProcessor() UpperCAmelCase__ = CLIPVisionModelWithProjection.from_pretrained("""openai/clip-vit-large-patch14""") UpperCAmelCase__ = UnCLIPImageVariationPipeline( decoder=txtaimg.decoder, text_encoder=txtaimg.text_encoder, tokenizer=txtaimg.tokenizer, text_proj=txtaimg.text_proj, feature_extractor=feature_extractor, image_encoder=image_encoder, super_res_first=txtaimg.super_res_first, super_res_last=txtaimg.super_res_last, decoder_scheduler=txtaimg.decoder_scheduler, super_res_scheduler=txtaimg.super_res_scheduler, ) imgaimg.save_pretrained(args.dump_path)
30
1
"""simple docstring""" import os from typing import Dict, List, Tuple, TypeVar, Union lowercase__ = TypeVar('T') lowercase__ = Union[List[T], Tuple[T, ...]] lowercase__ = Union[T, List[T], Dict[str, T]] lowercase__ = Union[str, bytes, os.PathLike]
290
"""simple docstring""" import logging import random import ray from transformers import RagConfig, RagRetriever, RagTokenizer from transformers.models.rag.retrieval_rag import CustomHFIndex lowercase__ = logging.getLogger(__name__) class __snake_case : def __init__( self) -> Optional[int]: '''simple docstring''' a__: Optional[Any] = False def lowerCamelCase_ ( self , lowercase , lowercase , lowercase , lowercase) -> str: '''simple docstring''' if not self.initialized: a__: Optional[int] = RagRetriever( lowercase , question_encoder_tokenizer=lowercase , generator_tokenizer=lowercase , index=lowercase , init_retrieval=lowercase , ) a__: Optional[int] = True def lowerCamelCase_ ( self) -> int: '''simple docstring''' self.retriever.index.init_index() def lowerCamelCase_ ( self , lowercase , lowercase) -> Union[str, Any]: '''simple docstring''' a__ , a__: str = self.retriever._main_retrieve(lowercase , lowercase) return doc_ids, retrieved_doc_embeds class __snake_case ( __lowerCAmelCase ): def __init__( self , lowercase , lowercase , lowercase , lowercase , lowercase=None) -> int: '''simple docstring''' if index is not None and index.is_initialized() and len(lowercase) > 0: raise ValueError( 'When using Ray for distributed fine-tuning, ' 'you\'ll need to provide the paths instead, ' 'as the dataset and the index are loaded ' 'separately. More info in examples/rag/use_own_knowledge_dataset.py ') super().__init__( lowercase , question_encoder_tokenizer=lowercase , generator_tokenizer=lowercase , index=lowercase , init_retrieval=lowercase , ) a__: Any = retrieval_workers if len(self.retrieval_workers) > 0: ray.get( [ worker.create_rag_retriever.remote(lowercase , lowercase , lowercase , lowercase) for worker in self.retrieval_workers ]) def lowerCamelCase_ ( self) -> Any: '''simple docstring''' logger.info('initializing retrieval') if len(self.retrieval_workers) > 0: ray.get([worker.init_retrieval.remote() for worker in self.retrieval_workers]) else: # Non-distributed training. Load index into this same process. self.index.init_index() def lowerCamelCase_ ( self , lowercase , lowercase) -> Union[str, Any]: '''simple docstring''' if len(self.retrieval_workers) > 0: # Select a random retrieval actor. a__: int = self.retrieval_workers[random.randint(0 , len(self.retrieval_workers) - 1)] a__ , a__: List[Any] = ray.get(random_worker.retrieve.remote(lowercase , lowercase)) else: a__ , a__: Dict = self._main_retrieve(lowercase , lowercase) return retrieved_doc_embeds, doc_ids, self.index.get_doc_dicts(lowercase) @classmethod def lowerCamelCase_ ( cls , lowercase , lowercase=None , **lowercase) -> Tuple: '''simple docstring''' return super(lowercase , cls).get_tokenizers(lowercase , lowercase , **lowercase) @classmethod def lowerCamelCase_ ( cls , lowercase , lowercase , lowercase=None , **lowercase) -> Union[str, Any]: '''simple docstring''' a__: Optional[int] = kwargs.pop('config' , lowercase) or RagConfig.from_pretrained(lowercase , **lowercase) a__: Union[str, Any] = RagTokenizer.from_pretrained(lowercase , config=lowercase) a__: int = rag_tokenizer.question_encoder a__: Any = rag_tokenizer.generator if indexed_dataset is not None: a__: List[Any] = 'custom' a__: Optional[Any] = CustomHFIndex(config.retrieval_vector_size , lowercase) else: a__: Dict = cls._build_index(lowercase) return cls( lowercase , question_encoder_tokenizer=lowercase , generator_tokenizer=lowercase , retrieval_workers=lowercase , index=lowercase , )
290
1
import warnings from ...utils import logging from .image_processing_segformer import SegformerImageProcessor lowercase : List[Any] = logging.get_logger(__name__) class lowerCamelCase__ ( __lowercase): '''simple docstring''' def __init__( self :Union[str, Any] , *a :str , **a :Union[str, Any] ) -> None: warnings.warn( "The class SegformerFeatureExtractor is deprecated and will be removed in version 5 of Transformers." " Please use SegformerImageProcessor instead." , a , ) super().__init__(*a , **a )
151
import argparse import os import evaluate import torch from datasets import load_dataset from torch.optim import AdamW from torch.utils.data import DataLoader from transformers import AutoModelForSequenceClassification, AutoTokenizer, get_linear_schedule_with_warmup, set_seed from accelerate import Accelerator, DistributedType ######################################################################## # This is a fully working simple example to use Accelerate, # specifically showcasing the experiment tracking capability, # and builds off the `nlp_example.py` script. # # This example trains a Bert base model on GLUE MRPC # in any of the following settings (with the same script): # - single CPU or single GPU # - multi GPUS (using PyTorch distributed mode) # - (multi) TPUs # - fp16 (mixed-precision) or fp32 (normal precision) # # To help focus on the differences in the code, building `DataLoaders` # was refactored into its own function. # New additions from the base script can be found quickly by # looking for the # New Code # tags # # To run it in each of these various modes, follow the instructions # in the readme for examples: # https://github.com/huggingface/accelerate/tree/main/examples # ######################################################################## lowercase : Any = 16 lowercase : Optional[int] = 32 def _SCREAMING_SNAKE_CASE ( _lowerCamelCase : Accelerator , _lowerCamelCase : int = 16) -> int: '''simple docstring''' __UpperCamelCase : Any = AutoTokenizer.from_pretrained("bert-base-cased") __UpperCamelCase : Optional[Any] = load_dataset("glue" , "mrpc") def tokenize_function(_lowerCamelCase : Dict): # max_length=None => use the model max length (it's actually the default) __UpperCamelCase : List[str] = tokenizer(examples["sentence1"] , examples["sentence2"] , truncation=_lowerCamelCase , max_length=_lowerCamelCase) return outputs # Apply the method we just defined to all the examples in all the splits of the dataset # starting with the main process first: with accelerator.main_process_first(): __UpperCamelCase : Optional[int] = datasets.map( _lowerCamelCase , batched=_lowerCamelCase , remove_columns=["idx", "sentence1", "sentence2"] , ) # We also rename the 'label' column to 'labels' which is the expected name for labels by the models of the # transformers library __UpperCamelCase : List[str] = tokenized_datasets.rename_column("label" , "labels") def collate_fn(_lowerCamelCase : Union[str, Any]): # On TPU it's best to pad everything to the same length or training will be very slow. __UpperCamelCase : str = 128 if accelerator.distributed_type == DistributedType.TPU else None # When using mixed precision we want round multiples of 8/16 if accelerator.mixed_precision == "fp8": __UpperCamelCase : Optional[Any] = 16 elif accelerator.mixed_precision != "no": __UpperCamelCase : Dict = 8 else: __UpperCamelCase : Optional[Any] = None return tokenizer.pad( _lowerCamelCase , padding="longest" , max_length=_lowerCamelCase , pad_to_multiple_of=_lowerCamelCase , return_tensors="pt" , ) # Instantiate dataloaders. __UpperCamelCase : Optional[Any] = DataLoader( tokenized_datasets["train"] , shuffle=_lowerCamelCase , collate_fn=_lowerCamelCase , batch_size=_lowerCamelCase) __UpperCamelCase : int = DataLoader( tokenized_datasets["validation"] , shuffle=_lowerCamelCase , collate_fn=_lowerCamelCase , batch_size=_lowerCamelCase) return train_dataloader, eval_dataloader # For testing only if os.environ.get('TESTING_MOCKED_DATALOADERS', None) == "1": from accelerate.test_utils.training import mocked_dataloaders lowercase : Union[str, Any] = mocked_dataloaders # noqa: F811 def _SCREAMING_SNAKE_CASE ( _lowerCamelCase : Optional[Any] , _lowerCamelCase : Union[str, Any]) -> str: '''simple docstring''' if os.environ.get("TESTING_MOCKED_DATALOADERS" , _lowerCamelCase) == "1": __UpperCamelCase : List[str] = 2 # Initialize Accelerator # New Code # # We pass in "all" to `log_with` to grab all available trackers in the environment # Note: If using a custom `Tracker` class, should be passed in here such as: # >>> log_with = ["all", MyCustomTrackerClassInstance()] if args.with_tracking: __UpperCamelCase : Union[str, Any] = Accelerator( cpu=args.cpu , mixed_precision=args.mixed_precision , log_with="all" , project_dir=args.project_dir) else: __UpperCamelCase : Optional[Any] = Accelerator(cpu=args.cpu , mixed_precision=args.mixed_precision) # Sample hyper-parameters for learning rate, batch size, seed and a few other HPs __UpperCamelCase : List[str] = config["lr"] __UpperCamelCase : Optional[Any] = int(config["num_epochs"]) __UpperCamelCase : List[Any] = int(config["seed"]) __UpperCamelCase : Any = int(config["batch_size"]) set_seed(_lowerCamelCase) __UpperCamelCase , __UpperCamelCase : List[Any] = get_dataloaders(_lowerCamelCase , _lowerCamelCase) __UpperCamelCase : List[str] = evaluate.load("glue" , "mrpc") # If the batch size is too big we use gradient accumulation __UpperCamelCase : Union[str, Any] = 1 if batch_size > MAX_GPU_BATCH_SIZE and accelerator.distributed_type != DistributedType.TPU: __UpperCamelCase : List[Any] = batch_size // MAX_GPU_BATCH_SIZE __UpperCamelCase : Union[str, Any] = MAX_GPU_BATCH_SIZE # Instantiate the model (we build the model here so that the seed also control new weights initialization) __UpperCamelCase : str = AutoModelForSequenceClassification.from_pretrained("bert-base-cased" , return_dict=_lowerCamelCase) # We could avoid this line since the accelerator is set with `device_placement=True` (default value). # Note that if you are placing tensors on devices manually, this line absolutely needs to be before the optimizer # creation otherwise training will not work on TPU (`accelerate` will kindly throw an error to make us aware of that). __UpperCamelCase : Optional[int] = model.to(accelerator.device) # Instantiate optimizer __UpperCamelCase : List[str] = AdamW(params=model.parameters() , lr=_lowerCamelCase) # Instantiate scheduler __UpperCamelCase : Union[str, Any] = get_linear_schedule_with_warmup( optimizer=_lowerCamelCase , num_warmup_steps=100 , num_training_steps=(len(_lowerCamelCase) * num_epochs) // gradient_accumulation_steps , ) # Prepare everything # There is no specific order to remember, we just need to unpack the objects in the same order we gave them to the # prepare method. __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Union[str, Any] = accelerator.prepare( _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase) # New Code # # We need to initialize the trackers we use. Overall configurations can also be stored if args.with_tracking: __UpperCamelCase : Dict = os.path.split(_lowerCamelCase)[-1].split(".")[0] accelerator.init_trackers(_lowerCamelCase , _lowerCamelCase) # Now we train the model for epoch in range(_lowerCamelCase): model.train() # New Code # # For our tracking example, we will log the total loss of each epoch if args.with_tracking: __UpperCamelCase : Tuple = 0 for step, batch in enumerate(_lowerCamelCase): # We could avoid this line since we set the accelerator with `device_placement=True`. batch.to(accelerator.device) __UpperCamelCase : Dict = model(**_lowerCamelCase) __UpperCamelCase : Any = outputs.loss # New Code # if args.with_tracking: total_loss += loss.detach().float() __UpperCamelCase : List[Any] = loss / gradient_accumulation_steps accelerator.backward(_lowerCamelCase) if step % gradient_accumulation_steps == 0: optimizer.step() lr_scheduler.step() optimizer.zero_grad() model.eval() for step, batch in enumerate(_lowerCamelCase): # We could avoid this line since we set the accelerator with `device_placement=True` (the default). batch.to(accelerator.device) with torch.no_grad(): __UpperCamelCase : Union[str, Any] = model(**_lowerCamelCase) __UpperCamelCase : str = outputs.logits.argmax(dim=-1) __UpperCamelCase , __UpperCamelCase : Dict = accelerator.gather_for_metrics((predictions, batch["labels"])) metric.add_batch( predictions=_lowerCamelCase , references=_lowerCamelCase , ) __UpperCamelCase : Optional[Any] = metric.compute() # Use accelerator.print to print only on the main process. accelerator.print(F'epoch {epoch}:' , _lowerCamelCase) # New Code # # To actually log, we call `Accelerator.log` # The values passed can be of `str`, `int`, `float` or `dict` of `str` to `float`/`int` if args.with_tracking: accelerator.log( { "accuracy": eval_metric["accuracy"], "f1": eval_metric["f1"], "train_loss": total_loss.item() / len(_lowerCamelCase), "epoch": epoch, } , step=_lowerCamelCase , ) # New Code # # When a run is finished, you should call `accelerator.end_training()` # to close all of the open trackers if args.with_tracking: accelerator.end_training() def _SCREAMING_SNAKE_CASE ( ) -> Optional[int]: '''simple docstring''' __UpperCamelCase : str = argparse.ArgumentParser(description="Simple example of training script.") parser.add_argument( "--mixed_precision" , type=_lowerCamelCase , default=_lowerCamelCase , choices=["no", "fp16", "bf16", "fp8"] , help="Whether to use mixed precision. Choose" "between fp16 and bf16 (bfloat16). Bf16 requires PyTorch >= 1.10." "and an Nvidia Ampere GPU." , ) parser.add_argument("--cpu" , action="store_true" , help="If passed, will train on the CPU.") parser.add_argument( "--with_tracking" , action="store_true" , help="Whether to load in all available experiment trackers from the environment and use them for logging." , ) parser.add_argument( "--project_dir" , type=_lowerCamelCase , default="logs" , help="Location on where to store experiment tracking logs` and relevent project information" , ) __UpperCamelCase : Union[str, Any] = parser.parse_args() __UpperCamelCase : str = {"lr": 2e-5, "num_epochs": 3, "seed": 42, "batch_size": 16} training_function(_lowerCamelCase , _lowerCamelCase) if __name__ == "__main__": main()
151
1
from random import shuffle import tensorflow as tf from numpy import array def lowercase ( SCREAMING_SNAKE_CASE__ : Optional[Any] , SCREAMING_SNAKE_CASE__ : Dict ) -> Tuple: _snake_case : Dict = int(__lowerCamelCase ) assert noofclusters < len(__lowerCamelCase ) # Find out the dimensionality _snake_case : str = len(vectors[0] ) # Will help select random centroids from among the available vectors _snake_case : List[str] = list(range(len(__lowerCamelCase ) ) ) shuffle(__lowerCamelCase ) # GRAPH OF COMPUTATION # We initialize a new graph and set it as the default during each run # of this algorithm. This ensures that as this function is called # multiple times, the default graph doesn't keep getting crowded with # unused ops and Variables from previous function calls. _snake_case : str = tf.Graph() with graph.as_default(): # SESSION OF COMPUTATION _snake_case : Optional[Any] = tf.Session() ##CONSTRUCTING THE ELEMENTS OF COMPUTATION ##First lets ensure we have a Variable vector for each centroid, ##initialized to one of the vectors from the available data points _snake_case : int = [ tf.Variable(vectors[vector_indices[i]] ) for i in range(__lowerCamelCase ) ] ##These nodes will assign the centroid Variables the appropriate ##values _snake_case : List[Any] = tf.placeholder("""float64""" , [dim] ) _snake_case : str = [] for centroid in centroids: cent_assigns.append(tf.assign(__lowerCamelCase , __lowerCamelCase ) ) ##Variables for cluster assignments of individual vectors(initialized ##to 0 at first) _snake_case : int = [tf.Variable(0 ) for i in range(len(__lowerCamelCase ) )] ##These nodes will assign an assignment Variable the appropriate ##value _snake_case : Union[str, Any] = tf.placeholder("""int32""" ) _snake_case : Any = [] for assignment in assignments: cluster_assigns.append(tf.assign(__lowerCamelCase , __lowerCamelCase ) ) ##Now lets construct the node that will compute the mean # The placeholder for the input _snake_case : int = tf.placeholder("""float""" , [None, dim] ) # The Node/op takes the input and computes a mean along the 0th # dimension, i.e. the list of input vectors _snake_case : Optional[int] = tf.reduce_mean(__lowerCamelCase , 0 ) ##Node for computing Euclidean distances # Placeholders for input _snake_case : str = tf.placeholder("""float""" , [dim] ) _snake_case : Tuple = tf.placeholder("""float""" , [dim] ) _snake_case : Dict = tf.sqrt(tf.reduce_sum(tf.pow(tf.sub(__lowerCamelCase , __lowerCamelCase ) , 2 ) ) ) ##This node will figure out which cluster to assign a vector to, ##based on Euclidean distances of the vector from the centroids. # Placeholder for input _snake_case : Union[str, Any] = tf.placeholder("""float""" , [noofclusters] ) _snake_case : str = tf.argmin(__lowerCamelCase , 0 ) ##INITIALIZING STATE VARIABLES ##This will help initialization of all Variables defined with respect ##to the graph. The Variable-initializer should be defined after ##all the Variables have been constructed, so that each of them ##will be included in the initialization. _snake_case : str = tf.initialize_all_variables() # Initialize all variables sess.run(__lowerCamelCase ) ##CLUSTERING ITERATIONS # Now perform the Expectation-Maximization steps of K-Means clustering # iterations. To keep things simple, we will only do a set number of # iterations, instead of using a Stopping Criterion. _snake_case : List[str] = 100 for _ in range(__lowerCamelCase ): ##EXPECTATION STEP ##Based on the centroid locations till last iteration, compute ##the _expected_ centroid assignments. # Iterate over each vector for vector_n in range(len(__lowerCamelCase ) ): _snake_case : str = vectors[vector_n] # Compute Euclidean distance between this vector and each # centroid. Remember that this list cannot be named #'centroid_distances', since that is the input to the # cluster assignment node. _snake_case : Any = [ sess.run(__lowerCamelCase , feed_dict={va: vect, va: sess.run(__lowerCamelCase )} ) for centroid in centroids ] # Now use the cluster assignment node, with the distances # as the input _snake_case : Tuple = sess.run( __lowerCamelCase , feed_dict={centroid_distances: distances} ) # Now assign the value to the appropriate state variable sess.run( cluster_assigns[vector_n] , feed_dict={assignment_value: assignment} ) ##MAXIMIZATION STEP # Based on the expected state computed from the Expectation Step, # compute the locations of the centroids so as to maximize the # overall objective of minimizing within-cluster Sum-of-Squares for cluster_n in range(__lowerCamelCase ): # Collect all the vectors assigned to this cluster _snake_case : List[str] = [ vectors[i] for i in range(len(__lowerCamelCase ) ) if sess.run(assignments[i] ) == cluster_n ] # Compute new centroid location _snake_case : Union[str, Any] = sess.run( __lowerCamelCase , feed_dict={mean_input: array(__lowerCamelCase )} ) # Assign value to appropriate variable sess.run( cent_assigns[cluster_n] , feed_dict={centroid_value: new_location} ) # Return centroids and assignments _snake_case : Optional[int] = sess.run(__lowerCamelCase ) _snake_case : Any = sess.run(__lowerCamelCase ) return centroids, assignments
317
import argparse import io import requests import torch from omegaconf import OmegaConf from diffusers import AutoencoderKL from diffusers.pipelines.stable_diffusion.convert_from_ckpt import ( assign_to_checkpoint, conv_attn_to_linear, create_vae_diffusers_config, renew_vae_attention_paths, renew_vae_resnet_paths, ) def lowerCamelCase__ ( __lowerCamelCase : Dict , __lowerCamelCase : int ): __UpperCAmelCase : List[Any] = checkpoint __UpperCAmelCase : Tuple = {} __UpperCAmelCase : Dict = vae_state_dict["""encoder.conv_in.weight"""] __UpperCAmelCase : Optional[Any] = vae_state_dict["""encoder.conv_in.bias"""] __UpperCAmelCase : Dict = vae_state_dict["""encoder.conv_out.weight"""] __UpperCAmelCase : Union[str, Any] = vae_state_dict["""encoder.conv_out.bias"""] __UpperCAmelCase : List[Any] = vae_state_dict["""encoder.norm_out.weight"""] __UpperCAmelCase : Tuple = vae_state_dict["""encoder.norm_out.bias"""] __UpperCAmelCase : Dict = vae_state_dict["""decoder.conv_in.weight"""] __UpperCAmelCase : Tuple = vae_state_dict["""decoder.conv_in.bias"""] __UpperCAmelCase : Optional[int] = vae_state_dict["""decoder.conv_out.weight"""] __UpperCAmelCase : Optional[int] = vae_state_dict["""decoder.conv_out.bias"""] __UpperCAmelCase : Optional[Any] = vae_state_dict["""decoder.norm_out.weight"""] __UpperCAmelCase : Union[str, Any] = vae_state_dict["""decoder.norm_out.bias"""] __UpperCAmelCase : Optional[int] = vae_state_dict["""quant_conv.weight"""] __UpperCAmelCase : int = vae_state_dict["""quant_conv.bias"""] __UpperCAmelCase : Union[str, Any] = vae_state_dict["""post_quant_conv.weight"""] __UpperCAmelCase : Any = vae_state_dict["""post_quant_conv.bias"""] # Retrieves the keys for the encoder down blocks only __UpperCAmelCase : int = len({""".""".join(layer.split(""".""" )[:3] ) for layer in vae_state_dict if """encoder.down""" in layer} ) __UpperCAmelCase : Optional[Any] = { layer_id: [key for key in vae_state_dict if f"""down.{layer_id}""" in key] for layer_id in range(__lowerCamelCase ) } # Retrieves the keys for the decoder up blocks only __UpperCAmelCase : Dict = len({""".""".join(layer.split(""".""" )[:3] ) for layer in vae_state_dict if """decoder.up""" in layer} ) __UpperCAmelCase : Optional[int] = { layer_id: [key for key in vae_state_dict if f"""up.{layer_id}""" in key] for layer_id in range(__lowerCamelCase ) } for i in range(__lowerCamelCase ): __UpperCAmelCase : List[Any] = [key for key in down_blocks[i] if f"""down.{i}""" in key and f"""down.{i}.downsample""" not in key] if f"""encoder.down.{i}.downsample.conv.weight""" in vae_state_dict: __UpperCAmelCase : Optional[Any] = vae_state_dict.pop( f"""encoder.down.{i}.downsample.conv.weight""" ) __UpperCAmelCase : int = vae_state_dict.pop( f"""encoder.down.{i}.downsample.conv.bias""" ) __UpperCAmelCase : Optional[int] = renew_vae_resnet_paths(__lowerCamelCase ) __UpperCAmelCase : Optional[Any] = {"""old""": f"""down.{i}.block""", """new""": f"""down_blocks.{i}.resnets"""} assign_to_checkpoint(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , additional_replacements=[meta_path] , config=__lowerCamelCase ) __UpperCAmelCase : Tuple = [key for key in vae_state_dict if """encoder.mid.block""" in key] __UpperCAmelCase : Optional[Any] = 2 for i in range(1 , num_mid_res_blocks + 1 ): __UpperCAmelCase : Dict = [key for key in mid_resnets if f"""encoder.mid.block_{i}""" in key] __UpperCAmelCase : Tuple = renew_vae_resnet_paths(__lowerCamelCase ) __UpperCAmelCase : Tuple = {"""old""": f"""mid.block_{i}""", """new""": f"""mid_block.resnets.{i - 1}"""} assign_to_checkpoint(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , additional_replacements=[meta_path] , config=__lowerCamelCase ) __UpperCAmelCase : List[Any] = [key for key in vae_state_dict if """encoder.mid.attn""" in key] __UpperCAmelCase : str = renew_vae_attention_paths(__lowerCamelCase ) __UpperCAmelCase : List[str] = {"""old""": """mid.attn_1""", """new""": """mid_block.attentions.0"""} assign_to_checkpoint(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , additional_replacements=[meta_path] , config=__lowerCamelCase ) conv_attn_to_linear(__lowerCamelCase ) for i in range(__lowerCamelCase ): __UpperCAmelCase : Optional[Any] = num_up_blocks - 1 - i __UpperCAmelCase : Union[str, Any] = [ key for key in up_blocks[block_id] if f"""up.{block_id}""" in key and f"""up.{block_id}.upsample""" not in key ] if f"""decoder.up.{block_id}.upsample.conv.weight""" in vae_state_dict: __UpperCAmelCase : int = vae_state_dict[ f"""decoder.up.{block_id}.upsample.conv.weight""" ] __UpperCAmelCase : Dict = vae_state_dict[ f"""decoder.up.{block_id}.upsample.conv.bias""" ] __UpperCAmelCase : Dict = renew_vae_resnet_paths(__lowerCamelCase ) __UpperCAmelCase : Optional[Any] = {"""old""": f"""up.{block_id}.block""", """new""": f"""up_blocks.{i}.resnets"""} assign_to_checkpoint(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , additional_replacements=[meta_path] , config=__lowerCamelCase ) __UpperCAmelCase : Tuple = [key for key in vae_state_dict if """decoder.mid.block""" in key] __UpperCAmelCase : Union[str, Any] = 2 for i in range(1 , num_mid_res_blocks + 1 ): __UpperCAmelCase : Dict = [key for key in mid_resnets if f"""decoder.mid.block_{i}""" in key] __UpperCAmelCase : List[Any] = renew_vae_resnet_paths(__lowerCamelCase ) __UpperCAmelCase : int = {"""old""": f"""mid.block_{i}""", """new""": f"""mid_block.resnets.{i - 1}"""} assign_to_checkpoint(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , additional_replacements=[meta_path] , config=__lowerCamelCase ) __UpperCAmelCase : Dict = [key for key in vae_state_dict if """decoder.mid.attn""" in key] __UpperCAmelCase : List[Any] = renew_vae_attention_paths(__lowerCamelCase ) __UpperCAmelCase : List[str] = {"""old""": """mid.attn_1""", """new""": """mid_block.attentions.0"""} assign_to_checkpoint(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , additional_replacements=[meta_path] , config=__lowerCamelCase ) conv_attn_to_linear(__lowerCamelCase ) return new_checkpoint def lowerCamelCase__ ( __lowerCamelCase : str , __lowerCamelCase : str , ): # Only support V1 __UpperCAmelCase : Optional[int] = requests.get( """ https://raw.githubusercontent.com/CompVis/stable-diffusion/main/configs/stable-diffusion/v1-inference.yaml""" ) __UpperCAmelCase : Optional[int] = io.BytesIO(r.content ) __UpperCAmelCase : Dict = OmegaConf.load(__lowerCamelCase ) __UpperCAmelCase : str = 512 __UpperCAmelCase : Any = """cuda""" if torch.cuda.is_available() else """cpu""" if checkpoint_path.endswith("""safetensors""" ): from safetensors import safe_open __UpperCAmelCase : List[Any] = {} with safe_open(__lowerCamelCase , framework="""pt""" , device="""cpu""" ) as f: for key in f.keys(): __UpperCAmelCase : str = f.get_tensor(__lowerCamelCase ) else: __UpperCAmelCase : Optional[int] = torch.load(__lowerCamelCase , map_location=__lowerCamelCase )["""state_dict"""] # Convert the VAE model. __UpperCAmelCase : Optional[int] = create_vae_diffusers_config(__lowerCamelCase , image_size=__lowerCamelCase ) __UpperCAmelCase : Union[str, Any] = custom_convert_ldm_vae_checkpoint(__lowerCamelCase , __lowerCamelCase ) __UpperCAmelCase : Optional[int] = AutoencoderKL(**__lowerCamelCase ) vae.load_state_dict(__lowerCamelCase ) vae.save_pretrained(__lowerCamelCase ) if __name__ == "__main__": a : List[Any] = argparse.ArgumentParser() parser.add_argument("--vae_pt_path", default=None, type=str, required=True, help="Path to the VAE.pt to convert.") parser.add_argument("--dump_path", default=None, type=str, required=True, help="Path to the VAE.pt to convert.") a : Optional[int] = parser.parse_args() vae_pt_to_vae_diffuser(args.vae_pt_path, args.dump_path)
114
0
'''simple docstring''' UpperCamelCase__ = ''' # Transformers installation ! pip install transformers datasets # To install from source instead of the last release, comment the command above and uncomment the following one. # ! pip install git+https://github.com/huggingface/transformers.git ''' UpperCamelCase__ = [{'''type''': '''code''', '''content''': INSTALL_CONTENT}] UpperCamelCase__ = { '''{processor_class}''': '''FakeProcessorClass''', '''{model_class}''': '''FakeModelClass''', '''{object_class}''': '''FakeObjectClass''', }
299
'''simple docstring''' import json import pathlib import unittest import numpy as np from transformers.testing_utils import require_torch, require_vision, slow from transformers.utils import is_torch_available, is_vision_available from ...test_image_processing_common import ImageProcessingSavingTestMixin, prepare_image_inputs if is_torch_available(): import torch if is_vision_available(): from PIL import Image from transformers import DetaImageProcessor class lowerCamelCase_ ( unittest.TestCase ): def __init__( self : List[str] , _A : List[Any] , _A : Union[str, Any]=7 , _A : List[str]=3 , _A : str=30 , _A : Tuple=400 , _A : Optional[int]=True , _A : List[str]=None , _A : int=True , _A : int=[0.5, 0.5, 0.5] , _A : Optional[int]=[0.5, 0.5, 0.5] , _A : List[Any]=True , _A : str=1 / 255 , _A : Tuple=True , ): '''simple docstring''' UpperCAmelCase__ : str = size if size is not None else {'''shortest_edge''': 18, '''longest_edge''': 1_333} UpperCAmelCase__ : Optional[Any] = parent UpperCAmelCase__ : Optional[Any] = batch_size UpperCAmelCase__ : List[str] = num_channels UpperCAmelCase__ : List[Any] = min_resolution UpperCAmelCase__ : List[str] = max_resolution UpperCAmelCase__ : Tuple = do_resize UpperCAmelCase__ : Union[str, Any] = size UpperCAmelCase__ : Dict = do_normalize UpperCAmelCase__ : Union[str, Any] = image_mean UpperCAmelCase__ : Optional[int] = image_std UpperCAmelCase__ : Dict = do_rescale UpperCAmelCase__ : Union[str, Any] = rescale_factor UpperCAmelCase__ : int = do_pad def lowercase_ ( self : Any ): '''simple docstring''' return { "do_resize": self.do_resize, "size": self.size, "do_normalize": self.do_normalize, "image_mean": self.image_mean, "image_std": self.image_std, "do_rescale": self.do_rescale, "rescale_factor": self.rescale_factor, "do_pad": self.do_pad, } def lowercase_ ( self : Any , _A : Union[str, Any] , _A : Union[str, Any]=False ): '''simple docstring''' if not batched: UpperCAmelCase__ : Optional[int] = image_inputs[0] if isinstance(_A , Image.Image ): UpperCAmelCase__ , UpperCAmelCase__ : str = image.size else: UpperCAmelCase__ , UpperCAmelCase__ : int = image.shape[1], image.shape[2] if w < h: UpperCAmelCase__ : Optional[Any] = int(self.size['''shortest_edge'''] * h / w ) UpperCAmelCase__ : List[Any] = self.size['''shortest_edge'''] elif w > h: UpperCAmelCase__ : int = self.size['''shortest_edge'''] UpperCAmelCase__ : Dict = int(self.size['''shortest_edge'''] * w / h ) else: UpperCAmelCase__ : List[str] = self.size['''shortest_edge'''] UpperCAmelCase__ : Dict = self.size['''shortest_edge'''] else: UpperCAmelCase__ : int = [] for image in image_inputs: UpperCAmelCase__ , UpperCAmelCase__ : str = self.get_expected_values([image] ) expected_values.append((expected_height, expected_width) ) UpperCAmelCase__ : Union[str, Any] = max(_A , key=lambda _A : item[0] )[0] UpperCAmelCase__ : Union[str, Any] = max(_A , key=lambda _A : item[1] )[1] return expected_height, expected_width @require_torch @require_vision class lowerCamelCase_ ( __a , unittest.TestCase ): lowerCAmelCase__ = DetaImageProcessor if is_vision_available() else None def lowercase_ ( self : Dict ): '''simple docstring''' UpperCAmelCase__ : List[Any] = DetaImageProcessingTester(self ) @property def lowercase_ ( self : int ): '''simple docstring''' return self.image_processor_tester.prepare_image_processor_dict() def lowercase_ ( self : List[Any] ): '''simple docstring''' UpperCAmelCase__ : Tuple = self.image_processing_class(**self.image_processor_dict ) self.assertTrue(hasattr(_A , '''image_mean''' ) ) self.assertTrue(hasattr(_A , '''image_std''' ) ) self.assertTrue(hasattr(_A , '''do_normalize''' ) ) self.assertTrue(hasattr(_A , '''do_resize''' ) ) self.assertTrue(hasattr(_A , '''do_rescale''' ) ) self.assertTrue(hasattr(_A , '''do_pad''' ) ) self.assertTrue(hasattr(_A , '''size''' ) ) def lowercase_ ( self : List[str] ): '''simple docstring''' UpperCAmelCase__ : List[Any] = self.image_processing_class.from_dict(self.image_processor_dict ) self.assertEqual(image_processor.size , {'''shortest_edge''': 18, '''longest_edge''': 1_333} ) self.assertEqual(image_processor.do_pad , _A ) def lowercase_ ( self : Dict ): '''simple docstring''' pass def lowercase_ ( self : Optional[int] ): '''simple docstring''' UpperCAmelCase__ : List[Any] = self.image_processing_class(**self.image_processor_dict ) # create random PIL images UpperCAmelCase__ : int = prepare_image_inputs(self.image_processor_tester , equal_resolution=_A ) for image in image_inputs: self.assertIsInstance(_A , Image.Image ) # Test not batched input UpperCAmelCase__ : List[str] = image_processing(image_inputs[0] , return_tensors='''pt''' ).pixel_values UpperCAmelCase__ , UpperCAmelCase__ : int = self.image_processor_tester.get_expected_values(_A ) self.assertEqual( encoded_images.shape , (1, self.image_processor_tester.num_channels, expected_height, expected_width) , ) # Test batched UpperCAmelCase__ , UpperCAmelCase__ : str = self.image_processor_tester.get_expected_values(_A , batched=_A ) UpperCAmelCase__ : Union[str, Any] = image_processing(_A , return_tensors='''pt''' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, expected_height, expected_width, ) , ) def lowercase_ ( self : List[Any] ): '''simple docstring''' UpperCAmelCase__ : Optional[int] = self.image_processing_class(**self.image_processor_dict ) # create random numpy tensors UpperCAmelCase__ : Union[str, Any] = prepare_image_inputs(self.image_processor_tester , equal_resolution=_A , numpify=_A ) for image in image_inputs: self.assertIsInstance(_A , np.ndarray ) # Test not batched input UpperCAmelCase__ : Optional[int] = image_processing(image_inputs[0] , return_tensors='''pt''' ).pixel_values UpperCAmelCase__ , UpperCAmelCase__ : List[str] = self.image_processor_tester.get_expected_values(_A ) self.assertEqual( encoded_images.shape , (1, self.image_processor_tester.num_channels, expected_height, expected_width) , ) # Test batched UpperCAmelCase__ : List[str] = image_processing(_A , return_tensors='''pt''' ).pixel_values UpperCAmelCase__ , UpperCAmelCase__ : int = self.image_processor_tester.get_expected_values(_A , batched=_A ) self.assertEqual( encoded_images.shape , ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, expected_height, expected_width, ) , ) def lowercase_ ( self : Dict ): '''simple docstring''' UpperCAmelCase__ : Tuple = self.image_processing_class(**self.image_processor_dict ) # create random PyTorch tensors UpperCAmelCase__ : Dict = prepare_image_inputs(self.image_processor_tester , equal_resolution=_A , torchify=_A ) for image in image_inputs: self.assertIsInstance(_A , torch.Tensor ) # Test not batched input UpperCAmelCase__ : Optional[Any] = image_processing(image_inputs[0] , return_tensors='''pt''' ).pixel_values UpperCAmelCase__ , UpperCAmelCase__ : Union[str, Any] = self.image_processor_tester.get_expected_values(_A ) self.assertEqual( encoded_images.shape , (1, self.image_processor_tester.num_channels, expected_height, expected_width) , ) # Test batched UpperCAmelCase__ : List[Any] = image_processing(_A , return_tensors='''pt''' ).pixel_values UpperCAmelCase__ , UpperCAmelCase__ : Any = self.image_processor_tester.get_expected_values(_A , batched=_A ) self.assertEqual( encoded_images.shape , ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, expected_height, expected_width, ) , ) @slow def lowercase_ ( self : str ): '''simple docstring''' UpperCAmelCase__ : int = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) with open('''./tests/fixtures/tests_samples/COCO/coco_annotations.txt''' , '''r''' ) as f: UpperCAmelCase__ : str = json.loads(f.read() ) UpperCAmelCase__ : Tuple = {'''image_id''': 39_769, '''annotations''': target} # encode them UpperCAmelCase__ : Optional[int] = DetaImageProcessor() UpperCAmelCase__ : str = image_processing(images=_A , annotations=_A , return_tensors='''pt''' ) # verify pixel values UpperCAmelCase__ : Optional[int] = torch.Size([1, 3, 800, 1_066] ) self.assertEqual(encoding['''pixel_values'''].shape , _A ) UpperCAmelCase__ : Any = torch.tensor([0.2_7_9_6, 0.3_1_3_8, 0.3_4_8_1] ) self.assertTrue(torch.allclose(encoding['''pixel_values'''][0, 0, 0, :3] , _A , atol=1e-4 ) ) # verify area UpperCAmelCase__ : List[Any] = torch.tensor([5_8_8_7.9_6_0_0, 1_1_2_5_0.2_0_6_1, 4_8_9_3_5_3.8_4_3_8, 8_3_7_1_2_2.7_5_0_0, 1_4_7_9_6_7.5_1_5_6, 1_6_5_7_3_2.3_4_3_8] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''area'''] , _A ) ) # verify boxes UpperCAmelCase__ : int = torch.Size([6, 4] ) self.assertEqual(encoding['''labels'''][0]['''boxes'''].shape , _A ) UpperCAmelCase__ : List[Any] = torch.tensor([0.5_5_0_3, 0.2_7_6_5, 0.0_6_0_4, 0.2_2_1_5] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''boxes'''][0] , _A , atol=1e-3 ) ) # verify image_id UpperCAmelCase__ : str = torch.tensor([39_769] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''image_id'''] , _A ) ) # verify is_crowd UpperCAmelCase__ : Tuple = torch.tensor([0, 0, 0, 0, 0, 0] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''iscrowd'''] , _A ) ) # verify class_labels UpperCAmelCase__ : Union[str, Any] = torch.tensor([75, 75, 63, 65, 17, 17] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''class_labels'''] , _A ) ) # verify orig_size UpperCAmelCase__ : int = torch.tensor([480, 640] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''orig_size'''] , _A ) ) # verify size UpperCAmelCase__ : int = torch.tensor([800, 1_066] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''size'''] , _A ) ) @slow def lowercase_ ( self : Tuple ): '''simple docstring''' UpperCAmelCase__ : Union[str, Any] = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) with open('''./tests/fixtures/tests_samples/COCO/coco_panoptic_annotations.txt''' , '''r''' ) as f: UpperCAmelCase__ : int = json.loads(f.read() ) UpperCAmelCase__ : str = {'''file_name''': '''000000039769.png''', '''image_id''': 39_769, '''segments_info''': target} UpperCAmelCase__ : Dict = pathlib.Path('''./tests/fixtures/tests_samples/COCO/coco_panoptic''' ) # encode them UpperCAmelCase__ : Any = DetaImageProcessor(format='''coco_panoptic''' ) UpperCAmelCase__ : str = image_processing(images=_A , annotations=_A , masks_path=_A , return_tensors='''pt''' ) # verify pixel values UpperCAmelCase__ : str = torch.Size([1, 3, 800, 1_066] ) self.assertEqual(encoding['''pixel_values'''].shape , _A ) UpperCAmelCase__ : Union[str, Any] = torch.tensor([0.2_7_9_6, 0.3_1_3_8, 0.3_4_8_1] ) self.assertTrue(torch.allclose(encoding['''pixel_values'''][0, 0, 0, :3] , _A , atol=1e-4 ) ) # verify area UpperCAmelCase__ : Any = torch.tensor([1_4_7_9_7_9.6_8_7_5, 1_6_5_5_2_7.0_4_6_9, 4_8_4_6_3_8.5_9_3_8, 1_1_2_9_2.9_3_7_5, 5_8_7_9.6_5_6_2, 7_6_3_4.1_1_4_7] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''area'''] , _A ) ) # verify boxes UpperCAmelCase__ : Dict = torch.Size([6, 4] ) self.assertEqual(encoding['''labels'''][0]['''boxes'''].shape , _A ) UpperCAmelCase__ : List[str] = torch.tensor([0.2_6_2_5, 0.5_4_3_7, 0.4_6_8_8, 0.8_6_2_5] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''boxes'''][0] , _A , atol=1e-3 ) ) # verify image_id UpperCAmelCase__ : Optional[int] = torch.tensor([39_769] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''image_id'''] , _A ) ) # verify is_crowd UpperCAmelCase__ : Any = torch.tensor([0, 0, 0, 0, 0, 0] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''iscrowd'''] , _A ) ) # verify class_labels UpperCAmelCase__ : Tuple = torch.tensor([17, 17, 63, 75, 75, 93] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''class_labels'''] , _A ) ) # verify masks UpperCAmelCase__ : Dict = 822_873 self.assertEqual(encoding['''labels'''][0]['''masks'''].sum().item() , _A ) # verify orig_size UpperCAmelCase__ : str = torch.tensor([480, 640] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''orig_size'''] , _A ) ) # verify size UpperCAmelCase__ : Optional[Any] = torch.tensor([800, 1_066] ) self.assertTrue(torch.allclose(encoding['''labels'''][0]['''size'''] , _A ) )
299
1
'''simple docstring''' from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_torch_available, ) lowercase : Optional[Any] = { 'configuration_mega': ['MEGA_PRETRAINED_CONFIG_ARCHIVE_MAP', 'MegaConfig', 'MegaOnnxConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: lowercase : int = [ 'MEGA_PRETRAINED_MODEL_ARCHIVE_LIST', 'MegaForCausalLM', 'MegaForMaskedLM', 'MegaForMultipleChoice', 'MegaForQuestionAnswering', 'MegaForSequenceClassification', 'MegaForTokenClassification', 'MegaModel', 'MegaPreTrainedModel', ] if TYPE_CHECKING: from .configuration_mega import MEGA_PRETRAINED_CONFIG_ARCHIVE_MAP, MegaConfig, MegaOnnxConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_mega import ( MEGA_PRETRAINED_MODEL_ARCHIVE_LIST, MegaForCausalLM, MegaForMaskedLM, MegaForMultipleChoice, MegaForQuestionAnswering, MegaForSequenceClassification, MegaForTokenClassification, MegaModel, MegaPreTrainedModel, ) else: import sys lowercase : Union[str, Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
3
'''simple docstring''' import argparse import gc import json import os import re import torch from huggingface_hub import hf_hub_download from transformers import AutoModelForCausalLM, AutoTokenizer, PreTrainedTokenizerFast, RwkvConfig from transformers.modeling_utils import WEIGHTS_INDEX_NAME, shard_checkpoint lowercase : Optional[int] = { '169M': 12, '430M': 24, '1B5': 24, '3B': 32, '7B': 32, '14B': 40, } lowercase : Optional[Any] = { '169M': 7_68, '430M': 10_24, '1B5': 20_48, '3B': 25_60, '7B': 40_96, '14B': 51_20, } def lowerCAmelCase_ ( snake_case__ ): '''simple docstring''' A : Optional[Any] = list(state_dict.keys() ) for name in state_dict_keys: A : str = state_dict.pop(snake_case__ ) # emb -> embedding if name.startswith('''emb.''' ): A : Optional[Any] = name.replace('''emb.''' , '''embeddings.''' ) # ln_0 -> pre_ln (only present at block 0) if name.startswith('''blocks.0.ln0''' ): A : Union[str, Any] = name.replace('''blocks.0.ln0''' , '''blocks.0.pre_ln''' ) # att -> attention A : int = re.sub(R'''blocks\.(\d+)\.att''' , R'''blocks.\1.attention''' , snake_case__ ) # ffn -> feed_forward A : List[Any] = re.sub(R'''blocks\.(\d+)\.ffn''' , R'''blocks.\1.feed_forward''' , snake_case__ ) # time_mix_k -> time_mix_key and reshape if name.endswith('''.time_mix_k''' ): A : List[str] = name.replace('''.time_mix_k''' , '''.time_mix_key''' ) # time_mix_v -> time_mix_value and reshape if name.endswith('''.time_mix_v''' ): A : Union[str, Any] = name.replace('''.time_mix_v''' , '''.time_mix_value''' ) # time_mix_r -> time_mix_key and reshape if name.endswith('''.time_mix_r''' ): A : Union[str, Any] = name.replace('''.time_mix_r''' , '''.time_mix_receptance''' ) if name != "head.weight": A : List[Any] = '''rwkv.''' + name A : Dict = weight return state_dict def lowerCAmelCase_ ( snake_case__ , snake_case__ , snake_case__ , snake_case__=None , snake_case__=None , snake_case__=False , snake_case__=None ): '''simple docstring''' if tokenizer_file is None: print('''No `--tokenizer_file` provided, we will use the default tokenizer.''' ) A : int = 5_0277 A : Optional[int] = AutoTokenizer.from_pretrained('''EleutherAI/gpt-neox-20b''' ) else: A : str = PreTrainedTokenizerFast(tokenizer_file=snake_case__ ) A : Any = len(snake_case__ ) tokenizer.save_pretrained(snake_case__ ) # 2. Build the config A : List[str] = list(NUM_HIDDEN_LAYERS_MAPPING.keys() ) if size is None: # Try to infer size from the checkpoint name for candidate in possible_sizes: if candidate in checkpoint_file: A : List[str] = candidate break if size is None: raise ValueError('''Could not infer the size, please provide it with the `--size` argument.''' ) if size not in possible_sizes: raise ValueError(F'`size` should be one of {possible_sizes}, got {size}.' ) A : Any = RwkvConfig( vocab_size=snake_case__ , num_hidden_layers=NUM_HIDDEN_LAYERS_MAPPING[size] , hidden_size=HIDEN_SIZE_MAPPING[size] , ) config.save_pretrained(snake_case__ ) # 3. Download model file then convert state_dict A : Union[str, Any] = hf_hub_download(snake_case__ , snake_case__ ) A : Tuple = torch.load(snake_case__ , map_location='''cpu''' ) A : List[Any] = convert_state_dict(snake_case__ ) # 4. Split in shards and save A, A : List[str] = shard_checkpoint(snake_case__ ) for shard_file, shard in shards.items(): torch.save(snake_case__ , os.path.join(snake_case__ , snake_case__ ) ) if index is not None: A : Dict = os.path.join(snake_case__ , snake_case__ ) # Save the index as well with open(snake_case__ , '''w''' , encoding='''utf-8''' ) as f: A : List[Any] = json.dumps(snake_case__ , indent=2 , sort_keys=snake_case__ ) + '''\n''' f.write(snake_case__ ) # 5. Clean up shards (for some reason the file PyTorch saves take the same space as the whole state_dict print( '''Cleaning up shards. This may error with an OOM error, it this is the case don\'t worry you still have converted the model.''' ) A : List[Any] = list(shards.keys() ) del state_dict del shards gc.collect() for shard_file in shard_files: A : Union[str, Any] = torch.load(os.path.join(snake_case__ , snake_case__ ) ) torch.save({k: v.cpu().clone() for k, v in state_dict.items()} , os.path.join(snake_case__ , snake_case__ ) ) del state_dict gc.collect() if push_to_hub: if model_name is None: raise ValueError('''Please provide a `model_name` to push the model to the Hub.''' ) A : int = AutoModelForCausalLM.from_pretrained(snake_case__ ) model.push_to_hub(snake_case__ , max_shard_size='''2GB''' ) tokenizer.push_to_hub(snake_case__ ) if __name__ == "__main__": lowercase : List[str] = argparse.ArgumentParser() # Required parameters parser.add_argument( '--repo_id', default=None, type=str, required=True, help='Repo ID from which to pull the checkpoint.' ) parser.add_argument( '--checkpoint_file', default=None, type=str, required=True, help='Name of the checkpoint file in the repo.' ) parser.add_argument( '--output_dir', default=None, type=str, required=True, help='Where to save the converted model.' ) parser.add_argument( '--tokenizer_file', default=None, type=str, help='Path to the tokenizer file to use (if not provided, only the model is converted).', ) parser.add_argument( '--size', default=None, type=str, help='Size of the model. Will be inferred from the `checkpoint_file` if not passed.', ) parser.add_argument( '--push_to_hub', action='store_true', help='Push to the Hub the converted model.', ) parser.add_argument( '--model_name', default=None, type=str, help='Name of the pushed model on the Hub, including the username / organization.', ) lowercase : Union[str, Any] = parser.parse_args() convert_rmkv_checkpoint_to_hf_format( args.repo_id, args.checkpoint_file, args.output_dir, size=args.size, tokenizer_file=args.tokenizer_file, push_to_hub=args.push_to_hub, model_name=args.model_name, )
3
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tensorflow_text_available, is_torch_available __A = { "configuration_ernie": ["ERNIE_PRETRAINED_CONFIG_ARCHIVE_MAP", "ErnieConfig", "ErnieOnnxConfig"], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __A = [ "ERNIE_PRETRAINED_MODEL_ARCHIVE_LIST", "ErnieForCausalLM", "ErnieForMaskedLM", "ErnieForMultipleChoice", "ErnieForNextSentencePrediction", "ErnieForPreTraining", "ErnieForQuestionAnswering", "ErnieForSequenceClassification", "ErnieForTokenClassification", "ErnieModel", "ErniePreTrainedModel", ] if TYPE_CHECKING: from .configuration_ernie import ERNIE_PRETRAINED_CONFIG_ARCHIVE_MAP, ErnieConfig, ErnieOnnxConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_ernie import ( ERNIE_PRETRAINED_MODEL_ARCHIVE_LIST, ErnieForCausalLM, ErnieForMaskedLM, ErnieForMultipleChoice, ErnieForNextSentencePrediction, ErnieForPreTraining, ErnieForQuestionAnswering, ErnieForSequenceClassification, ErnieForTokenClassification, ErnieModel, ErniePreTrainedModel, ) else: import sys __A = _LazyModule(__name__, globals()["__file__"], _import_structure, module_spec=__spec__)
273
from typing import Callable, Dict, Optional, Tuple import torch from torch import nn from torch.distributions import ( AffineTransform, Distribution, Independent, NegativeBinomial, Normal, StudentT, TransformedDistribution, ) class _SCREAMING_SNAKE_CASE ( __SCREAMING_SNAKE_CASE ): '''simple docstring''' def __init__(self : int , UpperCAmelCase_ : Distribution , UpperCAmelCase_ : Dict=None , UpperCAmelCase_ : Tuple=None , UpperCAmelCase_ : Tuple=0) ->Optional[int]: '''simple docstring''' lowerCamelCase__: Optional[Any] =1.0 if scale is None else scale lowerCamelCase__: List[Any] =0.0 if loc is None else loc super().__init__(UpperCAmelCase_ , [AffineTransform(loc=self.loc , scale=self.scale , event_dim=UpperCAmelCase_)]) @property def SCREAMING_SNAKE_CASE_ (self : Union[str, Any]) ->int: '''simple docstring''' return self.base_dist.mean * self.scale + self.loc @property def SCREAMING_SNAKE_CASE_ (self : int) ->Dict: '''simple docstring''' return self.base_dist.variance * self.scale**2 @property def SCREAMING_SNAKE_CASE_ (self : int) ->Optional[Any]: '''simple docstring''' return self.variance.sqrt() class _SCREAMING_SNAKE_CASE ( nn.Module ): '''simple docstring''' def __init__(self : Tuple , UpperCAmelCase_ : int , UpperCAmelCase_ : Dict[str, int] , UpperCAmelCase_ : Callable[..., Tuple[torch.Tensor]] , **UpperCAmelCase_ : Dict) ->None: '''simple docstring''' super().__init__(**UpperCAmelCase_) lowerCamelCase__: Tuple =args_dim lowerCamelCase__: Any =nn.ModuleList([nn.Linear(UpperCAmelCase_ , UpperCAmelCase_) for dim in args_dim.values()]) lowerCamelCase__: Any =domain_map def SCREAMING_SNAKE_CASE_ (self : Optional[Any] , UpperCAmelCase_ : torch.Tensor) ->Tuple[torch.Tensor]: '''simple docstring''' lowerCamelCase__: Any =[proj(UpperCAmelCase_) for proj in self.proj] return self.domain_map(*UpperCAmelCase_) class _SCREAMING_SNAKE_CASE ( nn.Module ): '''simple docstring''' def __init__(self : str , UpperCAmelCase_ : Optional[Any]) ->Optional[int]: '''simple docstring''' super().__init__() lowerCamelCase__: Any =function def SCREAMING_SNAKE_CASE_ (self : Dict , UpperCAmelCase_ : Optional[Any] , *UpperCAmelCase_ : Union[str, Any]) ->Union[str, Any]: '''simple docstring''' return self.function(UpperCAmelCase_ , *UpperCAmelCase_) class _SCREAMING_SNAKE_CASE : '''simple docstring''' lowercase_ = 42 lowercase_ = 42 lowercase_ = 42 def __init__(self : str , UpperCAmelCase_ : int = 1) ->None: '''simple docstring''' lowerCamelCase__: List[str] =dim lowerCamelCase__: int ={k: dim * self.args_dim[k] for k in self.args_dim} def SCREAMING_SNAKE_CASE_ (self : int , UpperCAmelCase_ : str) ->Optional[Any]: '''simple docstring''' if self.dim == 1: return self.distribution_class(*UpperCAmelCase_) else: return Independent(self.distribution_class(*UpperCAmelCase_) , 1) def SCREAMING_SNAKE_CASE_ (self : Any , UpperCAmelCase_ : List[Any] , UpperCAmelCase_ : Optional[torch.Tensor] = None , UpperCAmelCase_ : Optional[torch.Tensor] = None , ) ->Distribution: '''simple docstring''' lowerCamelCase__: Optional[Any] =self._base_distribution(UpperCAmelCase_) if loc is None and scale is None: return distr else: return AffineTransformed(UpperCAmelCase_ , loc=UpperCAmelCase_ , scale=UpperCAmelCase_ , event_dim=self.event_dim) @property def SCREAMING_SNAKE_CASE_ (self : int) ->Tuple: '''simple docstring''' return () if self.dim == 1 else (self.dim,) @property def SCREAMING_SNAKE_CASE_ (self : Optional[Any]) ->int: '''simple docstring''' return len(self.event_shape) @property def SCREAMING_SNAKE_CASE_ (self : Tuple) ->float: '''simple docstring''' return 0.0 def SCREAMING_SNAKE_CASE_ (self : str , UpperCAmelCase_ : int) ->nn.Module: '''simple docstring''' return ParameterProjection( in_features=UpperCAmelCase_ , args_dim=self.args_dim , domain_map=LambdaLayer(self.domain_map) , ) def SCREAMING_SNAKE_CASE_ (self : Any , *UpperCAmelCase_ : torch.Tensor) ->Any: '''simple docstring''' raise NotImplementedError() @staticmethod def SCREAMING_SNAKE_CASE_ (UpperCAmelCase_ : torch.Tensor) ->torch.Tensor: '''simple docstring''' return (x + torch.sqrt(torch.square(UpperCAmelCase_) + 4.0)) / 2.0 class _SCREAMING_SNAKE_CASE ( __SCREAMING_SNAKE_CASE ): '''simple docstring''' lowercase_ = {"df": 1, "loc": 1, "scale": 1} lowercase_ = StudentT @classmethod def SCREAMING_SNAKE_CASE_ (cls : Optional[int] , UpperCAmelCase_ : torch.Tensor , UpperCAmelCase_ : torch.Tensor , UpperCAmelCase_ : torch.Tensor) ->Dict: '''simple docstring''' lowerCamelCase__: str =cls.squareplus(UpperCAmelCase_).clamp_min(torch.finfo(scale.dtype).eps) lowerCamelCase__: Any =2.0 + cls.squareplus(UpperCAmelCase_) return df.squeeze(-1), loc.squeeze(-1), scale.squeeze(-1) class _SCREAMING_SNAKE_CASE ( __SCREAMING_SNAKE_CASE ): '''simple docstring''' lowercase_ = {"loc": 1, "scale": 1} lowercase_ = Normal @classmethod def SCREAMING_SNAKE_CASE_ (cls : Optional[Any] , UpperCAmelCase_ : torch.Tensor , UpperCAmelCase_ : torch.Tensor) ->Optional[Any]: '''simple docstring''' lowerCamelCase__: List[Any] =cls.squareplus(UpperCAmelCase_).clamp_min(torch.finfo(scale.dtype).eps) return loc.squeeze(-1), scale.squeeze(-1) class _SCREAMING_SNAKE_CASE ( __SCREAMING_SNAKE_CASE ): '''simple docstring''' lowercase_ = {"total_count": 1, "logits": 1} lowercase_ = NegativeBinomial @classmethod def SCREAMING_SNAKE_CASE_ (cls : Optional[int] , UpperCAmelCase_ : torch.Tensor , UpperCAmelCase_ : torch.Tensor) ->List[str]: '''simple docstring''' lowerCamelCase__: Tuple =cls.squareplus(UpperCAmelCase_) return total_count.squeeze(-1), logits.squeeze(-1) def SCREAMING_SNAKE_CASE_ (self : Tuple , UpperCAmelCase_ : Tuple) ->Distribution: '''simple docstring''' lowerCamelCase__ , lowerCamelCase__: Any =distr_args if self.dim == 1: return self.distribution_class(total_count=UpperCAmelCase_ , logits=UpperCAmelCase_) else: return Independent(self.distribution_class(total_count=UpperCAmelCase_ , logits=UpperCAmelCase_) , 1) def SCREAMING_SNAKE_CASE_ (self : Union[str, Any] , UpperCAmelCase_ : Optional[Any] , UpperCAmelCase_ : Optional[torch.Tensor] = None , UpperCAmelCase_ : Optional[torch.Tensor] = None) ->Distribution: '''simple docstring''' lowerCamelCase__ , lowerCamelCase__: Union[str, Any] =distr_args if scale is not None: # See scaling property of Gamma. logits += scale.log() return self._base_distribution((total_count, logits))
273
1
import importlib.util import os import platform from argparse import ArgumentParser import huggingface_hub from .. import __version__ as version from ..utils import ( is_accelerate_available, is_flax_available, is_safetensors_available, is_tf_available, is_torch_available, ) from . import BaseTransformersCLICommand def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: List[str] ) -> List[Any]: '''simple docstring''' return EnvironmentCommand() def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: Union[str, Any] ) -> Tuple: '''simple docstring''' return EnvironmentCommand(args.accelerate_config_file ) class a__ ( snake_case ): """simple docstring""" @staticmethod def UpperCamelCase ( lowercase ) -> List[Any]: '''simple docstring''' A__ = parser.add_parser("env" ) download_parser.set_defaults(func=lowercase ) download_parser.add_argument( "--accelerate-config_file" , default=lowercase , help="The accelerate config file to use for the default values in the launching script." , ) download_parser.set_defaults(func=lowercase ) def __init__( self , lowercase , *lowercase ) -> None: '''simple docstring''' A__ = accelerate_config_file def UpperCamelCase ( self ) -> int: '''simple docstring''' A__ = "not installed" if is_safetensors_available(): import safetensors A__ = safetensors.__version__ elif importlib.util.find_spec("safetensors" ) is not None: import safetensors A__ = F'{safetensors.__version__} but is ignored because of PyTorch version too old.' A__ = "not installed" A__ = A__ = "not found" if is_accelerate_available(): import accelerate from accelerate.commands.config import default_config_file, load_config_from_file A__ = accelerate.__version__ # Get the default from the config file. if self._accelerate_config_file is not None or os.path.isfile(lowercase ): A__ = load_config_from_file(self._accelerate_config_file ).to_dict() A__ = ( "\n".join([F'\t- {prop}: {val}' for prop, val in accelerate_config.items()] ) if isinstance(lowercase , lowercase ) else F'\t{accelerate_config}' ) A__ = "not installed" A__ = "NA" if is_torch_available(): import torch A__ = torch.__version__ A__ = torch.cuda.is_available() A__ = "not installed" A__ = "NA" if is_tf_available(): import tensorflow as tf A__ = tf.__version__ try: # deprecated in v2.1 A__ = tf.test.is_gpu_available() except AttributeError: # returns list of devices, convert to bool A__ = bool(tf.config.list_physical_devices("GPU" ) ) A__ = "not installed" A__ = "not installed" A__ = "not installed" A__ = "NA" if is_flax_available(): import flax import jax import jaxlib A__ = flax.__version__ A__ = jax.__version__ A__ = jaxlib.__version__ A__ = jax.lib.xla_bridge.get_backend().platform A__ = { "`transformers` version": version, "Platform": platform.platform(), "Python version": platform.python_version(), "Huggingface_hub version": huggingface_hub.__version__, "Safetensors version": F'{safetensors_version}', "Accelerate version": F'{accelerate_version}', "Accelerate config": F'{accelerate_config_str}', "PyTorch version (GPU?)": F'{pt_version} ({pt_cuda_available})', "Tensorflow version (GPU?)": F'{tf_version} ({tf_cuda_available})', "Flax version (CPU?/GPU?/TPU?)": F'{flax_version} ({jax_backend})', "Jax version": F'{jax_version}', "JaxLib version": F'{jaxlib_version}', "Using GPU in script?": "<fill in>", "Using distributed or parallel set-up in script?": "<fill in>", } print("\nCopy-and-paste the text below in your GitHub issue and FILL OUT the two last points.\n" ) print(self.format_dict(lowercase ) ) return info @staticmethod def UpperCamelCase ( lowercase ) -> Optional[int]: '''simple docstring''' return "\n".join([F'- {prop}: {val}' for prop, val in d.items()] ) + "\n"
68
import argparse from pathlib import Path import fairseq import torch from fairseq.models.xmod import XMODModel as FairseqXmodModel from packaging import version from transformers import XmodConfig, XmodForMaskedLM, XmodForSequenceClassification from transformers.utils import logging if version.parse(fairseq.__version__) < version.parse('''0.12.2'''): raise Exception('''requires fairseq >= 0.12.2''') if version.parse(fairseq.__version__) > version.parse('''2'''): raise Exception('''requires fairseq < v2''') logging.set_verbosity_info() __lowerCamelCase : Dict = logging.get_logger(__name__) __lowerCamelCase : Dict = '''Hello, World!''' __lowerCamelCase : Optional[Any] = '''en_XX''' def __SCREAMING_SNAKE_CASE ( __UpperCamelCase : str , __UpperCamelCase : str , __UpperCamelCase : bool ) -> Any: """simple docstring""" SCREAMING_SNAKE_CASE__ = Path("""data_bin""" ) SCREAMING_SNAKE_CASE__ = FairseqXmodModel.from_pretrained( model_name_or_path=str(Path(__UpperCamelCase ).parent ) , checkpoint_file=Path(__UpperCamelCase ).name , _name="""xmod_base""" , arch="""xmod_base""" , task="""multilingual_masked_lm""" , data_name_or_path=str(__UpperCamelCase ) , bpe="""sentencepiece""" , sentencepiece_model=str(Path(__UpperCamelCase ).parent / """sentencepiece.bpe.model""" ) , src_dict=str(data_dir / """dict.txt""" ) , ) xmod.eval() # disable dropout print(__UpperCamelCase ) SCREAMING_SNAKE_CASE__ = xmod.model.encoder.sentence_encoder SCREAMING_SNAKE_CASE__ = XmodConfig( vocab_size=xmod_sent_encoder.embed_tokens.num_embeddings , hidden_size=xmod.cfg.model.encoder_embed_dim , num_hidden_layers=xmod.cfg.model.encoder_layers , num_attention_heads=xmod.cfg.model.encoder_attention_heads , intermediate_size=xmod.cfg.model.encoder_ffn_embed_dim , max_position_embeddings=5_14 , type_vocab_size=1 , layer_norm_eps=1E-5 , pre_norm=xmod.cfg.model.encoder_normalize_before , adapter_reduction_factor=getattr(xmod.cfg.model , """bottleneck""" , 2 ) , adapter_layer_norm=xmod.cfg.model.adapter_layer_norm , adapter_reuse_layer_norm=xmod.cfg.model.adapter_reuse_layer_norm , ln_before_adapter=xmod.cfg.model.ln_before_adapter , languages=xmod.cfg.model.languages , ) if classification_head: SCREAMING_SNAKE_CASE__ = xmod.model.classification_heads["""mnli"""].out_proj.weight.shape[0] print("""Our X-MOD config:""" , __UpperCamelCase ) SCREAMING_SNAKE_CASE__ = XmodForSequenceClassification(__UpperCamelCase ) if classification_head else XmodForMaskedLM(__UpperCamelCase ) model.eval() # Now let's copy all the weights. # Embeddings SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.embed_tokens.weight SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.embed_positions.weight SCREAMING_SNAKE_CASE__ = torch.zeros_like( model.roberta.embeddings.token_type_embeddings.weight ) # just zero them out b/c xmod doesn't use them. SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.layernorm_embedding.weight SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.layernorm_embedding.bias for i in range(config.num_hidden_layers ): # Encoder: start of layer SCREAMING_SNAKE_CASE__ = model.roberta.encoder.layer[i] SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.layers[i] # self attention SCREAMING_SNAKE_CASE__ = layer.attention.self if not ( xmod_layer.self_attn.k_proj.weight.data.shape == xmod_layer.self_attn.q_proj.weight.data.shape == xmod_layer.self_attn.v_proj.weight.data.shape == torch.Size((config.hidden_size, config.hidden_size) ) ): raise AssertionError("""Dimensions of self-attention weights do not match.""" ) SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.q_proj.weight SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.q_proj.bias SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.k_proj.weight SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.k_proj.bias SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.v_proj.weight SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.v_proj.bias # self-attention output SCREAMING_SNAKE_CASE__ = layer.attention.output if self_output.dense.weight.shape != xmod_layer.self_attn.out_proj.weight.shape: raise AssertionError("""Dimensions of self-attention output weights do not match.""" ) SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.out_proj.weight SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn.out_proj.bias SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn_layer_norm.weight SCREAMING_SNAKE_CASE__ = xmod_layer.self_attn_layer_norm.bias # intermediate SCREAMING_SNAKE_CASE__ = layer.intermediate if intermediate.dense.weight.shape != xmod_layer.fca.weight.shape: raise AssertionError("""Dimensions of intermediate weights do not match.""" ) SCREAMING_SNAKE_CASE__ = xmod_layer.fca.weight SCREAMING_SNAKE_CASE__ = xmod_layer.fca.bias # output SCREAMING_SNAKE_CASE__ = layer.output if bert_output.dense.weight.shape != xmod_layer.fca.weight.shape: raise AssertionError("""Dimensions of feed-forward weights do not match.""" ) SCREAMING_SNAKE_CASE__ = xmod_layer.fca.weight SCREAMING_SNAKE_CASE__ = xmod_layer.fca.bias SCREAMING_SNAKE_CASE__ = xmod_layer.final_layer_norm.weight SCREAMING_SNAKE_CASE__ = xmod_layer.final_layer_norm.bias if bert_output.adapter_layer_norm is not None: SCREAMING_SNAKE_CASE__ = xmod_layer.adapter_layer_norm.weight SCREAMING_SNAKE_CASE__ = xmod_layer.adapter_layer_norm.bias if sorted(bert_output.adapter_modules.keys() ) != sorted(xmod_layer.adapter_modules.keys() ): raise AssertionError("""Lists of language adapters do not match.""" ) for lang_code, adapter in xmod_layer.adapter_modules.items(): SCREAMING_SNAKE_CASE__ = bert_output.adapter_modules[lang_code] SCREAMING_SNAKE_CASE__ = xmod_layer.adapter_modules[lang_code] SCREAMING_SNAKE_CASE__ = from_adapter.fca.weight SCREAMING_SNAKE_CASE__ = from_adapter.fca.bias SCREAMING_SNAKE_CASE__ = from_adapter.fca.weight SCREAMING_SNAKE_CASE__ = from_adapter.fca.bias # end of layer if xmod_sent_encoder.layer_norm is not None: SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.layer_norm.weight SCREAMING_SNAKE_CASE__ = xmod_sent_encoder.layer_norm.bias if classification_head: SCREAMING_SNAKE_CASE__ = xmod.model.classification_heads["""mnli"""].dense.weight SCREAMING_SNAKE_CASE__ = xmod.model.classification_heads["""mnli"""].dense.bias SCREAMING_SNAKE_CASE__ = xmod.model.classification_heads["""mnli"""].out_proj.weight SCREAMING_SNAKE_CASE__ = xmod.model.classification_heads["""mnli"""].out_proj.bias else: # LM Head SCREAMING_SNAKE_CASE__ = xmod.model.encoder.lm_head.dense.weight SCREAMING_SNAKE_CASE__ = xmod.model.encoder.lm_head.dense.bias SCREAMING_SNAKE_CASE__ = xmod.model.encoder.lm_head.layer_norm.weight SCREAMING_SNAKE_CASE__ = xmod.model.encoder.lm_head.layer_norm.bias SCREAMING_SNAKE_CASE__ = xmod.model.encoder.lm_head.weight SCREAMING_SNAKE_CASE__ = xmod.model.encoder.lm_head.bias # Let's check that we get the same results. SCREAMING_SNAKE_CASE__ = xmod.encode(__UpperCamelCase ).unsqueeze(0 ) # batch of size 1 model.roberta.set_default_language(__UpperCamelCase ) SCREAMING_SNAKE_CASE__ = model(__UpperCamelCase )[0] if classification_head: SCREAMING_SNAKE_CASE__ = xmod.model.classification_heads["""mnli"""](xmod.extract_features(__UpperCamelCase ) ) else: SCREAMING_SNAKE_CASE__ = xmod.model(__UpperCamelCase , lang_id=[SAMPLE_LANGUAGE] )[0] print(our_output.shape , their_output.shape ) SCREAMING_SNAKE_CASE__ = torch.max(torch.abs(our_output - their_output ) ).item() print(f"""max_absolute_diff = {max_absolute_diff}""" ) # ~ 1e-7 SCREAMING_SNAKE_CASE__ = torch.allclose(__UpperCamelCase , __UpperCamelCase , atol=1E-3 ) print("""Do both models output the same tensors?""" , """🔥""" if success else """💩""" ) if not success: raise Exception("""Something went wRoNg""" ) Path(__UpperCamelCase ).mkdir(parents=__UpperCamelCase , exist_ok=__UpperCamelCase ) print(f"""Saving model to {pytorch_dump_folder_path}""" ) model.save_pretrained(__UpperCamelCase ) if __name__ == "__main__": __lowerCamelCase : Dict = argparse.ArgumentParser() # Required parameters parser.add_argument( '''--xmod_checkpoint_path''', default=None, type=str, required=True, help='''Path the official PyTorch dump.''' ) parser.add_argument( '''--pytorch_dump_folder_path''', default=None, type=str, required=True, help='''Path to the output PyTorch model.''' ) parser.add_argument( '''--classification_head''', action='''store_true''', help='''Whether to convert a final classification head.''' ) __lowerCamelCase : str = parser.parse_args() convert_xmod_checkpoint_to_pytorch( args.xmod_checkpoint_path, args.pytorch_dump_folder_path, args.classification_head )
219
0
import flax.linen as nn import jax.numpy as jnp from .attention_flax import FlaxTransformeraDModel from .resnet_flax import FlaxDownsampleaD, FlaxResnetBlockaD, FlaxUpsampleaD class _lowercase ( nn.Module ): lowercase = 4_2 lowercase = 4_2 lowercase = 0.0 lowercase = 1 lowercase = 1 lowercase = True lowercase = False lowercase = False lowercase = False lowercase = jnp.floataa def SCREAMING_SNAKE_CASE__ ( self : List[Any] ) -> List[Any]: """simple docstring""" UpperCamelCase_ : List[str] = [] UpperCamelCase_ : List[Any] = [] for i in range(self.num_layers ): UpperCamelCase_ : Optional[int] = self.in_channels if i == 0 else self.out_channels UpperCamelCase_ : Dict = FlaxResnetBlockaD( in_channels=snake_case , out_channels=self.out_channels , dropout_prob=self.dropout , dtype=self.dtype , ) resnets.append(snake_case ) UpperCamelCase_ : Any = FlaxTransformeraDModel( in_channels=self.out_channels , n_heads=self.num_attention_heads , d_head=self.out_channels // self.num_attention_heads , depth=1 , use_linear_projection=self.use_linear_projection , only_cross_attention=self.only_cross_attention , use_memory_efficient_attention=self.use_memory_efficient_attention , dtype=self.dtype , ) attentions.append(snake_case ) UpperCamelCase_ : str = resnets UpperCamelCase_ : Dict = attentions if self.add_downsample: UpperCamelCase_ : Dict = FlaxDownsampleaD(self.out_channels , dtype=self.dtype ) def __call__( self : Dict , snake_case : List[str] , snake_case : str , snake_case : str , snake_case : Dict=True ) -> str: """simple docstring""" UpperCamelCase_ : Optional[int] = () for resnet, attn in zip(self.resnets , self.attentions ): UpperCamelCase_ : Dict = resnet(snake_case , snake_case , deterministic=snake_case ) UpperCamelCase_ : str = attn(snake_case , snake_case , deterministic=snake_case ) output_states += (hidden_states,) if self.add_downsample: UpperCamelCase_ : List[Any] = self.downsamplers_a(snake_case ) output_states += (hidden_states,) return hidden_states, output_states class _lowercase ( nn.Module ): lowercase = 4_2 lowercase = 4_2 lowercase = 0.0 lowercase = 1 lowercase = True lowercase = jnp.floataa def SCREAMING_SNAKE_CASE__ ( self : Optional[Any] ) -> Optional[Any]: """simple docstring""" UpperCamelCase_ : Optional[int] = [] for i in range(self.num_layers ): UpperCamelCase_ : Optional[Any] = self.in_channels if i == 0 else self.out_channels UpperCamelCase_ : List[str] = FlaxResnetBlockaD( in_channels=snake_case , out_channels=self.out_channels , dropout_prob=self.dropout , dtype=self.dtype , ) resnets.append(snake_case ) UpperCamelCase_ : Tuple = resnets if self.add_downsample: UpperCamelCase_ : int = FlaxDownsampleaD(self.out_channels , dtype=self.dtype ) def __call__( self : Dict , snake_case : Optional[int] , snake_case : Union[str, Any] , snake_case : Dict=True ) -> Union[str, Any]: """simple docstring""" UpperCamelCase_ : Tuple = () for resnet in self.resnets: UpperCamelCase_ : int = resnet(snake_case , snake_case , deterministic=snake_case ) output_states += (hidden_states,) if self.add_downsample: UpperCamelCase_ : List[str] = self.downsamplers_a(snake_case ) output_states += (hidden_states,) return hidden_states, output_states class _lowercase ( nn.Module ): lowercase = 4_2 lowercase = 4_2 lowercase = 4_2 lowercase = 0.0 lowercase = 1 lowercase = 1 lowercase = True lowercase = False lowercase = False lowercase = False lowercase = jnp.floataa def SCREAMING_SNAKE_CASE__ ( self : str ) -> Tuple: """simple docstring""" UpperCamelCase_ : List[Any] = [] UpperCamelCase_ : Optional[Any] = [] for i in range(self.num_layers ): UpperCamelCase_ : Union[str, Any] = self.in_channels if (i == self.num_layers - 1) else self.out_channels UpperCamelCase_ : List[str] = self.prev_output_channel if i == 0 else self.out_channels UpperCamelCase_ : Any = FlaxResnetBlockaD( in_channels=resnet_in_channels + res_skip_channels , out_channels=self.out_channels , dropout_prob=self.dropout , dtype=self.dtype , ) resnets.append(snake_case ) UpperCamelCase_ : Optional[int] = FlaxTransformeraDModel( in_channels=self.out_channels , n_heads=self.num_attention_heads , d_head=self.out_channels // self.num_attention_heads , depth=1 , use_linear_projection=self.use_linear_projection , only_cross_attention=self.only_cross_attention , use_memory_efficient_attention=self.use_memory_efficient_attention , dtype=self.dtype , ) attentions.append(snake_case ) UpperCamelCase_ : int = resnets UpperCamelCase_ : Union[str, Any] = attentions if self.add_upsample: UpperCamelCase_ : str = FlaxUpsampleaD(self.out_channels , dtype=self.dtype ) def __call__( self : str , snake_case : int , snake_case : int , snake_case : Optional[int] , snake_case : List[Any] , snake_case : Dict=True ) -> List[str]: """simple docstring""" for resnet, attn in zip(self.resnets , self.attentions ): # pop res hidden states UpperCamelCase_ : List[str] = res_hidden_states_tuple[-1] UpperCamelCase_ : Optional[int] = res_hidden_states_tuple[:-1] UpperCamelCase_ : str = jnp.concatenate((hidden_states, res_hidden_states) , axis=-1 ) UpperCamelCase_ : Any = resnet(snake_case , snake_case , deterministic=snake_case ) UpperCamelCase_ : int = attn(snake_case , snake_case , deterministic=snake_case ) if self.add_upsample: UpperCamelCase_ : Union[str, Any] = self.upsamplers_a(snake_case ) return hidden_states class _lowercase ( nn.Module ): lowercase = 4_2 lowercase = 4_2 lowercase = 4_2 lowercase = 0.0 lowercase = 1 lowercase = True lowercase = jnp.floataa def SCREAMING_SNAKE_CASE__ ( self : str ) -> str: """simple docstring""" UpperCamelCase_ : Dict = [] for i in range(self.num_layers ): UpperCamelCase_ : List[Any] = self.in_channels if (i == self.num_layers - 1) else self.out_channels UpperCamelCase_ : int = self.prev_output_channel if i == 0 else self.out_channels UpperCamelCase_ : Dict = FlaxResnetBlockaD( in_channels=resnet_in_channels + res_skip_channels , out_channels=self.out_channels , dropout_prob=self.dropout , dtype=self.dtype , ) resnets.append(snake_case ) UpperCamelCase_ : Tuple = resnets if self.add_upsample: UpperCamelCase_ : Dict = FlaxUpsampleaD(self.out_channels , dtype=self.dtype ) def __call__( self : Union[str, Any] , snake_case : List[Any] , snake_case : Optional[int] , snake_case : str , snake_case : List[str]=True ) -> Dict: """simple docstring""" for resnet in self.resnets: # pop res hidden states UpperCamelCase_ : List[str] = res_hidden_states_tuple[-1] UpperCamelCase_ : List[Any] = res_hidden_states_tuple[:-1] UpperCamelCase_ : str = jnp.concatenate((hidden_states, res_hidden_states) , axis=-1 ) UpperCamelCase_ : List[Any] = resnet(snake_case , snake_case , deterministic=snake_case ) if self.add_upsample: UpperCamelCase_ : Dict = self.upsamplers_a(snake_case ) return hidden_states class _lowercase ( nn.Module ): lowercase = 4_2 lowercase = 0.0 lowercase = 1 lowercase = 1 lowercase = False lowercase = False lowercase = jnp.floataa def SCREAMING_SNAKE_CASE__ ( self : Union[str, Any] ) -> int: """simple docstring""" UpperCamelCase_ : int = [ FlaxResnetBlockaD( in_channels=self.in_channels , out_channels=self.in_channels , dropout_prob=self.dropout , dtype=self.dtype , ) ] UpperCamelCase_ : Tuple = [] for _ in range(self.num_layers ): UpperCamelCase_ : str = FlaxTransformeraDModel( in_channels=self.in_channels , n_heads=self.num_attention_heads , d_head=self.in_channels // self.num_attention_heads , depth=1 , use_linear_projection=self.use_linear_projection , use_memory_efficient_attention=self.use_memory_efficient_attention , dtype=self.dtype , ) attentions.append(snake_case ) UpperCamelCase_ : Dict = FlaxResnetBlockaD( in_channels=self.in_channels , out_channels=self.in_channels , dropout_prob=self.dropout , dtype=self.dtype , ) resnets.append(snake_case ) UpperCamelCase_ : List[str] = resnets UpperCamelCase_ : str = attentions def __call__( self : Any , snake_case : Optional[Any] , snake_case : str , snake_case : int , snake_case : Optional[Any]=True ) -> Dict: """simple docstring""" UpperCamelCase_ : Any = self.resnets[0](snake_case , snake_case ) for attn, resnet in zip(self.attentions , self.resnets[1:] ): UpperCamelCase_ : Tuple = attn(snake_case , snake_case , deterministic=snake_case ) UpperCamelCase_ : List[Any] = resnet(snake_case , snake_case , deterministic=snake_case ) return hidden_states
365
import unittest from accelerate import debug_launcher from accelerate.test_utils import require_cpu, test_ops, test_script @require_cpu class _lowercase ( unittest.TestCase ): def SCREAMING_SNAKE_CASE__ ( self : List[str] ) -> Optional[Any]: """simple docstring""" debug_launcher(test_script.main ) def SCREAMING_SNAKE_CASE__ ( self : Any ) -> List[Any]: """simple docstring""" debug_launcher(test_ops.main )
50
0
from ..utils import DummyObject, requires_backends class __A( metaclass=a ): snake_case_ = ['''speech'''] def __init__( self , *_snake_case , **_snake_case ) -> Any: '''simple docstring''' requires_backends(self , ['''speech'''] ) class __A( metaclass=a ): snake_case_ = ['''speech'''] def __init__( self , *_snake_case , **_snake_case ) -> Dict: '''simple docstring''' requires_backends(self , ['''speech'''] )
6
def __lowerCAmelCase ( a__ , a__ , a__ ) -> list: __a = len(a__ ) __a = [[0] * n for i in range(a__ )] for i in range(a__ ): __a = y_points[i] for i in range(2 , a__ ): for j in range(a__ , a__ ): __a = ( (xa - x_points[j - i + 1]) * q[j][i - 1] - (xa - x_points[j]) * q[j - 1][i - 1] ) / (x_points[j] - x_points[j - i + 1]) return [q[n - 1][n - 1], q] if __name__ == "__main__": import doctest doctest.testmod()
6
1
'''simple docstring''' import datasets from .evaluate import evaluate lowerCamelCase__ = '\\n@inproceedings{Rajpurkar2016SQuAD10,\n title={SQuAD: 100, 000+ Questions for Machine Comprehension of Text},\n author={Pranav Rajpurkar and Jian Zhang and Konstantin Lopyrev and Percy Liang},\n booktitle={EMNLP},\n year={2016}\n}\n' lowerCamelCase__ = '\nThis metric wrap the official scoring script for version 1 of the Stanford Question Answering Dataset (SQuAD).\n\nStanford Question Answering Dataset (SQuAD) is a reading comprehension dataset, consisting of questions posed by\ncrowdworkers on a set of Wikipedia articles, where the answer to every question is a segment of text, or span,\nfrom the corresponding reading passage, or the question might be unanswerable.\n' lowerCamelCase__ = '\nComputes SQuAD scores (F1 and EM).\nArgs:\n predictions: List of question-answers dictionaries with the following key-values:\n - \'id\': id of the question-answer pair as given in the references (see below)\n - \'prediction_text\': the text of the answer\n references: List of question-answers dictionaries with the following key-values:\n - \'id\': id of the question-answer pair (see above),\n - \'answers\': a Dict in the SQuAD dataset format\n {\n \'text\': list of possible texts for the answer, as a list of strings\n \'answer_start\': list of start positions for the answer, as a list of ints\n }\n Note that answer_start values are not taken into account to compute the metric.\nReturns:\n \'exact_match\': Exact match (the normalized answer exactly match the gold answer)\n \'f1\': The F-score of predicted tokens versus the gold answer\nExamples:\n\n >>> predictions = [{\'prediction_text\': \'1976\', \'id\': \'56e10a3be3433e1400422b22\'}]\n >>> references = [{\'answers\': {\'answer_start\': [97], \'text\': [\'1976\']}, \'id\': \'56e10a3be3433e1400422b22\'}]\n >>> squad_metric = datasets.load_metric("squad")\n >>> results = squad_metric.compute(predictions=predictions, references=references)\n >>> print(results)\n {\'exact_match\': 100.0, \'f1\': 100.0}\n' @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class lowerCAmelCase__ ( datasets.Metric ): def lowerCAmelCase__ ( self : Union[str, Any] ) ->List[Any]: '''simple docstring''' return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { "predictions": {"id": datasets.Value("string" ), "prediction_text": datasets.Value("string" )}, "references": { "id": datasets.Value("string" ), "answers": datasets.features.Sequence( { "text": datasets.Value("string" ), "answer_start": datasets.Value("int32" ), } ), }, } ) , codebase_urls=["https://rajpurkar.github.io/SQuAD-explorer/"] , reference_urls=["https://rajpurkar.github.io/SQuAD-explorer/"] , ) def lowerCAmelCase__ ( self : Optional[Any] , lowerCamelCase__ : Optional[int] , lowerCamelCase__ : Optional[int] ) ->List[str]: '''simple docstring''' _UpperCAmelCase : List[str] = {prediction["id"]: prediction["prediction_text"] for prediction in predictions} _UpperCAmelCase : Any = [ { "paragraphs": [ { "qas": [ { "answers": [{"text": answer_text} for answer_text in ref["answers"]["text"]], "id": ref["id"], } for ref in references ] } ] } ] _UpperCAmelCase : Tuple = evaluate(dataset=lowerCamelCase__ , predictions=lowerCamelCase__ ) return score
362
'''simple docstring''' from collections.abc import Sequence def __lowerCAmelCase (__lowerCAmelCase , __lowerCAmelCase ): return sum(c * (x**i) for i, c in enumerate(__lowerCAmelCase ) ) def __lowerCAmelCase (__lowerCAmelCase , __lowerCAmelCase ): _UpperCAmelCase : Dict = 0.0 for coeff in reversed(__lowerCAmelCase ): _UpperCAmelCase : int = result * x + coeff return result if __name__ == "__main__": lowerCamelCase__ = (0.0, 0.0, 5.0, 9.3, 7.0) lowerCamelCase__ = 10.0 print(evaluate_poly(poly, x)) print(horner(poly, x))
322
0
from math import factorial def _snake_case( SCREAMING_SNAKE_CASE__ : List[Any] , SCREAMING_SNAKE_CASE__ : Dict ) -> int: '''simple docstring''' if n < k or k < 0: raise ValueError('Please enter positive integers for n and k where n >= k' ) return factorial(a_ ) // (factorial(a_ ) * factorial(n - k )) if __name__ == "__main__": print( "The number of five-card hands possible from a standard", f"""fifty-two card deck is: {combinations(52, 5)}\n""", ) print( "If a class of 40 students must be arranged into groups of", f"""4 for group projects, there are {combinations(40, 4)} ways""", "to arrange them.\n", ) print( "If 10 teams are competing in a Formula One race, there", f"""are {combinations(10, 3)} ways that first, second and""", "third place can be awarded.", )
7
import unittest import numpy as np import torch from diffusers import DDIMPipeline, DDIMScheduler, UNetaDModel from diffusers.utils.testing_utils import enable_full_determinism, require_torch_gpu, slow, torch_device from ..pipeline_params import UNCONDITIONAL_IMAGE_GENERATION_BATCH_PARAMS, UNCONDITIONAL_IMAGE_GENERATION_PARAMS from ..test_pipelines_common import PipelineTesterMixin enable_full_determinism() class __A ( a , unittest.TestCase ): """simple docstring""" UpperCamelCase__ : str =DDIMPipeline UpperCamelCase__ : List[Any] =UNCONDITIONAL_IMAGE_GENERATION_PARAMS UpperCamelCase__ : Tuple =PipelineTesterMixin.required_optional_params - { """num_images_per_prompt""", """latents""", """callback""", """callback_steps""", } UpperCamelCase__ : Tuple =UNCONDITIONAL_IMAGE_GENERATION_BATCH_PARAMS UpperCamelCase__ : Any =False def __lowercase ( self ): """simple docstring""" torch.manual_seed(0 ) __UpperCamelCase : Optional[int] =UNetaDModel( block_out_channels=(32, 64) , layers_per_block=2 , sample_size=32 , in_channels=3 , out_channels=3 , down_block_types=('DownBlock2D', 'AttnDownBlock2D') , up_block_types=('AttnUpBlock2D', 'UpBlock2D') , ) __UpperCamelCase : int =DDIMScheduler() __UpperCamelCase : Optional[int] ={'unet': unet, 'scheduler': scheduler} return components def __lowercase ( self , lowerCamelCase__ , lowerCamelCase__=0 ): """simple docstring""" if str(lowerCamelCase__ ).startswith('mps' ): __UpperCamelCase : str =torch.manual_seed(lowerCamelCase__ ) else: __UpperCamelCase : Optional[int] =torch.Generator(device=lowerCamelCase__ ).manual_seed(lowerCamelCase__ ) __UpperCamelCase : Tuple ={ 'batch_size': 1, 'generator': generator, 'num_inference_steps': 2, 'output_type': 'numpy', } return inputs def __lowercase ( self ): """simple docstring""" __UpperCamelCase : Any ='cpu' __UpperCamelCase : Optional[Any] =self.get_dummy_components() __UpperCamelCase : Tuple =self.pipeline_class(**lowerCamelCase__ ) pipe.to(lowerCamelCase__ ) pipe.set_progress_bar_config(disable=lowerCamelCase__ ) __UpperCamelCase : Union[str, Any] =self.get_dummy_inputs(lowerCamelCase__ ) __UpperCamelCase : int =pipe(**lowerCamelCase__ ).images __UpperCamelCase : Dict =image[0, -3:, -3:, -1] self.assertEqual(image.shape , (1, 32, 32, 3) ) __UpperCamelCase : Tuple =np.array( [1.000E00, 5.717E-01, 4.717E-01, 1.000E00, 0.000E00, 1.000E00, 3.000E-04, 0.000E00, 9.000E-04] ) __UpperCamelCase : Tuple =np.abs(image_slice.flatten() - expected_slice ).max() self.assertLessEqual(lowerCamelCase__ , 1E-3 ) def __lowercase ( self ): """simple docstring""" super().test_dict_tuple_outputs_equivalent(expected_max_difference=3E-3 ) def __lowercase ( self ): """simple docstring""" super().test_save_load_local(expected_max_difference=3E-3 ) def __lowercase ( self ): """simple docstring""" super().test_save_load_optional_components(expected_max_difference=3E-3 ) def __lowercase ( self ): """simple docstring""" super().test_inference_batch_single_identical(expected_max_diff=3E-3 ) @slow @require_torch_gpu class __A ( unittest.TestCase ): """simple docstring""" def __lowercase ( self ): """simple docstring""" __UpperCamelCase : str ='google/ddpm-cifar10-32' __UpperCamelCase : str =UNetaDModel.from_pretrained(lowerCamelCase__ ) __UpperCamelCase : Optional[Any] =DDIMScheduler() __UpperCamelCase : List[Any] =DDIMPipeline(unet=lowerCamelCase__ , scheduler=lowerCamelCase__ ) ddim.to(lowerCamelCase__ ) ddim.set_progress_bar_config(disable=lowerCamelCase__ ) __UpperCamelCase : Optional[int] =torch.manual_seed(0 ) __UpperCamelCase : List[str] =ddim(generator=lowerCamelCase__ , eta=0.0 , output_type='numpy' ).images __UpperCamelCase : Union[str, Any] =image[0, -3:, -3:, -1] assert image.shape == (1, 32, 32, 3) __UpperCamelCase : str =np.array([0.1_723, 0.1_617, 0.1_600, 0.1_626, 0.1_497, 0.1_513, 0.1_505, 0.1_442, 0.1_453] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1E-2 def __lowercase ( self ): """simple docstring""" __UpperCamelCase : List[Any] ='google/ddpm-ema-bedroom-256' __UpperCamelCase : Any =UNetaDModel.from_pretrained(lowerCamelCase__ ) __UpperCamelCase : int =DDIMScheduler.from_pretrained(lowerCamelCase__ ) __UpperCamelCase : Dict =DDIMPipeline(unet=lowerCamelCase__ , scheduler=lowerCamelCase__ ) ddpm.to(lowerCamelCase__ ) ddpm.set_progress_bar_config(disable=lowerCamelCase__ ) __UpperCamelCase : Tuple =torch.manual_seed(0 ) __UpperCamelCase : Union[str, Any] =ddpm(generator=lowerCamelCase__ , output_type='numpy' ).images __UpperCamelCase : Tuple =image[0, -3:, -3:, -1] assert image.shape == (1, 256, 256, 3) __UpperCamelCase : Optional[Any] =np.array([0.0_060, 0.0_201, 0.0_344, 0.0_024, 0.0_018, 0.0_002, 0.0_022, 0.0_000, 0.0_069] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1E-2
71
0
import logging from transformers import PretrainedConfig lowerCamelCase__ = logging.getLogger(__name__) lowerCamelCase__ = { """bertabs-finetuned-cnndm""": """https://huggingface.co/remi/bertabs-finetuned-cnndm-extractive-abstractive-summarization/resolve/main/config.json""", } class A__ ( UpperCAmelCase_ ): lowercase = """bertabs""" def __init__( self : Any , a : str=30_522 , a : Optional[int]=512 , a : str=6 , a : str=512 , a : List[str]=8 , a : Tuple=512 , a : Optional[Any]=0.2 , a : Any=6 , a : Any=768 , a : Optional[int]=8 , a : str=2_048 , a : List[Any]=0.2 , **a : Optional[int] , ): '''simple docstring''' super().__init__(**__lowercase ) lowerCAmelCase__ : int = vocab_size lowerCAmelCase__ : List[Any] = max_pos lowerCAmelCase__ : List[Any] = enc_layers lowerCAmelCase__ : Optional[int] = enc_hidden_size lowerCAmelCase__ : Dict = enc_heads lowerCAmelCase__ : int = enc_ff_size lowerCAmelCase__ : Tuple = enc_dropout lowerCAmelCase__ : List[Any] = dec_layers lowerCAmelCase__ : Tuple = dec_hidden_size lowerCAmelCase__ : Tuple = dec_heads lowerCAmelCase__ : Optional[Any] = dec_ff_size lowerCAmelCase__ : Optional[int] = dec_dropout
367
# Lint as: python3 # pylint: enable=line-too-long # pylint: disable=g-import-not-at-top,g-bad-import-order,wrong-import-position lowerCamelCase__ = """2.13.1""" import platform import pyarrow from packaging import version if version.parse(platform.python_version()) < version.parse("""3.7"""): raise ImportWarning( """To use `datasets`, Python>=3.7 is required, and the current version of Python doesn't match this condition.""" ) if version.parse(pyarrow.__version__).major < 8: raise ImportWarning( """To use `datasets`, the module `pyarrow>=8.0.0` is required, and the current version of `pyarrow` doesn't match this condition.\n""" """If you are running this in a Google Colab, you should probably just restart the runtime to use the right version of `pyarrow`.""" ) del platform del pyarrow del version from .arrow_dataset import Dataset from .arrow_reader import ReadInstruction from .builder import ArrowBasedBuilder, BeamBasedBuilder, BuilderConfig, DatasetBuilder, GeneratorBasedBuilder from .combine import concatenate_datasets, interleave_datasets from .dataset_dict import DatasetDict, IterableDatasetDict from .download import * from .features import * from .fingerprint import disable_caching, enable_caching, is_caching_enabled, set_caching_enabled from .info import DatasetInfo, MetricInfo from .inspect import ( get_dataset_config_info, get_dataset_config_names, get_dataset_infos, get_dataset_split_names, inspect_dataset, inspect_metric, list_datasets, list_metrics, ) from .iterable_dataset import IterableDataset from .load import load_dataset, load_dataset_builder, load_from_disk, load_metric from .metric import Metric from .splits import ( NamedSplit, NamedSplitAll, Split, SplitBase, SplitDict, SplitGenerator, SplitInfo, SubSplitInfo, percent, ) from .tasks import * from .utils import * from .utils import logging # deprecated modules from datasets import arrow_dataset as _arrow_dataset # isort:skip from datasets import utils as _utils # isort:skip from datasets.utils import download_manager as _deprecated_download_manager # isort:skip lowerCamelCase__ = concatenate_datasets lowerCamelCase__ = DownloadConfig lowerCamelCase__ = DownloadManager lowerCamelCase__ = DownloadMode lowerCamelCase__ = DownloadConfig lowerCamelCase__ = DownloadMode lowerCamelCase__ = DownloadManager del _arrow_dataset, _utils, _deprecated_download_manager
307
0
'''simple docstring''' import os from collections.abc import Iterator def UpperCamelCase_( snake_case : Union[str, Any] = "." ): '''simple docstring''' for dir_path, dir_names, filenames in os.walk(lowerCamelCase_ ): snake_case_ = [d for d in dir_names if d != "scripts" and d[0] not in "._"] for filename in filenames: if filename == "__init__.py": continue if os.path.splitext(lowerCamelCase_ )[1] in (".py", ".ipynb"): yield os.path.join(lowerCamelCase_ , lowerCamelCase_ ).lstrip("./" ) def UpperCamelCase_( snake_case : List[Any] ): '''simple docstring''' return f'{i * " "}*' if i else "\n##" def UpperCamelCase_( snake_case : Optional[Any] , snake_case : Any ): '''simple docstring''' snake_case_ = old_path.split(os.sep ) for i, new_part in enumerate(new_path.split(os.sep ) ): if (i + 1 > len(lowerCamelCase_ ) or old_parts[i] != new_part) and new_part: print(f'{md_prefix(lowerCamelCase_ )} {new_part.replace("_" , " " ).title()}' ) return new_path def UpperCamelCase_( snake_case : Optional[Any] = "." ): '''simple docstring''' snake_case_ = "" for filepath in sorted(good_file_paths(lowerCamelCase_ ) ): snake_case_ , snake_case_ = os.path.split(lowerCamelCase_ ) if filepath != old_path: snake_case_ = print_path(lowerCamelCase_ , lowerCamelCase_ ) snake_case_ = (filepath.count(os.sep ) + 1) if filepath else 0 snake_case_ = f'{filepath}/{filename}'.replace(" " , "%20" ) snake_case_ = os.path.splitext(filename.replace("_" , " " ).title() )[0] print(f'{md_prefix(lowerCamelCase_ )} [{filename}]({url})' ) if __name__ == "__main__": print_directory_md(".")
85
import argparse import json from pathlib import Path import requests import timm import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import DeiTImageProcessor, ViTConfig, ViTForImageClassification, ViTImageProcessor, ViTModel from transformers.utils import logging logging.set_verbosity_info() A__ : Optional[Any] = logging.get_logger(__name__) def a ( lowerCamelCase_ , lowerCamelCase_=False ): '''simple docstring''' lowercase__ = [] for i in range(config.num_hidden_layers ): # encoder layers: output projection, 2 feedforward neural networks and 2 layernorms rename_keys.append((F"""blocks.{i}.norm1.weight""", F"""vit.encoder.layer.{i}.layernorm_before.weight""") ) rename_keys.append((F"""blocks.{i}.norm1.bias""", F"""vit.encoder.layer.{i}.layernorm_before.bias""") ) rename_keys.append((F"""blocks.{i}.attn.proj.weight""", F"""vit.encoder.layer.{i}.attention.output.dense.weight""") ) rename_keys.append((F"""blocks.{i}.attn.proj.bias""", F"""vit.encoder.layer.{i}.attention.output.dense.bias""") ) rename_keys.append((F"""blocks.{i}.norm2.weight""", F"""vit.encoder.layer.{i}.layernorm_after.weight""") ) rename_keys.append((F"""blocks.{i}.norm2.bias""", F"""vit.encoder.layer.{i}.layernorm_after.bias""") ) rename_keys.append((F"""blocks.{i}.mlp.fc1.weight""", F"""vit.encoder.layer.{i}.intermediate.dense.weight""") ) rename_keys.append((F"""blocks.{i}.mlp.fc1.bias""", F"""vit.encoder.layer.{i}.intermediate.dense.bias""") ) rename_keys.append((F"""blocks.{i}.mlp.fc2.weight""", F"""vit.encoder.layer.{i}.output.dense.weight""") ) rename_keys.append((F"""blocks.{i}.mlp.fc2.bias""", F"""vit.encoder.layer.{i}.output.dense.bias""") ) # projection layer + position embeddings rename_keys.extend( [ ('''cls_token''', '''vit.embeddings.cls_token'''), ('''patch_embed.proj.weight''', '''vit.embeddings.patch_embeddings.projection.weight'''), ('''patch_embed.proj.bias''', '''vit.embeddings.patch_embeddings.projection.bias'''), ('''pos_embed''', '''vit.embeddings.position_embeddings'''), ] ) if base_model: # layernorm + pooler rename_keys.extend( [ ('''norm.weight''', '''layernorm.weight'''), ('''norm.bias''', '''layernorm.bias'''), ('''pre_logits.fc.weight''', '''pooler.dense.weight'''), ('''pre_logits.fc.bias''', '''pooler.dense.bias'''), ] ) # if just the base model, we should remove "vit" from all keys that start with "vit" lowercase__ = [(pair[0], pair[1][4:]) if pair[1].startswith('''vit''' ) else pair for pair in rename_keys] else: # layernorm + classification head rename_keys.extend( [ ('''norm.weight''', '''vit.layernorm.weight'''), ('''norm.bias''', '''vit.layernorm.bias'''), ('''head.weight''', '''classifier.weight'''), ('''head.bias''', '''classifier.bias'''), ] ) return rename_keys def a ( lowerCamelCase_ , lowerCamelCase_ , lowerCamelCase_=False ): '''simple docstring''' for i in range(config.num_hidden_layers ): if base_model: lowercase__ = '''''' else: lowercase__ = '''vit.''' # read in weights + bias of input projection layer (in timm, this is a single matrix + bias) lowercase__ = state_dict.pop(F"""blocks.{i}.attn.qkv.weight""" ) lowercase__ = state_dict.pop(F"""blocks.{i}.attn.qkv.bias""" ) # next, add query, keys and values (in that order) to the state dict lowercase__ = in_proj_weight[ : config.hidden_size, : ] lowercase__ = in_proj_bias[: config.hidden_size] lowercase__ = in_proj_weight[ config.hidden_size : config.hidden_size * 2, : ] lowercase__ = in_proj_bias[ config.hidden_size : config.hidden_size * 2 ] lowercase__ = in_proj_weight[ -config.hidden_size :, : ] lowercase__ = in_proj_bias[-config.hidden_size :] def a ( lowerCamelCase_ ): '''simple docstring''' lowercase__ = ['''head.weight''', '''head.bias'''] for k in ignore_keys: state_dict.pop(lowerCamelCase_ , lowerCamelCase_ ) def a ( lowerCamelCase_ , lowerCamelCase_ , lowerCamelCase_ ): '''simple docstring''' lowercase__ = dct.pop(lowerCamelCase_ ) lowercase__ = val def a ( ): '''simple docstring''' lowercase__ = '''http://images.cocodataset.org/val2017/000000039769.jpg''' lowercase__ = Image.open(requests.get(lowerCamelCase_ , stream=lowerCamelCase_ ).raw ) return im @torch.no_grad() def a ( lowerCamelCase_ , lowerCamelCase_ ): '''simple docstring''' lowercase__ = ViTConfig() lowercase__ = False # dataset (ImageNet-21k only or also fine-tuned on ImageNet 2012), patch_size and image_size if vit_name[-5:] == "in21k": lowercase__ = True lowercase__ = int(vit_name[-12:-10] ) lowercase__ = int(vit_name[-9:-6] ) else: lowercase__ = 1000 lowercase__ = '''huggingface/label-files''' lowercase__ = '''imagenet-1k-id2label.json''' lowercase__ = json.load(open(hf_hub_download(lowerCamelCase_ , lowerCamelCase_ , repo_type='''dataset''' ) , '''r''' ) ) lowercase__ = {int(lowerCamelCase_ ): v for k, v in idalabel.items()} lowercase__ = idalabel lowercase__ = {v: k for k, v in idalabel.items()} lowercase__ = int(vit_name[-6:-4] ) lowercase__ = int(vit_name[-3:] ) # size of the architecture if "deit" in vit_name: if vit_name[9:].startswith('''tiny''' ): lowercase__ = 192 lowercase__ = 768 lowercase__ = 12 lowercase__ = 3 elif vit_name[9:].startswith('''small''' ): lowercase__ = 384 lowercase__ = 1536 lowercase__ = 12 lowercase__ = 6 else: pass else: if vit_name[4:].startswith('''small''' ): lowercase__ = 768 lowercase__ = 2304 lowercase__ = 8 lowercase__ = 8 elif vit_name[4:].startswith('''base''' ): pass elif vit_name[4:].startswith('''large''' ): lowercase__ = 1024 lowercase__ = 4096 lowercase__ = 24 lowercase__ = 16 elif vit_name[4:].startswith('''huge''' ): lowercase__ = 1280 lowercase__ = 5120 lowercase__ = 32 lowercase__ = 16 # load original model from timm lowercase__ = timm.create_model(lowerCamelCase_ , pretrained=lowerCamelCase_ ) timm_model.eval() # load state_dict of original model, remove and rename some keys lowercase__ = timm_model.state_dict() if base_model: remove_classification_head_(lowerCamelCase_ ) lowercase__ = create_rename_keys(lowerCamelCase_ , lowerCamelCase_ ) for src, dest in rename_keys: rename_key(lowerCamelCase_ , lowerCamelCase_ , lowerCamelCase_ ) read_in_q_k_v(lowerCamelCase_ , lowerCamelCase_ , lowerCamelCase_ ) # load HuggingFace model if vit_name[-5:] == "in21k": lowercase__ = ViTModel(lowerCamelCase_ ).eval() else: lowercase__ = ViTForImageClassification(lowerCamelCase_ ).eval() model.load_state_dict(lowerCamelCase_ ) # Check outputs on an image, prepared by ViTImageProcessor/DeiTImageProcessor if "deit" in vit_name: lowercase__ = DeiTImageProcessor(size=config.image_size ) else: lowercase__ = ViTImageProcessor(size=config.image_size ) lowercase__ = image_processor(images=prepare_img() , return_tensors='''pt''' ) lowercase__ = encoding['''pixel_values'''] lowercase__ = model(lowerCamelCase_ ) if base_model: lowercase__ = timm_model.forward_features(lowerCamelCase_ ) assert timm_pooled_output.shape == outputs.pooler_output.shape assert torch.allclose(lowerCamelCase_ , outputs.pooler_output , atol=1e-3 ) else: lowercase__ = timm_model(lowerCamelCase_ ) assert timm_logits.shape == outputs.logits.shape assert torch.allclose(lowerCamelCase_ , outputs.logits , atol=1e-3 ) Path(lowerCamelCase_ ).mkdir(exist_ok=lowerCamelCase_ ) print(F"""Saving model {vit_name} to {pytorch_dump_folder_path}""" ) model.save_pretrained(lowerCamelCase_ ) print(F"""Saving image processor to {pytorch_dump_folder_path}""" ) image_processor.save_pretrained(lowerCamelCase_ ) if __name__ == "__main__": A__ : int = argparse.ArgumentParser() # Required parameters parser.add_argument( '--vit_name', default='vit_base_patch16_224', type=str, help='Name of the ViT timm model you\'d like to convert.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model directory.' ) A__ : str = parser.parse_args() convert_vit_checkpoint(args.vit_name, args.pytorch_dump_folder_path)
207
0
"""simple docstring""" from collections import deque from math import floor from random import random from time import time class lowerCamelCase__ : """simple docstring""" def __init__( self : str ): '''simple docstring''' __UpperCAmelCase : Dict = {} def lowerCamelCase__ ( self : Tuple , UpperCamelCase : List[Any] , UpperCamelCase : Optional[int] , UpperCamelCase : Optional[Any]=1 ): '''simple docstring''' if self.graph.get(UpperCamelCase ): if self.graph[u].count([w, v] ) == 0: self.graph[u].append([w, v] ) else: __UpperCAmelCase : Optional[int] = [[w, v]] if not self.graph.get(UpperCamelCase ): __UpperCAmelCase : Union[str, Any] = [] def lowerCamelCase__ ( self : Any ): '''simple docstring''' return list(self.graph ) def lowerCamelCase__ ( self : Tuple , UpperCamelCase : Tuple , UpperCamelCase : Tuple ): '''simple docstring''' if self.graph.get(UpperCamelCase ): for _ in self.graph[u]: if _[1] == v: self.graph[u].remove(UpperCamelCase ) def lowerCamelCase__ ( self : List[Any] , UpperCamelCase : Optional[int]=-2 , UpperCamelCase : Union[str, Any]=-1 ): '''simple docstring''' if s == d: return [] __UpperCAmelCase : Union[str, Any] = [] __UpperCAmelCase : List[str] = [] if s == -2: __UpperCAmelCase : List[Any] = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : str = s while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : Optional[Any] = s for node in self.graph[s]: if visited.count(node[1] ) < 1: if node[1] == d: visited.append(UpperCamelCase ) return visited else: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : Union[str, Any] = node[1] break # check if all the children are visited if s == ss: stack.pop() if len(UpperCamelCase ) != 0: __UpperCAmelCase : Dict = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : Optional[int] = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return visited def lowerCamelCase__ ( self : Union[str, Any] , UpperCamelCase : List[str]=-1 ): '''simple docstring''' if c == -1: __UpperCAmelCase : Optional[Any] = floor(random() * 10_000 ) + 10 for i in range(UpperCamelCase ): # every vertex has max 100 edges for _ in range(floor(random() * 102 ) + 1 ): __UpperCAmelCase : int = floor(random() * c ) + 1 if n != i: self.add_pair(UpperCamelCase , UpperCamelCase , 1 ) def lowerCamelCase__ ( self : List[str] , UpperCamelCase : List[str]=-2 ): '''simple docstring''' __UpperCAmelCase : str = deque() __UpperCAmelCase : Dict = [] if s == -2: __UpperCAmelCase : List[Any] = list(self.graph )[0] d.append(UpperCamelCase ) visited.append(UpperCamelCase ) while d: __UpperCAmelCase : Union[str, Any] = d.popleft() if len(self.graph[s] ) != 0: for node in self.graph[s]: if visited.count(node[1] ) < 1: d.append(node[1] ) visited.append(node[1] ) return visited def lowerCamelCase__ ( self : str , UpperCamelCase : int ): '''simple docstring''' __UpperCAmelCase : Any = 0 for x in self.graph: for y in self.graph[x]: if y[1] == u: count += 1 return count def lowerCamelCase__ ( self : List[Any] , UpperCamelCase : Optional[Any] ): '''simple docstring''' return len(self.graph[u] ) def lowerCamelCase__ ( self : str , UpperCamelCase : int=-2 ): '''simple docstring''' __UpperCAmelCase : Optional[int] = [] __UpperCAmelCase : Tuple = [] if s == -2: __UpperCAmelCase : Dict = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : Dict = s __UpperCAmelCase : Any = [] while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : List[str] = s for node in self.graph[s]: if visited.count(node[1] ) < 1: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : List[str] = node[1] break # check if all the children are visited if s == ss: sorted_nodes.append(stack.pop() ) if len(UpperCamelCase ) != 0: __UpperCAmelCase : Optional[int] = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : Optional[int] = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return sorted_nodes def lowerCamelCase__ ( self : Optional[int] ): '''simple docstring''' __UpperCAmelCase : Union[str, Any] = [] __UpperCAmelCase : Dict = [] __UpperCAmelCase : List[str] = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : List[str] = -2 __UpperCAmelCase : List[Any] = [] __UpperCAmelCase : Dict = s __UpperCAmelCase : Tuple = False __UpperCAmelCase : str = set() while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : Union[str, Any] = s for node in self.graph[s]: if ( visited.count(node[1] ) > 0 and node[1] != parent and indirect_parents.count(node[1] ) > 0 and not on_the_way_back ): __UpperCAmelCase : Union[str, Any] = len(UpperCamelCase ) - 1 while len_stack >= 0: if stack[len_stack] == node[1]: anticipating_nodes.add(node[1] ) break else: anticipating_nodes.add(stack[len_stack] ) len_stack -= 1 if visited.count(node[1] ) < 1: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : List[Any] = node[1] break # check if all the children are visited if s == ss: stack.pop() __UpperCAmelCase : Tuple = True if len(UpperCamelCase ) != 0: __UpperCAmelCase : Tuple = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : Dict = False indirect_parents.append(UpperCamelCase ) __UpperCAmelCase : int = s __UpperCAmelCase : int = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return list(UpperCamelCase ) def lowerCamelCase__ ( self : Union[str, Any] ): '''simple docstring''' __UpperCAmelCase : int = [] __UpperCAmelCase : List[Any] = [] __UpperCAmelCase : List[Any] = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : List[str] = -2 __UpperCAmelCase : Any = [] __UpperCAmelCase : Any = s __UpperCAmelCase : Optional[Any] = False __UpperCAmelCase : Optional[int] = set() while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : List[Any] = s for node in self.graph[s]: if ( visited.count(node[1] ) > 0 and node[1] != parent and indirect_parents.count(node[1] ) > 0 and not on_the_way_back ): __UpperCAmelCase : Dict = len(UpperCamelCase ) - 1 while len_stack_minus_one >= 0: if stack[len_stack_minus_one] == node[1]: anticipating_nodes.add(node[1] ) break else: return True if visited.count(node[1] ) < 1: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : str = node[1] break # check if all the children are visited if s == ss: stack.pop() __UpperCAmelCase : int = True if len(UpperCamelCase ) != 0: __UpperCAmelCase : Tuple = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : Optional[Any] = False indirect_parents.append(UpperCamelCase ) __UpperCAmelCase : Tuple = s __UpperCAmelCase : List[Any] = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return False def lowerCamelCase__ ( self : List[Any] , UpperCamelCase : List[Any]=-2 , UpperCamelCase : Tuple=-1 ): '''simple docstring''' __UpperCAmelCase : Dict = time() self.dfs(UpperCamelCase , UpperCamelCase ) __UpperCAmelCase : Dict = time() return end - begin def lowerCamelCase__ ( self : Union[str, Any] , UpperCamelCase : Union[str, Any]=-2 ): '''simple docstring''' __UpperCAmelCase : int = time() self.bfs(UpperCamelCase ) __UpperCAmelCase : str = time() return end - begin class lowerCamelCase__ : """simple docstring""" def __init__( self : Dict ): '''simple docstring''' __UpperCAmelCase : Any = {} def lowerCamelCase__ ( self : Tuple , UpperCamelCase : int , UpperCamelCase : List[str] , UpperCamelCase : List[Any]=1 ): '''simple docstring''' if self.graph.get(UpperCamelCase ): # if there already is a edge if self.graph[u].count([w, v] ) == 0: self.graph[u].append([w, v] ) else: # if u does not exist __UpperCAmelCase : Union[str, Any] = [[w, v]] # add the other way if self.graph.get(UpperCamelCase ): # if there already is a edge if self.graph[v].count([w, u] ) == 0: self.graph[v].append([w, u] ) else: # if u does not exist __UpperCAmelCase : Any = [[w, u]] def lowerCamelCase__ ( self : Union[str, Any] , UpperCamelCase : Any , UpperCamelCase : Tuple ): '''simple docstring''' if self.graph.get(UpperCamelCase ): for _ in self.graph[u]: if _[1] == v: self.graph[u].remove(UpperCamelCase ) # the other way round if self.graph.get(UpperCamelCase ): for _ in self.graph[v]: if _[1] == u: self.graph[v].remove(UpperCamelCase ) def lowerCamelCase__ ( self : int , UpperCamelCase : Union[str, Any]=-2 , UpperCamelCase : int=-1 ): '''simple docstring''' if s == d: return [] __UpperCAmelCase : Optional[int] = [] __UpperCAmelCase : Optional[int] = [] if s == -2: __UpperCAmelCase : Optional[int] = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : List[Any] = s while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : List[Any] = s for node in self.graph[s]: if visited.count(node[1] ) < 1: if node[1] == d: visited.append(UpperCamelCase ) return visited else: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : List[Any] = node[1] break # check if all the children are visited if s == ss: stack.pop() if len(UpperCamelCase ) != 0: __UpperCAmelCase : List[str] = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : Dict = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return visited def lowerCamelCase__ ( self : Dict , UpperCamelCase : int=-1 ): '''simple docstring''' if c == -1: __UpperCAmelCase : Dict = floor(random() * 10_000 ) + 10 for i in range(UpperCamelCase ): # every vertex has max 100 edges for _ in range(floor(random() * 102 ) + 1 ): __UpperCAmelCase : Dict = floor(random() * c ) + 1 if n != i: self.add_pair(UpperCamelCase , UpperCamelCase , 1 ) def lowerCamelCase__ ( self : Optional[Any] , UpperCamelCase : Tuple=-2 ): '''simple docstring''' __UpperCAmelCase : int = deque() __UpperCAmelCase : List[Any] = [] if s == -2: __UpperCAmelCase : int = list(self.graph )[0] d.append(UpperCamelCase ) visited.append(UpperCamelCase ) while d: __UpperCAmelCase : int = d.popleft() if len(self.graph[s] ) != 0: for node in self.graph[s]: if visited.count(node[1] ) < 1: d.append(node[1] ) visited.append(node[1] ) return visited def lowerCamelCase__ ( self : Tuple , UpperCamelCase : Tuple ): '''simple docstring''' return len(self.graph[u] ) def lowerCamelCase__ ( self : List[str] ): '''simple docstring''' __UpperCAmelCase : Dict = [] __UpperCAmelCase : int = [] __UpperCAmelCase : Dict = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : Union[str, Any] = -2 __UpperCAmelCase : List[str] = [] __UpperCAmelCase : Tuple = s __UpperCAmelCase : Dict = False __UpperCAmelCase : Optional[int] = set() while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : Union[str, Any] = s for node in self.graph[s]: if ( visited.count(node[1] ) > 0 and node[1] != parent and indirect_parents.count(node[1] ) > 0 and not on_the_way_back ): __UpperCAmelCase : Optional[Any] = len(UpperCamelCase ) - 1 while len_stack >= 0: if stack[len_stack] == node[1]: anticipating_nodes.add(node[1] ) break else: anticipating_nodes.add(stack[len_stack] ) len_stack -= 1 if visited.count(node[1] ) < 1: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : Any = node[1] break # check if all the children are visited if s == ss: stack.pop() __UpperCAmelCase : Dict = True if len(UpperCamelCase ) != 0: __UpperCAmelCase : int = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : List[str] = False indirect_parents.append(UpperCamelCase ) __UpperCAmelCase : Union[str, Any] = s __UpperCAmelCase : Optional[int] = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return list(UpperCamelCase ) def lowerCamelCase__ ( self : str ): '''simple docstring''' __UpperCAmelCase : Tuple = [] __UpperCAmelCase : str = [] __UpperCAmelCase : Any = list(self.graph )[0] stack.append(UpperCamelCase ) visited.append(UpperCamelCase ) __UpperCAmelCase : str = -2 __UpperCAmelCase : List[Any] = [] __UpperCAmelCase : Optional[Any] = s __UpperCAmelCase : Tuple = False __UpperCAmelCase : Optional[int] = set() while True: # check if there is any non isolated nodes if len(self.graph[s] ) != 0: __UpperCAmelCase : List[Any] = s for node in self.graph[s]: if ( visited.count(node[1] ) > 0 and node[1] != parent and indirect_parents.count(node[1] ) > 0 and not on_the_way_back ): __UpperCAmelCase : Optional[int] = len(UpperCamelCase ) - 1 while len_stack_minus_one >= 0: if stack[len_stack_minus_one] == node[1]: anticipating_nodes.add(node[1] ) break else: return True if visited.count(node[1] ) < 1: stack.append(node[1] ) visited.append(node[1] ) __UpperCAmelCase : Optional[Any] = node[1] break # check if all the children are visited if s == ss: stack.pop() __UpperCAmelCase : Tuple = True if len(UpperCamelCase ) != 0: __UpperCAmelCase : Optional[int] = stack[len(UpperCamelCase ) - 1] else: __UpperCAmelCase : Any = False indirect_parents.append(UpperCamelCase ) __UpperCAmelCase : Dict = s __UpperCAmelCase : Dict = ss # check if se have reached the starting point if len(UpperCamelCase ) == 0: return False def lowerCamelCase__ ( self : List[Any] ): '''simple docstring''' return list(self.graph ) def lowerCamelCase__ ( self : List[str] , UpperCamelCase : Dict=-2 , UpperCamelCase : int=-1 ): '''simple docstring''' __UpperCAmelCase : List[str] = time() self.dfs(UpperCamelCase , UpperCamelCase ) __UpperCAmelCase : List[str] = time() return end - begin def lowerCamelCase__ ( self : str , UpperCamelCase : Optional[Any]=-2 ): '''simple docstring''' __UpperCAmelCase : Tuple = time() self.bfs(UpperCamelCase ) __UpperCAmelCase : Any = time() return end - begin
357
"""simple docstring""" import importlib import os from dataclasses import dataclass from enum import Enum from typing import Any, Dict, Optional, Union import torch from ..utils import BaseOutput UpperCAmelCase : Optional[Any] = 'scheduler_config.json' class lowerCamelCase__ ( A ): """simple docstring""" __a = 1 __a = 2 __a = 3 __a = 4 __a = 5 __a = 6 __a = 7 __a = 8 __a = 9 __a = 10 __a = 11 __a = 12 __a = 13 __a = 14 @dataclass class lowerCamelCase__ ( A ): """simple docstring""" __a = 42 class lowerCamelCase__ : """simple docstring""" __a = SCHEDULER_CONFIG_NAME __a = [] __a = True @classmethod def lowerCamelCase__ ( cls : Any , UpperCamelCase : Dict[str, Any] = None , UpperCamelCase : Optional[str] = None , UpperCamelCase : Optional[Any]=False , **UpperCamelCase : int , ): '''simple docstring''' __UpperCAmelCase ,__UpperCAmelCase ,__UpperCAmelCase : List[Any] = cls.load_config( pretrained_model_name_or_path=UpperCamelCase , subfolder=UpperCamelCase , return_unused_kwargs=UpperCamelCase , return_commit_hash=UpperCamelCase , **UpperCamelCase , ) return cls.from_config(UpperCamelCase , return_unused_kwargs=UpperCamelCase , **UpperCamelCase ) def lowerCamelCase__ ( self : int , UpperCamelCase : Union[str, os.PathLike] , UpperCamelCase : bool = False , **UpperCamelCase : Optional[Any] ): '''simple docstring''' self.save_config(save_directory=UpperCamelCase , push_to_hub=UpperCamelCase , **UpperCamelCase ) @property def lowerCamelCase__ ( self : List[Any] ): '''simple docstring''' return self._get_compatibles() @classmethod def lowerCamelCase__ ( cls : Union[str, Any] ): '''simple docstring''' __UpperCAmelCase : Optional[int] = list(set([cls.__name__] + cls._compatibles ) ) __UpperCAmelCase : List[str] = importlib.import_module(__name__.split(""".""" )[0] ) __UpperCAmelCase : List[str] = [ getattr(UpperCamelCase , UpperCamelCase ) for c in compatible_classes_str if hasattr(UpperCamelCase , UpperCamelCase ) ] return compatible_classes
320
0
# Copyright 2021 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. from packaging import version from .. import __version__ from .constants import IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, IMAGENET_STANDARD_MEAN, IMAGENET_STANDARD_STD from .doc import ( add_code_sample_docstrings, add_end_docstrings, add_start_docstrings, add_start_docstrings_to_model_forward, copy_func, replace_return_docstrings, ) from .generic import ( ContextManagers, ExplicitEnum, ModelOutput, PaddingStrategy, TensorType, add_model_info_to_auto_map, cached_property, can_return_loss, expand_dims, find_labels, flatten_dict, infer_framework, is_jax_tensor, is_numpy_array, is_tensor, is_tf_symbolic_tensor, is_tf_tensor, is_torch_device, is_torch_dtype, is_torch_tensor, reshape, squeeze, strtobool, tensor_size, to_numpy, to_py_obj, transpose, working_or_temp_dir, ) from .hub import ( CLOUDFRONT_DISTRIB_PREFIX, DISABLE_TELEMETRY, HF_MODULES_CACHE, HUGGINGFACE_CO_PREFIX, HUGGINGFACE_CO_RESOLVE_ENDPOINT, PYTORCH_PRETRAINED_BERT_CACHE, PYTORCH_TRANSFORMERS_CACHE, S3_BUCKET_PREFIX, TRANSFORMERS_CACHE, TRANSFORMERS_DYNAMIC_MODULE_NAME, EntryNotFoundError, PushToHubMixin, RepositoryNotFoundError, RevisionNotFoundError, cached_file, default_cache_path, define_sagemaker_information, download_url, extract_commit_hash, get_cached_models, get_file_from_repo, get_full_repo_name, has_file, http_user_agent, is_offline_mode, is_remote_url, move_cache, send_example_telemetry, try_to_load_from_cache, ) from .import_utils import ( ENV_VARS_TRUE_AND_AUTO_VALUES, ENV_VARS_TRUE_VALUES, TORCH_FX_REQUIRED_VERSION, USE_JAX, USE_TF, USE_TORCH, DummyObject, OptionalDependencyNotAvailable, _LazyModule, ccl_version, direct_transformers_import, get_torch_version, is_accelerate_available, is_apex_available, is_bitsandbytes_available, is_bsa_available, is_coloredlogs_available, is_cython_available, is_datasets_available, is_decord_available, is_detectrona_available, is_faiss_available, is_flax_available, is_ftfy_available, is_in_notebook, is_ipex_available, is_jieba_available, is_jumanpp_available, is_kenlm_available, is_keras_nlp_available, is_librosa_available, is_natten_available, is_ninja_available, is_onnx_available, is_openai_available, is_optimum_available, is_pandas_available, is_peft_available, is_phonemizer_available, is_protobuf_available, is_psutil_available, is_pyanvml_available, is_pyctcdecode_available, is_pytesseract_available, is_pytest_available, is_pytorch_quantization_available, is_rjieba_available, is_sacremoses_available, is_safetensors_available, is_sagemaker_dp_enabled, is_sagemaker_mp_enabled, is_scipy_available, is_sentencepiece_available, is_seqio_available, is_sklearn_available, is_soundfile_availble, is_spacy_available, is_speech_available, is_sudachi_available, is_tensorflow_probability_available, is_tensorflow_text_available, is_tfaonnx_available, is_tf_available, is_timm_available, is_tokenizers_available, is_torch_available, is_torch_bfaa_available, is_torch_bfaa_cpu_available, is_torch_bfaa_gpu_available, is_torch_compile_available, is_torch_cuda_available, is_torch_fx_available, is_torch_fx_proxy, is_torch_mps_available, is_torch_neuroncore_available, is_torch_tensorrt_fx_available, is_torch_tfaa_available, is_torch_tpu_available, is_torchaudio_available, is_torchdistx_available, is_torchdynamo_available, is_torchvision_available, is_training_run_on_sagemaker, is_vision_available, requires_backends, torch_only_method, ) SCREAMING_SNAKE_CASE :List[str] = 'pytorch_model.bin' SCREAMING_SNAKE_CASE :str = 'pytorch_model.bin.index.json' SCREAMING_SNAKE_CASE :Optional[int] = 'adapter_config.json' SCREAMING_SNAKE_CASE :Dict = 'adapter_model.bin' SCREAMING_SNAKE_CASE :Dict = 'adapter_model.safetensors' SCREAMING_SNAKE_CASE :str = 'tf_model.h5' SCREAMING_SNAKE_CASE :List[Any] = 'tf_model.h5.index.json' SCREAMING_SNAKE_CASE :str = 'model.ckpt' SCREAMING_SNAKE_CASE :List[Any] = 'flax_model.msgpack' SCREAMING_SNAKE_CASE :Optional[int] = 'flax_model.msgpack.index.json' SCREAMING_SNAKE_CASE :Tuple = 'model.safetensors' SCREAMING_SNAKE_CASE :List[Any] = 'model.safetensors.index.json' SCREAMING_SNAKE_CASE :str = 'config.json' SCREAMING_SNAKE_CASE :int = 'preprocessor_config.json' SCREAMING_SNAKE_CASE :Optional[Any] = FEATURE_EXTRACTOR_NAME SCREAMING_SNAKE_CASE :Optional[int] = 'generation_config.json' SCREAMING_SNAKE_CASE :List[str] = 'modelcard.json' SCREAMING_SNAKE_CASE :Optional[int] = '▁' SCREAMING_SNAKE_CASE :Optional[Any] = SENTENCEPIECE_UNDERLINE # Kept for backward compatibility SCREAMING_SNAKE_CASE :str = [ [[0, 1, 0, 1], [1, 0, 0, 1]] ] * 2 # Needs to have 0s and 1s only since XLM uses it for langs too. SCREAMING_SNAKE_CASE :Optional[Any] = [[7, 6, 0, 0, 1], [1, 2, 3, 0, 0], [0, 0, 0, 4, 5]] SCREAMING_SNAKE_CASE :List[Any] = [[1, 1, 1, 1, 1], [1, 1, 1, 0, 0], [0, 0, 0, 1, 1]] def UpperCAmelCase ( a_ ) -> Dict: """simple docstring""" if version.parse(a_ ) < version.parse(a_ ): if "dev" in min_version: __A = ( "This example requires a source install from HuggingFace Transformers (see " "`https://huggingface.co/docs/transformers/installation#install-from-source`)," ) else: __A = F'''This example requires a minimum version of {min_version},''' error_message += F''' but the version found is {__version__}.\n''' raise ImportError( error_message + "Check out https://github.com/huggingface/transformers/tree/main/examples#important-note for the examples corresponding to other " "versions of HuggingFace Transformers." )
15
import os from pathlib import Path from unittest.mock import patch import pytest import zstandard as zstd from datasets.download.download_config import DownloadConfig from datasets.utils.file_utils import ( OfflineModeIsEnabled, cached_path, fsspec_get, fsspec_head, ftp_get, ftp_head, get_from_cache, http_get, http_head, ) lowerCAmelCase__ = """\ Text data. Second line of data.""" lowerCAmelCase__ = """file""" @pytest.fixture(scope="session" ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: List[Any] ) -> Optional[int]: '''simple docstring''' A__ = tmp_path_factory.mktemp("data" ) / (FILE_PATH + ".zstd") A__ = bytes(SCREAMING_SNAKE_CASE_ , "utf-8" ) with zstd.open(SCREAMING_SNAKE_CASE_ , "wb" ) as f: f.write(SCREAMING_SNAKE_CASE_ ) return path @pytest.fixture def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: Any ) -> List[str]: '''simple docstring''' with open(os.path.join(tmpfs.local_root_dir , SCREAMING_SNAKE_CASE_ ) , "w" ) as f: f.write(SCREAMING_SNAKE_CASE_ ) return FILE_PATH @pytest.mark.parametrize("compression_format" , ["gzip", "xz", "zstd"] ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: List[str] , SCREAMING_SNAKE_CASE_: Any , SCREAMING_SNAKE_CASE_: Optional[int] , SCREAMING_SNAKE_CASE_: Any , SCREAMING_SNAKE_CASE_: Optional[Any] , SCREAMING_SNAKE_CASE_: int ) -> Any: '''simple docstring''' A__ = {"gzip": gz_file, "xz": xz_file, "zstd": zstd_path} A__ = input_paths[compression_format] A__ = tmp_path / "cache" A__ = DownloadConfig(cache_dir=SCREAMING_SNAKE_CASE_ , extract_compressed_file=SCREAMING_SNAKE_CASE_ ) A__ = cached_path(SCREAMING_SNAKE_CASE_ , download_config=SCREAMING_SNAKE_CASE_ ) with open(SCREAMING_SNAKE_CASE_ ) as f: A__ = f.read() with open(SCREAMING_SNAKE_CASE_ ) as f: A__ = f.read() assert extracted_file_content == expected_file_content @pytest.mark.parametrize("default_extracted" , [True, False] ) @pytest.mark.parametrize("default_cache_dir" , [True, False] ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: List[str] , SCREAMING_SNAKE_CASE_: List[Any] , SCREAMING_SNAKE_CASE_: Optional[int] , SCREAMING_SNAKE_CASE_: Tuple , SCREAMING_SNAKE_CASE_: str ) -> Dict: '''simple docstring''' A__ = "custom_cache" A__ = "custom_extracted_dir" A__ = tmp_path / "custom_extracted_path" if default_extracted: A__ = ("downloads" if default_cache_dir else custom_cache_dir, "extracted") else: monkeypatch.setattr("datasets.config.EXTRACTED_DATASETS_DIR" , SCREAMING_SNAKE_CASE_ ) monkeypatch.setattr("datasets.config.EXTRACTED_DATASETS_PATH" , str(SCREAMING_SNAKE_CASE_ ) ) A__ = custom_extracted_path.parts[-2:] if default_cache_dir else (custom_cache_dir, custom_extracted_dir) A__ = xz_file A__ = ( DownloadConfig(extract_compressed_file=SCREAMING_SNAKE_CASE_ ) if default_cache_dir else DownloadConfig(cache_dir=tmp_path / custom_cache_dir , extract_compressed_file=SCREAMING_SNAKE_CASE_ ) ) A__ = cached_path(SCREAMING_SNAKE_CASE_ , download_config=SCREAMING_SNAKE_CASE_ ) assert Path(SCREAMING_SNAKE_CASE_ ).parent.parts[-2:] == expected def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: List[str] ) -> Optional[int]: '''simple docstring''' A__ = str(Path(SCREAMING_SNAKE_CASE_ ).resolve() ) assert cached_path(SCREAMING_SNAKE_CASE_ ) == text_file # relative path A__ = str(Path(SCREAMING_SNAKE_CASE_ ).resolve().relative_to(Path(os.getcwd() ) ) ) assert cached_path(SCREAMING_SNAKE_CASE_ ) == text_file def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: Dict ) -> List[str]: '''simple docstring''' A__ = str(tmp_path.resolve() / "__missing_file__.txt" ) with pytest.raises(SCREAMING_SNAKE_CASE_ ): cached_path(SCREAMING_SNAKE_CASE_ ) # relative path A__ = "./__missing_file__.txt" with pytest.raises(SCREAMING_SNAKE_CASE_ ): cached_path(SCREAMING_SNAKE_CASE_ ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: str ) -> Union[str, Any]: '''simple docstring''' A__ = get_from_cache(F'tmp://{tmpfs_file}' ) with open(SCREAMING_SNAKE_CASE_ ) as f: A__ = f.read() assert output_file_content == FILE_CONTENT @patch("datasets.config.HF_DATASETS_OFFLINE" , SCREAMING_SNAKE_CASE_ ) def lowerCAmelCase__ ( ) -> List[Any]: '''simple docstring''' with pytest.raises(SCREAMING_SNAKE_CASE_ ): cached_path("https://huggingface.co" ) @patch("datasets.config.HF_DATASETS_OFFLINE" , SCREAMING_SNAKE_CASE_ ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: List[str] ) -> int: '''simple docstring''' A__ = tmp_path_factory.mktemp("data" ) / "file.html" with pytest.raises(SCREAMING_SNAKE_CASE_ ): http_get("https://huggingface.co" , temp_file=SCREAMING_SNAKE_CASE_ ) with pytest.raises(SCREAMING_SNAKE_CASE_ ): http_head("https://huggingface.co" ) @patch("datasets.config.HF_DATASETS_OFFLINE" , SCREAMING_SNAKE_CASE_ ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: Dict ) -> List[Any]: '''simple docstring''' A__ = tmp_path_factory.mktemp("data" ) / "file.html" with pytest.raises(SCREAMING_SNAKE_CASE_ ): ftp_get("ftp://huggingface.co" , temp_file=SCREAMING_SNAKE_CASE_ ) with pytest.raises(SCREAMING_SNAKE_CASE_ ): ftp_head("ftp://huggingface.co" ) @patch("datasets.config.HF_DATASETS_OFFLINE" , SCREAMING_SNAKE_CASE_ ) def lowerCAmelCase__ ( SCREAMING_SNAKE_CASE_: Union[str, Any] ) -> str: '''simple docstring''' A__ = tmp_path_factory.mktemp("data" ) / "file.html" with pytest.raises(SCREAMING_SNAKE_CASE_ ): fsspec_get("s3://huggingface.co" , temp_file=SCREAMING_SNAKE_CASE_ ) with pytest.raises(SCREAMING_SNAKE_CASE_ ): fsspec_head("s3://huggingface.co" )
68
0
"""simple docstring""" import sys from collections.abc import Mapping from typing import TYPE_CHECKING, Dict, Optional import numpy as np import pyarrow as pa from .. import config from ..utils.logging import get_logger from ..utils.py_utils import map_nested from .formatting import TensorFormatter if TYPE_CHECKING: import jax import jaxlib __snake_case = get_logger() __snake_case = None class __lowerCamelCase ( TensorFormatter[Mapping, 'jax.Array', Mapping] ): '''simple docstring''' def __init__( self , __UpperCAmelCase=None , __UpperCAmelCase=None , **__UpperCAmelCase ) -> int: super().__init__(features=lowerCAmelCase__ ) import jax from jaxlib.xla_client import Device if isinstance(lowerCAmelCase__ , lowerCAmelCase__ ): raise ValueError( F'Expected {device} to be a `str` not {type(lowerCAmelCase__ )}, as `jaxlib.xla_extension.Device` ' '''is not serializable neither with `pickle` nor with `dill`. Instead you can surround ''' '''the device with `str()` to get its string identifier that will be internally mapped ''' '''to the actual `jaxlib.xla_extension.Device`.''' ) _a = device if isinstance(lowerCAmelCase__ , lowerCAmelCase__ ) else str(jax.devices()[0] ) # using global variable since `jaxlib.xla_extension.Device` is not serializable neither # with `pickle` nor with `dill`, so we need to use a global variable instead global DEVICE_MAPPING if DEVICE_MAPPING is None: _a = self._map_devices_to_str() if self.device not in list(DEVICE_MAPPING.keys() ): logger.warning( F'Device with string identifier {self.device} not listed among the available ' F'devices: {list(DEVICE_MAPPING.keys() )}, so falling back to the default ' F'device: {str(jax.devices()[0] )}.' ) _a = str(jax.devices()[0] ) _a = jnp_array_kwargs @staticmethod def _UpperCAmelCase ( ) -> Dict[str, "jaxlib.xla_extension.Device"]: import jax return {str(lowerCAmelCase__ ): device for device in jax.devices()} def _UpperCAmelCase ( self , __UpperCAmelCase ) -> Tuple: import jax import jax.numpy as jnp if isinstance(lowerCAmelCase__ , lowerCAmelCase__ ) and column: if all( isinstance(lowerCAmelCase__ , jax.Array ) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column ): return jnp.stack(lowerCAmelCase__ , axis=0 ) return column def _UpperCAmelCase ( self , __UpperCAmelCase ) -> Optional[Any]: import jax import jax.numpy as jnp if isinstance(lowerCAmelCase__ , (str, bytes, type(lowerCAmelCase__ )) ): return value elif isinstance(lowerCAmelCase__ , (np.character, np.ndarray) ) and np.issubdtype(value.dtype , np.character ): return value.tolist() _a = {} if isinstance(lowerCAmelCase__ , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.integer ): # the default int precision depends on the jax config # see https://jax.readthedocs.io/en/latest/notebooks/Common_Gotchas_in_JAX.html#double-64bit-precision if jax.config.jax_enable_xaa: _a = {"dtype": jnp.intaa} else: _a = {"dtype": jnp.intaa} elif isinstance(lowerCAmelCase__ , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.floating ): _a = {"dtype": jnp.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(lowerCAmelCase__ , PIL.Image.Image ): _a = np.asarray(lowerCAmelCase__ ) # using global variable since `jaxlib.xla_extension.Device` is not serializable neither # with `pickle` nor with `dill`, so we need to use a global variable instead global DEVICE_MAPPING if DEVICE_MAPPING is None: _a = self._map_devices_to_str() with jax.default_device(DEVICE_MAPPING[self.device] ): # calling jnp.array on a np.ndarray does copy the data # see https://github.com/google/jax/issues/4486 return jnp.array(lowerCAmelCase__ , **{**default_dtype, **self.jnp_array_kwargs} ) def _UpperCAmelCase ( self , __UpperCAmelCase ) -> Union[str, Any]: import jax # support for torch, tf, jax etc. if config.TORCH_AVAILABLE and "torch" in sys.modules: import torch if isinstance(lowerCAmelCase__ , torch.Tensor ): return self._tensorize(data_struct.detach().cpu().numpy()[()] ) if hasattr(lowerCAmelCase__ , '''__array__''' ) and not isinstance(lowerCAmelCase__ , jax.Array ): _a = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(lowerCAmelCase__ , np.ndarray ): if data_struct.dtype == object: # jax arrays cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(lowerCAmelCase__ ) for substruct in data_struct] ) elif isinstance(lowerCAmelCase__ , (list, tuple) ): return self._consolidate([self.recursive_tensorize(lowerCAmelCase__ ) for substruct in data_struct] ) return self._tensorize(lowerCAmelCase__ ) def _UpperCAmelCase ( self , __UpperCAmelCase ) -> Dict: return map_nested(self._recursive_tensorize , lowerCAmelCase__ , map_list=lowerCAmelCase__ ) def _UpperCAmelCase ( self , __UpperCAmelCase ) -> Mapping: _a = self.numpy_arrow_extractor().extract_row(lowerCAmelCase__ ) _a = self.python_features_decoder.decode_row(lowerCAmelCase__ ) return self.recursive_tensorize(lowerCAmelCase__ ) def _UpperCAmelCase ( self , __UpperCAmelCase ) -> "jax.Array": _a = self.numpy_arrow_extractor().extract_column(lowerCAmelCase__ ) _a = self.python_features_decoder.decode_column(lowerCAmelCase__ , pa_table.column_names[0] ) _a = self.recursive_tensorize(lowerCAmelCase__ ) _a = self._consolidate(lowerCAmelCase__ ) return column def _UpperCAmelCase ( self , __UpperCAmelCase ) -> Mapping: _a = self.numpy_arrow_extractor().extract_batch(lowerCAmelCase__ ) _a = self.python_features_decoder.decode_batch(lowerCAmelCase__ ) _a = self.recursive_tensorize(lowerCAmelCase__ ) for column_name in batch: _a = self._consolidate(batch[column_name] ) return batch
363
"""simple docstring""" import argparse import torch from safetensors.torch import load_file from diffusers import StableDiffusionPipeline def A_ ( _lowerCAmelCase : Union[str, Any], _lowerCAmelCase : Tuple, _lowerCAmelCase : Optional[Any], _lowerCAmelCase : Optional[Any], _lowerCAmelCase : Optional[int] ): """simple docstring""" _a = StableDiffusionPipeline.from_pretrained(_lowerCAmelCase, torch_dtype=torch.floataa ) # load LoRA weight from .safetensors _a = load_file(_lowerCAmelCase ) _a = [] # directly update weight in diffusers model for key in state_dict: # it is suggested to print out the key, it usually will be something like below # "lora_te_text_model_encoder_layers_0_self_attn_k_proj.lora_down.weight" # as we have set the alpha beforehand, so just skip if ".alpha" in key or key in visited: continue if "text" in key: _a = key.split('''.''' )[0].split(LORA_PREFIX_TEXT_ENCODER + '''_''' )[-1].split('''_''' ) _a = pipeline.text_encoder else: _a = key.split('''.''' )[0].split(LORA_PREFIX_UNET + '''_''' )[-1].split('''_''' ) _a = pipeline.unet # find the target layer _a = layer_infos.pop(0 ) while len(_lowerCAmelCase ) > -1: try: _a = curr_layer.__getattr__(_lowerCAmelCase ) if len(_lowerCAmelCase ) > 0: _a = layer_infos.pop(0 ) elif len(_lowerCAmelCase ) == 0: break except Exception: if len(_lowerCAmelCase ) > 0: temp_name += "_" + layer_infos.pop(0 ) else: _a = layer_infos.pop(0 ) _a = [] if "lora_down" in key: pair_keys.append(key.replace('''lora_down''', '''lora_up''' ) ) pair_keys.append(_lowerCAmelCase ) else: pair_keys.append(_lowerCAmelCase ) pair_keys.append(key.replace('''lora_up''', '''lora_down''' ) ) # update weight if len(state_dict[pair_keys[0]].shape ) == 4: _a = state_dict[pair_keys[0]].squeeze(3 ).squeeze(2 ).to(torch.floataa ) _a = state_dict[pair_keys[1]].squeeze(3 ).squeeze(2 ).to(torch.floataa ) curr_layer.weight.data += alpha * torch.mm(_lowerCAmelCase, _lowerCAmelCase ).unsqueeze(2 ).unsqueeze(3 ) else: _a = state_dict[pair_keys[0]].to(torch.floataa ) _a = state_dict[pair_keys[1]].to(torch.floataa ) curr_layer.weight.data += alpha * torch.mm(_lowerCAmelCase, _lowerCAmelCase ) # update visited list for item in pair_keys: visited.append(_lowerCAmelCase ) return pipeline if __name__ == "__main__": __snake_case = argparse.ArgumentParser() parser.add_argument( '''--base_model_path''', default=None, type=str, required=True, help='''Path to the base model in diffusers format.''' ) parser.add_argument( '''--checkpoint_path''', default=None, type=str, required=True, help='''Path to the checkpoint to convert.''' ) parser.add_argument('''--dump_path''', default=None, type=str, required=True, help='''Path to the output model.''') parser.add_argument( '''--lora_prefix_unet''', default='''lora_unet''', type=str, help='''The prefix of UNet weight in safetensors''' ) parser.add_argument( '''--lora_prefix_text_encoder''', default='''lora_te''', type=str, help='''The prefix of text encoder weight in safetensors''', ) parser.add_argument('''--alpha''', default=0.75, type=float, help='''The merging ratio in W = W0 + alpha * deltaW''') parser.add_argument( '''--to_safetensors''', action='''store_true''', help='''Whether to store pipeline in safetensors format or not.''' ) parser.add_argument('''--device''', type=str, help='''Device to use (e.g. cpu, cuda:0, cuda:1, etc.)''') __snake_case = parser.parse_args() __snake_case = args.base_model_path __snake_case = args.checkpoint_path __snake_case = args.dump_path __snake_case = args.lora_prefix_unet __snake_case = args.lora_prefix_text_encoder __snake_case = args.alpha __snake_case = convert(base_model_path, checkpoint_path, lora_prefix_unet, lora_prefix_text_encoder, alpha) __snake_case = pipe.to(args.device) pipe.save_pretrained(args.dump_path, safe_serialization=args.to_safetensors)
153
0
"""simple docstring""" from typing import Dict, List, Optional, Union import numpy as np from transformers.utils import is_vision_available from transformers.utils.generic import TensorType from ...image_processing_utils import BaseImageProcessor, BatchFeature, get_size_dict from ...image_transforms import ( center_crop, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_STANDARD_MEAN, IMAGENET_STANDARD_STD, ChannelDimension, ImageInput, PILImageResampling, is_valid_image, to_numpy_array, valid_images, ) from ...utils import logging if is_vision_available(): import PIL A : Union[str, Any] = logging.get_logger(__name__) def _lowerCamelCase ( _UpperCamelCase ): '''simple docstring''' if isinstance(_UpperCamelCase , (list, tuple) ) and isinstance(videos[0] , (list, tuple) ) and is_valid_image(videos[0][0] ): return videos elif isinstance(_UpperCamelCase , (list, tuple) ) and is_valid_image(videos[0] ): return [videos] elif is_valid_image(_UpperCamelCase ): return [[videos]] raise ValueError(f"Could not make batched video from {videos}" ) class _UpperCamelCase ( lowerCAmelCase__ ): '''simple docstring''' __UpperCAmelCase : List[str] =["""pixel_values"""] def __init__( self , __a = True , __a = None , __a = PILImageResampling.BILINEAR , __a = True , __a = None , __a = True , __a = 1 / 2_55 , __a = True , __a = True , __a = None , __a = None , **__a , ): super().__init__(**__a ) __lowerCAmelCase = size if size is not None else {"shortest_edge": 2_56} __lowerCAmelCase = get_size_dict(__a , default_to_square=__a ) __lowerCAmelCase = crop_size if crop_size is not None else {"height": 2_24, "width": 2_24} __lowerCAmelCase = get_size_dict(__a , param_name="crop_size" ) __lowerCAmelCase = do_resize __lowerCAmelCase = size __lowerCAmelCase = do_center_crop __lowerCAmelCase = crop_size __lowerCAmelCase = resample __lowerCAmelCase = do_rescale __lowerCAmelCase = rescale_factor __lowerCAmelCase = offset __lowerCAmelCase = do_normalize __lowerCAmelCase = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN __lowerCAmelCase = image_std if image_std is not None else IMAGENET_STANDARD_STD def snake_case ( self , __a , __a , __a = PILImageResampling.BILINEAR , __a = None , **__a , ): __lowerCAmelCase = get_size_dict(__a , default_to_square=__a ) if "shortest_edge" in size: __lowerCAmelCase = get_resize_output_image_size(__a , size["shortest_edge"] , default_to_square=__a ) elif "height" in size and "width" in size: __lowerCAmelCase = (size["height"], size["width"]) else: raise ValueError(f"Size must have 'height' and 'width' or 'shortest_edge' as keys. Got {size.keys()}" ) return resize(__a , size=__a , resample=__a , data_format=__a , **__a ) def snake_case ( self , __a , __a , __a = None , **__a , ): __lowerCAmelCase = get_size_dict(__a ) if "height" not in size or "width" not in size: raise ValueError(f"Size must have 'height' and 'width' as keys. Got {size.keys()}" ) return center_crop(__a , size=(size["height"], size["width"]) , data_format=__a , **__a ) def snake_case ( self , __a , __a , __a = True , __a = None , **__a , ): __lowerCAmelCase = image.astype(np.floataa ) if offset: __lowerCAmelCase = image - (scale / 2) return rescale(__a , scale=__a , data_format=__a , **__a ) def snake_case ( self , __a , __a , __a , __a = None , **__a , ): return normalize(__a , mean=__a , std=__a , data_format=__a , **__a ) def snake_case ( self , __a , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = ChannelDimension.FIRST , ): if do_resize and size is None or resample is None: raise ValueError("Size and resample must be specified if do_resize is True." ) if do_center_crop and crop_size is None: raise ValueError("Crop size must be specified if do_center_crop is True." ) if do_rescale and rescale_factor is None: raise ValueError("Rescale factor must be specified if do_rescale is True." ) if do_normalize and (image_mean is None or image_std is None): raise ValueError("Image mean and std must be specified if do_normalize is True." ) if offset and not do_rescale: raise ValueError("For offset, do_rescale must also be set to True." ) # All transformations expect numpy arrays. __lowerCAmelCase = to_numpy_array(__a ) if do_resize: __lowerCAmelCase = self.resize(image=__a , size=__a , resample=__a ) if do_center_crop: __lowerCAmelCase = self.center_crop(__a , size=__a ) if do_rescale: __lowerCAmelCase = self.rescale(image=__a , scale=__a , offset=__a ) if do_normalize: __lowerCAmelCase = self.normalize(image=__a , mean=__a , std=__a ) __lowerCAmelCase = to_channel_dimension_format(__a , __a ) return image def snake_case ( self , __a , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = ChannelDimension.FIRST , **__a , ): __lowerCAmelCase = do_resize if do_resize is not None else self.do_resize __lowerCAmelCase = resample if resample is not None else self.resample __lowerCAmelCase = do_center_crop if do_center_crop is not None else self.do_center_crop __lowerCAmelCase = do_rescale if do_rescale is not None else self.do_rescale __lowerCAmelCase = rescale_factor if rescale_factor is not None else self.rescale_factor __lowerCAmelCase = offset if offset is not None else self.offset __lowerCAmelCase = do_normalize if do_normalize is not None else self.do_normalize __lowerCAmelCase = image_mean if image_mean is not None else self.image_mean __lowerCAmelCase = image_std if image_std is not None else self.image_std __lowerCAmelCase = size if size is not None else self.size __lowerCAmelCase = get_size_dict(__a , default_to_square=__a ) __lowerCAmelCase = crop_size if crop_size is not None else self.crop_size __lowerCAmelCase = get_size_dict(__a , param_name="crop_size" ) if not valid_images(__a ): raise ValueError( "Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, " "torch.Tensor, tf.Tensor or jax.ndarray." ) __lowerCAmelCase = make_batched(__a ) __lowerCAmelCase = [ [ self._preprocess_image( image=__a , do_resize=__a , size=__a , resample=__a , do_center_crop=__a , crop_size=__a , do_rescale=__a , rescale_factor=__a , offset=__a , do_normalize=__a , image_mean=__a , image_std=__a , data_format=__a , ) for img in video ] for video in videos ] __lowerCAmelCase = {"pixel_values": videos} return BatchFeature(data=__a , tensor_type=__a )
57
from collections import OrderedDict from typing import Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging UpperCAmelCase_ = logging.get_logger(__name__) UpperCAmelCase_ = { 'google/mobilenet_v2_1.4_224': 'https://huggingface.co/google/mobilenet_v2_1.4_224/resolve/main/config.json', 'google/mobilenet_v2_1.0_224': 'https://huggingface.co/google/mobilenet_v2_1.0_224/resolve/main/config.json', 'google/mobilenet_v2_0.75_160': 'https://huggingface.co/google/mobilenet_v2_0.75_160/resolve/main/config.json', 'google/mobilenet_v2_0.35_96': 'https://huggingface.co/google/mobilenet_v2_0.35_96/resolve/main/config.json', # See all MobileNetV2 models at https://huggingface.co/models?filter=mobilenet_v2 } class lowercase__ ( __lowerCamelCase ): '''simple docstring''' a : List[str] = "mobilenet_v2" def __init__( self, __magic_name__=3, __magic_name__=224, __magic_name__=1.0, __magic_name__=8, __magic_name__=8, __magic_name__=6, __magic_name__=32, __magic_name__=True, __magic_name__=True, __magic_name__="relu6", __magic_name__=True, __magic_name__=0.8, __magic_name__=0.02, __magic_name__=0.001, __magic_name__=255, **__magic_name__, ) -> List[Any]: """simple docstring""" super().__init__(**__magic_name__ ) if depth_multiplier <= 0: raise ValueError('''depth_multiplier must be greater than zero.''' ) UpperCamelCase__ : Union[str, Any] = num_channels UpperCamelCase__ : int = image_size UpperCamelCase__ : int = depth_multiplier UpperCamelCase__ : Tuple = depth_divisible_by UpperCamelCase__ : List[str] = min_depth UpperCamelCase__ : Optional[int] = expand_ratio UpperCamelCase__ : Optional[int] = output_stride UpperCamelCase__ : Tuple = first_layer_is_expansion UpperCamelCase__ : Union[str, Any] = finegrained_output UpperCamelCase__ : str = hidden_act UpperCamelCase__ : Optional[Any] = tf_padding UpperCamelCase__ : Optional[int] = classifier_dropout_prob UpperCamelCase__ : int = initializer_range UpperCamelCase__ : Union[str, Any] = layer_norm_eps UpperCamelCase__ : Tuple = semantic_loss_ignore_index class lowercase__ ( __lowerCamelCase ): '''simple docstring''' a : Union[str, Any] = version.parse("1.11" ) @property def UpperCamelCase__ ( self ) -> Mapping[str, Mapping[int, str]]: """simple docstring""" return OrderedDict([('''pixel_values''', {0: '''batch'''})] ) @property def UpperCamelCase__ ( self ) -> Mapping[str, Mapping[int, str]]: """simple docstring""" if self.task == "image-classification": return OrderedDict([('''logits''', {0: '''batch'''})] ) else: return OrderedDict([('''last_hidden_state''', {0: '''batch'''}), ('''pooler_output''', {0: '''batch'''})] ) @property def UpperCamelCase__ ( self ) -> float: """simple docstring""" return 1E-4
201
0
'''simple docstring''' from typing import Dict, Iterable, Optional, Union import numpy as np from ...image_processing_utils import BaseImageProcessor, BatchFeature, get_size_dict from ...image_transforms import normalize, rescale, resize, to_channel_dimension_format, to_pil_image from ...image_utils import ( IMAGENET_STANDARD_MEAN, IMAGENET_STANDARD_STD, ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_pytesseract_available, is_vision_available, logging, requires_backends if is_vision_available(): import PIL # soft dependency if is_pytesseract_available(): import pytesseract a_ = logging.get_logger(__name__) def _a( UpperCamelCase__ : Union[str, Any], UpperCamelCase__ : str, UpperCamelCase__ : Union[str, Any] ): '''simple docstring''' return [ int(1_0_0_0 * (box[0] / width) ), int(1_0_0_0 * (box[1] / height) ), int(1_0_0_0 * (box[2] / width) ), int(1_0_0_0 * (box[3] / height) ), ] def _a( UpperCamelCase__ : np.ndarray, UpperCamelCase__ : Optional[str], UpperCamelCase__ : Optional[str] ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : str =to_pil_image(__a ) SCREAMING_SNAKE_CASE__ : Optional[Any] =pil_image.size SCREAMING_SNAKE_CASE__ : Tuple =pytesseract.image_to_data(__a, lang=__a, output_type='''dict''', config=__a ) SCREAMING_SNAKE_CASE__ : List[str] =data['''text'''], data['''left'''], data['''top'''], data['''width'''], data['''height'''] # filter empty words and corresponding coordinates SCREAMING_SNAKE_CASE__ : Dict =[idx for idx, word in enumerate(__a ) if not word.strip()] SCREAMING_SNAKE_CASE__ : str =[word for idx, word in enumerate(__a ) if idx not in irrelevant_indices] SCREAMING_SNAKE_CASE__ : List[str] =[coord for idx, coord in enumerate(__a ) if idx not in irrelevant_indices] SCREAMING_SNAKE_CASE__ : Union[str, Any] =[coord for idx, coord in enumerate(__a ) if idx not in irrelevant_indices] SCREAMING_SNAKE_CASE__ : str =[coord for idx, coord in enumerate(__a ) if idx not in irrelevant_indices] SCREAMING_SNAKE_CASE__ : Union[str, Any] =[coord for idx, coord in enumerate(__a ) if idx not in irrelevant_indices] # turn coordinates into (left, top, left+width, top+height) format SCREAMING_SNAKE_CASE__ : int =[] for x, y, w, h in zip(__a, __a, __a, __a ): SCREAMING_SNAKE_CASE__ : List[str] =[x, y, x + w, y + h] actual_boxes.append(__a ) # finally, normalize the bounding boxes SCREAMING_SNAKE_CASE__ : Dict =[] for box in actual_boxes: normalized_boxes.append(normalize_box(__a, __a, __a ) ) assert len(__a ) == len(__a ), "Not as many words as there are bounding boxes" return words, normalized_boxes class __SCREAMING_SNAKE_CASE ( __lowercase ): snake_case_ = ["pixel_values"] def __init__( self : int , __lowercase : str = True , __lowercase : Dict = None , __lowercase : Optional[Any] = PILImageResampling.BILINEAR , __lowercase : Any = True , __lowercase : Dict = 1 / 2_55 , __lowercase : int = True , __lowercase : List[Any] = None , __lowercase : Union[str, Any] = None , __lowercase : int = True , __lowercase : Optional[Any] = None , __lowercase : List[Any] = "" , **__lowercase : Optional[int] , ) -> None: super().__init__(**_a ) SCREAMING_SNAKE_CASE__ : List[str] =size if size is not None else {'''height''': 2_24, '''width''': 2_24} SCREAMING_SNAKE_CASE__ : Union[str, Any] =get_size_dict(_a ) SCREAMING_SNAKE_CASE__ : int =do_resize SCREAMING_SNAKE_CASE__ : Optional[int] =size SCREAMING_SNAKE_CASE__ : str =resample SCREAMING_SNAKE_CASE__ : str =do_rescale SCREAMING_SNAKE_CASE__ : Any =rescale_value SCREAMING_SNAKE_CASE__ : Optional[Any] =do_normalize SCREAMING_SNAKE_CASE__ : int =image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN SCREAMING_SNAKE_CASE__ : List[str] =image_std if image_std is not None else IMAGENET_STANDARD_STD SCREAMING_SNAKE_CASE__ : List[Any] =apply_ocr SCREAMING_SNAKE_CASE__ : Optional[int] =ocr_lang SCREAMING_SNAKE_CASE__ : Tuple =tesseract_config def __magic_name__ ( self : Any , __lowercase : str , __lowercase : Dict , __lowercase : Dict = PILImageResampling.BILINEAR , __lowercase : int = None , **__lowercase : Any , ) -> np.ndarray: SCREAMING_SNAKE_CASE__ : Any =get_size_dict(_a ) if "height" not in size or "width" not in size: raise ValueError(F"The size dictionary must contain the keys 'height' and 'width'. Got {size.keys()}" ) SCREAMING_SNAKE_CASE__ : Optional[int] =(size['''height'''], size['''width''']) return resize(_a , size=_a , resample=_a , data_format=_a , **_a ) def __magic_name__ ( self : List[str] , __lowercase : str , __lowercase : int , __lowercase : str = None , **__lowercase : Any , ) -> np.ndarray: return rescale(_a , scale=_a , data_format=_a , **_a ) def __magic_name__ ( self : Optional[int] , __lowercase : int , __lowercase : int , __lowercase : Union[str, Any] , __lowercase : Optional[Any] = None , **__lowercase : List[str] , ) -> np.ndarray: return normalize(_a , mean=_a , std=_a , data_format=_a , **_a ) def __magic_name__ ( self : Dict , __lowercase : Dict , __lowercase : int = None , __lowercase : Optional[int] = None , __lowercase : Dict=None , __lowercase : int = None , __lowercase : Any = None , __lowercase : Optional[Any] = None , __lowercase : List[Any] = None , __lowercase : str = None , __lowercase : List[str] = None , __lowercase : Tuple = None , __lowercase : int = None , __lowercase : Tuple = None , __lowercase : Any = ChannelDimension.FIRST , **__lowercase : List[str] , ) -> PIL.Image.Image: SCREAMING_SNAKE_CASE__ : Optional[int] =do_resize if do_resize is not None else self.do_resize SCREAMING_SNAKE_CASE__ : Union[str, Any] =size if size is not None else self.size SCREAMING_SNAKE_CASE__ : Any =get_size_dict(_a ) SCREAMING_SNAKE_CASE__ : List[str] =resample if resample is not None else self.resample SCREAMING_SNAKE_CASE__ : int =do_rescale if do_rescale is not None else self.do_rescale SCREAMING_SNAKE_CASE__ : Union[str, Any] =rescale_factor if rescale_factor is not None else self.rescale_factor SCREAMING_SNAKE_CASE__ : int =do_normalize if do_normalize is not None else self.do_normalize SCREAMING_SNAKE_CASE__ : str =image_mean if image_mean is not None else self.image_mean SCREAMING_SNAKE_CASE__ : Tuple =image_std if image_std is not None else self.image_std SCREAMING_SNAKE_CASE__ : Any =apply_ocr if apply_ocr is not None else self.apply_ocr SCREAMING_SNAKE_CASE__ : int =ocr_lang if ocr_lang is not None else self.ocr_lang SCREAMING_SNAKE_CASE__ : Optional[int] =tesseract_config if tesseract_config is not None else self.tesseract_config SCREAMING_SNAKE_CASE__ : List[Any] =make_list_of_images(_a ) if not valid_images(_a ): raise ValueError( '''Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ''' '''torch.Tensor, tf.Tensor or jax.ndarray.''' ) if do_resize and size is None: raise ValueError('''Size must be specified if do_resize is True.''' ) if do_rescale and rescale_factor is None: raise ValueError('''Rescale factor must be specified if do_rescale is True.''' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('''If do_normalize is True, image_mean and image_std must be specified.''' ) # All transformations expect numpy arrays. SCREAMING_SNAKE_CASE__ : Any =[to_numpy_array(_a ) for image in images] # Tesseract OCR to get words + normalized bounding boxes if apply_ocr: requires_backends(self , '''pytesseract''' ) SCREAMING_SNAKE_CASE__ : str =[] SCREAMING_SNAKE_CASE__ : str =[] for image in images: SCREAMING_SNAKE_CASE__ : Union[str, Any] =apply_tesseract(_a , _a , _a ) words_batch.append(_a ) boxes_batch.append(_a ) if do_resize: SCREAMING_SNAKE_CASE__ : List[str] =[self.resize(image=_a , size=_a , resample=_a ) for image in images] if do_rescale: SCREAMING_SNAKE_CASE__ : Optional[Any] =[self.rescale(image=_a , scale=_a ) for image in images] if do_normalize: SCREAMING_SNAKE_CASE__ : List[Any] =[self.normalize(image=_a , mean=_a , std=_a ) for image in images] SCREAMING_SNAKE_CASE__ : List[str] =[to_channel_dimension_format(_a , _a ) for image in images] SCREAMING_SNAKE_CASE__ : List[str] =BatchFeature(data={'''pixel_values''': images} , tensor_type=_a ) if apply_ocr: SCREAMING_SNAKE_CASE__ : Optional[int] =words_batch SCREAMING_SNAKE_CASE__ : List[Any] =boxes_batch return data
365
'''simple docstring''' from __future__ import annotations from random import random from typing import Generic, TypeVar a_ = TypeVar('KT') a_ = TypeVar('VT') class __SCREAMING_SNAKE_CASE ( Generic[KT, VT] ): def __init__( self : Dict , __lowercase : KT | str = "root" , __lowercase : VT | None = None ) -> Dict: SCREAMING_SNAKE_CASE__ : Any =key SCREAMING_SNAKE_CASE__ : Optional[int] =value SCREAMING_SNAKE_CASE__ : list[Node[KT, VT]] =[] def __repr__( self : Any ) -> str: return F"Node({self.key}: {self.value})" @property def __magic_name__ ( self : List[Any] ) -> int: return len(self.forward ) class __SCREAMING_SNAKE_CASE ( Generic[KT, VT] ): def __init__( self : int , __lowercase : float = 0.5 , __lowercase : int = 16 ) -> int: SCREAMING_SNAKE_CASE__ : Node[KT, VT] =Node[KT, VT]() SCREAMING_SNAKE_CASE__ : Any =0 SCREAMING_SNAKE_CASE__ : Dict =p SCREAMING_SNAKE_CASE__ : Any =max_level def __str__( self : Optional[Any] ) -> str: SCREAMING_SNAKE_CASE__ : Union[str, Any] =list(self ) if len(__lowercase ) == 0: return F"SkipList(level={self.level})" SCREAMING_SNAKE_CASE__ : List[str] =max((len(str(__lowercase ) ) for item in items) , default=4 ) SCREAMING_SNAKE_CASE__ : Any =max(__lowercase , 4 ) + 4 SCREAMING_SNAKE_CASE__ : Any =self.head SCREAMING_SNAKE_CASE__ : List[Any] =[] SCREAMING_SNAKE_CASE__ : Tuple =node.forward.copy() lines.append(F"[{node.key}]".ljust(__lowercase , '''-''' ) + '''* ''' * len(__lowercase ) ) lines.append(''' ''' * label_size + '''| ''' * len(__lowercase ) ) while len(node.forward ) != 0: SCREAMING_SNAKE_CASE__ : Optional[Any] =node.forward[0] lines.append( F"[{node.key}]".ljust(__lowercase , '''-''' ) + ''' '''.join(str(n.key ) if n.key == node.key else '''|''' for n in forwards ) ) lines.append(''' ''' * label_size + '''| ''' * len(__lowercase ) ) SCREAMING_SNAKE_CASE__ : Any =node.forward lines.append('''None'''.ljust(__lowercase ) + '''* ''' * len(__lowercase ) ) return F"SkipList(level={self.level})\n" + "\n".join(__lowercase ) def __iter__( self : Union[str, Any] ) -> Optional[int]: SCREAMING_SNAKE_CASE__ : List[str] =self.head while len(node.forward ) != 0: yield node.forward[0].key SCREAMING_SNAKE_CASE__ : List[Any] =node.forward[0] def __magic_name__ ( self : Any ) -> int: SCREAMING_SNAKE_CASE__ : Tuple =1 while random() < self.p and level < self.max_level: level += 1 return level def __magic_name__ ( self : str , __lowercase : List[str] ) -> tuple[Node[KT, VT] | None, list[Node[KT, VT]]]: SCREAMING_SNAKE_CASE__ : Optional[int] =[] SCREAMING_SNAKE_CASE__ : int =self.head for i in reversed(range(self.level ) ): # i < node.level - When node level is lesser than `i` decrement `i`. # node.forward[i].key < key - Jumping to node with key value higher # or equal to searched key would result # in skipping searched key. while i < node.level and node.forward[i].key < key: SCREAMING_SNAKE_CASE__ : str =node.forward[i] # Each leftmost node (relative to searched node) will potentially have to # be updated. update_vector.append(__lowercase ) update_vector.reverse() # Note that we were inserting values in reverse order. # len(node.forward) != 0 - If current node doesn't contain any further # references then searched key is not present. # node.forward[0].key == key - Next node key should be equal to search key # if key is present. if len(node.forward ) != 0 and node.forward[0].key == key: return node.forward[0], update_vector else: return None, update_vector def __magic_name__ ( self : Optional[int] , __lowercase : KT ) -> List[Any]: SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ : Dict =self._locate_node(__lowercase ) if node is not None: for i, update_node in enumerate(__lowercase ): # Remove or replace all references to removed node. if update_node.level > i and update_node.forward[i].key == key: if node.level > i: SCREAMING_SNAKE_CASE__ : List[str] =node.forward[i] else: SCREAMING_SNAKE_CASE__ : str =update_node.forward[:i] def __magic_name__ ( self : str , __lowercase : KT , __lowercase : VT ) -> Optional[Any]: SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ : str =self._locate_node(__lowercase ) if node is not None: SCREAMING_SNAKE_CASE__ : Dict =value else: SCREAMING_SNAKE_CASE__ : List[Any] =self.random_level() if level > self.level: # After level increase we have to add additional nodes to head. for _ in range(self.level - 1 , __lowercase ): update_vector.append(self.head ) SCREAMING_SNAKE_CASE__ : List[str] =level SCREAMING_SNAKE_CASE__ : List[str] =Node(__lowercase , __lowercase ) for i, update_node in enumerate(update_vector[:level] ): # Change references to pass through new node. if update_node.level > i: new_node.forward.append(update_node.forward[i] ) if update_node.level < i + 1: update_node.forward.append(__lowercase ) else: SCREAMING_SNAKE_CASE__ : int =new_node def __magic_name__ ( self : Tuple , __lowercase : VT ) -> VT | None: SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ : List[str] =self._locate_node(__lowercase ) if node is not None: return node.value return None def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : Union[str, Any] =SkipList() skip_list.insert('''Key1''', 3 ) skip_list.insert('''Key2''', 1_2 ) skip_list.insert('''Key3''', 4_1 ) skip_list.insert('''Key4''', -1_9 ) SCREAMING_SNAKE_CASE__ : Any =skip_list.head SCREAMING_SNAKE_CASE__ : Union[str, Any] ={} while node.level != 0: SCREAMING_SNAKE_CASE__ : Dict =node.forward[0] SCREAMING_SNAKE_CASE__ : Optional[Any] =node.value assert len(UpperCamelCase__ ) == 4 assert all_values["Key1"] == 3 assert all_values["Key2"] == 1_2 assert all_values["Key3"] == 4_1 assert all_values["Key4"] == -1_9 def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : Union[str, Any] =SkipList() skip_list.insert('''Key1''', 1_0 ) skip_list.insert('''Key1''', 1_2 ) skip_list.insert('''Key5''', 7 ) skip_list.insert('''Key7''', 1_0 ) skip_list.insert('''Key10''', 5 ) skip_list.insert('''Key7''', 7 ) skip_list.insert('''Key5''', 5 ) skip_list.insert('''Key10''', 1_0 ) SCREAMING_SNAKE_CASE__ : Optional[Any] =skip_list.head SCREAMING_SNAKE_CASE__ : List[Any] ={} while node.level != 0: SCREAMING_SNAKE_CASE__ : Union[str, Any] =node.forward[0] SCREAMING_SNAKE_CASE__ : List[Any] =node.value if len(UpperCamelCase__ ) != 4: print() assert len(UpperCamelCase__ ) == 4 assert all_values["Key1"] == 1_2 assert all_values["Key7"] == 7 assert all_values["Key5"] == 5 assert all_values["Key10"] == 1_0 def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : int =SkipList() assert skip_list.find('''Some key''' ) is None def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : int =SkipList() skip_list.insert('''Key2''', 2_0 ) assert skip_list.find('''Key2''' ) == 2_0 skip_list.insert('''Some Key''', 1_0 ) skip_list.insert('''Key2''', 8 ) skip_list.insert('''V''', 1_3 ) assert skip_list.find('''Y''' ) is None assert skip_list.find('''Key2''' ) == 8 assert skip_list.find('''Some Key''' ) == 1_0 assert skip_list.find('''V''' ) == 1_3 def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : List[str] =SkipList() skip_list.delete('''Some key''' ) assert len(skip_list.head.forward ) == 0 def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : str =SkipList() skip_list.insert('''Key1''', 1_2 ) skip_list.insert('''V''', 1_3 ) skip_list.insert('''X''', 1_4 ) skip_list.insert('''Key2''', 1_5 ) skip_list.delete('''V''' ) skip_list.delete('''Key2''' ) assert skip_list.find('''V''' ) is None assert skip_list.find('''Key2''' ) is None def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : Optional[int] =SkipList() skip_list.insert('''Key1''', 1_2 ) skip_list.insert('''V''', 1_3 ) skip_list.insert('''X''', 1_4 ) skip_list.insert('''Key2''', 1_5 ) skip_list.delete('''V''' ) assert skip_list.find('''V''' ) is None assert skip_list.find('''X''' ) == 1_4 assert skip_list.find('''Key1''' ) == 1_2 assert skip_list.find('''Key2''' ) == 1_5 skip_list.delete('''X''' ) assert skip_list.find('''V''' ) is None assert skip_list.find('''X''' ) is None assert skip_list.find('''Key1''' ) == 1_2 assert skip_list.find('''Key2''' ) == 1_5 skip_list.delete('''Key1''' ) assert skip_list.find('''V''' ) is None assert skip_list.find('''X''' ) is None assert skip_list.find('''Key1''' ) is None assert skip_list.find('''Key2''' ) == 1_5 skip_list.delete('''Key2''' ) assert skip_list.find('''V''' ) is None assert skip_list.find('''X''' ) is None assert skip_list.find('''Key1''' ) is None assert skip_list.find('''Key2''' ) is None def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : str =SkipList() skip_list.insert('''Key1''', 1_2 ) skip_list.insert('''V''', 1_3 ) skip_list.insert('''X''', 1_4_2 ) skip_list.insert('''Key2''', 1_5 ) skip_list.delete('''X''' ) def traverse_keys(UpperCamelCase__ : Dict ): yield node.key for forward_node in node.forward: yield from traverse_keys(UpperCamelCase__ ) assert len(set(traverse_keys(skip_list.head ) ) ) == 4 def _a( ): '''simple docstring''' def is_sorted(UpperCamelCase__ : List[Any] ): return all(next_item >= item for item, next_item in zip(UpperCamelCase__, lst[1:] ) ) SCREAMING_SNAKE_CASE__ : Tuple =SkipList() for i in range(1_0 ): skip_list.insert(UpperCamelCase__, UpperCamelCase__ ) assert is_sorted(list(UpperCamelCase__ ) ) skip_list.delete(5 ) skip_list.delete(8 ) skip_list.delete(2 ) assert is_sorted(list(UpperCamelCase__ ) ) skip_list.insert(-1_2, -1_2 ) skip_list.insert(7_7, 7_7 ) assert is_sorted(list(UpperCamelCase__ ) ) def _a( ): '''simple docstring''' for _ in range(1_0_0 ): # Repeat test 100 times due to the probabilistic nature of skip list # random values == random bugs test_insert() test_insert_overrides_existing_value() test_searching_empty_list_returns_none() test_search() test_deleting_item_from_empty_list_do_nothing() test_deleted_items_are_not_founded_by_find_method() test_delete_removes_only_given_key() test_delete_doesnt_leave_dead_nodes() test_iter_always_yields_sorted_values() def _a( ): '''simple docstring''' SCREAMING_SNAKE_CASE__ : Any =SkipList() skip_list.insert(2, '''2''' ) skip_list.insert(4, '''4''' ) skip_list.insert(6, '''4''' ) skip_list.insert(4, '''5''' ) skip_list.insert(8, '''4''' ) skip_list.insert(9, '''4''' ) skip_list.delete(4 ) print(UpperCamelCase__ ) if __name__ == "__main__": import doctest doctest.testmod() main()
222
0
"""simple docstring""" import argparse import math import traceback import dateutil.parser as date_parser import requests def A_ ( _lowercase ): '''simple docstring''' snake_case_ :int = {} snake_case_ :List[Any] = job["""started_at"""] snake_case_ :int = job["""completed_at"""] snake_case_ :str = date_parser.parse(_lowercase ) snake_case_ :Tuple = date_parser.parse(_lowercase ) snake_case_ :Optional[int] = round((end_datetime - start_datetime).total_seconds() / 60.0 ) snake_case_ :int = start snake_case_ :Optional[int] = end snake_case_ :Optional[Any] = duration_in_min return job_info def A_ ( _lowercase, _lowercase=None ): '''simple docstring''' snake_case_ :Optional[Any] = None if token is not None: snake_case_ :Optional[Any] = {"""Accept""": """application/vnd.github+json""", """Authorization""": f"""Bearer {token}"""} snake_case_ :Union[str, Any] = f"""https://api.github.com/repos/huggingface/transformers/actions/runs/{workflow_run_id}/jobs?per_page=100""" snake_case_ :Optional[int] = requests.get(_lowercase, headers=_lowercase ).json() snake_case_ :Optional[Any] = {} try: job_time.update({job["""name"""]: extract_time_from_single_job(_lowercase ) for job in result["""jobs"""]} ) snake_case_ :int = math.ceil((result["""total_count"""] - 100) / 100 ) for i in range(_lowercase ): snake_case_ :Union[str, Any] = requests.get(url + f"""&page={i + 2}""", headers=_lowercase ).json() job_time.update({job["""name"""]: extract_time_from_single_job(_lowercase ) for job in result["""jobs"""]} ) return job_time except Exception: print(f"""Unknown error, could not fetch links:\n{traceback.format_exc()}""" ) return {} if __name__ == "__main__": __a = argparse.ArgumentParser() # Required parameters parser.add_argument("--workflow_run_id", type=str, required=True, help="A GitHub Actions workflow run id.") __a = parser.parse_args() __a = get_job_time(args.workflow_run_id) __a = dict(sorted(job_time.items(), key=lambda item: item[1]["duration"], reverse=True)) for k, v in job_time.items(): print(F"""{k}: {v['duration']}""")
66
# Copyright 2023 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. from typing import TYPE_CHECKING from ..models.auto import AutoModelForVisionaSeq from ..utils import requires_backends from .base import PipelineTool if TYPE_CHECKING: from PIL import Image class __snake_case ( lowerCamelCase_ ): lowerCAmelCase_ = "Salesforce/blip-image-captioning-base" lowerCAmelCase_ = ( "This is a tool that generates a description of an image. It takes an input named `image` which should be the " "image to caption, and returns a text that contains the description in English." ) lowerCAmelCase_ = "image_captioner" lowerCAmelCase_ = AutoModelForVisionaSeq lowerCAmelCase_ = ["image"] lowerCAmelCase_ = ["text"] def __init__( self : List[Any] , *_lowercase : Optional[int] , **_lowercase : Union[str, Any] ): """simple docstring""" requires_backends(self , ["""vision"""] ) super().__init__(*_lowercase , **_lowercase ) def __a ( self : Tuple , _lowercase : "Image" ): """simple docstring""" return self.pre_processor(images=_lowercase , return_tensors="""pt""" ) def __a ( self : Union[str, Any] , _lowercase : Optional[int] ): """simple docstring""" return self.model.generate(**_lowercase ) def __a ( self : int , _lowercase : Any ): """simple docstring""" return self.pre_processor.batch_decode(_lowercase , skip_special_tokens=_lowercase )[0].strip()
219
0
"""simple docstring""" import os def UpperCamelCase_ ( ) -> Optional[Any]: """simple docstring""" with open(os.path.dirname(lowerCAmelCase__ ) + '/p022_names.txt' ) as file: lowerCAmelCase_ : int = str(file.readlines()[0] ) lowerCAmelCase_ : Optional[int] = names.replace('"' , '' ).split(',' ) names.sort() lowerCAmelCase_ : List[Any] = 0 lowerCAmelCase_ : List[Any] = 0 for i, name in enumerate(lowerCAmelCase__ ): for letter in name: name_score += ord(lowerCAmelCase__ ) - 64 total_score += (i + 1) * name_score lowerCAmelCase_ : List[str] = 0 return total_score if __name__ == "__main__": print(solution())
366
"""simple docstring""" import re def UpperCamelCase_ ( lowerCAmelCase__ : str ) -> bool: """simple docstring""" lowerCAmelCase_ : str = re.compile( R'^(?:0|94|\+94|0{2}94)' R'7(0|1|2|4|5|6|7|8)' R'(-| |)' R'\d{7}$' ) return bool(re.search(lowerCAmelCase__ , lowerCAmelCase__ ) ) if __name__ == "__main__": lowercase__ : Optional[int] = """0094702343221""" print(is_sri_lankan_phone_number(phone))
289
0
import unittest from transformers import EsmConfig, is_torch_available from transformers.testing_utils import TestCasePlus, require_torch, slow, torch_device from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import EsmForMaskedLM, EsmForSequenceClassification, EsmForTokenClassification, EsmModel from transformers.models.esm.modeling_esm import ( ESM_PRETRAINED_MODEL_ARCHIVE_LIST, EsmEmbeddings, create_position_ids_from_input_ids, ) class lowerCamelCase__: def __init__( self: Dict , UpperCamelCase_: Optional[int] , UpperCamelCase_: str=13 , UpperCamelCase_: Any=7 , UpperCamelCase_: str=False , UpperCamelCase_: List[Any]=True , UpperCamelCase_: Optional[int]=False , UpperCamelCase_: Union[str, Any]=True , UpperCamelCase_: Dict=33 , UpperCamelCase_: Union[str, Any]=32 , UpperCamelCase_: Optional[int]=5 , UpperCamelCase_: Optional[Any]=4 , UpperCamelCase_: Union[str, Any]=37 , UpperCamelCase_: List[str]="gelu" , UpperCamelCase_: int=0.1 , UpperCamelCase_: Any=0.1 , UpperCamelCase_: str=5_12 , UpperCamelCase_: Dict=16 , UpperCamelCase_: str=2 , UpperCamelCase_: List[Any]=0.02 , UpperCamelCase_: Any=3 , UpperCamelCase_: int=4 , UpperCamelCase_: List[str]=None , ): __lowerCamelCase = parent __lowerCamelCase = batch_size __lowerCamelCase = seq_length __lowerCamelCase = is_training __lowerCamelCase = use_input_mask __lowerCamelCase = use_token_type_ids __lowerCamelCase = use_labels __lowerCamelCase = vocab_size __lowerCamelCase = hidden_size __lowerCamelCase = num_hidden_layers __lowerCamelCase = num_attention_heads __lowerCamelCase = intermediate_size __lowerCamelCase = hidden_act __lowerCamelCase = hidden_dropout_prob __lowerCamelCase = attention_probs_dropout_prob __lowerCamelCase = max_position_embeddings __lowerCamelCase = type_vocab_size __lowerCamelCase = type_sequence_label_size __lowerCamelCase = initializer_range __lowerCamelCase = num_labels __lowerCamelCase = num_choices __lowerCamelCase = scope def lowerCAmelCase__ ( self: str ): __lowerCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) __lowerCamelCase = None if self.use_input_mask: __lowerCamelCase = random_attention_mask([self.batch_size, self.seq_length] ) __lowerCamelCase = None __lowerCamelCase = None __lowerCamelCase = None if self.use_labels: __lowerCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size ) __lowerCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) __lowerCamelCase = ids_tensor([self.batch_size] , self.num_choices ) __lowerCamelCase = self.get_config() return config, input_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase__ ( self: Any ): return EsmConfig( vocab_size=self.vocab_size , hidden_size=self.hidden_size , pad_token_id=1 , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , type_vocab_size=self.type_vocab_size , initializer_range=self.initializer_range , ) def lowerCAmelCase__ ( self: Optional[Any] , UpperCamelCase_: List[Any] , UpperCamelCase_: Optional[int] , UpperCamelCase_: Optional[Any] , UpperCamelCase_: Any , UpperCamelCase_: Union[str, Any] , UpperCamelCase_: Union[str, Any] ): __lowerCamelCase = EsmModel(config=UpperCamelCase_ ) model.to(UpperCamelCase_ ) model.eval() __lowerCamelCase = model(UpperCamelCase_ , attention_mask=UpperCamelCase_ ) __lowerCamelCase = model(UpperCamelCase_ ) __lowerCamelCase = model(UpperCamelCase_ ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.hidden_size) ) def lowerCAmelCase__ ( self: Any , UpperCamelCase_: List[str] , UpperCamelCase_: List[Any] , UpperCamelCase_: List[Any] , UpperCamelCase_: str , UpperCamelCase_: List[str] , UpperCamelCase_: int ): __lowerCamelCase = EsmForMaskedLM(config=UpperCamelCase_ ) model.to(UpperCamelCase_ ) model.eval() __lowerCamelCase = model(UpperCamelCase_ , attention_mask=UpperCamelCase_ , labels=UpperCamelCase_ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase__ ( self: int , UpperCamelCase_: Optional[int] , UpperCamelCase_: List[str] , UpperCamelCase_: Any , UpperCamelCase_: Dict , UpperCamelCase_: Optional[Any] , UpperCamelCase_: int ): __lowerCamelCase = self.num_labels __lowerCamelCase = EsmForTokenClassification(config=UpperCamelCase_ ) model.to(UpperCamelCase_ ) model.eval() __lowerCamelCase = model(UpperCamelCase_ , attention_mask=UpperCamelCase_ , labels=UpperCamelCase_ ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels) ) def lowerCAmelCase__ ( self: int ): __lowerCamelCase = self.prepare_config_and_inputs() ( ( __lowerCamelCase ), ( __lowerCamelCase ), ( __lowerCamelCase ), ( __lowerCamelCase ), ( __lowerCamelCase ), ( __lowerCamelCase ), ) = config_and_inputs __lowerCamelCase = {"""input_ids""": input_ids, """attention_mask""": input_mask} return config, inputs_dict @require_torch class lowerCamelCase__( __lowerCamelCase , __lowerCamelCase , unittest.TestCase): UpperCAmelCase__ : Union[str, Any] = False UpperCAmelCase__ : Tuple = ( ( EsmForMaskedLM, EsmModel, EsmForSequenceClassification, EsmForTokenClassification, ) if is_torch_available() else () ) UpperCAmelCase__ : Optional[int] = () UpperCAmelCase__ : str = ( { 'feature-extraction': EsmModel, 'fill-mask': EsmForMaskedLM, 'text-classification': EsmForSequenceClassification, 'token-classification': EsmForTokenClassification, 'zero-shot': EsmForSequenceClassification, } if is_torch_available() else {} ) UpperCAmelCase__ : Any = True def lowerCAmelCase__ ( self: List[str] ): __lowerCamelCase = EsmModelTester(self ) __lowerCamelCase = ConfigTester(self , config_class=UpperCamelCase_ , hidden_size=37 ) def lowerCAmelCase__ ( self: List[Any] ): self.config_tester.run_common_tests() def lowerCAmelCase__ ( self: Optional[Any] ): __lowerCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase_ ) def lowerCAmelCase__ ( self: Dict ): __lowerCamelCase = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: __lowerCamelCase = type self.model_tester.create_and_check_model(*UpperCamelCase_ ) def lowerCAmelCase__ ( self: Optional[int] ): __lowerCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_lm(*UpperCamelCase_ ) def lowerCAmelCase__ ( self: str ): __lowerCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification(*UpperCamelCase_ ) @slow def lowerCAmelCase__ ( self: Tuple ): for model_name in ESM_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: __lowerCamelCase = EsmModel.from_pretrained(UpperCamelCase_ ) self.assertIsNotNone(UpperCamelCase_ ) def lowerCAmelCase__ ( self: int ): __lowerCamelCase = self.model_tester.prepare_config_and_inputs()[0] __lowerCamelCase = EsmEmbeddings(config=UpperCamelCase_ ) __lowerCamelCase = torch.as_tensor([[12, 31, 13, model.padding_idx]] ) __lowerCamelCase = torch.as_tensor( [ [ 0 + model.padding_idx + 1, 1 + model.padding_idx + 1, 2 + model.padding_idx + 1, model.padding_idx, ] ] ) __lowerCamelCase = create_position_ids_from_input_ids(UpperCamelCase_ , model.padding_idx ) self.assertEqual(position_ids.shape , expected_positions.shape ) self.assertTrue(torch.all(torch.eq(UpperCamelCase_ , UpperCamelCase_ ) ) ) def lowerCAmelCase__ ( self: Tuple ): __lowerCamelCase = self.model_tester.prepare_config_and_inputs()[0] __lowerCamelCase = EsmEmbeddings(config=UpperCamelCase_ ) __lowerCamelCase = torch.empty(2 , 4 , 30 ) __lowerCamelCase = [ 0 + embeddings.padding_idx + 1, 1 + embeddings.padding_idx + 1, 2 + embeddings.padding_idx + 1, 3 + embeddings.padding_idx + 1, ] __lowerCamelCase = torch.as_tensor([expected_single_positions, expected_single_positions] ) __lowerCamelCase = embeddings.create_position_ids_from_inputs_embeds(UpperCamelCase_ ) self.assertEqual(position_ids.shape , expected_positions.shape ) self.assertTrue(torch.all(torch.eq(UpperCamelCase_ , UpperCamelCase_ ) ) ) @unittest.skip("""Esm does not support embedding resizing""" ) def lowerCAmelCase__ ( self: int ): pass @unittest.skip("""Esm does not support embedding resizing""" ) def lowerCAmelCase__ ( self: int ): pass @unittest.skip("""Will be fixed soon by reducing the size of the model used for common tests.""" ) def lowerCAmelCase__ ( self: List[str] ): pass @require_torch class lowerCamelCase__( __lowerCamelCase): @slow def lowerCAmelCase__ ( self: Tuple ): with torch.no_grad(): __lowerCamelCase = EsmForMaskedLM.from_pretrained("""facebook/esm2_t6_8M_UR50D""" ) model.eval() __lowerCamelCase = torch.tensor([[0, 1, 2, 3, 4, 5]] ) __lowerCamelCase = model(UpperCamelCase_ )[0] __lowerCamelCase = 33 __lowerCamelCase = torch.Size((1, 6, vocab_size) ) self.assertEqual(output.shape , UpperCamelCase_ ) __lowerCamelCase = torch.tensor( [[[8.9215, -10.5898, -6.4671], [-6.3967, -13.9114, -1.1212], [-7.7812, -13.9516, -3.7406]]] ) self.assertTrue(torch.allclose(output[:, :3, :3] , UpperCamelCase_ , atol=1E-4 ) ) @slow def lowerCAmelCase__ ( self: List[Any] ): with torch.no_grad(): __lowerCamelCase = EsmModel.from_pretrained("""facebook/esm2_t6_8M_UR50D""" ) model.eval() __lowerCamelCase = torch.tensor([[0, 6, 4, 13, 5, 4, 16, 12, 11, 7, 2]] ) __lowerCamelCase = model(UpperCamelCase_ )[0] # compare the actual values for a slice. __lowerCamelCase = torch.tensor( [[[0.1444, 0.5413, 0.3248], [0.3034, 0.0053, 0.3108], [0.3228, -0.2499, 0.3415]]] ) self.assertTrue(torch.allclose(output[:, :3, :3] , UpperCamelCase_ , atol=1E-4 ) )
12
"""simple docstring""" from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging __snake_case = logging.get_logger(__name__) __snake_case = { """facebook/xmod-base""": """https://huggingface.co/facebook/xmod-base/resolve/main/config.json""", """facebook/xmod-large-prenorm""": """https://huggingface.co/facebook/xmod-large-prenorm/resolve/main/config.json""", """facebook/xmod-base-13-125k""": """https://huggingface.co/facebook/xmod-base-13-125k/resolve/main/config.json""", """facebook/xmod-base-30-125k""": """https://huggingface.co/facebook/xmod-base-30-125k/resolve/main/config.json""", """facebook/xmod-base-30-195k""": """https://huggingface.co/facebook/xmod-base-30-195k/resolve/main/config.json""", """facebook/xmod-base-60-125k""": """https://huggingface.co/facebook/xmod-base-60-125k/resolve/main/config.json""", """facebook/xmod-base-60-265k""": """https://huggingface.co/facebook/xmod-base-60-265k/resolve/main/config.json""", """facebook/xmod-base-75-125k""": """https://huggingface.co/facebook/xmod-base-75-125k/resolve/main/config.json""", """facebook/xmod-base-75-269k""": """https://huggingface.co/facebook/xmod-base-75-269k/resolve/main/config.json""", } class _lowerCAmelCase ( snake_case_ ): __UpperCAmelCase : Optional[Any] = '''xmod''' def __init__( self , UpperCamelCase__=3_0522 , UpperCamelCase__=768 , UpperCamelCase__=12 , UpperCamelCase__=12 , UpperCamelCase__=3072 , UpperCamelCase__="gelu" , UpperCamelCase__=0.1 , UpperCamelCase__=0.1 , UpperCamelCase__=512 , UpperCamelCase__=2 , UpperCamelCase__=0.02 , UpperCamelCase__=1e-12 , UpperCamelCase__=1 , UpperCamelCase__=0 , UpperCamelCase__=2 , UpperCamelCase__="absolute" , UpperCamelCase__=True , UpperCamelCase__=None , UpperCamelCase__=False , UpperCamelCase__=2 , UpperCamelCase__=False , UpperCamelCase__=True , UpperCamelCase__=True , UpperCamelCase__=("en_XX",) , UpperCamelCase__=None , **UpperCamelCase__ , ) -> int: '''simple docstring''' super().__init__(pad_token_id=UpperCamelCase__ , bos_token_id=UpperCamelCase__ , eos_token_id=UpperCamelCase__ , **UpperCamelCase__ ) snake_case : List[Any] = vocab_size snake_case : List[Any] = hidden_size snake_case : Union[str, Any] = num_hidden_layers snake_case : Any = num_attention_heads snake_case : List[str] = hidden_act snake_case : Union[str, Any] = intermediate_size snake_case : int = hidden_dropout_prob snake_case : Any = attention_probs_dropout_prob snake_case : Optional[int] = max_position_embeddings snake_case : Tuple = type_vocab_size snake_case : List[str] = initializer_range snake_case : int = layer_norm_eps snake_case : Optional[Any] = position_embedding_type snake_case : int = use_cache snake_case : Dict = classifier_dropout snake_case : Dict = pre_norm snake_case : Union[str, Any] = adapter_reduction_factor snake_case : Any = adapter_layer_norm snake_case : Optional[int] = adapter_reuse_layer_norm snake_case : List[Any] = ln_before_adapter snake_case : str = list(UpperCamelCase__ ) snake_case : int = default_language class _lowerCAmelCase ( snake_case_ ): @property def lowerCamelCase ( self ) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' if self.task == "multiple-choice": snake_case : Optional[int] = {0: "batch", 1: "choice", 2: "sequence"} else: snake_case : Optional[Any] = {0: "batch", 1: "sequence"} return OrderedDict( [ ("input_ids", dynamic_axis), ("attention_mask", dynamic_axis), ] )
203
0
import argparse import torch from torch import nn from transformers import MBartConfig, MBartForConditionalGeneration def _a ( lowerCamelCase: List[Any] ) -> int: '''simple docstring''' __A = [ '''encoder.version''', '''decoder.version''', '''model.encoder.version''', '''model.decoder.version''', '''_float_tensor''', '''decoder.output_projection.weight''', ] for k in ignore_keys: state_dict.pop(lowerCamelCase , lowerCamelCase ) def _a ( lowerCamelCase: List[str] ) -> Union[str, Any]: '''simple docstring''' __A , __A = emb.weight.shape __A = nn.Linear(lowerCamelCase , lowerCamelCase , bias=lowerCamelCase ) __A = emb.weight.data return lin_layer def _a ( lowerCamelCase: Any , lowerCamelCase: List[str]="facebook/mbart-large-en-ro" , lowerCamelCase: List[str]=False , lowerCamelCase: List[str]=False ) -> Tuple: '''simple docstring''' __A = torch.load(lowerCamelCase , map_location='''cpu''' )['''model'''] remove_ignore_keys_(lowerCamelCase ) __A = state_dict['''encoder.embed_tokens.weight'''].shape[0] __A = MBartConfig.from_pretrained(lowerCamelCase , vocab_size=lowerCamelCase ) if mbart_aa and finetuned: __A = '''relu''' __A = state_dict['''decoder.embed_tokens.weight'''] __A = MBartForConditionalGeneration(lowerCamelCase ) model.model.load_state_dict(lowerCamelCase ) if finetuned: __A = make_linear_from_emb(model.model.shared ) return model if __name__ == "__main__": snake_case__ : List[Any] = argparse.ArgumentParser() # Required parameters parser.add_argument( 'fairseq_path', type=str, help='bart.large, bart.large.cnn or a path to a model.pt on local filesystem.' ) parser.add_argument('pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model.') parser.add_argument( '--hf_config', default='facebook/mbart-large-cc25', type=str, help='Which huggingface architecture to use: mbart-large', ) parser.add_argument('--mbart_50', action='store_true', help='whether the model is mMART-50 checkpoint') parser.add_argument('--finetuned', action='store_true', help='whether the model is a fine-tuned checkpoint') snake_case__ : List[Any] = parser.parse_args() snake_case__ : Any = convert_fairseq_mbart_checkpoint_from_disk( args.fairseq_path, hf_config_path=args.hf_config, finetuned=args.finetuned, mbart_aa=args.mbart_aa ) model.save_pretrained(args.pytorch_dump_folder_path)
250
def _a ( lowerCamelCase: Optional[Any] , lowerCamelCase: str , lowerCamelCase: Tuple , lowerCamelCase: Union[str, Any] ) -> str: '''simple docstring''' __A = [False] * len(lowerCamelCase ) __A = [] queue.append(lowerCamelCase ) __A = True while queue: __A = queue.pop(0 ) for ind in range(len(graph[u] ) ): if visited[ind] is False and graph[u][ind] > 0: queue.append(lowerCamelCase ) __A = True __A = u return visited[t] def _a ( lowerCamelCase: Tuple , lowerCamelCase: Union[str, Any] , lowerCamelCase: Optional[Any] ) -> Optional[int]: '''simple docstring''' __A = [-1] * (len(lowerCamelCase )) __A = 0 while bfs(lowerCamelCase , lowerCamelCase , lowerCamelCase , lowerCamelCase ): __A = float('''Inf''' ) __A = sink while s != source: # Find the minimum value in select path __A = min(lowerCamelCase , graph[parent[s]][s] ) __A = parent[s] max_flow += path_flow __A = sink while v != source: __A = parent[v] graph[u][v] -= path_flow graph[v][u] += path_flow __A = parent[v] return max_flow snake_case__ : List[Any] = [ [0, 16, 13, 0, 0, 0], [0, 0, 10, 12, 0, 0], [0, 4, 0, 0, 14, 0], [0, 0, 9, 0, 0, 20], [0, 0, 0, 7, 0, 4], [0, 0, 0, 0, 0, 0], ] snake_case__ , snake_case__ : List[Any] = 0, 5 print(ford_fulkerson(graph, source, sink))
250
1
import argparse import os import re _lowercase : Union[str, Any] ="src/diffusers" # Pattern that looks at the indentation in a line. _lowercase : List[Any] =re.compile(r"^(\s*)\S") # Pattern that matches `"key":" and puts `key` in group 0. _lowercase : List[str] =re.compile(r"^\s*\"([^\"]+)\":") # Pattern that matches `_import_structure["key"]` and puts `key` in group 0. _lowercase : Tuple =re.compile(r"^\s*_import_structure\[\"([^\"]+)\"\]") # Pattern that matches `"key",` and puts `key` in group 0. _lowercase : Optional[int] =re.compile(r"^\s*\"([^\"]+)\",\s*$") # Pattern that matches any `[stuff]` and puts `stuff` in group 0. _lowercase : str =re.compile(r"\[([^\]]+)\]") def lowerCAmelCase_ ( _lowercase : List[Any]) -> Optional[int]: """simple docstring""" a__ : Tuple = _re_indent.search(_lowercase) return "" if search is None else search.groups()[0] def lowerCAmelCase_ ( _lowercase : Any , _lowercase : Dict="" , _lowercase : List[str]=None , _lowercase : Union[str, Any]=None) -> Optional[int]: """simple docstring""" a__ : Any = 0 a__ : str = code.split("""\n""") if start_prompt is not None: while not lines[index].startswith(_lowercase): index += 1 a__ : Optional[Any] = ["""\n""".join(lines[:index])] else: a__ : List[str] = [] # We split into blocks until we get to the `end_prompt` (or the end of the block). a__ : Optional[int] = [lines[index]] index += 1 while index < len(_lowercase) and (end_prompt is None or not lines[index].startswith(_lowercase)): if len(lines[index]) > 0 and get_indent(lines[index]) == indent_level: if len(_lowercase) > 0 and get_indent(current_block[-1]).startswith(indent_level + """ """): current_block.append(lines[index]) blocks.append("""\n""".join(_lowercase)) if index < len(_lowercase) - 1: a__ : Optional[int] = [lines[index + 1]] index += 1 else: a__ : List[Any] = [] else: blocks.append("""\n""".join(_lowercase)) a__ : Optional[Any] = [lines[index]] else: current_block.append(lines[index]) index += 1 # Adds current block if it's nonempty. if len(_lowercase) > 0: blocks.append("""\n""".join(_lowercase)) # Add final block after end_prompt if provided. if end_prompt is not None and index < len(_lowercase): blocks.append("""\n""".join(lines[index:])) return blocks def lowerCAmelCase_ ( _lowercase : Optional[int]) -> str: """simple docstring""" def _inner(_lowercase : Optional[int]): return key(_lowercase).lower().replace("""_""" , """""") return _inner def lowerCAmelCase_ ( _lowercase : int , _lowercase : Union[str, Any]=None) -> Optional[Any]: """simple docstring""" # If no key is provided, we use a noop. def noop(_lowercase : Optional[Any]): return x if key is None: a__ : Union[str, Any] = noop # Constants are all uppercase, they go first. a__ : int = [obj for obj in objects if key(_lowercase).isupper()] # Classes are not all uppercase but start with a capital, they go second. a__ : Optional[int] = [obj for obj in objects if key(_lowercase)[0].isupper() and not key(_lowercase).isupper()] # Functions begin with a lowercase, they go last. a__ : Tuple = [obj for obj in objects if not key(_lowercase)[0].isupper()] a__ : str = ignore_underscore(_lowercase) return sorted(_lowercase , key=_lowercase) + sorted(_lowercase , key=_lowercase) + sorted(_lowercase , key=_lowercase) def lowerCAmelCase_ ( _lowercase : str) -> int: """simple docstring""" # This inner function sort imports between [ ]. def _replace(_lowercase : Union[str, Any]): a__ : List[Any] = match.groups()[0] if "," not in imports: return F'''[{imports}]''' a__ : Dict = [part.strip().replace("""\"""" , """""") for part in imports.split(""",""")] # We will have a final empty element if the line finished with a comma. if len(keys[-1]) == 0: a__ : Tuple = keys[:-1] return "[" + ", ".join([F'''"{k}"''' for k in sort_objects(_lowercase)]) + "]" a__ : List[Any] = import_statement.split("""\n""") if len(_lowercase) > 3: # Here we have to sort internal imports that are on several lines (one per name): # key: [ # "object1", # "object2", # ... # ] # We may have to ignore one or two lines on each side. a__ : Union[str, Any] = 2 if lines[1].strip() == """[""" else 1 a__ : Union[str, Any] = [(i, _re_strip_line.search(_lowercase).groups()[0]) for i, line in enumerate(lines[idx:-idx])] a__ : Tuple = sort_objects(_lowercase , key=lambda _lowercase: x[1]) a__ : List[str] = [lines[x[0] + idx] for x in sorted_indices] return "\n".join(lines[:idx] + sorted_lines + lines[-idx:]) elif len(_lowercase) == 3: # Here we have to sort internal imports that are on one separate line: # key: [ # "object1", "object2", ... # ] if _re_bracket_content.search(lines[1]) is not None: a__ : Tuple = _re_bracket_content.sub(_replace , lines[1]) else: a__ : Optional[int] = [part.strip().replace("""\"""" , """""") for part in lines[1].split(""",""")] # We will have a final empty element if the line finished with a comma. if len(keys[-1]) == 0: a__ : Optional[int] = keys[:-1] a__ : Dict = get_indent(lines[1]) + """, """.join([F'''"{k}"''' for k in sort_objects(_lowercase)]) return "\n".join(_lowercase) else: # Finally we have to deal with imports fitting on one line a__ : List[str] = _re_bracket_content.sub(_replace , _lowercase) return import_statement def lowerCAmelCase_ ( _lowercase : Union[str, Any] , _lowercase : int=True) -> Tuple: """simple docstring""" with open(_lowercase , """r""") as f: a__ : Union[str, Any] = f.read() if "_import_structure" not in code: return # Blocks of indent level 0 a__ : List[Any] = split_code_in_indented_blocks( _lowercase , start_prompt="""_import_structure = {""" , end_prompt="""if TYPE_CHECKING:""") # We ignore block 0 (everything until start_prompt) and the last block (everything after end_prompt). for block_idx in range(1 , len(_lowercase) - 1): # Check if the block contains some `_import_structure`s thingy to sort. a__ : List[str] = main_blocks[block_idx] a__ : int = block.split("""\n""") # Get to the start of the imports. a__ : str = 0 while line_idx < len(_lowercase) and "_import_structure" not in block_lines[line_idx]: # Skip dummy import blocks if "import dummy" in block_lines[line_idx]: a__ : Optional[Any] = len(_lowercase) else: line_idx += 1 if line_idx >= len(_lowercase): continue # Ignore beginning and last line: they don't contain anything. a__ : List[Any] = """\n""".join(block_lines[line_idx:-1]) a__ : Tuple = get_indent(block_lines[1]) # Slit the internal block into blocks of indent level 1. a__ : Any = split_code_in_indented_blocks(_lowercase , indent_level=_lowercase) # We have two categories of import key: list or _import_structure[key].append/extend a__ : Any = _re_direct_key if """_import_structure""" in block_lines[0] else _re_indirect_key # Grab the keys, but there is a trap: some lines are empty or just comments. a__ : int = [(pattern.search(_lowercase).groups()[0] if pattern.search(_lowercase) is not None else None) for b in internal_blocks] # We only sort the lines with a key. a__ : Union[str, Any] = [(i, key) for i, key in enumerate(_lowercase) if key is not None] a__ : List[str] = [x[0] for x in sorted(_lowercase , key=lambda _lowercase: x[1])] # We reorder the blocks by leaving empty lines/comments as they were and reorder the rest. a__ : Any = 0 a__ : List[str] = [] for i in range(len(_lowercase)): if keys[i] is None: reordered_blocks.append(internal_blocks[i]) else: a__ : List[Any] = sort_objects_in_import(internal_blocks[sorted_indices[count]]) reordered_blocks.append(_lowercase) count += 1 # And we put our main block back together with its first and last line. a__ : List[str] = """\n""".join(block_lines[:line_idx] + reordered_blocks + [block_lines[-1]]) if code != "\n".join(_lowercase): if check_only: return True else: print(F'''Overwriting {file}.''') with open(_lowercase , """w""") as f: f.write("""\n""".join(_lowercase)) def lowerCAmelCase_ ( _lowercase : List[Any]=True) -> Optional[Any]: """simple docstring""" a__ : Union[str, Any] = [] for root, _, files in os.walk(_lowercase): if "__init__.py" in files: a__ : str = sort_imports(os.path.join(_lowercase , """__init__.py""") , check_only=_lowercase) if result: a__ : int = [os.path.join(_lowercase , """__init__.py""")] if len(_lowercase) > 0: raise ValueError(F'''Would overwrite {len(_lowercase)} files, run `make style`.''') if __name__ == "__main__": _lowercase : Dict =argparse.ArgumentParser() parser.add_argument("--check_only", action="store_true", help="Whether to only check or fix style.") _lowercase : Any =parser.parse_args() sort_imports_in_all_inits(check_only=args.check_only)
170
import argparse import json from pathlib import Path import requests import torch from huggingface_hub import cached_download, hf_hub_url from PIL import Image from transformers import DPTConfig, DPTForDepthEstimation, DPTForSemanticSegmentation, DPTImageProcessor from transformers.utils import logging logging.set_verbosity_info() _lowercase : Union[str, Any] =logging.get_logger(__name__) def lowerCAmelCase_ ( _lowercase : List[Any]) -> Optional[int]: """simple docstring""" a__ : int = DPTConfig(embedding_type="""hybrid""") if "large" in checkpoint_url: a__ : Tuple = 1024 a__ : int = 4096 a__ : str = 24 a__ : List[str] = 16 a__ : Optional[Any] = [5, 11, 17, 23] a__ : Union[str, Any] = [256, 512, 1024, 1024] a__ : str = (1, 384, 384) if "nyu" or "midas" in checkpoint_url: a__ : Dict = 768 a__ : Dict = [1, 1, 1, 0.5] a__ : Dict = [256, 512, 768, 768] a__ : Union[str, Any] = 150 a__ : List[Any] = 16 a__ : List[Any] = (1, 384, 384) a__ : Optional[Any] = False a__ : Tuple = """project""" if "ade" in checkpoint_url: a__ : int = True a__ : Any = 768 a__ : Tuple = [1, 1, 1, 0.5] a__ : str = 150 a__ : Optional[int] = 16 a__ : Optional[Any] = """huggingface/label-files""" a__ : Any = """ade20k-id2label.json""" a__ : List[Any] = json.load(open(cached_download(hf_hub_url(_lowercase , _lowercase , repo_type="""dataset""")) , """r""")) a__ : Union[str, Any] = {int(_lowercase): v for k, v in idalabel.items()} a__ : List[Any] = idalabel a__ : List[Any] = {v: k for k, v in idalabel.items()} a__ : List[str] = [1, 150, 480, 480] return config, expected_shape def lowerCAmelCase_ ( _lowercase : Optional[int]) -> List[str]: """simple docstring""" a__ : List[str] = ["""pretrained.model.head.weight""", """pretrained.model.head.bias"""] for k in ignore_keys: state_dict.pop(_lowercase , _lowercase) def lowerCAmelCase_ ( _lowercase : Dict) -> Optional[int]: """simple docstring""" if ( "pretrained.model" in name and "cls_token" not in name and "pos_embed" not in name and "patch_embed" not in name ): a__ : int = name.replace("""pretrained.model""" , """dpt.encoder""") if "pretrained.model" in name: a__ : Optional[Any] = name.replace("""pretrained.model""" , """dpt.embeddings""") if "patch_embed" in name: a__ : Any = name.replace("""patch_embed""" , """""") if "pos_embed" in name: a__ : Optional[Any] = name.replace("""pos_embed""" , """position_embeddings""") if "attn.proj" in name: a__ : Union[str, Any] = name.replace("""attn.proj""" , """attention.output.dense""") if "proj" in name and "project" not in name: a__ : List[Any] = name.replace("""proj""" , """projection""") if "blocks" in name: a__ : int = name.replace("""blocks""" , """layer""") if "mlp.fc1" in name: a__ : Optional[Any] = name.replace("""mlp.fc1""" , """intermediate.dense""") if "mlp.fc2" in name: a__ : Tuple = name.replace("""mlp.fc2""" , """output.dense""") if "norm1" in name and "backbone" not in name: a__ : List[str] = name.replace("""norm1""" , """layernorm_before""") if "norm2" in name and "backbone" not in name: a__ : List[str] = name.replace("""norm2""" , """layernorm_after""") if "scratch.output_conv" in name: a__ : int = name.replace("""scratch.output_conv""" , """head""") if "scratch" in name: a__ : List[Any] = name.replace("""scratch""" , """neck""") if "layer1_rn" in name: a__ : Optional[Any] = name.replace("""layer1_rn""" , """convs.0""") if "layer2_rn" in name: a__ : List[Any] = name.replace("""layer2_rn""" , """convs.1""") if "layer3_rn" in name: a__ : Dict = name.replace("""layer3_rn""" , """convs.2""") if "layer4_rn" in name: a__ : Optional[int] = name.replace("""layer4_rn""" , """convs.3""") if "refinenet" in name: a__ : int = int(name[len("""neck.refinenet""") : len("""neck.refinenet""") + 1]) # tricky here: we need to map 4 to 0, 3 to 1, 2 to 2 and 1 to 3 a__ : int = name.replace(F'''refinenet{layer_idx}''' , F'''fusion_stage.layers.{abs(layer_idx-4)}''') if "out_conv" in name: a__ : Optional[Any] = name.replace("""out_conv""" , """projection""") if "resConfUnit1" in name: a__ : int = name.replace("""resConfUnit1""" , """residual_layer1""") if "resConfUnit2" in name: a__ : Union[str, Any] = name.replace("""resConfUnit2""" , """residual_layer2""") if "conv1" in name: a__ : Dict = name.replace("""conv1""" , """convolution1""") if "conv2" in name: a__ : Any = name.replace("""conv2""" , """convolution2""") # readout blocks if "pretrained.act_postprocess1.0.project.0" in name: a__ : List[str] = name.replace("""pretrained.act_postprocess1.0.project.0""" , """neck.reassemble_stage.readout_projects.0.0""") if "pretrained.act_postprocess2.0.project.0" in name: a__ : Optional[int] = name.replace("""pretrained.act_postprocess2.0.project.0""" , """neck.reassemble_stage.readout_projects.1.0""") if "pretrained.act_postprocess3.0.project.0" in name: a__ : Any = name.replace("""pretrained.act_postprocess3.0.project.0""" , """neck.reassemble_stage.readout_projects.2.0""") if "pretrained.act_postprocess4.0.project.0" in name: a__ : Optional[int] = name.replace("""pretrained.act_postprocess4.0.project.0""" , """neck.reassemble_stage.readout_projects.3.0""") # resize blocks if "pretrained.act_postprocess1.3" in name: a__ : int = name.replace("""pretrained.act_postprocess1.3""" , """neck.reassemble_stage.layers.0.projection""") if "pretrained.act_postprocess1.4" in name: a__ : Optional[int] = name.replace("""pretrained.act_postprocess1.4""" , """neck.reassemble_stage.layers.0.resize""") if "pretrained.act_postprocess2.3" in name: a__ : List[Any] = name.replace("""pretrained.act_postprocess2.3""" , """neck.reassemble_stage.layers.1.projection""") if "pretrained.act_postprocess2.4" in name: a__ : Dict = name.replace("""pretrained.act_postprocess2.4""" , """neck.reassemble_stage.layers.1.resize""") if "pretrained.act_postprocess3.3" in name: a__ : Union[str, Any] = name.replace("""pretrained.act_postprocess3.3""" , """neck.reassemble_stage.layers.2.projection""") if "pretrained.act_postprocess4.3" in name: a__ : int = name.replace("""pretrained.act_postprocess4.3""" , """neck.reassemble_stage.layers.3.projection""") if "pretrained.act_postprocess4.4" in name: a__ : Optional[Any] = name.replace("""pretrained.act_postprocess4.4""" , """neck.reassemble_stage.layers.3.resize""") if "pretrained" in name: a__ : List[str] = name.replace("""pretrained""" , """dpt""") if "bn" in name: a__ : int = name.replace("""bn""" , """batch_norm""") if "head" in name: a__ : Optional[Any] = name.replace("""head""" , """head.head""") if "encoder.norm" in name: a__ : Optional[int] = name.replace("""encoder.norm""" , """layernorm""") if "auxlayer" in name: a__ : Optional[Any] = name.replace("""auxlayer""" , """auxiliary_head.head""") if "backbone" in name: a__ : int = name.replace("""backbone""" , """backbone.bit.encoder""") if ".." in name: a__ : str = name.replace("""..""" , """.""") if "stem.conv" in name: a__ : Optional[int] = name.replace("""stem.conv""" , """bit.embedder.convolution""") if "blocks" in name: a__ : Optional[int] = name.replace("""blocks""" , """layers""") if "convolution" in name and "backbone" in name: a__ : Dict = name.replace("""convolution""" , """conv""") if "layer" in name and "backbone" in name: a__ : Tuple = name.replace("""layer""" , """layers""") if "backbone.bit.encoder.bit" in name: a__ : Optional[Any] = name.replace("""backbone.bit.encoder.bit""" , """backbone.bit""") if "embedder.conv" in name: a__ : int = name.replace("""embedder.conv""" , """embedder.convolution""") if "backbone.bit.encoder.stem.norm" in name: a__ : Union[str, Any] = name.replace("""backbone.bit.encoder.stem.norm""" , """backbone.bit.embedder.norm""") return name def lowerCAmelCase_ ( _lowercase : Optional[int] , _lowercase : Union[str, Any]) -> int: """simple docstring""" for i in range(config.num_hidden_layers): # read in weights + bias of input projection layer (in timm, this is a single matrix + bias) a__ : Any = state_dict.pop(F'''dpt.encoder.layer.{i}.attn.qkv.weight''') a__ : int = state_dict.pop(F'''dpt.encoder.layer.{i}.attn.qkv.bias''') # next, add query, keys and values (in that order) to the state dict a__ : Any = in_proj_weight[: config.hidden_size, :] a__ : Dict = in_proj_bias[: config.hidden_size] a__ : List[Any] = in_proj_weight[ config.hidden_size : config.hidden_size * 2, : ] a__ : Optional[Any] = in_proj_bias[ config.hidden_size : config.hidden_size * 2 ] a__ : Optional[Any] = in_proj_weight[ -config.hidden_size :, : ] a__ : Optional[Any] = in_proj_bias[-config.hidden_size :] def lowerCAmelCase_ ( ) -> Tuple: """simple docstring""" a__ : Optional[Any] = """http://images.cocodataset.org/val2017/000000039769.jpg""" a__ : Union[str, Any] = Image.open(requests.get(_lowercase , stream=_lowercase).raw) return im @torch.no_grad() def lowerCAmelCase_ ( _lowercase : List[str] , _lowercase : Optional[int] , _lowercase : List[Any] , _lowercase : Dict , _lowercase : Optional[Any]) -> int: """simple docstring""" a__ , a__ : int = get_dpt_config(_lowercase) # load original state_dict from URL # state_dict = torch.hub.load_state_dict_from_url(checkpoint_url, map_location="cpu") a__ : Union[str, Any] = torch.load(_lowercase , map_location="""cpu""") # remove certain keys remove_ignore_keys_(_lowercase) # rename keys for key in state_dict.copy().keys(): a__ : int = state_dict.pop(_lowercase) a__ : str = val # read in qkv matrices read_in_q_k_v(_lowercase , _lowercase) # load HuggingFace model a__ : List[Any] = DPTForSemanticSegmentation(_lowercase) if """ade""" in checkpoint_url else DPTForDepthEstimation(_lowercase) model.load_state_dict(_lowercase) model.eval() # Check outputs on an image a__ : List[Any] = 480 if """ade""" in checkpoint_url else 384 a__ : str = DPTImageProcessor(size=_lowercase) a__ : Tuple = prepare_img() a__ : List[str] = image_processor(_lowercase , return_tensors="""pt""") # forward pass a__ : Any = model(**_lowercase).logits if """ade""" in checkpoint_url else model(**_lowercase).predicted_depth if show_prediction: a__ : Dict = ( torch.nn.functional.interpolate( outputs.unsqueeze(1) , size=(image.size[1], image.size[0]) , mode="""bicubic""" , align_corners=_lowercase , ) .squeeze() .cpu() .numpy() ) Image.fromarray((prediction / prediction.max()) * 255).show() if pytorch_dump_folder_path is not None: Path(_lowercase).mkdir(exist_ok=_lowercase) print(F'''Saving model to {pytorch_dump_folder_path}''') model.save_pretrained(_lowercase) print(F'''Saving image processor to {pytorch_dump_folder_path}''') image_processor.save_pretrained(_lowercase) if push_to_hub: model.push_to_hub("""ybelkada/dpt-hybrid-midas""") image_processor.push_to_hub("""ybelkada/dpt-hybrid-midas""") if __name__ == "__main__": _lowercase : str =argparse.ArgumentParser() # Required parameters parser.add_argument( "--checkpoint_url", default="https://github.com/intel-isl/DPT/releases/download/1_0/dpt_large-midas-2f21e586.pt", type=str, help="URL of the original DPT checkpoint you'd like to convert.", ) parser.add_argument( "--pytorch_dump_folder_path", default=None, type=str, required=False, help="Path to the output PyTorch model directory.", ) parser.add_argument( "--push_to_hub", action="store_true", ) parser.add_argument( "--model_name", default="dpt-large", type=str, help="Name of the model, in case you're pushing to the hub.", ) parser.add_argument( "--show_prediction", action="store_true", ) _lowercase : str =parser.parse_args() convert_dpt_checkpoint( args.checkpoint_url, args.pytorch_dump_folder_path, args.push_to_hub, args.model_name, args.show_prediction )
170
1
"""simple docstring""" import os from typing import BinaryIO, Optional, Union import numpy as np import pyarrow.parquet as pq from .. import Audio, Dataset, Features, Image, NamedSplit, Value, config from ..features.features import FeatureType, _visit from ..formatting import query_table from ..packaged_modules import _PACKAGED_DATASETS_MODULES from ..packaged_modules.parquet.parquet import Parquet from ..utils import logging from ..utils.typing import NestedDataStructureLike, PathLike from .abc import AbstractDatasetReader def snake_case (A_ :Features ): '''simple docstring''' a : List[str] = np.inf def set_batch_size(A_ :FeatureType ) -> None: nonlocal batch_size if isinstance(A_ , A_ ): a : Dict = min(A_ , config.PARQUET_ROW_GROUP_SIZE_FOR_IMAGE_DATASETS ) elif isinstance(A_ , A_ ): a : Any = min(A_ , config.PARQUET_ROW_GROUP_SIZE_FOR_AUDIO_DATASETS ) elif isinstance(A_ , A_ ) and feature.dtype == "binary": a : Tuple = min(A_ , config.PARQUET_ROW_GROUP_SIZE_FOR_BINARY_DATASETS ) _visit(A_ , A_ ) return None if batch_size is np.inf else batch_size class snake_case ( UpperCAmelCase ): def __init__( self : Union[str, Any] , A : NestedDataStructureLike[PathLike] , A : Optional[NamedSplit] = None , A : Optional[Features] = None , A : str = None , A : bool = False , A : bool = False , A : Optional[int] = None , **A : int , ): '''simple docstring''' super().__init__( A , split=A , features=A , cache_dir=A , keep_in_memory=A , streaming=A , num_proc=A , **A , ) a : int = path_or_paths if isinstance(A , A ) else {self.split: path_or_paths} a : str = _PACKAGED_DATASETS_MODULES['parquet'][1] a : Any = Parquet( cache_dir=A , data_files=A , features=A , hash=A , **A , ) def lowerCamelCase__ ( self : List[str] ): '''simple docstring''' if self.streaming: a : Union[str, Any] = self.builder.as_streaming_dataset(split=self.split ) # Build regular (map-style) dataset else: a : Tuple = None a : Any = None a : List[Any] = None a : Tuple = None self.builder.download_and_prepare( download_config=A , download_mode=A , verification_mode=A , base_path=A , num_proc=self.num_proc , ) a : List[Any] = self.builder.as_dataset( split=self.split , verification_mode=A , in_memory=self.keep_in_memory ) return dataset class snake_case : def __init__( self : List[str] , A : Dataset , A : Union[PathLike, BinaryIO] , A : Optional[int] = None , **A : Any , ): '''simple docstring''' a : Union[str, Any] = dataset a : Any = path_or_buf a : List[Any] = batch_size or get_writer_batch_size(dataset.features ) a : str = parquet_writer_kwargs def lowerCamelCase__ ( self : Tuple ): '''simple docstring''' a : Dict = self.batch_size if self.batch_size else config.DEFAULT_MAX_BATCH_SIZE if isinstance(self.path_or_buf , (str, bytes, os.PathLike) ): with open(self.path_or_buf , 'wb+' ) as buffer: a : str = self._write(file_obj=A , batch_size=A , **self.parquet_writer_kwargs ) else: a : str = self._write(file_obj=self.path_or_buf , batch_size=A , **self.parquet_writer_kwargs ) return written def lowerCamelCase__ ( self : List[str] , A : BinaryIO , A : int , **A : int ): '''simple docstring''' a : List[str] = 0 a : int = parquet_writer_kwargs.pop('path_or_buf' , A ) a : Any = self.dataset.features.arrow_schema a : Dict = pq.ParquetWriter(A , schema=A , **A ) for offset in logging.tqdm( range(0 , len(self.dataset ) , A ) , unit='ba' , disable=not logging.is_progress_bar_enabled() , desc='Creating parquet from Arrow format' , ): a : List[str] = query_table( table=self.dataset._data , key=slice(A , offset + batch_size ) , indices=self.dataset._indices if self.dataset._indices is not None else None , ) writer.write_table(A ) written += batch.nbytes writer.close() return written
353
"""simple docstring""" from collections import OrderedDict from typing import Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging _UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) _UpperCamelCase : List[Any] = { 'microsoft/beit-base-patch16-224-pt22k': ( 'https://huggingface.co/microsoft/beit-base-patch16-224-pt22k/resolve/main/config.json' ), # See all BEiT models at https://huggingface.co/models?filter=beit } class snake_case ( UpperCAmelCase ): __magic_name__ = '''beit''' def __init__( self : int , A : int=8_1_9_2 , A : List[Any]=7_6_8 , A : str=1_2 , A : str=1_2 , A : Dict=3_0_7_2 , A : Optional[int]="gelu" , A : List[Any]=0.0 , A : Union[str, Any]=0.0 , A : Optional[Any]=0.02 , A : Optional[int]=1E-12 , A : Dict=2_2_4 , A : str=1_6 , A : Optional[Any]=3 , A : List[Any]=False , A : Union[str, Any]=False , A : Optional[Any]=False , A : int=False , A : List[str]=0.1 , A : Union[str, Any]=0.1 , A : str=True , A : Tuple=[3, 5, 7, 1_1] , A : List[str]=[1, 2, 3, 6] , A : Optional[Any]=True , A : Union[str, Any]=0.4 , A : Any=2_5_6 , A : List[Any]=1 , A : Optional[Any]=False , A : Any=2_5_5 , **A : List[Any] , ): '''simple docstring''' super().__init__(**A ) a : Optional[int] = vocab_size a : Dict = hidden_size a : Optional[int] = num_hidden_layers a : Tuple = num_attention_heads a : Optional[int] = intermediate_size a : Optional[Any] = hidden_act a : Optional[int] = hidden_dropout_prob a : Optional[int] = attention_probs_dropout_prob a : Optional[Any] = initializer_range a : Union[str, Any] = layer_norm_eps a : Union[str, Any] = image_size a : str = patch_size a : Optional[Any] = num_channels a : List[str] = use_mask_token a : Optional[Any] = use_absolute_position_embeddings a : Any = use_relative_position_bias a : Any = use_shared_relative_position_bias a : Dict = layer_scale_init_value a : Optional[int] = drop_path_rate a : Dict = use_mean_pooling # decode head attributes (semantic segmentation) a : Optional[Any] = out_indices a : List[str] = pool_scales # auxiliary head attributes (semantic segmentation) a : Tuple = use_auxiliary_head a : Dict = auxiliary_loss_weight a : Any = auxiliary_channels a : Dict = auxiliary_num_convs a : List[str] = auxiliary_concat_input a : List[Any] = semantic_loss_ignore_index class snake_case ( UpperCAmelCase ): __magic_name__ = version.parse('''1.11''' ) @property def lowerCamelCase__ ( self : List[str] ): '''simple docstring''' return OrderedDict( [ ('pixel_values', {0: 'batch', 1: 'num_channels', 2: 'height', 3: 'width'}), ] ) @property def lowerCamelCase__ ( self : Optional[Any] ): '''simple docstring''' return 1E-4
186
0
"""simple docstring""" from __future__ import annotations import unittest import numpy as np from transformers import OPTConfig, is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, slow from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import GPTaTokenizer, TFOPTForCausalLM, TFOPTModel def __SCREAMING_SNAKE_CASE ( A_ , A_ , A_=None , A_=None ): if attention_mask is None: lowerCAmelCase__ : List[str] = tf.cast(tf.math.not_equal(_lowerCamelCase , config.pad_token_id ) , tf.inta ) return {"input_ids": input_ids, "attention_mask": attention_mask} @require_tf class SCREAMING_SNAKE_CASE : """simple docstring""" lowercase__ = OPTConfig lowercase__ = {} lowercase__ = "gelu" def __init__( self : Any ,lowercase_ : Optional[int] ,lowercase_ : Optional[Any]=1_3 ,lowercase_ : List[str]=7 ,lowercase_ : Tuple=True ,lowercase_ : Dict=False ,lowercase_ : Dict=9_9 ,lowercase_ : int=1_6 ,lowercase_ : Any=2 ,lowercase_ : int=4 ,lowercase_ : Optional[int]=4 ,lowercase_ : Optional[Any]="gelu" ,lowercase_ : List[str]=0.1 ,lowercase_ : Tuple=0.1 ,lowercase_ : Tuple=2_0 ,lowercase_ : List[str]=2 ,lowercase_ : Union[str, Any]=1 ,lowercase_ : Optional[Any]=0 ,lowercase_ : Union[str, Any]=1_6 ,lowercase_ : Dict=1_6 ,): lowerCAmelCase__ : Optional[int] = parent lowerCAmelCase__ : Optional[Any] = batch_size lowerCAmelCase__ : Dict = seq_length lowerCAmelCase__ : Optional[int] = is_training lowerCAmelCase__ : Union[str, Any] = use_labels lowerCAmelCase__ : Tuple = vocab_size lowerCAmelCase__ : Dict = hidden_size lowerCAmelCase__ : Dict = num_hidden_layers lowerCAmelCase__ : Union[str, Any] = num_attention_heads lowerCAmelCase__ : List[str] = intermediate_size lowerCAmelCase__ : List[str] = hidden_act lowerCAmelCase__ : List[str] = hidden_dropout_prob lowerCAmelCase__ : int = attention_probs_dropout_prob lowerCAmelCase__ : Dict = max_position_embeddings lowerCAmelCase__ : Optional[int] = eos_token_id lowerCAmelCase__ : Optional[int] = pad_token_id lowerCAmelCase__ : Dict = bos_token_id lowerCAmelCase__ : List[str] = embed_dim lowerCAmelCase__ : List[str] = word_embed_proj_dim lowerCAmelCase__ : List[str] = False def __lowerCAmelCase ( self : str ): lowerCAmelCase__ : Union[str, Any] = ids_tensor([self.batch_size, self.seq_length - 1] ,self.vocab_size ) lowerCAmelCase__ : List[Any] = tf.expand_dims(tf.constant([self.eos_token_id] * self.batch_size ) ,1 ) lowerCAmelCase__ : int = tf.concat([input_ids, eos_tensor] ,axis=1 ) lowerCAmelCase__ : Any = self.config_cls( vocab_size=self.vocab_size ,hidden_size=self.hidden_size ,num_hidden_layers=self.num_hidden_layers ,num_attention_heads=self.num_attention_heads ,ffn_dim=self.intermediate_size ,dropout=self.hidden_dropout_prob ,attention_dropout=self.attention_probs_dropout_prob ,max_position_embeddings=self.max_position_embeddings ,eos_token_id=self.eos_token_id ,bos_token_id=self.bos_token_id ,pad_token_id=self.pad_token_id ,embed_dim=self.embed_dim ,word_embed_proj_dim=self.word_embed_proj_dim ,is_encoder_decoder=lowercase_ ,**self.config_updates ,) lowerCAmelCase__ : Union[str, Any] = prepare_opt_inputs_dict(lowercase_ ,lowercase_ ) return config, inputs_dict def __lowerCAmelCase ( self : Union[str, Any] ,lowercase_ : int ,lowercase_ : Optional[Any] ): lowerCAmelCase__ : Tuple = TFOPTModel(config=lowercase_ ) lowerCAmelCase__ : Optional[Any] = inputs_dict["input_ids"] lowerCAmelCase__ : Optional[int] = input_ids[:1, :] lowerCAmelCase__ : int = inputs_dict["attention_mask"][:1, :] lowerCAmelCase__ : List[Any] = 1 # first forward pass lowerCAmelCase__ : Any = model(lowercase_ ,attention_mask=lowercase_ ,use_cache=lowercase_ ) lowerCAmelCase__ : Tuple = outputs.to_tuple() # create hypothetical next token and extent to next_input_ids lowerCAmelCase__ : Dict = ids_tensor((self.batch_size, 3) ,config.vocab_size ) lowerCAmelCase__ : str = tf.cast(ids_tensor((self.batch_size, 3) ,2 ) ,tf.inta ) # append to next input_ids and lowerCAmelCase__ : Tuple = tf.concat([input_ids, next_tokens] ,axis=-1 ) lowerCAmelCase__ : Dict = tf.concat([attention_mask, next_attn_mask] ,axis=-1 ) lowerCAmelCase__ : Union[str, Any] = model(lowercase_ ,attention_mask=lowercase_ )[0] lowerCAmelCase__ : Optional[Any] = model(lowercase_ ,attention_mask=lowercase_ ,past_key_values=lowercase_ )[0] self.parent.assertEqual(next_tokens.shape[1] ,output_from_past.shape[1] ) # select random slice lowerCAmelCase__ : Any = int(ids_tensor((1,) ,output_from_past.shape[-1] ) ) lowerCAmelCase__ : Dict = output_from_no_past[:, -3:, random_slice_idx] lowerCAmelCase__ : Any = output_from_past[:, :, random_slice_idx] # test that outputs are equal for slice tf.debugging.assert_near(lowercase_ ,lowercase_ ,rtol=1E-3 ) @require_tf class SCREAMING_SNAKE_CASE ( __A , __A , unittest.TestCase ): """simple docstring""" lowercase__ = (TFOPTModel, TFOPTForCausalLM) if is_tf_available() else () lowercase__ = (TFOPTForCausalLM,) if is_tf_available() else () lowercase__ = ( {"feature-extraction": TFOPTModel, "text-generation": TFOPTForCausalLM} if is_tf_available() else {} ) lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = 10 def __lowerCAmelCase ( self : Dict ): lowerCAmelCase__ : List[str] = TFOPTModelTester(self ) lowerCAmelCase__ : Tuple = ConfigTester(self ,config_class=lowercase_ ) def __lowerCAmelCase ( self : Tuple ): self.config_tester.run_common_tests() def __lowerCAmelCase ( self : Union[str, Any] ): lowerCAmelCase__ : str = self.model_tester.prepare_config_and_inputs_for_common() self.model_tester.check_decoder_model_past_large_inputs(*lowercase_ ) def __lowerCAmelCase ( self : Optional[Any] ): lowerCAmelCase__ : List[str] = self.model_tester.prepare_config_and_inputs_for_common() def _get_word_embedding_weight(lowercase_ : Tuple ,lowercase_ : str ): if hasattr(lowercase_ ,'''weight''' ): return embedding_layer.weight else: # Here we build the word embeddings weights if not exists. # And then we retry to get the attribute once built. model.build() if hasattr(lowercase_ ,'''weight''' ): return embedding_layer.weight else: return None for model_class in self.all_model_classes: for size in [config.vocab_size - 1_0, config.vocab_size + 1_0]: # build the embeddings lowerCAmelCase__ : List[str] = model_class(config=lowercase_ ) lowerCAmelCase__ : List[Any] = _get_word_embedding_weight(lowercase_ ,model.get_input_embeddings() ) lowerCAmelCase__ : List[Any] = _get_word_embedding_weight(lowercase_ ,model.get_output_embeddings() ) # reshape the embeddings model.resize_token_embeddings(lowercase_ ) lowerCAmelCase__ : Optional[Any] = _get_word_embedding_weight(lowercase_ ,model.get_input_embeddings() ) lowerCAmelCase__ : Tuple = _get_word_embedding_weight(lowercase_ ,model.get_output_embeddings() ) # check that the resized embeddings size matches the desired size. lowerCAmelCase__ : Dict = size if size is not None else config.vocab_size self.assertEqual(new_input_embeddings.shape[0] ,lowercase_ ) # check that weights remain the same after resizing lowerCAmelCase__ : List[Any] = True for pa, pa in zip(old_input_embeddings.value() ,new_input_embeddings.value() ): if tf.math.reduce_sum(tf.math.abs(pa - pa ) ) > 0: lowerCAmelCase__ : List[Any] = False self.assertTrue(lowercase_ ) if old_output_embeddings is not None and new_output_embeddings is not None: self.assertEqual(new_output_embeddings.shape[0] ,lowercase_ ) lowerCAmelCase__ : Dict = True for pa, pa in zip(old_output_embeddings.value() ,new_output_embeddings.value() ): if tf.math.reduce_sum(tf.math.abs(pa - pa ) ) > 0: lowerCAmelCase__ : List[str] = False self.assertTrue(lowercase_ ) def __SCREAMING_SNAKE_CASE ( A_ ): return tf.constant(_lowerCamelCase , dtype=tf.intaa ) @require_tf class SCREAMING_SNAKE_CASE ( unittest.TestCase ): """simple docstring""" lowercase__ = 99 def __lowerCAmelCase ( self : str ): lowerCAmelCase__ : Any = tf.ones((4, 1) ,dtype=tf.intaa ) * 2 lowerCAmelCase__ : Optional[Any] = tf.concat([ids_tensor((4, 6) ,self.vocab_size - 3 ) + 3, eos_column_vector] ,axis=1 ) lowerCAmelCase__ : int = input_ids.shape[0] lowerCAmelCase__ : Any = OPTConfig( vocab_size=self.vocab_size ,hidden_size=2_4 ,num_hidden_layers=2 ,num_attention_heads=2 ,ffn_dim=3_2 ,max_position_embeddings=4_8 ,eos_token_id=2 ,pad_token_id=1 ,bos_token_id=0 ,) return config, input_ids, batch_size @require_sentencepiece @require_tf class SCREAMING_SNAKE_CASE ( unittest.TestCase ): """simple docstring""" @slow def __lowerCAmelCase ( self : str ): lowerCAmelCase__ : Dict = TFOPTModel.from_pretrained('''facebook/opt-350m''' ) lowerCAmelCase__ : Dict = _long_tensor([[0, 3_1_4_1_4, 2_3_2, 3_2_8, 7_4_0, 1_1_4_0, 1_2_6_9_5, 6_9, 4_6_0_7_8, 1_5_8_8, 2]] ) lowerCAmelCase__ : Tuple = tf.not_equal(lowercase_ ,model.config.pad_token_id ) with tf.GradientTape(): lowerCAmelCase__ : Union[str, Any] = model(input_ids=lowercase_ ,attention_mask=lowercase_ ).last_hidden_state lowerCAmelCase__ : str = (1, 1_1, 5_1_2) self.assertEqual(output.shape ,lowercase_ ) lowerCAmelCase__ : str = tf.constant( [[-0.2873, -1.9218, -0.3033], [-1.2710, -0.1338, -0.1902], [0.4095, 0.1214, -1.3121]] ) self.assertTrue(np.allclose(output[:, :3, :3] ,lowercase_ ,atol=4E-3 ) ) lowerCAmelCase__ : Union[str, Any] = tf.function(lowercase_ ,jit_compile=lowercase_ ) lowerCAmelCase__ : List[str] = xla_generate(lowercase_ ,lowercase_ )[0] self.assertTrue(np.allclose(output[:, :3, :3] ,lowercase_ ,atol=4E-2 ) ) @require_tf @slow class SCREAMING_SNAKE_CASE ( unittest.TestCase ): """simple docstring""" def __lowerCAmelCase ( self : Dict ): super().setUp() lowerCAmelCase__ : str = "facebook/opt-350m" def __lowerCAmelCase ( self : Optional[Any] ): lowerCAmelCase__ : Dict = TFOPTForCausalLM.from_pretrained(self.path_model ) lowerCAmelCase__ : Any = GPTaTokenizer.from_pretrained(self.path_model ) lowerCAmelCase__ : List[str] = [ "Today is a beautiful day and I want to", "In the city of", "Paris is the capital of France and", "Computers and mobile phones have taken", ] # verify that prompt without BOS token is identical to Metaseq -> add_special_tokens=False lowerCAmelCase__ : Tuple = tokenizer(lowercase_ ,return_tensors='''tf''' ,padding=lowercase_ ,add_special_tokens=lowercase_ ) lowerCAmelCase__ : List[str] = tf.math.reduce_mean(model(inputs.input_ids ,attention_mask=inputs.attention_mask )[0] ,axis=-1 ) lowerCAmelCase__ : Optional[Any] = tf.constant( [ [1.3851, -13.8923, -10.5229, -10.7533, -0.2309, -10.2384, -0.5365, -9.0947, -5.1670], [-4.7073, -10.6276, -3.9415, -21.5242, -0.2822, -0.2822, -0.2822, -0.2822, -0.2822], [0.6247, -3.4229, -8.9179, -1.4297, -14.1650, 1.4146, -9.0218, -0.2703, -0.2703], [6.4783, -1.9913, -10.7926, -2.3336, 1.5092, -0.9974, -6.8213, 1.3477, 1.3477], ] ) self.assertTrue(np.allclose(lowercase_ ,lowercase_ ,atol=1E-4 ) ) lowerCAmelCase__ : Dict = tf.function(lowercase_ ,jit_compile=lowercase_ ) lowerCAmelCase__ : Any = tf.math.reduce_mean(xla_generate(inputs.input_ids ,attention_mask=inputs.attention_mask )[0] ,axis=-1 ) self.assertTrue(np.allclose(lowercase_ ,lowercase_ ,atol=1E-4 ) ) @require_tf @slow class SCREAMING_SNAKE_CASE ( unittest.TestCase ): """simple docstring""" @property def __lowerCAmelCase ( self : int ): return [ "Today is a beautiful day and I want", "In the city of", "Paris is the capital of France and", "Computers and mobile phones have taken", ] def __lowerCAmelCase ( self : List[Any] ): lowerCAmelCase__ : List[Any] = "facebook/opt-125m" lowerCAmelCase__ : Optional[Any] = [ "Today is a beautiful day and I want to", "In the city of New York, the city", "Paris is the capital of France and the capital", "Computers and mobile phones have taken over the", ] lowerCAmelCase__ : List[Any] = [] lowerCAmelCase__ : Union[str, Any] = GPTaTokenizer.from_pretrained(lowercase_ ) lowerCAmelCase__ : List[Any] = TFOPTForCausalLM.from_pretrained(lowercase_ ) for prompt in self.prompts: lowerCAmelCase__ : Tuple = tokenizer(lowercase_ ,return_tensors='''tf''' ).input_ids lowerCAmelCase__ : Any = model.generate(lowercase_ ,max_length=1_0 ) lowerCAmelCase__ : Optional[int] = tokenizer.batch_decode(lowercase_ ,skip_special_tokens=lowercase_ ) predicted_outputs += generated_string self.assertListEqual(lowercase_ ,lowercase_ ) def __lowerCAmelCase ( self : List[str] ): lowerCAmelCase__ : Dict = "facebook/opt-350m" lowerCAmelCase__ : Optional[int] = GPTaTokenizer.from_pretrained(lowercase_ ) lowerCAmelCase__ : Optional[Any] = TFOPTForCausalLM.from_pretrained(lowercase_ ) lowerCAmelCase__ : Tuple = "left" # use different length sentences to test batching lowerCAmelCase__ : str = [ "Hello, my dog is a little", "Today, I", ] lowerCAmelCase__ : List[str] = tokenizer(lowercase_ ,return_tensors='''tf''' ,padding=lowercase_ ) lowerCAmelCase__ : Dict = inputs["input_ids"] lowerCAmelCase__ : int = model.generate(input_ids=lowercase_ ,attention_mask=inputs['''attention_mask'''] ) lowerCAmelCase__ : Tuple = tokenizer(sentences[0] ,return_tensors='''tf''' ).input_ids lowerCAmelCase__ : Dict = model.generate(input_ids=lowercase_ ) lowerCAmelCase__ : Union[str, Any] = inputs_non_padded.shape[-1] - tf.math.reduce_sum( tf.cast(inputs['''attention_mask'''][-1] ,tf.intaa ) ) lowerCAmelCase__ : Optional[Any] = tokenizer(sentences[1] ,return_tensors='''tf''' ).input_ids lowerCAmelCase__ : List[str] = model.generate(input_ids=lowercase_ ,max_length=model.config.max_length - num_paddings ) lowerCAmelCase__ : List[str] = tokenizer.batch_decode(lowercase_ ,skip_special_tokens=lowercase_ ) lowerCAmelCase__ : Tuple = tokenizer.decode(output_non_padded[0] ,skip_special_tokens=lowercase_ ) lowerCAmelCase__ : Tuple = tokenizer.decode(output_padded[0] ,skip_special_tokens=lowercase_ ) lowerCAmelCase__ : List[Any] = [ "Hello, my dog is a little bit of a dork.\nI'm a little bit", "Today, I was in the middle of a conversation with a friend about the", ] self.assertListEqual(lowercase_ ,lowercase_ ) self.assertListEqual(lowercase_ ,[non_padded_sentence, padded_sentence] ) def __lowerCAmelCase ( self : Tuple ): lowerCAmelCase__ : Optional[int] = "facebook/opt-350m" lowerCAmelCase__ : Union[str, Any] = [ "Today is a beautiful day and I want to", "In the city of San Francisco, the city", "Paris is the capital of France and the capital", "Computers and mobile phones have taken over the", ] lowerCAmelCase__ : Optional[int] = [] lowerCAmelCase__ : Union[str, Any] = GPTaTokenizer.from_pretrained(lowercase_ ) lowerCAmelCase__ : Optional[int] = TFOPTForCausalLM.from_pretrained(lowercase_ ) for prompt in self.prompts: lowerCAmelCase__ : List[str] = tokenizer(lowercase_ ,return_tensors='''tf''' ).input_ids lowerCAmelCase__ : Optional[Any] = model.generate(lowercase_ ,max_length=1_0 ) lowerCAmelCase__ : int = tokenizer.batch_decode(lowercase_ ,skip_special_tokens=lowercase_ ) predicted_outputs += generated_string self.assertListEqual(lowercase_ ,lowercase_ )
106
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging UpperCamelCase = logging.get_logger(__name__) UpperCamelCase = { '''YituTech/conv-bert-base''': '''https://huggingface.co/YituTech/conv-bert-base/resolve/main/config.json''', '''YituTech/conv-bert-medium-small''': ( '''https://huggingface.co/YituTech/conv-bert-medium-small/resolve/main/config.json''' ), '''YituTech/conv-bert-small''': '''https://huggingface.co/YituTech/conv-bert-small/resolve/main/config.json''', # See all ConvBERT models at https://huggingface.co/models?filter=convbert } class snake_case_ ( __A ): __A : List[str] = "convbert" def __init__( self : Union[str, Any] , lowercase_ : str=3_05_22 , lowercase_ : Any=7_68 , lowercase_ : Tuple=12 , lowercase_ : List[str]=12 , lowercase_ : Optional[int]=30_72 , lowercase_ : Union[str, Any]="gelu" , lowercase_ : str=0.1 , lowercase_ : List[str]=0.1 , lowercase_ : Optional[Any]=5_12 , lowercase_ : Dict=2 , lowercase_ : Union[str, Any]=0.02 , lowercase_ : Optional[Any]=1E-12 , lowercase_ : Optional[int]=1 , lowercase_ : List[Any]=0 , lowercase_ : Optional[int]=2 , lowercase_ : str=7_68 , lowercase_ : Dict=2 , lowercase_ : Optional[Any]=9 , lowercase_ : Union[str, Any]=1 , lowercase_ : Any=None , **lowercase_ : Optional[Any] , ) -> Dict: super().__init__( pad_token_id=lowercase_ , bos_token_id=lowercase_ , eos_token_id=lowercase_ , **lowercase_ , ) lowercase__ : List[str] = vocab_size lowercase__ : Union[str, Any] = hidden_size lowercase__ : Any = num_hidden_layers lowercase__ : List[str] = num_attention_heads lowercase__ : Union[str, Any] = intermediate_size lowercase__ : Optional[Any] = hidden_act lowercase__ : int = hidden_dropout_prob lowercase__ : str = attention_probs_dropout_prob lowercase__ : Union[str, Any] = max_position_embeddings lowercase__ : Optional[int] = type_vocab_size lowercase__ : Tuple = initializer_range lowercase__ : List[str] = layer_norm_eps lowercase__ : List[Any] = embedding_size lowercase__ : Optional[Any] = head_ratio lowercase__ : Dict = conv_kernel_size lowercase__ : Tuple = num_groups lowercase__ : Optional[int] = classifier_dropout class snake_case_ ( __A ): @property def __UpperCamelCase ( self : Optional[int] ) -> Mapping[str, Mapping[int, str]]: if self.task == "multiple-choice": lowercase__ : Tuple = {0: "batch", 1: "choice", 2: "sequence"} else: lowercase__ : str = {0: "batch", 1: "sequence"} return OrderedDict( [ ("input_ids", dynamic_axis), ("attention_mask", dynamic_axis), ("token_type_ids", dynamic_axis), ] )
87
0
from __future__ import annotations def __lowerCamelCase (UpperCAmelCase__ : int , UpperCAmelCase__ : int ): SCREAMING_SNAKE_CASE = [] create_all_state(1 , UpperCAmelCase__ , UpperCAmelCase__ , [] , UpperCAmelCase__ ) return result def __lowerCamelCase (UpperCAmelCase__ : int , UpperCAmelCase__ : int , UpperCAmelCase__ : int , UpperCAmelCase__ : list[int] , UpperCAmelCase__ : list[list[int]] , ): if level == 0: total_list.append(current_list[:] ) return for i in range(UpperCAmelCase__ , total_number - level + 2 ): current_list.append(UpperCAmelCase__ ) create_all_state(i + 1 , UpperCAmelCase__ , level - 1 , UpperCAmelCase__ , UpperCAmelCase__ ) current_list.pop() def __lowerCamelCase (UpperCAmelCase__ : list[list[int]] ): for i in total_list: print(*UpperCAmelCase__ ) if __name__ == "__main__": _lowerCamelCase : Tuple = 4 _lowerCamelCase : Dict = 2 _lowerCamelCase : Optional[Any] = generate_all_combinations(n, k) print_all_state(total_list)
206
from typing import List, Optional, Tuple from ...tokenization_utils_fast import PreTrainedTokenizerFast from ...utils import logging from .tokenization_herbert import HerbertTokenizer _lowerCamelCase : Optional[Any] = logging.get_logger(__name__) _lowerCamelCase : Any = {'''vocab_file''': '''vocab.json''', '''merges_file''': '''merges.txt''', '''tokenizer_file''': '''tokenizer.json'''} _lowerCamelCase : int = { '''vocab_file''': { '''allegro/herbert-base-cased''': '''https://huggingface.co/allegro/herbert-base-cased/resolve/main/vocab.json''' }, '''merges_file''': { '''allegro/herbert-base-cased''': '''https://huggingface.co/allegro/herbert-base-cased/resolve/main/merges.txt''' }, } _lowerCamelCase : Tuple = {'''allegro/herbert-base-cased''': 5_14} _lowerCamelCase : Optional[int] = {} class lowercase ( a ): lowercase__ : List[str] = VOCAB_FILES_NAMES lowercase__ : str = PRETRAINED_VOCAB_FILES_MAP lowercase__ : Tuple = PRETRAINED_INIT_CONFIGURATION lowercase__ : Optional[int] = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES lowercase__ : str = HerbertTokenizer def __init__( self : Dict , _UpperCamelCase : Any=None , _UpperCamelCase : Any=None , _UpperCamelCase : Optional[int]=None , _UpperCamelCase : Optional[int]="<s>" , _UpperCamelCase : Union[str, Any]="<unk>" , _UpperCamelCase : List[str]="<pad>" , _UpperCamelCase : List[str]="<mask>" , _UpperCamelCase : Tuple="</s>" , **_UpperCamelCase : Any , ) -> str: '''simple docstring''' super().__init__( _UpperCamelCase , _UpperCamelCase , tokenizer_file=_UpperCamelCase , cls_token=_UpperCamelCase , unk_token=_UpperCamelCase , pad_token=_UpperCamelCase , mask_token=_UpperCamelCase , sep_token=_UpperCamelCase , **_UpperCamelCase , ) def __snake_case( self : Optional[Any] , _UpperCamelCase : List[int] , _UpperCamelCase : Optional[List[int]] = None ) -> List[int]: '''simple docstring''' SCREAMING_SNAKE_CASE = [self.cls_token_id] SCREAMING_SNAKE_CASE = [self.sep_token_id] if token_ids_a is None: return cls + token_ids_a + sep return cls + token_ids_a + sep + token_ids_a + sep def __snake_case( self : Any , _UpperCamelCase : List[int] , _UpperCamelCase : Optional[List[int]] = None , _UpperCamelCase : bool = False ) -> List[int]: '''simple docstring''' if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=_UpperCamelCase , token_ids_a=_UpperCamelCase , already_has_special_tokens=_UpperCamelCase ) if token_ids_a is None: return [1] + ([0] * len(_UpperCamelCase )) + [1] return [1] + ([0] * len(_UpperCamelCase )) + [1] + ([0] * len(_UpperCamelCase )) + [1] def __snake_case( self : Union[str, Any] , _UpperCamelCase : List[int] , _UpperCamelCase : Optional[List[int]] = None ) -> List[int]: '''simple docstring''' SCREAMING_SNAKE_CASE = [self.sep_token_id] SCREAMING_SNAKE_CASE = [self.cls_token_id] if token_ids_a is None: return len(cls + token_ids_a + sep ) * [0] return len(cls + token_ids_a + sep ) * [0] + len(token_ids_a + sep ) * [1] def __snake_case( self : str , _UpperCamelCase : str , _UpperCamelCase : Optional[str] = None ) -> Tuple[str]: '''simple docstring''' SCREAMING_SNAKE_CASE = self._tokenizer.model.save(_UpperCamelCase , name=_UpperCamelCase ) return tuple(_UpperCamelCase )
206
1
'''simple docstring''' import argparse import torch from safetensors.torch import load_file from diffusers import StableDiffusionPipeline def a_ ( lowerCamelCase : Union[str, Any] , lowerCamelCase : Tuple , lowerCamelCase : Optional[Any] , lowerCamelCase : Any , lowerCamelCase : Dict ): # load base model lowerCAmelCase = StableDiffusionPipeline.from_pretrained(lowerCamelCase , torch_dtype=torch.floataa ) # load LoRA weight from .safetensors lowerCAmelCase = load_file(lowerCamelCase ) lowerCAmelCase = [] # directly update weight in diffusers model for key in state_dict: # it is suggested to print out the key, it usually will be something like below # "lora_te_text_model_encoder_layers_0_self_attn_k_proj.lora_down.weight" # as we have set the alpha beforehand, so just skip if ".alpha" in key or key in visited: continue if "text" in key: lowerCAmelCase = key.split('.' )[0].split(LORA_PREFIX_TEXT_ENCODER + '_' )[-1].split('_' ) lowerCAmelCase = pipeline.text_encoder else: lowerCAmelCase = key.split('.' )[0].split(LORA_PREFIX_UNET + '_' )[-1].split('_' ) lowerCAmelCase = pipeline.unet # find the target layer lowerCAmelCase = layer_infos.pop(0 ) while len(lowerCamelCase ) > -1: try: lowerCAmelCase = curr_layer.__getattr__(lowerCamelCase ) if len(lowerCamelCase ) > 0: lowerCAmelCase = layer_infos.pop(0 ) elif len(lowerCamelCase ) == 0: break except Exception: if len(lowerCamelCase ) > 0: temp_name += "_" + layer_infos.pop(0 ) else: lowerCAmelCase = layer_infos.pop(0 ) lowerCAmelCase = [] if "lora_down" in key: pair_keys.append(key.replace('lora_down' , 'lora_up' ) ) pair_keys.append(lowerCamelCase ) else: pair_keys.append(lowerCamelCase ) pair_keys.append(key.replace('lora_up' , 'lora_down' ) ) # update weight if len(state_dict[pair_keys[0]].shape ) == 4: lowerCAmelCase = state_dict[pair_keys[0]].squeeze(3 ).squeeze(2 ).to(torch.floataa ) lowerCAmelCase = state_dict[pair_keys[1]].squeeze(3 ).squeeze(2 ).to(torch.floataa ) curr_layer.weight.data += alpha * torch.mm(lowerCamelCase , lowerCamelCase ).unsqueeze(2 ).unsqueeze(3 ) else: lowerCAmelCase = state_dict[pair_keys[0]].to(torch.floataa ) lowerCAmelCase = state_dict[pair_keys[1]].to(torch.floataa ) curr_layer.weight.data += alpha * torch.mm(lowerCamelCase , lowerCamelCase ) # update visited list for item in pair_keys: visited.append(lowerCamelCase ) return pipeline if __name__ == "__main__": __snake_case =argparse.ArgumentParser() parser.add_argument( """--base_model_path""", default=None, type=str, required=True, help="""Path to the base model in diffusers format.""" ) parser.add_argument( """--checkpoint_path""", default=None, type=str, required=True, help="""Path to the checkpoint to convert.""" ) parser.add_argument("""--dump_path""", default=None, type=str, required=True, help="""Path to the output model.""") parser.add_argument( """--lora_prefix_unet""", default="""lora_unet""", type=str, help="""The prefix of UNet weight in safetensors""" ) parser.add_argument( """--lora_prefix_text_encoder""", default="""lora_te""", type=str, help="""The prefix of text encoder weight in safetensors""", ) parser.add_argument("""--alpha""", default=0.7_5, type=float, help="""The merging ratio in W = W0 + alpha * deltaW""") parser.add_argument( """--to_safetensors""", action="""store_true""", help="""Whether to store pipeline in safetensors format or not.""" ) parser.add_argument("""--device""", type=str, help="""Device to use (e.g. cpu, cuda:0, cuda:1, etc.)""") __snake_case =parser.parse_args() __snake_case =args.base_model_path __snake_case =args.checkpoint_path __snake_case =args.dump_path __snake_case =args.lora_prefix_unet __snake_case =args.lora_prefix_text_encoder __snake_case =args.alpha __snake_case =convert(base_model_path, checkpoint_path, lora_prefix_unet, lora_prefix_text_encoder, alpha) __snake_case =pipe.to(args.device) pipe.save_pretrained(args.dump_path, safe_serialization=args.to_safetensors)
4
'''simple docstring''' import multiprocessing import time from arguments import PretokenizationArguments from datasets import load_dataset from transformers import AutoTokenizer, HfArgumentParser def a_ ( lowerCamelCase : Dict ): lowerCAmelCase = {} lowerCAmelCase = tokenizer(example['content'] , truncation=lowerCamelCase )['input_ids'] lowerCAmelCase = len(example['content'] ) / len(output['input_ids'] ) return output __snake_case =HfArgumentParser(PretokenizationArguments) __snake_case =parser.parse_args() if args.num_workers is None: __snake_case =multiprocessing.cpu_count() __snake_case =AutoTokenizer.from_pretrained(args.tokenizer_dir) __snake_case =time.time() __snake_case =load_dataset(args.dataset_name, split="""train""") print(F'''Dataset loaded in {time.time()-t_start:.2f}s''') __snake_case =time.time() __snake_case =ds.map( tokenize, num_proc=args.num_workers, remove_columns=[ """repo_name""", """path""", """copies""", """size""", """content""", """license""", """hash""", """line_mean""", """line_max""", """alpha_frac""", """autogenerated""", ], ) print(F'''Dataset tokenized in {time.time()-t_start:.2f}s''') __snake_case =time.time() ds.push_to_hub(args.tokenized_data_repo) print(F'''Data pushed to the hub in {time.time()-t_start:.2f}s''')
4
1
"""simple docstring""" import json import os import torch from diffusers import UNetaDModel os.makedirs('''hub/hopper-medium-v2/unet/hor32''', exist_ok=True) os.makedirs('''hub/hopper-medium-v2/unet/hor128''', exist_ok=True) os.makedirs('''hub/hopper-medium-v2/value_function''', exist_ok=True) def lowerCamelCase (a_ :List[Any]) -> Dict: if hor == 128: lowercase :Union[str, Any] = ('''DownResnetBlock1D''', '''DownResnetBlock1D''', '''DownResnetBlock1D''') lowercase :Tuple = (32, 128, 256) lowercase :str = ('''UpResnetBlock1D''', '''UpResnetBlock1D''') elif hor == 32: lowercase :Any = ('''DownResnetBlock1D''', '''DownResnetBlock1D''', '''DownResnetBlock1D''', '''DownResnetBlock1D''') lowercase :int = (32, 64, 128, 256) lowercase :Union[str, Any] = ('''UpResnetBlock1D''', '''UpResnetBlock1D''', '''UpResnetBlock1D''') lowercase :Union[str, Any] = torch.load(F"""/Users/bglickenhaus/Documents/diffuser/temporal_unet-hopper-mediumv2-hor{hor}.torch""") lowercase :Optional[Any] = model.state_dict() lowercase :Optional[Any] = { '''down_block_types''': down_block_types, '''block_out_channels''': block_out_channels, '''up_block_types''': up_block_types, '''layers_per_block''': 1, '''use_timestep_embedding''': True, '''out_block_type''': '''OutConv1DBlock''', '''norm_num_groups''': 8, '''downsample_each_block''': False, '''in_channels''': 14, '''out_channels''': 14, '''extra_in_channels''': 0, '''time_embedding_type''': '''positional''', '''flip_sin_to_cos''': False, '''freq_shift''': 1, '''sample_size''': 6_5536, '''mid_block_type''': '''MidResTemporalBlock1D''', '''act_fn''': '''mish''', } lowercase :Dict = UNetaDModel(**a_) print(F"""length of state dict: {len(state_dict.keys())}""") print(F"""length of value function dict: {len(hf_value_function.state_dict().keys())}""") lowercase :Tuple = dict(zip(model.state_dict().keys() , hf_value_function.state_dict().keys())) for k, v in mapping.items(): lowercase :Dict = state_dict.pop(a_) hf_value_function.load_state_dict(a_) torch.save(hf_value_function.state_dict() , F"""hub/hopper-medium-v2/unet/hor{hor}/diffusion_pytorch_model.bin""") with open(F"""hub/hopper-medium-v2/unet/hor{hor}/config.json""" , '''w''') as f: json.dump(a_ , a_) def lowerCamelCase () -> Dict: lowercase :str = { '''in_channels''': 14, '''down_block_types''': ('''DownResnetBlock1D''', '''DownResnetBlock1D''', '''DownResnetBlock1D''', '''DownResnetBlock1D'''), '''up_block_types''': (), '''out_block_type''': '''ValueFunction''', '''mid_block_type''': '''ValueFunctionMidBlock1D''', '''block_out_channels''': (32, 64, 128, 256), '''layers_per_block''': 1, '''downsample_each_block''': True, '''sample_size''': 6_5536, '''out_channels''': 14, '''extra_in_channels''': 0, '''time_embedding_type''': '''positional''', '''use_timestep_embedding''': True, '''flip_sin_to_cos''': False, '''freq_shift''': 1, '''norm_num_groups''': 8, '''act_fn''': '''mish''', } lowercase :List[Any] = torch.load('''/Users/bglickenhaus/Documents/diffuser/value_function-hopper-mediumv2-hor32.torch''') lowercase :Optional[Any] = model lowercase :Optional[Any] = UNetaDModel(**a_) print(F"""length of state dict: {len(state_dict.keys())}""") print(F"""length of value function dict: {len(hf_value_function.state_dict().keys())}""") lowercase :int = dict(zip(state_dict.keys() , hf_value_function.state_dict().keys())) for k, v in mapping.items(): lowercase :Any = state_dict.pop(a_) hf_value_function.load_state_dict(a_) torch.save(hf_value_function.state_dict() , '''hub/hopper-medium-v2/value_function/diffusion_pytorch_model.bin''') with open('''hub/hopper-medium-v2/value_function/config.json''' , '''w''') as f: json.dump(a_ , a_) if __name__ == "__main__": unet(32) # unet(128) value_function()
172
"""simple docstring""" import argparse import pickle import numpy as np import torch from torch import nn from transformers import ReformerConfig, ReformerModelWithLMHead from transformers.utils import logging logging.set_verbosity_info() def lowerCamelCase (a_ :Optional[int] , a_ :Union[str, Any] , a_ :Optional[Any]=None) -> List[Any]: # set parameter of one layer assert torch_layer.weight.shape == weight.shape, F"""{torch_layer} layer.weight does not match""" lowercase :int = nn.Parameter(a_) if bias is not None: assert torch_layer.bias.shape == bias.shape, F"""{torch_layer} layer.bias does not match""" lowercase :Tuple = nn.Parameter(a_) def lowerCamelCase (a_ :int , a_ :Any , a_ :Optional[int]) -> List[Any]: # set torch weights for 1-to-1 comparison lowercase :str = np.asarray(weights[0]) lowercase :List[Any] = np.asarray(weights[1]) lowercase :Optional[int] = np.asarray(weights[2]) set_param( torch_layer.self_attention.query_key , torch.tensor(a_).transpose(1 , 2).contiguous().view(-1 , a_) , ) set_param( torch_layer.self_attention.value , torch.tensor(a_).transpose(1 , 2).contiguous().view(-1 , a_) , ) set_param( torch_layer.output.dense , torch.tensor(a_).view(-1 , a_).contiguous().transpose(0 , 1) , ) def lowerCamelCase (a_ :str , a_ :Any , a_ :Union[str, Any]) -> Dict: # set torch weights for 1-to-1 comparison lowercase :str = np.asarray(weights[0]) lowercase :Dict = np.asarray(weights[1]) lowercase :Dict = np.asarray(weights[2]) lowercase :Optional[Any] = np.asarray(weights[3]) set_param( torch_layer.self_attention.query , torch.tensor(a_).transpose(1 , 2).contiguous().view(-1 , a_) , ) set_param( torch_layer.self_attention.key , torch.tensor(a_).transpose(1 , 2).contiguous().view(-1 , a_) , ) set_param( torch_layer.self_attention.value , torch.tensor(a_).transpose(1 , 2).contiguous().view(-1 , a_) , ) set_param( torch_layer.output.dense , torch.tensor(a_).view(-1 , a_).contiguous().transpose(0 , 1) , ) def lowerCamelCase (a_ :Union[str, Any] , a_ :Dict , a_ :Optional[int]) -> Optional[Any]: # layernorm 1 lowercase :Optional[int] = weights[0][0][0] lowercase :Union[str, Any] = np.asarray(layer_norm_a[0]) lowercase :List[str] = np.asarray(layer_norm_a[1]) set_param( torch_block.attention.layer_norm , torch.tensor(a_) , torch.tensor(a_) , ) # lsh weights + output lowercase :Optional[Any] = weights[0][1] if len(a_) < 4: set_layer_weights_in_torch_lsh(a_ , torch_block.attention , a_) else: set_layer_weights_in_torch_local(a_ , torch_block.attention , a_) # intermediate weighs lowercase :Optional[int] = weights[2][0][1][2] # Chunked Feed Forward if len(a_) == 4: lowercase :int = intermediate_weights[2] # layernorm 2 lowercase :int = np.asarray(intermediate_weights[0][0]) lowercase :Union[str, Any] = np.asarray(intermediate_weights[0][1]) set_param( torch_block.feed_forward.layer_norm , torch.tensor(a_) , torch.tensor(a_) , ) # intermediate dense lowercase :Dict = np.asarray(intermediate_weights[1][0]) lowercase :Optional[Any] = np.asarray(intermediate_weights[1][1]) set_param( torch_block.feed_forward.dense.dense , torch.tensor(a_).transpose(0 , 1).contiguous() , torch.tensor(a_) , ) # intermediate out lowercase :Union[str, Any] = np.asarray(intermediate_weights[4][0]) lowercase :Tuple = np.asarray(intermediate_weights[4][1]) set_param( torch_block.feed_forward.output.dense , torch.tensor(a_).transpose(0 , 1).contiguous() , torch.tensor(a_) , ) def lowerCamelCase (a_ :Tuple , a_ :Dict , a_ :Tuple) -> str: # reformer model lowercase :Union[str, Any] = torch_model.reformer # word embeds lowercase :Tuple = np.asarray(weights[1]) set_param( torch_model_reformer.embeddings.word_embeddings , torch.tensor(a_) , ) if isinstance(weights[3] , a_): lowercase :str = torch_model_reformer.embeddings.position_embeddings for emb_idx in range(len(position_embeddings.weights)): lowercase :List[str] = np.asarray(weights[3][emb_idx][0]) assert ( position_embeddings.weights[emb_idx].shape == emb_weights.shape ), F"""{position_embeddings[emb_idx]} emb does not match""" lowercase :int = nn.Parameter(torch.tensor(a_)) lowercase :Dict = weights[5] assert len(torch_model_reformer.encoder.layers) * 4 == len( a_), "HF and trax model do not have the same number of layers" for layer_idx, layer in enumerate(torch_model_reformer.encoder.layers): lowercase :Optional[int] = trax_layer_weights[4 * layer_idx : 4 * (layer_idx + 1)] set_block_weights_in_torch(a_ , a_ , a_) # output layer norm lowercase :Dict = np.asarray(weights[7][0]) lowercase :Optional[Any] = np.asarray(weights[7][1]) set_param( torch_model_reformer.encoder.layer_norm , torch.tensor(a_) , torch.tensor(a_) , ) # output embeddings lowercase :str = np.asarray(weights[9][0]) lowercase :Union[str, Any] = np.asarray(weights[9][1]) set_param( torch_model.lm_head.decoder , torch.tensor(a_).transpose(0 , 1).contiguous() , torch.tensor(a_) , ) def lowerCamelCase (a_ :Optional[Any] , a_ :List[Any] , a_ :Tuple) -> Union[str, Any]: # Initialise PyTorch model lowercase :Optional[Any] = ReformerConfig.from_json_file(a_) print(F"""Building PyTorch model from configuration: {config}""") lowercase :Dict = ReformerModelWithLMHead(a_) with open(a_ , '''rb''') as f: lowercase :Tuple = pickle.load(a_)['''weights'''] set_model_weights_in_torch(a_ , a_ , config.hidden_size) # Save pytorch-model print(F"""Save PyTorch model to {pytorch_dump_path}""") torch.save(model.state_dict() , a_) if __name__ == "__main__": UpperCAmelCase = argparse.ArgumentParser() # Required parameters parser.add_argument( '''--trax_model_pkl_path''', default=None, type=str, required=True, help='''Path to the TensorFlow checkpoint path.''' ) parser.add_argument( '''--config_file''', default=None, type=str, required=True, help=( '''The config json file corresponding to the pre-trained Reformer model. \n''' '''This specifies the model architecture.''' ), ) parser.add_argument( '''--pytorch_dump_path''', default=None, type=str, required=True, help='''Path to the output PyTorch model.''' ) UpperCAmelCase = parser.parse_args() convert_trax_checkpoint_to_pytorch(args.trax_model_pkl_path, args.config_file, args.pytorch_dump_path)
172
1
import copy import inspect import unittest import numpy as np from huggingface_hub import hf_hub_download from transformers import TimesformerConfig from transformers.models.auto import get_values from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( MODEL_FOR_VIDEO_CLASSIFICATION_MAPPING, TimesformerForVideoClassification, TimesformerModel, ) from transformers.models.timesformer.modeling_timesformer import TIMESFORMER_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from transformers import VideoMAEImageProcessor class snake_case__ : def __init__( self , lowerCAmelCase__ , lowerCAmelCase__=13 , lowerCAmelCase__=10 , lowerCAmelCase__=3 , lowerCAmelCase__=2 , lowerCAmelCase__=2 , lowerCAmelCase__=True , lowerCAmelCase__=True , lowerCAmelCase__=32 , lowerCAmelCase__=5 , lowerCAmelCase__=4 , lowerCAmelCase__=37 , lowerCAmelCase__="gelu" , lowerCAmelCase__=0.1 , lowerCAmelCase__=0.1 , lowerCAmelCase__=10 , lowerCAmelCase__=0.0_2 , lowerCAmelCase__="divided_space_time" , lowerCAmelCase__=None , ) -> List[str]: __magic_name__ : int = parent __magic_name__ : Tuple = batch_size __magic_name__ : int = image_size __magic_name__ : str = num_channels __magic_name__ : Dict = patch_size __magic_name__ : Tuple = num_frames __magic_name__ : List[Any] = is_training __magic_name__ : List[Any] = use_labels __magic_name__ : Dict = hidden_size __magic_name__ : List[Any] = num_hidden_layers __magic_name__ : str = num_attention_heads __magic_name__ : List[Any] = intermediate_size __magic_name__ : Dict = hidden_act __magic_name__ : List[Any] = hidden_dropout_prob __magic_name__ : Union[str, Any] = attention_probs_dropout_prob __magic_name__ : Tuple = attention_type __magic_name__ : List[str] = initializer_range __magic_name__ : Optional[Any] = scope __magic_name__ : Tuple = num_labels # in TimeSformer, the number of spatial tokens equals num_frames * num_patches per frame + 1 CLS token __magic_name__ : str = (image_size // patch_size) ** 2 __magic_name__ : Any = (num_frames) * self.num_patches_per_frame + 1 def __magic_name__ ( self ) -> Dict: __magic_name__ : Optional[Any] = floats_tensor( [self.batch_size, self.num_frames, self.num_channels, self.image_size, self.image_size] ) __magic_name__ : str = None if self.use_labels: __magic_name__ : List[Any] = ids_tensor([self.batch_size] , self.num_labels ) __magic_name__ : Optional[Any] = self.get_config() return config, pixel_values, labels def __magic_name__ ( self ) -> str: __magic_name__ : Dict = TimesformerConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , num_frames=self.num_frames , hidden_size=self.hidden_size , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , initializer_range=self.initializer_range , attention_type=self.attention_type , ) __magic_name__ : Optional[Any] = self.num_labels return config def __magic_name__ ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> Optional[Any]: __magic_name__ : List[Any] = TimesformerModel(config=lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() __magic_name__ : Optional[Any] = model(lowerCAmelCase__ ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def __magic_name__ ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) -> Any: __magic_name__ : int = TimesformerForVideoClassification(lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() __magic_name__ : List[Any] = model(lowerCAmelCase__ ) # verify the logits shape __magic_name__ : List[Any] = torch.Size((self.batch_size, self.num_labels) ) self.parent.assertEqual(result.logits.shape , lowerCAmelCase__ ) def __magic_name__ ( self ) -> Any: __magic_name__ : Union[str, Any] = self.prepare_config_and_inputs() __magic_name__ ,__magic_name__ ,__magic_name__ : Tuple = config_and_inputs __magic_name__ : Optional[int] = {"""pixel_values""": pixel_values} return config, inputs_dict @require_torch class snake_case__ ( _lowerCAmelCase , _lowerCAmelCase , unittest.TestCase ): lowercase__ : Tuple = (TimesformerModel, TimesformerForVideoClassification) if is_torch_available() else () lowercase__ : Union[str, Any] = ( {'''feature-extraction''': TimesformerModel, '''video-classification''': TimesformerForVideoClassification} if is_torch_available() else {} ) lowercase__ : int = False lowercase__ : str = False lowercase__ : Tuple = False lowercase__ : Any = False def __magic_name__ ( self ) -> List[Any]: __magic_name__ : List[Any] = TimesformerModelTester(self ) __magic_name__ : List[str] = ConfigTester( self , config_class=lowerCAmelCase__ , has_text_modality=lowerCAmelCase__ , hidden_size=37 ) def __magic_name__ ( self , lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__=False ) -> List[str]: __magic_name__ : List[str] = copy.deepcopy(lowerCAmelCase__ ) if return_labels: if model_class in get_values(lowerCAmelCase__ ): __magic_name__ : Union[str, Any] = torch.zeros( self.model_tester.batch_size , dtype=torch.long , device=lowerCAmelCase__ ) return inputs_dict def __magic_name__ ( self ) -> List[str]: self.config_tester.run_common_tests() @unittest.skip(reason="""TimeSformer does not use inputs_embeds""" ) def __magic_name__ ( self ) -> str: pass def __magic_name__ ( self ) -> Optional[int]: __magic_name__ ,__magic_name__ : Dict = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: __magic_name__ : List[Any] = model_class(lowerCAmelCase__ ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) __magic_name__ : Tuple = model.get_output_embeddings() self.assertTrue(x is None or isinstance(lowerCAmelCase__ , nn.Linear ) ) def __magic_name__ ( self ) -> Optional[Any]: __magic_name__ ,__magic_name__ : Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: __magic_name__ : Dict = model_class(lowerCAmelCase__ ) __magic_name__ : Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic __magic_name__ : Optional[int] = [*signature.parameters.keys()] __magic_name__ : Any = ["""pixel_values"""] self.assertListEqual(arg_names[:1] , lowerCAmelCase__ ) def __magic_name__ ( self ) -> List[Any]: __magic_name__ : int = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*lowerCAmelCase__ ) def __magic_name__ ( self ) -> Union[str, Any]: __magic_name__ : Dict = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_video_classification(*lowerCAmelCase__ ) @slow def __magic_name__ ( self ) -> Optional[int]: for model_name in TIMESFORMER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: __magic_name__ : List[str] = TimesformerModel.from_pretrained(lowerCAmelCase__ ) self.assertIsNotNone(lowerCAmelCase__ ) def __magic_name__ ( self ) -> List[Any]: if not self.has_attentions: pass else: __magic_name__ ,__magic_name__ : Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() __magic_name__ : Optional[int] = True for model_class in self.all_model_classes: __magic_name__ : Tuple = self.model_tester.seq_length __magic_name__ : int = self.model_tester.num_frames __magic_name__ : Any = True __magic_name__ : Tuple = False __magic_name__ : Optional[int] = True __magic_name__ : str = model_class(lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() with torch.no_grad(): __magic_name__ : List[str] = model(**self._prepare_for_class(lowerCAmelCase__ , lowerCAmelCase__ ) ) __magic_name__ : List[str] = outputs.attentions self.assertEqual(len(lowerCAmelCase__ ) , self.model_tester.num_hidden_layers ) # check that output_attentions also work using config del inputs_dict["output_attentions"] __magic_name__ : Optional[Any] = True __magic_name__ : Optional[Any] = model_class(lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() with torch.no_grad(): __magic_name__ : Optional[int] = model(**self._prepare_for_class(lowerCAmelCase__ , lowerCAmelCase__ ) ) __magic_name__ : int = outputs.attentions self.assertEqual(len(lowerCAmelCase__ ) , self.model_tester.num_hidden_layers ) # attentions has shape (batch_size x num_frames) x num_heads x (num_patches per frame + 1) x (num_patches per frame + 1) self.assertListEqual( list(attentions[0].shape[-3:] ) , [self.model_tester.num_attention_heads, seq_len // num_frames + 1, seq_len // num_frames + 1] , ) __magic_name__ : Union[str, Any] = len(lowerCAmelCase__ ) # Check attention is always last and order is fine __magic_name__ : str = True __magic_name__ : Optional[Any] = True __magic_name__ : int = model_class(lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() with torch.no_grad(): __magic_name__ : List[str] = model(**self._prepare_for_class(lowerCAmelCase__ , lowerCAmelCase__ ) ) self.assertEqual(out_len + 1 , len(lowerCAmelCase__ ) ) __magic_name__ : Union[str, Any] = outputs.attentions self.assertEqual(len(lowerCAmelCase__ ) , self.model_tester.num_hidden_layers ) # attentions has shape (batch_size x num_frames) x num_heads x (num_patches per frame + 1) x (num_patches per frame + 1) self.assertListEqual( list(self_attentions[0].shape[-3:] ) , [self.model_tester.num_attention_heads, seq_len // num_frames + 1, seq_len // num_frames + 1] , ) def __magic_name__ ( self ) -> Any: def check_hidden_states_output(lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ): __magic_name__ : Union[str, Any] = model_class(lowerCAmelCase__ ) model.to(lowerCAmelCase__ ) model.eval() with torch.no_grad(): __magic_name__ : int = model(**self._prepare_for_class(lowerCAmelCase__ , lowerCAmelCase__ ) ) __magic_name__ : Optional[Any] = outputs.hidden_states __magic_name__ : str = self.model_tester.num_hidden_layers + 1 self.assertEqual(len(lowerCAmelCase__ ) , lowerCAmelCase__ ) __magic_name__ : str = self.model_tester.seq_length self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [seq_length, self.model_tester.hidden_size] , ) __magic_name__ ,__magic_name__ : int = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: __magic_name__ : Optional[Any] = True check_hidden_states_output(lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] __magic_name__ : Union[str, Any] = True check_hidden_states_output(lowerCAmelCase__ , lowerCAmelCase__ , lowerCAmelCase__ ) def UpperCamelCase ( ): """simple docstring""" __magic_name__ : List[Any] = hf_hub_download( repo_id="""hf-internal-testing/spaghetti-video""", filename="""eating_spaghetti.npy""", repo_type="""dataset""" ) __magic_name__ : List[str] = np.load(_A ) return list(_A ) @require_torch @require_vision class snake_case__ ( unittest.TestCase ): @cached_property def __magic_name__ ( self ) -> Optional[Any]: # logits were tested with a different mean and std, so we use the same here return ( VideoMAEImageProcessor(image_mean=[0.5, 0.5, 0.5] , image_std=[0.5, 0.5, 0.5] ) if is_vision_available() else None ) @slow def __magic_name__ ( self ) -> List[Any]: __magic_name__ : Dict = TimesformerForVideoClassification.from_pretrained("""facebook/timesformer-base-finetuned-k400""" ).to( lowerCAmelCase__ ) __magic_name__ : str = self.default_image_processor __magic_name__ : Any = prepare_video() __magic_name__ : Dict = image_processor(video[:8] , return_tensors="""pt""" ).to(lowerCAmelCase__ ) # forward pass with torch.no_grad(): __magic_name__ : int = model(**lowerCAmelCase__ ) # verify the logits __magic_name__ : Optional[int] = torch.Size((1, 4_00) ) self.assertEqual(outputs.logits.shape , lowerCAmelCase__ ) __magic_name__ : Union[str, Any] = torch.tensor([-0.3_0_1_6, -0.7_7_1_3, -0.4_2_0_5] ).to(lowerCAmelCase__ ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , lowerCAmelCase__ , atol=1e-4 ) )
342
from math import factorial def UpperCamelCase ( _A, _A, _A ): """simple docstring""" if successes > trials: raise ValueError("""successes must be lower or equal to trials""" ) if trials < 0 or successes < 0: raise ValueError("""the function is defined for non-negative integers""" ) if not isinstance(_A, _A ) or not isinstance(_A, _A ): raise ValueError("""the function is defined for non-negative integers""" ) if not 0 < prob < 1: raise ValueError("""prob has to be in range of 1 - 0""" ) __magic_name__ : int = (prob**successes) * ((1 - prob) ** (trials - successes)) # Calculate the binomial coefficient: n! / k!(n-k)! __magic_name__ : Any = float(factorial(_A ) ) coefficient /= factorial(_A ) * factorial(trials - successes ) return probability * coefficient if __name__ == "__main__": from doctest import testmod testmod() print("Probability of 2 successes out of 4 trails") print("with probability of 0.75 is:", end=" ") print(binomial_distribution(2, 4, 0.75))
342
1
'''simple docstring''' import inspect import os import unittest from pathlib import Path import torch import accelerate from accelerate.test_utils import execute_subprocess_async from accelerate.test_utils.testing import run_command class UpperCamelCase__( unittest.TestCase ): __magic_name__ : Tuple = inspect.getfile(accelerate.test_utils ) __magic_name__ : Dict = os.path.sep.join(mod_file.split(os.path.sep )[:-1] + ["scripts", "test_cli.py"] ) __magic_name__ : List[str] = ["accelerate", "launch"] __magic_name__ : List[Any] = Path.home() / ".cache/huggingface/accelerate" __magic_name__ : Tuple = "default_config.yaml" __magic_name__ : Tuple = config_folder / config_file __magic_name__ : int = config_folder / "_default_config.yaml" __magic_name__ : Optional[Any] = Path("tests/test_configs" ) @classmethod def a__( cls : int )-> Optional[Any]: """simple docstring""" if cls.config_path.is_file(): cls.config_path.rename(cls.changed_path ) @classmethod def a__( cls : Any )-> Optional[Any]: """simple docstring""" if cls.changed_path.is_file(): cls.changed_path.rename(cls.config_path ) def a__( self : Tuple )-> str: """simple docstring""" UpperCAmelCase = self.base_cmd if torch.cuda.is_available() and (torch.cuda.device_count() > 1): cmd += ["--multi_gpu"] execute_subprocess_async(cmd + [self.test_file_path] , env=os.environ.copy() ) def a__( self : List[Any] )-> str: """simple docstring""" for config in sorted(self.test_config_path.glob('''**/*.yaml''' ) ): with self.subTest(config_file=lowerCamelCase_ ): execute_subprocess_async( self.base_cmd + ['''--config_file''', str(lowerCamelCase_ ), self.test_file_path] , env=os.environ.copy() ) def a__( self : Union[str, Any] )-> Tuple: """simple docstring""" execute_subprocess_async(['''accelerate''', '''test'''] , env=os.environ.copy() ) class UpperCamelCase__( unittest.TestCase ): __magic_name__ : Optional[int] = "test-tpu" __magic_name__ : Optional[int] = "us-central1-a" __magic_name__ : Dict = "ls" __magic_name__ : Optional[int] = ["accelerate", "tpu-config"] __magic_name__ : Optional[Any] = "cd /usr/share" __magic_name__ : Optional[Any] = "tests/test_samples/test_command_file.sh" __magic_name__ : int = "Running gcloud compute tpus tpu-vm ssh" def a__( self : Dict )-> List[Any]: """simple docstring""" UpperCAmelCase = run_command( self.cmd + ['''--command''', self.command, '''--tpu_zone''', self.tpu_zone, '''--tpu_name''', self.tpu_name, '''--debug'''] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls --worker all""" , lowerCamelCase_ , ) def a__( self : Optional[int] )-> Optional[int]: """simple docstring""" UpperCAmelCase = run_command( self.cmd + [ '''--config_file''', '''tests/test_configs/0_12_0.yaml''', '''--command''', self.command, '''--tpu_zone''', self.tpu_zone, '''--tpu_name''', self.tpu_name, '''--debug''', ] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls --worker all""" , lowerCamelCase_ , ) def a__( self : Dict )-> Tuple: """simple docstring""" UpperCAmelCase = run_command( self.cmd + ['''--config_file''', '''tests/test_configs/latest.yaml''', '''--debug'''] , return_stdout=lowerCamelCase_ ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; echo \"hello world\"; echo \"this is a second command\" --worker all""" , lowerCamelCase_ , ) def a__( self : Optional[int] )-> List[str]: """simple docstring""" UpperCAmelCase = run_command( self.cmd + ['''--config_file''', '''tests/test_configs/latest.yaml''', '''--command''', self.command, '''--debug'''] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls --worker all""" , lowerCamelCase_ , ) def a__( self : Union[str, Any] )-> int: """simple docstring""" UpperCAmelCase = run_command( self.cmd + [ '''--config_file''', '''tests/test_configs/latest.yaml''', '''--command''', self.command, '''--command''', '''echo \"Hello World\"''', '''--debug''', ] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls; echo \"Hello World\" --worker all""" , lowerCamelCase_ , ) def a__( self : str )-> Optional[Any]: """simple docstring""" UpperCAmelCase = run_command( self.cmd + ['''--config_file''', '''tests/test_configs/latest.yaml''', '''--command_file''', self.command_file, '''--debug'''] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; echo \"hello world\"; echo \"this is a second command\" --worker all""" , lowerCamelCase_ , ) def a__( self : Dict )-> Union[str, Any]: """simple docstring""" UpperCAmelCase = run_command( self.cmd + [ '''--config_file''', '''tests/test_configs/0_12_0.yaml''', '''--command_file''', self.command_file, '''--tpu_zone''', self.tpu_zone, '''--tpu_name''', self.tpu_name, '''--debug''', ] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; echo \"hello world\"; echo \"this is a second command\" --worker all""" , lowerCamelCase_ , ) def a__( self : Optional[int] )-> Dict: """simple docstring""" UpperCAmelCase = run_command( self.cmd + ['''--config_file''', '''tests/test_configs/latest.yaml''', '''--install_accelerate''', '''--debug'''] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; pip install accelerate -U; echo \"hello world\"; echo \"this is a second command\" --worker all""" , lowerCamelCase_ , ) def a__( self : List[str] )-> List[str]: """simple docstring""" UpperCAmelCase = run_command( self.cmd + [ '''--config_file''', '''tests/test_configs/latest.yaml''', '''--install_accelerate''', '''--accelerate_version''', '''12.0.0''', '''--debug''', ] , return_stdout=lowerCamelCase_ , ) self.assertIn( F"""{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; pip install accelerate==12.0.0; echo \"hello world\"; echo \"this is a second command\" --worker all""" , lowerCamelCase_ , )
365
'''simple docstring''' from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available, is_vision_available _lowercase : Union[str, Any] = { """configuration_poolformer""": [ """POOLFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP""", """PoolFormerConfig""", """PoolFormerOnnxConfig""", ] } try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _lowercase : List[Any] = ["""PoolFormerFeatureExtractor"""] _lowercase : Any = ["""PoolFormerImageProcessor"""] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _lowercase : Tuple = [ """POOLFORMER_PRETRAINED_MODEL_ARCHIVE_LIST""", """PoolFormerForImageClassification""", """PoolFormerModel""", """PoolFormerPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_poolformer import ( POOLFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP, PoolFormerConfig, PoolFormerOnnxConfig, ) try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .feature_extraction_poolformer import PoolFormerFeatureExtractor from .image_processing_poolformer import PoolFormerImageProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_poolformer import ( POOLFORMER_PRETRAINED_MODEL_ARCHIVE_LIST, PoolFormerForImageClassification, PoolFormerModel, PoolFormerPreTrainedModel, ) else: import sys _lowercase : Dict = _LazyModule(__name__, globals()["""__file__"""], _import_structure)
91
0
class lowerCamelCase__: def __init__( self: Dict , UpperCamelCase_: int ): __lowerCamelCase = n __lowerCamelCase = [None] * self.n __lowerCamelCase = 0 # index of the first element __lowerCamelCase = 0 __lowerCamelCase = 0 def __len__( self: Optional[int] ): return self.size def lowerCAmelCase__ ( self: str ): return self.size == 0 def lowerCAmelCase__ ( self: Union[str, Any] ): return False if self.is_empty() else self.array[self.front] def lowerCAmelCase__ ( self: List[str] , UpperCamelCase_: List[Any] ): if self.size >= self.n: raise Exception("""QUEUE IS FULL""" ) __lowerCamelCase = data __lowerCamelCase = (self.rear + 1) % self.n self.size += 1 return self def lowerCAmelCase__ ( self: Union[str, Any] ): if self.size == 0: raise Exception("""UNDERFLOW""" ) __lowerCamelCase = self.array[self.front] __lowerCamelCase = None __lowerCamelCase = (self.front + 1) % self.n self.size -= 1 return temp
12
from math import ceil def __lowerCAmelCase ( a__ = 1001 ) -> int: __a = 1 for i in range(1 , int(ceil(n / 2.0 ) ) ): __a = 2 * i + 1 __a = 2 * i __a = total + 4 * odd**2 - 6 * even return total if __name__ == "__main__": import sys if len(sys.argv) == 1: print(solution()) else: try: A : List[Any] = int(sys.argv[1]) print(solution(n)) except ValueError: print('Invalid entry - please enter a number')
6
0
'''simple docstring''' def _lowerCAmelCase ( lowerCamelCase_ : int ): __lowercase = abs(lowerCamelCase_ ) __lowercase = 0 while n > 0: res += n % 1_0 n //= 1_0 return res def _lowerCAmelCase ( lowerCamelCase_ : int ): __lowercase = abs(lowerCamelCase_ ) return n if n < 1_0 else n % 1_0 + sum_of_digits(n // 1_0 ) def _lowerCAmelCase ( lowerCamelCase_ : int ): return sum(int(lowerCamelCase_ ) for c in str(abs(lowerCamelCase_ ) ) ) def _lowerCAmelCase ( ): from collections.abc import Callable from timeit import timeit def benchmark_a_function(lowerCamelCase_ : Callable , lowerCamelCase_ : int ) -> None: __lowercase = f"{func.__name__}({value})" __lowercase = timeit(f"__main__.{call}" , setup='''import __main__''' ) print(f"{call:56} = {func(lowerCamelCase_ )} -- {timing:.4f} seconds" ) for value in (2_6_2_1_4_4, 1_1_2_5_8_9_9_9_0_6_8_4_2_6_2_4, 1_2_6_7_6_5_0_6_0_0_2_2_8_2_2_9_4_0_1_4_9_6_7_0_3_2_0_5_3_7_6): for func in (sum_of_digits, sum_of_digits_recursion, sum_of_digits_compact): benchmark_a_function(lowerCamelCase_ , lowerCamelCase_ ) print() if __name__ == "__main__": import doctest doctest.testmod() benchmark()
217
'''simple docstring''' from dataclasses import dataclass from enum import Enum from typing import List, Optional, Union import numpy as np import PIL from PIL import Image from ...utils import BaseOutput, is_torch_available, is_transformers_available @dataclass class __lowercase ( lowerCAmelCase__ ): '''simple docstring''' a : Union[List[PIL.Image.Image], np.ndarray] a : Optional[List[bool]] if is_transformers_available() and is_torch_available(): from .pipeline_semantic_stable_diffusion import SemanticStableDiffusionPipeline
217
1
from ...configuration_utils import PretrainedConfig from ...utils import logging UpperCAmelCase : Optional[int] = logging.get_logger(__name__) UpperCAmelCase : int = { '''google/switch-base-8''': '''https://huggingface.co/google/switch-base-8/blob/main/config.json''', } class _A( snake_case__ ): """simple docstring""" UpperCamelCase : Dict = '''switch_transformers''' UpperCamelCase : Dict = ['''past_key_values'''] UpperCamelCase : Any = {'''hidden_size''': '''d_model''', '''num_attention_heads''': '''num_heads''', '''num_hidden_layers''': '''num_layers'''} def __init__( self , _A=32128 , _A=768 , _A=64 , _A=2048 , _A=64 , _A=12 , _A=3 , _A=12 , _A=3 , _A=12 , _A=8 , _A=False , _A=0.0_1 , _A="float32" , _A=False , _A=32 , _A=128 , _A=0.1 , _A=1e-6 , _A=0.0_0_1 , _A=0.0_0_1 , _A=1.0 , _A="relu" , _A=True , _A=False , _A=True , _A=0 , _A=1 , **_A , ): __A : Dict = vocab_size __A : Any = d_model __A : Dict = d_kv __A : str = d_ff __A : Optional[Any] = num_sparse_encoder_layers __A : str = num_layers __A : Tuple = ( num_decoder_layers if num_decoder_layers is not None else self.num_layers ) # default = symmetry __A : List[Any] = num_sparse_decoder_layers # This tells us, each how many encoder layer we'll have to set a sparse layer. if self.num_sparse_encoder_layers > 0: __A : Union[str, Any] = self.num_layers // self.num_sparse_encoder_layers else: __A : Optional[Any] = self.num_layers # HACK: this will create 0 sparse layers # This tells us, each how many encoder layer we'll have to set a sparse layer. if self.num_sparse_decoder_layers > 0: __A : Optional[Any] = self.num_decoder_layers // self.num_sparse_decoder_layers else: __A : Union[str, Any] = self.num_decoder_layers # HACK: this will create 0 sparse layers __A : int = num_heads __A : List[str] = num_experts __A : Optional[Any] = expert_capacity __A : Optional[int] = router_bias __A : Dict = router_jitter_noise if router_dtype not in ["float32", "float16", "bfloat16"]: raise ValueError(F"""`router_dtype` must be one of 'float32', 'float16' or 'bfloat16', got {router_dtype}""" ) __A : Any = router_dtype __A : str = router_ignore_padding_tokens __A : List[str] = relative_attention_num_buckets __A : List[str] = relative_attention_max_distance __A : List[str] = dropout_rate __A : int = layer_norm_epsilon __A : Optional[Any] = initializer_factor __A : Union[str, Any] = feed_forward_proj __A : Optional[int] = use_cache __A : int = add_router_probs __A : Optional[int] = router_z_loss_coef __A : Optional[int] = router_aux_loss_coef __A : List[str] = self.feed_forward_proj.split('-' ) __A : Any = act_info[-1] __A : int = act_info[0] == 'gated' if len(_A ) > 1 and act_info[0] != "gated" or len(_A ) > 2: raise ValueError( F"""`feed_forward_proj`: {feed_forward_proj} is not a valid activation function of the dense layer.""" 'Please make sure `feed_forward_proj` is of the format `gated-{ACT_FN}` or `{ACT_FN}`, e.g. ' '\'gated-gelu\' or \'relu\'' ) # for backwards compatibility if feed_forward_proj == "gated-gelu": __A : Optional[int] = 'gelu_new' super().__init__( pad_token_id=_A , eos_token_id=_A , is_encoder_decoder=_A , **_A , )
280
def _SCREAMING_SNAKE_CASE ( a ) -> bool: return str(a ) == str(a )[::-1] def _SCREAMING_SNAKE_CASE ( a ) -> int: return int(a ) + int(str(a )[::-1] ) def _SCREAMING_SNAKE_CASE ( a = 1_00_00 ) -> int: __A : int = [] for num in range(1 , a ): __A : List[str] = 0 __A : List[Any] = num while iterations < 50: __A : str = sum_reverse(a ) iterations += 1 if is_palindrome(a ): break else: lychrel_nums.append(a ) return len(a ) if __name__ == "__main__": print(F"""{solution() = }""")
280
1
import jax.numpy as jnp from ...utils import logging from ..ta.modeling_flax_ta import FlaxTaEncoderModel, FlaxTaForConditionalGeneration, FlaxTaModel from .configuration_mta import MTaConfig UpperCAmelCase_ = logging.get_logger(__name__) UpperCAmelCase_ = 'T5Config' def lowerCAmelCase_ ( __UpperCAmelCase: jnp.array , __UpperCAmelCase: int , __UpperCAmelCase: int ) -> jnp.ndarray: UpperCamelCase__ : List[Any] = jnp.zeros_like(__UpperCAmelCase ) UpperCamelCase__ : Optional[int] = shifted_input_ids.at[:, 1:].set(input_ids[:, :-1] ) UpperCamelCase__ : Dict = shifted_input_ids.at[:, 0].set(__UpperCAmelCase ) UpperCamelCase__ : Tuple = jnp.where(shifted_input_ids == -100 , __UpperCAmelCase , __UpperCAmelCase ) return shifted_input_ids class lowercase__ ( __lowerCamelCase ): '''simple docstring''' a : Optional[Any] = "mt5" a : Union[str, Any] = MTaConfig class lowercase__ ( __lowerCamelCase ): '''simple docstring''' a : List[Any] = "mt5" a : str = MTaConfig class lowercase__ ( __lowerCamelCase ): '''simple docstring''' a : List[Any] = "mt5" a : int = MTaConfig
247
import inspect import unittest from huggingface_hub import hf_hub_download from transformers import ConvNextConfig, UperNetConfig from transformers.testing_utils import require_torch, require_torch_multi_gpu, require_vision, slow, torch_device from transformers.utils import is_torch_available, is_vision_available from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import UperNetForSemanticSegmentation from transformers.models.upernet.modeling_upernet import UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class lowercase__ : '''simple docstring''' def __init__( self, __magic_name__, __magic_name__=13, __magic_name__=32, __magic_name__=3, __magic_name__=4, __magic_name__=[10, 20, 30, 40], __magic_name__=[2, 2, 3, 2], __magic_name__=True, __magic_name__=True, __magic_name__=37, __magic_name__="gelu", __magic_name__=10, __magic_name__=0.02, __magic_name__=["stage2", "stage3", "stage4"], __magic_name__=3, __magic_name__=None, ) -> str: """simple docstring""" UpperCamelCase__ : List[Any] = parent UpperCamelCase__ : Tuple = batch_size UpperCamelCase__ : Tuple = image_size UpperCamelCase__ : Optional[int] = num_channels UpperCamelCase__ : int = num_stages UpperCamelCase__ : Union[str, Any] = hidden_sizes UpperCamelCase__ : str = depths UpperCamelCase__ : str = is_training UpperCamelCase__ : int = use_labels UpperCamelCase__ : Union[str, Any] = intermediate_size UpperCamelCase__ : Dict = hidden_act UpperCamelCase__ : Optional[Any] = type_sequence_label_size UpperCamelCase__ : List[str] = initializer_range UpperCamelCase__ : str = out_features UpperCamelCase__ : Union[str, Any] = num_labels UpperCamelCase__ : Dict = scope UpperCamelCase__ : List[str] = num_stages def UpperCamelCase__ ( self ) -> List[str]: """simple docstring""" UpperCamelCase__ : List[str] = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase__ : Dict = None if self.use_labels: UpperCamelCase__ : Optional[Any] = ids_tensor([self.batch_size], self.type_sequence_label_size ) UpperCamelCase__ : Optional[int] = self.get_config() return config, pixel_values, labels def UpperCamelCase__ ( self ) -> Optional[int]: """simple docstring""" return ConvNextConfig( num_channels=self.num_channels, num_stages=self.num_stages, hidden_sizes=self.hidden_sizes, depths=self.depths, is_training=self.is_training, intermediate_size=self.intermediate_size, hidden_act=self.hidden_act, out_features=self.out_features, ) def UpperCamelCase__ ( self ) -> str: """simple docstring""" return UperNetConfig( backbone_config=self.get_backbone_config(), hidden_size=512, pool_scales=[1, 2, 3, 6], use_auxiliary_head=__magic_name__, auxiliary_loss_weight=0.4, auxiliary_in_channels=40, auxiliary_channels=256, auxiliary_num_convs=1, auxiliary_concat_input=__magic_name__, loss_ignore_index=255, num_labels=self.num_labels, ) def UpperCamelCase__ ( self, __magic_name__, __magic_name__, __magic_name__ ) -> Union[str, Any]: """simple docstring""" UpperCamelCase__ : Optional[Any] = UperNetForSemanticSegmentation(config=__magic_name__ ) model.to(__magic_name__ ) model.eval() UpperCamelCase__ : Any = model(__magic_name__ ) self.parent.assertEqual( result.logits.shape, (self.batch_size, self.num_labels, self.image_size, self.image_size) ) def UpperCamelCase__ ( self ) -> Any: """simple docstring""" UpperCamelCase__ : Optional[Any] = self.prepare_config_and_inputs() ( ( UpperCamelCase__ ) ,( UpperCamelCase__ ) ,( UpperCamelCase__ ) , ) : List[Any] = config_and_inputs UpperCamelCase__ : List[Any] = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class lowercase__ ( __lowerCamelCase , __lowerCamelCase , unittest.TestCase ): '''simple docstring''' a : Union[str, Any] = (UperNetForSemanticSegmentation,) if is_torch_available() else () a : List[str] = {"image-segmentation": UperNetForSemanticSegmentation} if is_torch_available() else {} a : Union[str, Any] = False a : Tuple = False a : int = False a : List[str] = False a : Union[str, Any] = False a : str = False def UpperCamelCase__ ( self ) -> Union[str, Any]: """simple docstring""" UpperCamelCase__ : Union[str, Any] = UperNetModelTester(self ) UpperCamelCase__ : List[str] = ConfigTester(self, config_class=__magic_name__, has_text_modality=__magic_name__, hidden_size=37 ) def UpperCamelCase__ ( self ) -> Dict: """simple docstring""" self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def UpperCamelCase__ ( self ) -> str: """simple docstring""" return def UpperCamelCase__ ( self ) -> Union[str, Any]: """simple docstring""" UpperCamelCase__ ,UpperCamelCase__ : List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCamelCase__ : Optional[Any] = model_class(__magic_name__ ) UpperCamelCase__ : Optional[int] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase__ : List[Any] = [*signature.parameters.keys()] UpperCamelCase__ : Any = ['''pixel_values'''] self.assertListEqual(arg_names[:1], __magic_name__ ) def UpperCamelCase__ ( self ) -> List[Any]: """simple docstring""" UpperCamelCase__ : List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__magic_name__ ) @unittest.skip(reason='''UperNet does not use inputs_embeds''' ) def UpperCamelCase__ ( self ) -> Dict: """simple docstring""" pass @unittest.skip(reason='''UperNet does not support input and output embeddings''' ) def UpperCamelCase__ ( self ) -> Union[str, Any]: """simple docstring""" pass @unittest.skip(reason='''UperNet does not have a base model''' ) def UpperCamelCase__ ( self ) -> List[str]: """simple docstring""" pass @unittest.skip(reason='''UperNet does not have a base model''' ) def UpperCamelCase__ ( self ) -> Optional[Any]: """simple docstring""" pass @require_torch_multi_gpu @unittest.skip(reason='''UperNet has some layers using `add_module` which doesn\'t work well with `nn.DataParallel`''' ) def UpperCamelCase__ ( self ) -> Optional[Any]: """simple docstring""" pass @unittest.skip('''Will be fixed soon by reducing the size of the model used for common tests.''' ) def UpperCamelCase__ ( self ) -> Any: """simple docstring""" pass def UpperCamelCase__ ( self ) -> Optional[int]: """simple docstring""" def check_hidden_states_output(__magic_name__, __magic_name__, __magic_name__ ): UpperCamelCase__ : Any = model_class(__magic_name__ ) model.to(__magic_name__ ) model.eval() with torch.no_grad(): UpperCamelCase__ : Optional[int] = model(**self._prepare_for_class(__magic_name__, __magic_name__ ) ) UpperCamelCase__ : str = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states UpperCamelCase__ : Any = self.model_tester.num_stages self.assertEqual(len(__magic_name__ ), expected_num_stages + 1 ) # ConvNext's feature maps are of shape (batch_size, num_channels, height, width) self.assertListEqual( list(hidden_states[0].shape[-2:] ), [self.model_tester.image_size // 4, self.model_tester.image_size // 4], ) UpperCamelCase__ ,UpperCamelCase__ : str = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCamelCase__ : Optional[Any] = True check_hidden_states_output(__magic_name__, __magic_name__, __magic_name__ ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase__ : str = True check_hidden_states_output(__magic_name__, __magic_name__, __magic_name__ ) def UpperCamelCase__ ( self ) -> Any: """simple docstring""" UpperCamelCase__ ,UpperCamelCase__ : int = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase__ : Union[str, Any] = _config_zero_init(__magic_name__ ) UpperCamelCase__ : Union[str, Any] = _config_zero_init(configs_no_init.backbone_config ) for model_class in self.all_model_classes: UpperCamelCase__ : Optional[int] = model_class(config=__magic_name__ ) for name, param in model.named_parameters(): if param.requires_grad: self.assertIn( ((param.data.mean() * 1E9).round() / 1E9).item(), [0.0, 1.0], msg=f"Parameter {name} of model {model_class} seems not properly initialized", ) @unittest.skip(reason='''UperNet does not have tied weights''' ) def UpperCamelCase__ ( self ) -> Union[str, Any]: """simple docstring""" pass @slow def UpperCamelCase__ ( self ) -> Dict: """simple docstring""" for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase__ : int = UperNetForSemanticSegmentation.from_pretrained(__magic_name__ ) self.assertIsNotNone(__magic_name__ ) def lowerCAmelCase_ ( ) -> int: UpperCamelCase__ : Tuple = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''' , repo_type='''dataset''' , filename='''ADE_val_00000001.jpg''' ) UpperCamelCase__ : str = Image.open(__UpperCAmelCase ).convert('''RGB''' ) return image @require_torch @require_vision @slow class lowercase__ ( unittest.TestCase ): '''simple docstring''' def UpperCamelCase__ ( self ) -> int: """simple docstring""" UpperCamelCase__ : Optional[Any] = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''' ) UpperCamelCase__ : Optional[int] = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''' ).to(__magic_name__ ) UpperCamelCase__ : Any = prepare_img() UpperCamelCase__ : List[Any] = processor(images=__magic_name__, return_tensors='''pt''' ).to(__magic_name__ ) with torch.no_grad(): UpperCamelCase__ : Optional[int] = model(**__magic_name__ ) UpperCamelCase__ : Tuple = torch.Size((1, model.config.num_labels, 512, 512) ) self.assertEqual(outputs.logits.shape, __magic_name__ ) UpperCamelCase__ : int = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]] ).to(__magic_name__ ) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3], __magic_name__, atol=1E-4 ) ) def UpperCamelCase__ ( self ) -> Optional[int]: """simple docstring""" UpperCamelCase__ : Any = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''' ) UpperCamelCase__ : Dict = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''' ).to(__magic_name__ ) UpperCamelCase__ : str = prepare_img() UpperCamelCase__ : int = processor(images=__magic_name__, return_tensors='''pt''' ).to(__magic_name__ ) with torch.no_grad(): UpperCamelCase__ : Dict = model(**__magic_name__ ) UpperCamelCase__ : Any = torch.Size((1, model.config.num_labels, 512, 512) ) self.assertEqual(outputs.logits.shape, __magic_name__ ) UpperCamelCase__ : Tuple = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]] ).to(__magic_name__ ) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3], __magic_name__, atol=1E-4 ) )
247
1
import io import itertools import json from dataclasses import dataclass from typing import Optional import pyarrow as pa import pyarrow.json as paj import datasets from datasets.table import table_cast from datasets.utils.file_utils import readline _UpperCAmelCase : Tuple = datasets.utils.logging.get_logger(__name__) @dataclass class lowerCAmelCase ( datasets.BuilderConfig ): UpperCAmelCase__ = None UpperCAmelCase__ = "utf-8" UpperCAmelCase__ = None UpperCAmelCase__ = None UpperCAmelCase__ = True # deprecated UpperCAmelCase__ = None # deprecated UpperCAmelCase__ = 10 << 20 # 10MB UpperCAmelCase__ = None class lowerCAmelCase ( datasets.ArrowBasedBuilder ): UpperCAmelCase__ = JsonConfig def A_ ( self : Tuple ) -> Optional[int]: if self.config.block_size is not None: logger.warning('The JSON loader parameter `block_size` is deprecated. Please use `chunksize` instead' ) lowerCamelCase__ : Optional[Any] = self.config.block_size if self.config.use_threads is not True: logger.warning( 'The JSON loader parameter `use_threads` is deprecated and doesn\'t have any effect anymore.' ) if self.config.newlines_in_values is not None: raise ValueError('The JSON loader parameter `newlines_in_values` is no longer supported' ) return datasets.DatasetInfo(features=self.config.features ) def A_ ( self : Any , UpperCAmelCase : List[str] ) -> Optional[int]: if not self.config.data_files: raise ValueError(F"""At least one data file must be specified, but got data_files={self.config.data_files}""" ) lowerCamelCase__ : str = dl_manager.download_and_extract(self.config.data_files ) if isinstance(UpperCAmelCase , (str, list, tuple) ): lowerCamelCase__ : Optional[Any] = data_files if isinstance(UpperCAmelCase , UpperCAmelCase ): lowerCamelCase__ : List[Any] = [files] lowerCamelCase__ : Optional[Any] = [dl_manager.iter_files(UpperCAmelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] lowerCamelCase__ : Any = [] for split_name, files in data_files.items(): if isinstance(UpperCAmelCase , UpperCAmelCase ): lowerCamelCase__ : Tuple = [files] lowerCamelCase__ : Any = [dl_manager.iter_files(UpperCAmelCase ) for file in files] splits.append(datasets.SplitGenerator(name=UpperCAmelCase , gen_kwargs={'files': files} ) ) return splits def A_ ( self : Any , UpperCAmelCase : pa.Table ) -> pa.Table: if self.config.features is not None: # adding missing columns for column_name in set(self.config.features ) - set(pa_table.column_names ): lowerCamelCase__ : str = self.config.features.arrow_schema.field(UpperCAmelCase ).type lowerCamelCase__ : int = pa_table.append_column(UpperCAmelCase , pa.array([None] * len(UpperCAmelCase ) , type=UpperCAmelCase ) ) # more expensive cast to support nested structures with keys in a different order # allows str <-> int/float or str to Audio for example lowerCamelCase__ : int = table_cast(UpperCAmelCase , self.config.features.arrow_schema ) return pa_table def A_ ( self : str , UpperCAmelCase : Tuple ) -> Dict: for file_idx, file in enumerate(itertools.chain.from_iterable(UpperCAmelCase ) ): # If the file is one json object and if we need to look at the list of items in one specific field if self.config.field is not None: with open(UpperCAmelCase , encoding=self.config.encoding , errors=self.config.encoding_errors ) as f: lowerCamelCase__ : Optional[Any] = json.load(UpperCAmelCase ) # We keep only the field we are interested in lowerCamelCase__ : Optional[int] = dataset[self.config.field] # We accept two format: a list of dicts or a dict of lists if isinstance(UpperCAmelCase , (list, tuple) ): lowerCamelCase__ : Any = set().union(*[row.keys() for row in dataset] ) lowerCamelCase__ : List[Any] = {col: [row.get(UpperCAmelCase ) for row in dataset] for col in keys} else: lowerCamelCase__ : int = dataset lowerCamelCase__ : Union[str, Any] = pa.Table.from_pydict(UpperCAmelCase ) yield file_idx, self._cast_table(UpperCAmelCase ) # If the file has one json object per line else: with open(UpperCAmelCase , 'rb' ) as f: lowerCamelCase__ : Any = 0 # Use block_size equal to the chunk size divided by 32 to leverage multithreading # Set a default minimum value of 16kB if the chunk size is really small lowerCamelCase__ : Optional[int] = max(self.config.chunksize // 32 , 16 << 10 ) lowerCamelCase__ : List[str] = ( self.config.encoding_errors if self.config.encoding_errors is not None else 'strict' ) while True: lowerCamelCase__ : Optional[int] = f.read(self.config.chunksize ) if not batch: break # Finish current line try: batch += f.readline() except (AttributeError, io.UnsupportedOperation): batch += readline(UpperCAmelCase ) # PyArrow only accepts utf-8 encoded bytes if self.config.encoding != "utf-8": lowerCamelCase__ : Union[str, Any] = batch.decode(self.config.encoding , errors=UpperCAmelCase ).encode('utf-8' ) try: while True: try: lowerCamelCase__ : List[str] = paj.read_json( io.BytesIO(UpperCAmelCase ) , read_options=paj.ReadOptions(block_size=UpperCAmelCase ) ) break except (pa.ArrowInvalid, pa.ArrowNotImplementedError) as e: if ( isinstance(UpperCAmelCase , pa.ArrowInvalid ) and "straddling" not in str(UpperCAmelCase ) or block_size > len(UpperCAmelCase ) ): raise else: # Increase the block size in case it was too small. # The block size will be reset for the next file. logger.debug( F"""Batch of {len(UpperCAmelCase )} bytes couldn't be parsed with block_size={block_size}. Retrying with block_size={block_size * 2}.""" ) block_size *= 2 except pa.ArrowInvalid as e: try: with open( UpperCAmelCase , encoding=self.config.encoding , errors=self.config.encoding_errors ) as f: lowerCamelCase__ : str = json.load(UpperCAmelCase ) except json.JSONDecodeError: logger.error(F"""Failed to read file '{file}' with error {type(UpperCAmelCase )}: {e}""" ) raise e # If possible, parse the file as a list of json objects and exit the loop if isinstance(UpperCAmelCase , UpperCAmelCase ): # list is the only sequence type supported in JSON try: lowerCamelCase__ : List[str] = set().union(*[row.keys() for row in dataset] ) lowerCamelCase__ : Optional[Any] = {col: [row.get(UpperCAmelCase ) for row in dataset] for col in keys} lowerCamelCase__ : int = pa.Table.from_pydict(UpperCAmelCase ) except (pa.ArrowInvalid, AttributeError) as e: logger.error(F"""Failed to read file '{file}' with error {type(UpperCAmelCase )}: {e}""" ) raise ValueError(F"""Not able to read records in the JSON file at {file}.""" ) from None yield file_idx, self._cast_table(UpperCAmelCase ) break else: logger.error(F"""Failed to read file '{file}' with error {type(UpperCAmelCase )}: {e}""" ) raise ValueError( F"""Not able to read records in the JSON file at {file}. """ F"""You should probably indicate the field of the JSON file containing your records. """ F"""This JSON file contain the following fields: {str(list(dataset.keys() ) )}. """ F"""Select the correct one and provide it as `field='XXX'` to the dataset loading method. """ ) from None # Uncomment for debugging (will print the Arrow table size and elements) # logger.warning(f"pa_table: {pa_table} num rows: {pa_table.num_rows}") # logger.warning('\n'.join(str(pa_table.slice(i, 1).to_pydict()) for i in range(pa_table.num_rows))) yield (file_idx, batch_idx), self._cast_table(UpperCAmelCase ) batch_idx += 1
50
from __future__ import annotations import math def SCREAMING_SNAKE_CASE ( _UpperCAmelCase ) -> bool: if 1 < number < 4: # 2 and 3 are primes return True elif number < 2 or number % 2 == 0 or number % 3 == 0: # Negatives, 0, 1, all even numbers, all multiples of 3 are not primes return False # All primes number are in format of 6k +/- 1 for i in range(5 , int(math.sqrt(_UpperCAmelCase ) + 1 ) , 6 ): if number % i == 0 or number % (i + 2) == 0: return False return True _UpperCAmelCase : Any = [num for num in range(3, 10_00_01, 2) if not is_prime(num)] def SCREAMING_SNAKE_CASE ( _UpperCAmelCase ) -> list[int]: if not isinstance(_UpperCAmelCase , _UpperCAmelCase ): raise ValueError('n must be an integer' ) if n <= 0: raise ValueError('n must be >= 0' ) lowerCamelCase__ : int = [] for num in range(len(_UpperCAmelCase ) ): lowerCamelCase__ : Union[str, Any] = 0 while 2 * i * i <= odd_composites[num]: lowerCamelCase__ : Dict = odd_composites[num] - 2 * i * i if is_prime(_UpperCAmelCase ): break i += 1 else: list_nums.append(odd_composites[num] ) if len(_UpperCAmelCase ) == n: return list_nums return [] def SCREAMING_SNAKE_CASE ( ) -> int: return compute_nums(1 )[0] if __name__ == "__main__": print(F"""{solution() = }""")
50
1
"""simple docstring""" def A ( snake_case :int , snake_case :list[int] , snake_case :int ) -> int: def count_of_possible_combinations(snake_case :int ) -> int: if target < 0: return 0 if target == 0: return 1 return sum(count_of_possible_combinations(target - item ) for item in array ) return count_of_possible_combinations(snake_case ) def A ( snake_case :int , snake_case :list[int] , snake_case :int ) -> int: def count_of_possible_combinations_with_dp_array( snake_case :int , snake_case :list[int] ) -> int: if target < 0: return 0 if target == 0: return 1 if dp_array[target] != -1: return dp_array[target] __UpperCamelCase = sum( count_of_possible_combinations_with_dp_array(target - item , snake_case ) for item in array ) __UpperCamelCase = answer return answer __UpperCamelCase = [-1] * (target + 1) return count_of_possible_combinations_with_dp_array(snake_case , snake_case ) def A ( snake_case :int , snake_case :list[int] , snake_case :int ) -> int: __UpperCamelCase = [0] * (target + 1) __UpperCamelCase = 1 for i in range(1 , target + 1 ): for j in range(snake_case ): if i - array[j] >= 0: dp_array[i] += dp_array[i - array[j]] return dp_array[target] if __name__ == "__main__": import doctest doctest.testmod() UpperCamelCase : List[str] = 3 UpperCamelCase : Union[str, Any] = 5 UpperCamelCase : List[str] = [1, 2, 5] print(combination_sum_iv(n, array, target))
350
"""simple docstring""" def A ( snake_case :int ) -> bool: return sum(i for i in range(1 , number // 2 + 1 ) if number % i == 0 ) == number if __name__ == "__main__": print("Program to check whether a number is a Perfect number or not...") UpperCamelCase : Union[str, Any] = int(input("Enter number: ").strip()) print(f'''{number} is {"" if perfect(number) else "not "}a Perfect Number.''')
263
0
'''simple docstring''' _snake_case = frozenset( [ 'prompt', 'height', 'width', 'guidance_scale', 'negative_prompt', 'prompt_embeds', 'negative_prompt_embeds', 'cross_attention_kwargs', ] ) _snake_case = frozenset(['prompt', 'negative_prompt']) _snake_case = frozenset([]) _snake_case = frozenset(['image']) _snake_case = frozenset( [ 'image', 'height', 'width', 'guidance_scale', ] ) _snake_case = frozenset(['image']) _snake_case = frozenset( [ 'prompt', 'image', 'height', 'width', 'guidance_scale', 'negative_prompt', 'prompt_embeds', 'negative_prompt_embeds', ] ) _snake_case = frozenset(['prompt', 'image', 'negative_prompt']) _snake_case = frozenset( [ # Text guided image variation with an image mask 'prompt', 'image', 'mask_image', 'height', 'width', 'guidance_scale', 'negative_prompt', 'prompt_embeds', 'negative_prompt_embeds', ] ) _snake_case = frozenset(['prompt', 'image', 'mask_image', 'negative_prompt']) _snake_case = frozenset( [ # image variation with an image mask 'image', 'mask_image', 'height', 'width', 'guidance_scale', ] ) _snake_case = frozenset(['image', 'mask_image']) _snake_case = frozenset( [ 'example_image', 'image', 'mask_image', 'height', 'width', 'guidance_scale', ] ) _snake_case = frozenset(['example_image', 'image', 'mask_image']) _snake_case = frozenset(['class_labels']) _snake_case = frozenset(['class_labels']) _snake_case = frozenset(['batch_size']) _snake_case = frozenset([]) _snake_case = frozenset(['batch_size']) _snake_case = frozenset([]) _snake_case = frozenset( [ 'prompt', 'audio_length_in_s', 'guidance_scale', 'negative_prompt', 'prompt_embeds', 'negative_prompt_embeds', 'cross_attention_kwargs', ] ) _snake_case = frozenset(['prompt', 'negative_prompt']) _snake_case = frozenset(['input_tokens']) _snake_case = frozenset(['input_tokens'])
250
'''simple docstring''' import argparse import logging import os from datetime import datetime import numpy as np import torch from torch import nn from torch.utils.data import DataLoader, RandomSampler, TensorDataset from tqdm import tqdm from transformers import GPTaLMHeadModel _snake_case = logging.getLogger(__name__) def _A ( snake_case , snake_case ) -> List[Any]: # save results if os.path.exists(snake_case ): if os.path.exists(os.path.join(snake_case , "config.json" ) ) and os.path.isfile( os.path.join(snake_case , "config.json" ) ): os.remove(os.path.join(snake_case , "config.json" ) ) if os.path.exists(os.path.join(snake_case , "pytorch_model.bin" ) ) and os.path.isfile( os.path.join(snake_case , "pytorch_model.bin" ) ): os.remove(os.path.join(snake_case , "pytorch_model.bin" ) ) else: os.makedirs(snake_case ) model.save_pretrained(snake_case ) def _A ( snake_case , snake_case=False ) -> int: _lowercase : Union[str, Any] = 2 if unlogit: _lowercase : Optional[Any] = torch.pow(snake_case , snake_case ) _lowercase : List[Any] = p * torch.log(snake_case ) _lowercase : str = 0 return -plogp.sum(dim=-1 ) def _A ( snake_case ) -> List[Any]: logger.info("lv, h >\t" + "\t".join(F'''{x + 1}''' for x in range(len(snake_case ) ) ) ) for row in range(len(snake_case ) ): if tensor.dtype != torch.long: logger.info(F'''layer {row + 1}:\t''' + "\t".join(F'''{x:.5f}''' for x in tensor[row].cpu().data ) ) else: logger.info(F'''layer {row + 1}:\t''' + "\t".join(F'''{x:d}''' for x in tensor[row].cpu().data ) ) def _A ( snake_case , snake_case , snake_case , snake_case=True , snake_case=True , snake_case=None , snake_case=False ) -> Optional[int]: _lowercase , _lowercase : Union[str, Any] = model.config.num_hidden_layers, model.config.num_attention_heads _lowercase : Optional[int] = torch.zeros(snake_case , snake_case ).to(args.device ) _lowercase : str = torch.zeros(snake_case , snake_case ).to(args.device ) if head_mask is None: _lowercase : Any = torch.ones(snake_case , snake_case ).to(args.device ) head_mask.requires_grad_(requires_grad=snake_case ) # If actually pruned attention multi-head, set head mask to None to avoid shape mismatch if actually_pruned: _lowercase : int = None _lowercase : List[str] = 0.0 _lowercase : str = 0.0 for step, inputs in enumerate(tqdm(snake_case , desc="Iteration" , disable=args.local_rank not in [-1, 0] ) ): _lowercase : Dict = tuple(t.to(args.device ) for t in inputs ) ((_lowercase) , ) : Any = inputs # Do a forward pass (not with torch.no_grad() since we need gradients for importance score - see below) _lowercase : str = model(snake_case , labels=snake_case , head_mask=snake_case ) # (loss), lm_logits, presents, (all hidden_states), (attentions) _lowercase , _lowercase , _lowercase : Optional[int] = ( outputs[0], outputs[1], outputs[-1], ) # Loss and logits are the first, attention the last loss.backward() # Backpropagate to populate the gradients in the head mask total_loss += loss.detach().cpu().numpy() if compute_entropy: for layer, attn in enumerate(snake_case ): _lowercase : Optional[int] = entropy(attn.detach() , snake_case ) attn_entropy[layer] += masked_entropy.sum(-1 ).sum(0 ).sum(0 ).detach() if compute_importance: head_importance += head_mask.grad.abs().detach() tot_tokens += torch.ones_like(snake_case ).float().detach().sum().data # Normalize attn_entropy /= tot_tokens head_importance /= tot_tokens # Layerwise importance normalization if not args.dont_normalize_importance_by_layer: _lowercase : List[str] = 2 _lowercase : Dict = torch.pow(torch.pow(snake_case , snake_case ).sum(-1 ) , 1 / exponent ) head_importance /= norm_by_layer.unsqueeze(-1 ) + 1E-20 if not args.dont_normalize_global_importance: _lowercase : str = (head_importance - head_importance.min()) / (head_importance.max() - head_importance.min()) # Print matrices if compute_entropy: logger.info("Attention entropies" ) print_ad_tensor(snake_case ) if compute_importance: logger.info("Head importance scores" ) print_ad_tensor(snake_case ) logger.info("Head ranked by importance scores" ) _lowercase : Any = torch.zeros(head_importance.numel() , dtype=torch.long , device=args.device ) _lowercase : Union[str, Any] = torch.arange( head_importance.numel() , device=args.device ) _lowercase : Optional[Any] = head_ranks.view_as(snake_case ) print_ad_tensor(snake_case ) return attn_entropy, head_importance, total_loss def _A ( snake_case , snake_case , snake_case ) -> Optional[Any]: _lowercase , _lowercase , _lowercase : Union[str, Any] = compute_heads_importance(snake_case , snake_case , snake_case , compute_entropy=snake_case ) _lowercase : int = 1 / loss # instead of downsteam score use the LM loss logger.info("Pruning: original score: %f, threshold: %f" , snake_case , original_score * args.masking_threshold ) _lowercase : List[Any] = torch.ones_like(snake_case ) _lowercase : Dict = max(1 , int(new_head_mask.numel() * args.masking_amount ) ) _lowercase : Union[str, Any] = original_score while current_score >= original_score * args.masking_threshold: _lowercase : Any = new_head_mask.clone().detach() # save current head mask # heads from least important to most - keep only not-masked heads _lowercase : Dict = float("Inf" ) _lowercase : Union[str, Any] = head_importance.view(-1 ).sort()[1] if len(snake_case ) <= num_to_mask: print("BREAK BY num_to_mask" ) break # mask heads _lowercase : List[str] = current_heads_to_mask[:num_to_mask] logger.info("Heads to mask: %s" , str(current_heads_to_mask.tolist() ) ) _lowercase : int = new_head_mask.view(-1 ) _lowercase : Union[str, Any] = 0.0 _lowercase : Dict = new_head_mask.view_as(snake_case ) _lowercase : str = new_head_mask.clone().detach() print_ad_tensor(snake_case ) # Compute metric and head importance again _lowercase , _lowercase , _lowercase : Any = compute_heads_importance( snake_case , snake_case , snake_case , compute_entropy=snake_case , head_mask=snake_case ) _lowercase : str = 1 / loss logger.info( "Masking: current score: %f, remaining heads %d (%.1f percents)" , snake_case , new_head_mask.sum() , new_head_mask.sum() / new_head_mask.numel() * 1_00 , ) logger.info("Final head mask" ) print_ad_tensor(snake_case ) np.save(os.path.join(args.output_dir , "head_mask.npy" ) , head_mask.detach().cpu().numpy() ) return head_mask def _A ( snake_case , snake_case , snake_case , snake_case ) -> Any: _lowercase : List[Any] = datetime.now() _lowercase , _lowercase , _lowercase : List[Any] = compute_heads_importance( snake_case , snake_case , snake_case , compute_entropy=snake_case , compute_importance=snake_case , head_mask=snake_case ) _lowercase : Tuple = 1 / loss _lowercase : List[Any] = datetime.now() - before_time _lowercase : int = sum(p.numel() for p in model.parameters() ) _lowercase : str = { layer: (1 - head_mask[layer].long()).nonzero().squeeze().tolist() for layer in range(len(snake_case ) ) } for k, v in heads_to_prune.items(): if isinstance(snake_case , snake_case ): _lowercase : Optional[Any] = [ v, ] assert sum(len(snake_case ) for h in heads_to_prune.values() ) == (1 - head_mask.long()).sum().item() model.prune_heads(snake_case ) _lowercase : List[str] = sum(p.numel() for p in model.parameters() ) _lowercase : int = datetime.now() _lowercase , _lowercase , _lowercase : Any = compute_heads_importance( snake_case , snake_case , snake_case , compute_entropy=snake_case , compute_importance=snake_case , head_mask=snake_case , actually_pruned=snake_case , ) _lowercase : List[Any] = 1 / loss _lowercase : int = datetime.now() - before_time logger.info( "Pruning: original num of params: %.2e, after pruning %.2e (%.1f percents)" , snake_case , snake_case , pruned_num_params / original_num_params * 1_00 , ) logger.info("Pruning: score with masking: %f score with pruning: %f" , snake_case , snake_case ) logger.info("Pruning: speed ratio (original timing / new timing): %f percents" , original_time / new_time * 1_00 ) save_model(snake_case , args.output_dir ) def _A ( ) -> int: _lowercase : List[str] = argparse.ArgumentParser() # Required parameters parser.add_argument( "--data_dir" , default=snake_case , type=snake_case , required=snake_case , help="The input data dir. Should contain the .tsv files (or other data files) for the task." , ) parser.add_argument( "--model_name_or_path" , default=snake_case , type=snake_case , required=snake_case , help="Path to pretrained model or model identifier from huggingface.co/models" , ) parser.add_argument( "--output_dir" , default=snake_case , type=snake_case , required=snake_case , help="The output directory where the model predictions and checkpoints will be written." , ) # Other parameters parser.add_argument( "--config_name" , default="" , type=snake_case , help="Pretrained config name or path if not the same as model_name_or_path" , ) parser.add_argument( "--tokenizer_name" , default="" , type=snake_case , help="Pretrained tokenizer name or path if not the same as model_name_or_path" , ) parser.add_argument( "--cache_dir" , default=snake_case , type=snake_case , help="Where do you want to store the pre-trained models downloaded from s3" , ) parser.add_argument( "--data_subset" , type=snake_case , default=-1 , help="If > 0: limit the data to a subset of data_subset instances." ) parser.add_argument( "--overwrite_output_dir" , action="store_true" , help="Whether to overwrite data in output directory" ) parser.add_argument( "--overwrite_cache" , action="store_true" , help="Overwrite the cached training and evaluation sets" ) parser.add_argument( "--dont_normalize_importance_by_layer" , action="store_true" , help="Don't normalize importance score by layers" ) parser.add_argument( "--dont_normalize_global_importance" , action="store_true" , help="Don't normalize all importance scores between 0 and 1" , ) parser.add_argument( "--try_masking" , action="store_true" , help="Whether to try to mask head until a threshold of accuracy." ) parser.add_argument( "--masking_threshold" , default=0.9 , type=snake_case , help="masking threshold in term of metrics (stop masking when metric < threshold * original metric value)." , ) parser.add_argument( "--masking_amount" , default=0.1 , type=snake_case , help="Amount to heads to masking at each masking step." ) parser.add_argument("--metric_name" , default="acc" , type=snake_case , help="Metric to use for head masking." ) parser.add_argument( "--max_seq_length" , default=1_28 , type=snake_case , help=( "The maximum total input sequence length after WordPiece tokenization. \n" "Sequences longer than this will be truncated, sequences shorter padded." ) , ) parser.add_argument("--batch_size" , default=1 , type=snake_case , help="Batch size." ) parser.add_argument("--seed" , type=snake_case , default=42 ) parser.add_argument("--local_rank" , type=snake_case , default=-1 , help="local_rank for distributed training on gpus" ) parser.add_argument("--no_cuda" , action="store_true" , help="Whether not to use CUDA when available" ) parser.add_argument("--server_ip" , type=snake_case , default="" , help="Can be used for distant debugging." ) parser.add_argument("--server_port" , type=snake_case , default="" , help="Can be used for distant debugging." ) _lowercase : Optional[int] = parser.parse_args() if args.server_ip and args.server_port: # Distant debugging - see https://code.visualstudio.com/docs/python/debugging#_attach-to-a-local-script import ptvsd print("Waiting for debugger attach" ) ptvsd.enable_attach(address=(args.server_ip, args.server_port) , redirect_output=snake_case ) ptvsd.wait_for_attach() # Setup devices and distributed training if args.local_rank == -1 or args.no_cuda: _lowercase : Any = torch.device("cuda" if torch.cuda.is_available() and not args.no_cuda else "cpu" ) _lowercase : Optional[int] = 0 if args.no_cuda else torch.cuda.device_count() else: torch.cuda.set_device(args.local_rank ) _lowercase : List[Any] = torch.device("cuda" , args.local_rank ) _lowercase : Dict = 1 torch.distributed.init_process_group(backend="nccl" ) # Initializes the distributed backend # Setup logging logging.basicConfig(level=logging.INFO if args.local_rank in [-1, 0] else logging.WARN ) logger.info("device: {} n_gpu: {}, distributed: {}".format(args.device , args.n_gpu , bool(args.local_rank != -1 ) ) ) _lowercase : List[Any] = GPTaLMHeadModel.from_pretrained(args.model_name_or_path ) # Distributed and parallel training model.to(args.device ) if args.local_rank != -1: _lowercase : str = nn.parallel.DistributedDataParallel( snake_case , device_ids=[args.local_rank] , output_device=args.local_rank , find_unused_parameters=snake_case ) elif args.n_gpu > 1: _lowercase : Dict = nn.DataParallel(snake_case ) # Print/save training arguments os.makedirs(args.output_dir , exist_ok=snake_case ) torch.save(snake_case , os.path.join(args.output_dir , "run_args.bin" ) ) logger.info("Training/evaluation parameters %s" , snake_case ) # Prepare dataset _lowercase : Optional[Any] = np.concatenate( [ np.loadtxt(args.data_dir , dtype=np.intaa ), ] ) _lowercase : List[str] = (torch.from_numpy(snake_case ),) _lowercase : Dict = TensorDataset(*snake_case ) _lowercase : List[Any] = RandomSampler(snake_case ) _lowercase : str = DataLoader(snake_case , sampler=snake_case , batch_size=args.batch_size ) # Compute head entropy and importance score compute_heads_importance(snake_case , snake_case , snake_case ) # Try head masking (set heads to zero until the score goes under a threshole) # and head pruning (remove masked heads and see the effect on the network) if args.try_masking and args.masking_threshold > 0.0 and args.masking_threshold < 1.0: _lowercase : int = mask_heads(snake_case , snake_case , snake_case ) prune_heads(snake_case , snake_case , snake_case , snake_case ) if __name__ == "__main__": main()
250
1
import asyncio import os import re import sys import tempfile import unittest from contextlib import contextmanager from copy import deepcopy from distutils.util import strtobool from enum import Enum from importlib.util import find_spec from pathlib import Path from unittest.mock import patch import pyarrow as pa import pytest import requests from packaging import version from datasets import config if config.PY_VERSION < version.parse('3.8'): import importlib_metadata else: import importlib.metadata as importlib_metadata def UpperCAmelCase_ ( __UpperCAmelCase : Optional[int] , __UpperCAmelCase : Any=False ) -> int: try: SCREAMING_SNAKE_CASE_ = os.environ[key] except KeyError: # KEY isn't set, default to `default`. SCREAMING_SNAKE_CASE_ = default else: # KEY is set, convert it to True or False. try: SCREAMING_SNAKE_CASE_ = strtobool(__UpperCAmelCase ) except ValueError: # More values are supported, but let's keep the message simple. raise ValueError(f"If set, {key} must be yes or no." ) return _value lowerCamelCase__ : Dict = parse_flag_from_env('RUN_SLOW', default=False) lowerCamelCase__ : str = parse_flag_from_env('RUN_REMOTE', default=False) lowerCamelCase__ : Union[str, Any] = parse_flag_from_env('RUN_LOCAL', default=True) lowerCamelCase__ : str = parse_flag_from_env('RUN_PACKAGED', default=True) # Compression lowerCamelCase__ : List[str] = pytest.mark.skipif(not config.LZ4_AVAILABLE, reason='test requires lz4') lowerCamelCase__ : Optional[int] = pytest.mark.skipif(not config.PY7ZR_AVAILABLE, reason='test requires py7zr') lowerCamelCase__ : Optional[int] = pytest.mark.skipif(not config.ZSTANDARD_AVAILABLE, reason='test requires zstandard') # Audio lowerCamelCase__ : Optional[Any] = pytest.mark.skipif( # On Windows and OS X, soundfile installs sndfile find_spec('soundfile') is None or version.parse(importlib_metadata.version('soundfile')) < version.parse('0.12.0'), reason='test requires sndfile>=0.12.1: \'pip install \"soundfile>=0.12.1\"\'; ', ) # Beam lowerCamelCase__ : str = pytest.mark.skipif( not config.BEAM_AVAILABLE or config.DILL_VERSION >= version.parse('0.3.2'), reason='test requires apache-beam and a compatible dill version', ) # Dill-cloudpickle compatibility lowerCamelCase__ : Any = pytest.mark.skipif( config.DILL_VERSION <= version.parse('0.3.2'), reason='test requires dill>0.3.2 for cloudpickle compatibility', ) # Windows lowerCamelCase__ : Dict = pytest.mark.skipif( sys.platform == 'win32', reason='test should not be run on Windows', ) def UpperCAmelCase_ ( __UpperCAmelCase : List[str] ) -> Optional[int]: try: import faiss # noqa except ImportError: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires faiss' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Optional[Any] ) -> str: try: import regex # noqa except ImportError: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires regex' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : List[Any] ) -> List[Any]: try: import elasticsearch # noqa except ImportError: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires elasticsearch' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Optional[Any] ) -> Optional[Any]: try: import sqlalchemy # noqa except ImportError: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires sqlalchemy' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Union[str, Any] ) -> Tuple: if not config.TORCH_AVAILABLE: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires PyTorch' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : List[Any] ) -> Dict: if not config.TF_AVAILABLE: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires TensorFlow' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Optional[Any] ) -> Tuple: if not config.JAX_AVAILABLE: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires JAX' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Optional[int] ) -> Any: if not config.PIL_AVAILABLE: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires Pillow' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : List[str] ) -> str: try: import transformers # noqa F401 except ImportError: return unittest.skip('test requires transformers' )(__UpperCAmelCase ) else: return test_case def UpperCAmelCase_ ( __UpperCAmelCase : List[Any] ) -> Tuple: try: import tiktoken # noqa F401 except ImportError: return unittest.skip('test requires tiktoken' )(__UpperCAmelCase ) else: return test_case def UpperCAmelCase_ ( __UpperCAmelCase : List[Any] ) -> Union[str, Any]: try: import spacy # noqa F401 except ImportError: return unittest.skip('test requires spacy' )(__UpperCAmelCase ) else: return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Tuple ) -> str: def _require_spacy_model(__UpperCAmelCase : Any ): try: import spacy # noqa F401 spacy.load(__UpperCAmelCase ) except ImportError: return unittest.skip('test requires spacy' )(__UpperCAmelCase ) except OSError: return unittest.skip('test requires spacy model \'{}\''.format(__UpperCAmelCase ) )(__UpperCAmelCase ) else: return test_case return _require_spacy_model def UpperCAmelCase_ ( __UpperCAmelCase : Any ) -> Dict: try: import pyspark # noqa F401 except ImportError: return unittest.skip('test requires pyspark' )(__UpperCAmelCase ) else: return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Union[str, Any] ) -> Dict: try: import joblibspark # noqa F401 except ImportError: return unittest.skip('test requires joblibspark' )(__UpperCAmelCase ) else: return test_case def UpperCAmelCase_ ( __UpperCAmelCase : List[str] ) -> Tuple: if not _run_slow_tests or _run_slow_tests == 0: SCREAMING_SNAKE_CASE_ = unittest.skip('test is slow' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Tuple ) -> Optional[int]: if not _run_local_tests or _run_local_tests == 0: SCREAMING_SNAKE_CASE_ = unittest.skip('test is local' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Dict ) -> str: if not _run_packaged_tests or _run_packaged_tests == 0: SCREAMING_SNAKE_CASE_ = unittest.skip('test is packaged' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( __UpperCAmelCase : Union[str, Any] ) -> str: if not _run_remote_tests or _run_remote_tests == 0: SCREAMING_SNAKE_CASE_ = unittest.skip('test requires remote' )(__UpperCAmelCase ) return test_case def UpperCAmelCase_ ( *__UpperCAmelCase : Tuple ) -> Union[str, Any]: def decorate(cls : int ): for name, fn in cls.__dict__.items(): if callable(__UpperCAmelCase ) and name.startswith('test' ): for decorator in decorators: SCREAMING_SNAKE_CASE_ = decorator(__UpperCAmelCase ) setattr(cls , __UpperCAmelCase , __UpperCAmelCase ) return cls return decorate class lowerCamelCase_ ( _SCREAMING_SNAKE_CASE ): '''simple docstring''' pass class lowerCamelCase_ ( _SCREAMING_SNAKE_CASE ): '''simple docstring''' lowercase_ = 0 lowercase_ = 1 lowercase_ = 2 @contextmanager def UpperCAmelCase_ ( __UpperCAmelCase : List[Any]=OfflineSimulationMode.CONNECTION_FAILS , __UpperCAmelCase : List[str]=1E-16 ) -> List[str]: SCREAMING_SNAKE_CASE_ = requests.Session().request def timeout_request(__UpperCAmelCase : Dict , __UpperCAmelCase : str , __UpperCAmelCase : List[Any] , **__UpperCAmelCase : str ): # Change the url to an invalid url so that the connection hangs SCREAMING_SNAKE_CASE_ = 'https://10.255.255.1' if kwargs.get('timeout' ) is None: raise RequestWouldHangIndefinitelyError( f"Tried a call to {url} in offline mode with no timeout set. Please set a timeout." ) SCREAMING_SNAKE_CASE_ = timeout try: return online_request(__UpperCAmelCase , __UpperCAmelCase , **__UpperCAmelCase ) except Exception as e: # The following changes in the error are just here to make the offline timeout error prettier SCREAMING_SNAKE_CASE_ = url SCREAMING_SNAKE_CASE_ = e.args[0] SCREAMING_SNAKE_CASE_ = (max_retry_error.args[0].replace('10.255.255.1' , f"OfflineMock[{url}]" ),) SCREAMING_SNAKE_CASE_ = (max_retry_error,) raise def raise_connection_error(__UpperCAmelCase : Optional[int] , __UpperCAmelCase : int , **__UpperCAmelCase : Union[str, Any] ): raise requests.ConnectionError('Offline mode is enabled.' , request=__UpperCAmelCase ) if mode is OfflineSimulationMode.CONNECTION_FAILS: with patch('requests.Session.send' , __UpperCAmelCase ): yield elif mode is OfflineSimulationMode.CONNECTION_TIMES_OUT: # inspired from https://stackoverflow.com/a/904609 with patch('requests.Session.request' , __UpperCAmelCase ): yield elif mode is OfflineSimulationMode.HF_DATASETS_OFFLINE_SET_TO_1: with patch('datasets.config.HF_DATASETS_OFFLINE' , __UpperCAmelCase ): yield else: raise ValueError('Please use a value from the OfflineSimulationMode enum.' ) @contextmanager def UpperCAmelCase_ ( *__UpperCAmelCase : Tuple , **__UpperCAmelCase : List[str] ) -> Any: SCREAMING_SNAKE_CASE_ = str(Path().resolve() ) with tempfile.TemporaryDirectory(*__UpperCAmelCase , **__UpperCAmelCase ) as tmp_dir: try: os.chdir(__UpperCAmelCase ) yield finally: os.chdir(__UpperCAmelCase ) @contextmanager def UpperCAmelCase_ ( ) -> str: import gc gc.collect() SCREAMING_SNAKE_CASE_ = pa.total_allocated_bytes() yield assert pa.total_allocated_bytes() - previous_allocated_memory > 0, "Arrow memory didn't increase." @contextmanager def UpperCAmelCase_ ( ) -> List[str]: import gc gc.collect() SCREAMING_SNAKE_CASE_ = pa.total_allocated_bytes() yield assert pa.total_allocated_bytes() - previous_allocated_memory <= 0, "Arrow memory wasn't expected to increase." def UpperCAmelCase_ ( __UpperCAmelCase : Optional[Any] , __UpperCAmelCase : List[Any] ) -> List[str]: return deepcopy(__UpperCAmelCase ).integers(0 , 1_00 , 10 ).tolist() == deepcopy(__UpperCAmelCase ).integers(0 , 1_00 , 10 ).tolist() def UpperCAmelCase_ ( __UpperCAmelCase : Optional[int] ) -> int: import decorator from requests.exceptions import HTTPError def _wrapper(__UpperCAmelCase : List[Any] , *__UpperCAmelCase : Union[str, Any] , **__UpperCAmelCase : Dict ): try: return func(*__UpperCAmelCase , **__UpperCAmelCase ) except HTTPError as err: if str(__UpperCAmelCase ).startswith('500' ) or str(__UpperCAmelCase ).startswith('502' ): pytest.xfail(str(__UpperCAmelCase ) ) raise err return decorator.decorator(_wrapper , __UpperCAmelCase ) class lowerCamelCase_ : '''simple docstring''' def __init__( self : Any , _lowerCAmelCase : str , _lowerCAmelCase : Any , _lowerCAmelCase : List[Any] ): SCREAMING_SNAKE_CASE_ = returncode SCREAMING_SNAKE_CASE_ = stdout SCREAMING_SNAKE_CASE_ = stderr async def UpperCAmelCase_ ( __UpperCAmelCase : List[Any] , __UpperCAmelCase : Dict ) -> int: while True: SCREAMING_SNAKE_CASE_ = await stream.readline() if line: callback(__UpperCAmelCase ) else: break async def UpperCAmelCase_ ( __UpperCAmelCase : List[Any] , __UpperCAmelCase : Optional[int]=None , __UpperCAmelCase : Tuple=None , __UpperCAmelCase : Any=None , __UpperCAmelCase : int=False , __UpperCAmelCase : Optional[Any]=False ) -> _RunOutput: if echo: print('\nRunning: ' , ' '.join(__UpperCAmelCase ) ) SCREAMING_SNAKE_CASE_ = await asyncio.create_subprocess_exec( cmd[0] , *cmd[1:] , stdin=__UpperCAmelCase , stdout=asyncio.subprocess.PIPE , stderr=asyncio.subprocess.PIPE , env=__UpperCAmelCase , ) # note: there is a warning for a possible deadlock when using `wait` with huge amounts of data in the pipe # https://docs.python.org/3/library/asyncio-subprocess.html#asyncio.asyncio.subprocess.Process.wait # # If it starts hanging, will need to switch to the following code. The problem is that no data # will be seen until it's done and if it hangs for example there will be no debug info. # out, err = await p.communicate() # return _RunOutput(p.returncode, out, err) SCREAMING_SNAKE_CASE_ = [] SCREAMING_SNAKE_CASE_ = [] def tee(__UpperCAmelCase : Dict , __UpperCAmelCase : str , __UpperCAmelCase : str , __UpperCAmelCase : Tuple="" ): SCREAMING_SNAKE_CASE_ = line.decode('utf-8' ).rstrip() sink.append(__UpperCAmelCase ) if not quiet: print(__UpperCAmelCase , __UpperCAmelCase , file=__UpperCAmelCase ) # XXX: the timeout doesn't seem to make any difference here await asyncio.wait( [ _read_stream(p.stdout , lambda __UpperCAmelCase : tee(__UpperCAmelCase , __UpperCAmelCase , sys.stdout , label='stdout:' ) ), _read_stream(p.stderr , lambda __UpperCAmelCase : tee(__UpperCAmelCase , __UpperCAmelCase , sys.stderr , label='stderr:' ) ), ] , timeout=__UpperCAmelCase , ) return _RunOutput(await p.wait() , __UpperCAmelCase , __UpperCAmelCase ) def UpperCAmelCase_ ( __UpperCAmelCase : int , __UpperCAmelCase : int=None , __UpperCAmelCase : List[Any]=None , __UpperCAmelCase : List[Any]=1_80 , __UpperCAmelCase : Optional[int]=False , __UpperCAmelCase : List[str]=True ) -> _RunOutput: SCREAMING_SNAKE_CASE_ = asyncio.get_event_loop() SCREAMING_SNAKE_CASE_ = loop.run_until_complete( _stream_subprocess(__UpperCAmelCase , env=__UpperCAmelCase , stdin=__UpperCAmelCase , timeout=__UpperCAmelCase , quiet=__UpperCAmelCase , echo=__UpperCAmelCase ) ) SCREAMING_SNAKE_CASE_ = ' '.join(__UpperCAmelCase ) if result.returncode > 0: SCREAMING_SNAKE_CASE_ = '\n'.join(result.stderr ) raise RuntimeError( f"'{cmd_str}' failed with returncode {result.returncode}\n\n" f"The combined stderr from workers follows:\n{stderr}" ) # check that the subprocess actually did run and produced some output, should the test rely on # the remote side to do the testing if not result.stdout and not result.stderr: raise RuntimeError(f"'{cmd_str}' produced no output." ) return result def UpperCAmelCase_ ( ) -> List[str]: SCREAMING_SNAKE_CASE_ = os.environ.get('PYTEST_XDIST_WORKER' , 'gw0' ) SCREAMING_SNAKE_CASE_ = re.sub(r'^gw' , '' , __UpperCAmelCase , 0 , re.M ) return int(__UpperCAmelCase ) def UpperCAmelCase_ ( ) -> Tuple: SCREAMING_SNAKE_CASE_ = 2_95_00 SCREAMING_SNAKE_CASE_ = pytest_xdist_worker_id() return port + uniq_delta
210
from ...configuration_utils import PretrainedConfig from ...utils import logging lowerCamelCase__ : Dict = logging.get_logger(__name__) lowerCamelCase__ : Any = { 'facebook/s2t-small-librispeech-asr': ( 'https://huggingface.co/facebook/s2t-small-librispeech-asr/resolve/main/config.json' ), # See all Speech2Text models at https://huggingface.co/models?filter=speech_to_text } class lowerCamelCase_ ( _SCREAMING_SNAKE_CASE ): '''simple docstring''' lowercase_ = "speech_to_text" lowercase_ = ["past_key_values"] lowercase_ = {"num_attention_heads": "encoder_attention_heads", "hidden_size": "d_model"} def __init__( self : Union[str, Any] , _lowerCAmelCase : Optional[int]=10_000 , _lowerCAmelCase : str=12 , _lowerCAmelCase : Tuple=2_048 , _lowerCAmelCase : str=4 , _lowerCAmelCase : Tuple=6 , _lowerCAmelCase : Optional[int]=2_048 , _lowerCAmelCase : Dict=4 , _lowerCAmelCase : List[Any]=0.0 , _lowerCAmelCase : int=0.0 , _lowerCAmelCase : Optional[int]=True , _lowerCAmelCase : Union[str, Any]=True , _lowerCAmelCase : Any="relu" , _lowerCAmelCase : Any=256 , _lowerCAmelCase : List[str]=0.1 , _lowerCAmelCase : Optional[Any]=0.0 , _lowerCAmelCase : Optional[int]=0.0 , _lowerCAmelCase : Tuple=0.02 , _lowerCAmelCase : List[str]=2 , _lowerCAmelCase : Tuple=True , _lowerCAmelCase : List[str]=1 , _lowerCAmelCase : Dict=0 , _lowerCAmelCase : Tuple=2 , _lowerCAmelCase : Optional[int]=6_000 , _lowerCAmelCase : Tuple=1_024 , _lowerCAmelCase : Any=2 , _lowerCAmelCase : str=(5, 5) , _lowerCAmelCase : Optional[int]=1_024 , _lowerCAmelCase : List[Any]=80 , _lowerCAmelCase : List[Any]=1 , **_lowerCAmelCase : List[Any] , ): SCREAMING_SNAKE_CASE_ = vocab_size SCREAMING_SNAKE_CASE_ = d_model SCREAMING_SNAKE_CASE_ = encoder_ffn_dim SCREAMING_SNAKE_CASE_ = encoder_layers SCREAMING_SNAKE_CASE_ = encoder_attention_heads SCREAMING_SNAKE_CASE_ = decoder_ffn_dim SCREAMING_SNAKE_CASE_ = decoder_layers SCREAMING_SNAKE_CASE_ = decoder_attention_heads SCREAMING_SNAKE_CASE_ = dropout SCREAMING_SNAKE_CASE_ = attention_dropout SCREAMING_SNAKE_CASE_ = activation_dropout SCREAMING_SNAKE_CASE_ = activation_function SCREAMING_SNAKE_CASE_ = init_std SCREAMING_SNAKE_CASE_ = encoder_layerdrop SCREAMING_SNAKE_CASE_ = decoder_layerdrop SCREAMING_SNAKE_CASE_ = use_cache SCREAMING_SNAKE_CASE_ = encoder_layers SCREAMING_SNAKE_CASE_ = scale_embedding # scale factor will be sqrt(d_model) if True SCREAMING_SNAKE_CASE_ = max_source_positions SCREAMING_SNAKE_CASE_ = max_target_positions SCREAMING_SNAKE_CASE_ = num_conv_layers SCREAMING_SNAKE_CASE_ = list(_lowerCAmelCase ) SCREAMING_SNAKE_CASE_ = conv_channels SCREAMING_SNAKE_CASE_ = input_feat_per_channel SCREAMING_SNAKE_CASE_ = input_channels if len(self.conv_kernel_sizes ) != self.num_conv_layers: raise ValueError( 'Configuration for convolutional module is incorrect. ' 'It is required that `len(config.conv_kernel_sizes)` == `config.num_conv_layers` ' F"but is `len(config.conv_kernel_sizes) = {len(self.conv_kernel_sizes )}`, " F"`config.num_conv_layers = {self.num_conv_layers}`." ) super().__init__( pad_token_id=_lowerCAmelCase , bos_token_id=_lowerCAmelCase , eos_token_id=_lowerCAmelCase , is_encoder_decoder=_lowerCAmelCase , decoder_start_token_id=_lowerCAmelCase , **_lowerCAmelCase , )
210
1
'''simple docstring''' import argparse import requests import torch from PIL import Image from transformers import ViTMAEConfig, ViTMAEForPreTraining, ViTMAEImageProcessor def UpperCamelCase_( snake_case : Any ): '''simple docstring''' if "cls_token" in name: snake_case_ = name.replace("cls_token" , "vit.embeddings.cls_token" ) if "mask_token" in name: snake_case_ = name.replace("mask_token" , "decoder.mask_token" ) if "decoder_pos_embed" in name: snake_case_ = name.replace("decoder_pos_embed" , "decoder.decoder_pos_embed" ) if "pos_embed" in name and "decoder" not in name: snake_case_ = name.replace("pos_embed" , "vit.embeddings.position_embeddings" ) if "patch_embed.proj" in name: snake_case_ = name.replace("patch_embed.proj" , "vit.embeddings.patch_embeddings.projection" ) if "patch_embed.norm" in name: snake_case_ = name.replace("patch_embed.norm" , "vit.embeddings.norm" ) if "decoder_blocks" in name: snake_case_ = name.replace("decoder_blocks" , "decoder.decoder_layers" ) if "blocks" in name: snake_case_ = name.replace("blocks" , "vit.encoder.layer" ) if "attn.proj" in name: snake_case_ = name.replace("attn.proj" , "attention.output.dense" ) if "attn" in name: snake_case_ = name.replace("attn" , "attention.self" ) if "norm1" in name: snake_case_ = name.replace("norm1" , "layernorm_before" ) if "norm2" in name: snake_case_ = name.replace("norm2" , "layernorm_after" ) if "mlp.fc1" in name: snake_case_ = name.replace("mlp.fc1" , "intermediate.dense" ) if "mlp.fc2" in name: snake_case_ = name.replace("mlp.fc2" , "output.dense" ) if "decoder_embed" in name: snake_case_ = name.replace("decoder_embed" , "decoder.decoder_embed" ) if "decoder_norm" in name: snake_case_ = name.replace("decoder_norm" , "decoder.decoder_norm" ) if "decoder_pred" in name: snake_case_ = name.replace("decoder_pred" , "decoder.decoder_pred" ) if "norm.weight" in name and "decoder" not in name: snake_case_ = name.replace("norm.weight" , "vit.layernorm.weight" ) if "norm.bias" in name and "decoder" not in name: snake_case_ = name.replace("norm.bias" , "vit.layernorm.bias" ) return name def UpperCamelCase_( snake_case : Optional[Any] , snake_case : Any ): '''simple docstring''' for key in orig_state_dict.copy().keys(): snake_case_ = orig_state_dict.pop(SCREAMING_SNAKE_CASE__ ) if "qkv" in key: snake_case_ = key.split("." ) snake_case_ = int(key_split[1] ) if "decoder_blocks" in key: snake_case_ = config.decoder_hidden_size snake_case_ = """decoder.decoder_layers.""" if "weight" in key: snake_case_ = val[:dim, :] snake_case_ = val[dim : dim * 2, :] snake_case_ = val[-dim:, :] elif "bias" in key: snake_case_ = val[:dim] snake_case_ = val[dim : dim * 2] snake_case_ = val[-dim:] else: snake_case_ = config.hidden_size snake_case_ = """vit.encoder.layer.""" if "weight" in key: snake_case_ = val[:dim, :] snake_case_ = val[dim : dim * 2, :] snake_case_ = val[-dim:, :] elif "bias" in key: snake_case_ = val[:dim] snake_case_ = val[dim : dim * 2] snake_case_ = val[-dim:] else: snake_case_ = val return orig_state_dict def UpperCamelCase_( snake_case : Union[str, Any] , snake_case : str ): '''simple docstring''' snake_case_ = ViTMAEConfig() if "large" in checkpoint_url: snake_case_ = 1_0_2_4 snake_case_ = 4_0_9_6 snake_case_ = 2_4 snake_case_ = 1_6 elif "huge" in checkpoint_url: snake_case_ = 1_4 snake_case_ = 1_2_8_0 snake_case_ = 5_1_2_0 snake_case_ = 3_2 snake_case_ = 1_6 snake_case_ = ViTMAEForPreTraining(SCREAMING_SNAKE_CASE__ ) snake_case_ = torch.hub.load_state_dict_from_url(SCREAMING_SNAKE_CASE__ , map_location="cpu" )["""model"""] snake_case_ = ViTMAEImageProcessor(size=config.image_size ) snake_case_ = convert_state_dict(SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ ) model.load_state_dict(SCREAMING_SNAKE_CASE__ ) model.eval() snake_case_ = """https://user-images.githubusercontent.com/11435359/147738734-196fd92f-9260-48d5-ba7e-bf103d29364d.jpg""" snake_case_ = Image.open(requests.get(SCREAMING_SNAKE_CASE__ , stream=SCREAMING_SNAKE_CASE__ ).raw ) snake_case_ = ViTMAEImageProcessor(size=config.image_size ) snake_case_ = image_processor(images=SCREAMING_SNAKE_CASE__ , return_tensors="pt" ) # forward pass torch.manual_seed(2 ) snake_case_ = model(**SCREAMING_SNAKE_CASE__ ) snake_case_ = outputs.logits if "large" in checkpoint_url: snake_case_ = torch.tensor( [[-0.7309, -0.7128, -1.0169], [-1.0161, -0.9058, -1.1878], [-1.0478, -0.9411, -1.1911]] ) elif "huge" in checkpoint_url: snake_case_ = torch.tensor( [[-1.1599, -0.9199, -1.2221], [-1.1952, -0.9269, -1.2307], [-1.2143, -0.9337, -1.2262]] ) else: snake_case_ = torch.tensor( [[-0.9192, -0.8481, -1.1259], [-1.1349, -1.0034, -1.2599], [-1.1757, -1.0429, -1.2726]] ) # verify logits assert torch.allclose(logits[0, :3, :3] , SCREAMING_SNAKE_CASE__ , atol=1e-4 ) print(f'Saving model to {pytorch_dump_folder_path}' ) model.save_pretrained(SCREAMING_SNAKE_CASE__ ) print(f'Saving image processor to {pytorch_dump_folder_path}' ) image_processor.save_pretrained(SCREAMING_SNAKE_CASE__ ) if __name__ == "__main__": _SCREAMING_SNAKE_CASE : Union[str, Any] = argparse.ArgumentParser() # Required parameters parser.add_argument( "--checkpoint_url", default="https://dl.fbaipublicfiles.com/mae/visualize/mae_visualize_vit_base.pth", type=str, help="URL of the checkpoint you'd like to convert.", ) parser.add_argument( "--pytorch_dump_folder_path", default=None, type=str, help="Path to the output PyTorch model directory." ) _SCREAMING_SNAKE_CASE : List[Any] = parser.parse_args() convert_vit_mae_checkpoint(args.checkpoint_url, args.pytorch_dump_folder_path)
85
from collections import UserDict from typing import Union import numpy as np import requests from ..utils import ( add_end_docstrings, logging, ) from .audio_classification import ffmpeg_read from .base import PIPELINE_INIT_ARGS, Pipeline lowercase : Optional[Any] = logging.get_logger(__name__) @add_end_docstrings(lowerCAmelCase ) class __snake_case ( lowerCAmelCase ): def __init__( self ,**snake_case ): '''simple docstring''' super().__init__(**snake_case ) if self.framework != "pt": raise ValueError(f"The {self.__class__} is only available in PyTorch." ) # No specific FOR_XXX available yet def __call__( self ,snake_case ,**snake_case ): '''simple docstring''' return super().__call__(snake_case ,**snake_case ) def _SCREAMING_SNAKE_CASE ( self ,**snake_case ): '''simple docstring''' lowercase : Union[str, Any] = {} if "candidate_labels" in kwargs: lowercase : List[str] = kwargs["""candidate_labels"""] if "hypothesis_template" in kwargs: lowercase : Dict = kwargs["""hypothesis_template"""] return preprocess_params, {}, {} def _SCREAMING_SNAKE_CASE ( self ,snake_case ,snake_case=None ,snake_case="This is a sound of {}." ): '''simple docstring''' if isinstance(snake_case ,snake_case ): if audio.startswith("""http://""" ) or audio.startswith("""https://""" ): # We need to actually check for a real protocol, otherwise it's impossible to use a local file # like http_huggingface_co.png lowercase : Optional[Any] = requests.get(snake_case ).content else: with open(snake_case ,"""rb""" ) as f: lowercase : Union[str, Any] = f.read() if isinstance(snake_case ,snake_case ): lowercase : int = ffmpeg_read(snake_case ,self.feature_extractor.sampling_rate ) if not isinstance(snake_case ,np.ndarray ): raise ValueError("""We expect a numpy ndarray as input""" ) if len(audio.shape ) != 1: raise ValueError("""We expect a single channel audio input for ZeroShotAudioClassificationPipeline""" ) lowercase : Dict = self.feature_extractor( [audio] ,sampling_rate=self.feature_extractor.sampling_rate ,return_tensors="""pt""" ) lowercase : Tuple = candidate_labels lowercase : Tuple = [hypothesis_template.format(snake_case ) for x in candidate_labels] lowercase : Optional[Any] = self.tokenizer(snake_case ,return_tensors=self.framework ,padding=snake_case ) lowercase : Optional[Any] = [text_inputs] return inputs def _SCREAMING_SNAKE_CASE ( self ,snake_case ): '''simple docstring''' lowercase : List[str] = model_inputs.pop("""candidate_labels""" ) lowercase : Dict = model_inputs.pop("""text_inputs""" ) if isinstance(text_inputs[0] ,snake_case ): lowercase : List[Any] = text_inputs[0] else: # Batching case. lowercase : Dict = text_inputs[0][0] lowercase : Optional[Any] = self.model(**snake_case ,**snake_case ) lowercase : Any = { """candidate_labels""": candidate_labels, """logits""": outputs.logits_per_audio, } return model_outputs def _SCREAMING_SNAKE_CASE ( self ,snake_case ): '''simple docstring''' lowercase : List[Any] = model_outputs.pop("""candidate_labels""" ) lowercase : Any = model_outputs["""logits"""][0] if self.framework == "pt": lowercase : Any = logits.softmax(dim=0 ) lowercase : Tuple = probs.tolist() else: raise ValueError("""`tf` framework not supported.""" ) lowercase : Tuple = [ {"""score""": score, """label""": candidate_label} for score, candidate_label in sorted(zip(snake_case ,snake_case ) ,key=lambda snake_case : -x[0] ) ] return result
20
0
"""simple docstring""" def _lowerCAmelCase ( UpperCamelCase_ , UpperCamelCase_ = 0 ): __SCREAMING_SNAKE_CASE = length or len(UpperCamelCase_ ) __SCREAMING_SNAKE_CASE = False for i in range(length - 1 ): if list_data[i] > list_data[i + 1]: __SCREAMING_SNAKE_CASE ,__SCREAMING_SNAKE_CASE = list_data[i + 1], list_data[i] __SCREAMING_SNAKE_CASE = True return list_data if not swapped else bubble_sort(UpperCamelCase_ , length - 1 ) if __name__ == "__main__": import doctest doctest.testmod()
255
"""simple docstring""" from typing import Callable, Optional, Union from ...configuration_utils import PretrainedConfig from ...utils import logging __magic_name__ = logging.get_logger(__name__) __magic_name__ = { "microsoft/xprophetnet-large-wiki100-cased": ( "https://huggingface.co/microsoft/xprophetnet-large-wiki100-cased/resolve/main/config.json" ), } class SCREAMING_SNAKE_CASE_ ( __a ): """simple docstring""" __lowercase : List[str] = '''xlm-prophetnet''' __lowercase : Dict = ['''past_key_values'''] __lowercase : Any = { '''num_attention_heads''': '''num_encoder_attention_heads''', } def __init__( self , lowerCAmelCase__ = 0.1 , lowerCAmelCase__ = "gelu" , lowerCAmelCase__ = 3_0_5_2_2 , lowerCAmelCase__ = 1_0_2_4 , lowerCAmelCase__ = 4_0_9_6 , lowerCAmelCase__ = 1_2 , lowerCAmelCase__ = 1_6 , lowerCAmelCase__ = 4_0_9_6 , lowerCAmelCase__ = 1_2 , lowerCAmelCase__ = 1_6 , lowerCAmelCase__ = 0.1 , lowerCAmelCase__ = 0.1 , lowerCAmelCase__ = 5_1_2 , lowerCAmelCase__ = 0.02 , lowerCAmelCase__ = True , lowerCAmelCase__ = True , lowerCAmelCase__ = 0 , lowerCAmelCase__ = 2 , lowerCAmelCase__ = 3_2 , lowerCAmelCase__ = 1_2_8 , lowerCAmelCase__ = False , lowerCAmelCase__ = 0.0 , lowerCAmelCase__ = True , lowerCAmelCase__ = 0 , lowerCAmelCase__ = 1 , lowerCAmelCase__ = 2 , **lowerCAmelCase__ , ): __SCREAMING_SNAKE_CASE = vocab_size __SCREAMING_SNAKE_CASE = hidden_size __SCREAMING_SNAKE_CASE = encoder_ffn_dim __SCREAMING_SNAKE_CASE = num_encoder_layers __SCREAMING_SNAKE_CASE = num_encoder_attention_heads __SCREAMING_SNAKE_CASE = decoder_ffn_dim __SCREAMING_SNAKE_CASE = num_decoder_layers __SCREAMING_SNAKE_CASE = num_decoder_attention_heads __SCREAMING_SNAKE_CASE = max_position_embeddings __SCREAMING_SNAKE_CASE = init_std # Normal(0, this parameter) __SCREAMING_SNAKE_CASE = activation_function # parameters for xlmprophetnet __SCREAMING_SNAKE_CASE = ngram __SCREAMING_SNAKE_CASE = num_buckets __SCREAMING_SNAKE_CASE = relative_max_distance __SCREAMING_SNAKE_CASE = disable_ngram_loss __SCREAMING_SNAKE_CASE = eps # 3 Types of Dropout __SCREAMING_SNAKE_CASE = attention_dropout __SCREAMING_SNAKE_CASE = activation_dropout __SCREAMING_SNAKE_CASE = dropout __SCREAMING_SNAKE_CASE = use_cache super().__init__( pad_token_id=lowerCAmelCase__ , bos_token_id=lowerCAmelCase__ , eos_token_id=lowerCAmelCase__ , is_encoder_decoder=lowerCAmelCase__ , add_cross_attention=lowerCAmelCase__ , decoder_start_token_id=lowerCAmelCase__ , **lowerCAmelCase__ , ) @property def snake_case_ ( self): return self.num_encoder_layers + self.num_decoder_layers @num_hidden_layers.setter def snake_case_ ( self , lowerCAmelCase__): raise NotImplementedError( """This model does not support the setting of `num_hidden_layers`. Please set `num_encoder_layers` and""" """ `num_decoder_layers`.""")
255
1
"""simple docstring""" import os import random import sys from . import cryptomath_module as cryptoMath # noqa: N812 from . import rabin_miller as rabinMiller # noqa: N812 def a_ ( ): '''simple docstring''' print('Making key files...' ) make_key_files('rsa' , 1024 ) print('Key files generation successful.' ) def a_ ( _lowerCAmelCase : int ): '''simple docstring''' print('Generating prime p...' ) lowercase__ : Dict = rabinMiller.generate_large_prime(_lowerCAmelCase ) print('Generating prime q...' ) lowercase__ : List[str] = rabinMiller.generate_large_prime(_lowerCAmelCase ) lowercase__ : Tuple = p * q print('Generating e that is relatively prime to (p - 1) * (q - 1)...' ) while True: lowercase__ : Dict = random.randrange(2 ** (key_size - 1) , 2 ** (key_size) ) if cryptoMath.gcd(_lowerCAmelCase , (p - 1) * (q - 1) ) == 1: break print('Calculating d that is mod inverse of e...' ) lowercase__ : Tuple = cryptoMath.find_mod_inverse(_lowerCAmelCase , (p - 1) * (q - 1) ) lowercase__ : Dict = (n, e) lowercase__ : str = (n, d) return (public_key, private_key) def a_ ( _lowerCAmelCase : str , _lowerCAmelCase : int ): '''simple docstring''' if os.path.exists(f"""{name}_pubkey.txt""" ) or os.path.exists(f"""{name}_privkey.txt""" ): print('\nWARNING:' ) print( f"""\"{name}_pubkey.txt\" or \"{name}_privkey.txt\" already exists. \n""" 'Use a different name or delete these files and re-run this program.' ) sys.exit() lowercase__ , lowercase__ : int = generate_key(_lowerCAmelCase ) print(f"""\nWriting public key to file {name}_pubkey.txt...""" ) with open(f"""{name}_pubkey.txt""" , 'w' ) as out_file: out_file.write(f"""{key_size},{public_key[0]},{public_key[1]}""" ) print(f"""Writing private key to file {name}_privkey.txt...""" ) with open(f"""{name}_privkey.txt""" , 'w' ) as out_file: out_file.write(f"""{key_size},{private_key[0]},{private_key[1]}""" ) if __name__ == "__main__": main()
77
"""simple docstring""" from ...configuration_utils import PretrainedConfig from ...utils import logging _lowerCamelCase : Optional[Any] = logging.get_logger(__name__) _lowerCamelCase : int = { 'transfo-xl-wt103': 'https://huggingface.co/transfo-xl-wt103/resolve/main/config.json', } class lowercase ( __UpperCAmelCase): __lowerCAmelCase : Union[str, Any] = """transfo-xl""" __lowerCAmelCase : Optional[Any] = ["""mems"""] __lowerCAmelCase : List[str] = { """n_token""": """vocab_size""", """hidden_size""": """d_model""", """num_attention_heads""": """n_head""", """num_hidden_layers""": """n_layer""", } def __init__( self : int , _lowerCamelCase : List[Any]=26_77_35 , _lowerCamelCase : Any=[2_00_00, 4_00_00, 20_00_00] , _lowerCamelCase : str=10_24 , _lowerCamelCase : Union[str, Any]=10_24 , _lowerCamelCase : Union[str, Any]=16 , _lowerCamelCase : int=64 , _lowerCamelCase : Optional[int]=40_96 , _lowerCamelCase : Optional[int]=4 , _lowerCamelCase : str=False , _lowerCamelCase : Union[str, Any]=18 , _lowerCamelCase : Optional[Any]=16_00 , _lowerCamelCase : Optional[int]=10_00 , _lowerCamelCase : Optional[int]=True , _lowerCamelCase : Any=True , _lowerCamelCase : Tuple=0 , _lowerCamelCase : List[Any]=-1 , _lowerCamelCase : Union[str, Any]=True , _lowerCamelCase : List[str]=0.1 , _lowerCamelCase : List[Any]=0.0 , _lowerCamelCase : List[Any]=True , _lowerCamelCase : List[str]="normal" , _lowerCamelCase : int=0.01 , _lowerCamelCase : List[str]=0.01 , _lowerCamelCase : Optional[Any]=0.02 , _lowerCamelCase : int=1E-5 , _lowerCamelCase : int=0 , **_lowerCamelCase : Union[str, Any] , ): """simple docstring""" A_ : Optional[Any] = vocab_size A_ : str = [] self.cutoffs.extend(_lowerCamelCase ) if proj_share_all_but_first: A_ : str = [False] + [True] * len(self.cutoffs ) else: A_ : str = [False] + [False] * len(self.cutoffs ) A_ : Optional[Any] = d_model A_ : Dict = d_embed A_ : List[str] = d_head A_ : List[Any] = d_inner A_ : Dict = div_val A_ : int = pre_lnorm A_ : Optional[Any] = n_layer A_ : List[Any] = n_head A_ : List[Any] = mem_len A_ : Dict = same_length A_ : Optional[Any] = attn_type A_ : Any = clamp_len A_ : Dict = sample_softmax A_ : List[Any] = adaptive A_ : Union[str, Any] = dropout A_ : List[Any] = dropatt A_ : Any = untie_r A_ : Optional[int] = init A_ : int = init_range A_ : List[Any] = proj_init_std A_ : Union[str, Any] = init_std A_ : List[Any] = layer_norm_epsilon super().__init__(eos_token_id=_lowerCamelCase , **_lowerCamelCase ) @property def a_ ( self : Union[str, Any] ): """simple docstring""" logger.info(F"""The model {self.model_type} is one of the few models that has no sequence length limit.""" ) return -1 @max_position_embeddings.setter def a_ ( self : Any , _lowerCamelCase : int ): """simple docstring""" raise NotImplementedError( F"""The model {self.model_type} is one of the few models that has no sequence length limit.""" )
167
0
import os from typing import Optional import fsspec from fsspec.archive import AbstractArchiveFileSystem from fsspec.utils import DEFAULT_BLOCK_SIZE class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = """""" UpperCamelCase_ = ( None # protocol passed in prefix to the url. ex: "gzip", for gzip://file.txt::http://foo.bar/file.txt.gz ) UpperCamelCase_ = None # compression type in fsspec. ex: "gzip" UpperCamelCase_ = None # extension of the filename to strip. ex: "".gz" to get file.txt from file.txt.gz def __init__( self : int , UpperCamelCase__ : str = "" , UpperCamelCase__ : Optional[str] = None , UpperCamelCase__ : Optional[dict] = None , **UpperCamelCase__ : Union[str, Any] ): '''simple docstring''' super().__init__(self , **UpperCamelCase__ ) # always open as "rb" since fsspec can then use the TextIOWrapper to make it work for "r" mode SCREAMING_SNAKE_CASE : Optional[Any] = fsspec.open( UpperCamelCase__ , mode='''rb''' , protocol=UpperCamelCase__ , compression=self.compression , client_kwargs={ '''requote_redirect_url''': False, # see https://github.com/huggingface/datasets/pull/5459 '''trust_env''': True, # Enable reading proxy env variables. **(target_options or {}).pop('''client_kwargs''' , {} ), # To avoid issues if it was already passed. } , **(target_options or {}) , ) SCREAMING_SNAKE_CASE : Dict = os.path.basename(self.file.path.split('''::''' )[0] ) SCREAMING_SNAKE_CASE : Optional[Any] = ( self.compressed_name[: self.compressed_name.rindex('''.''' )] if '''.''' in self.compressed_name else self.compressed_name ) SCREAMING_SNAKE_CASE : Dict = None @classmethod def __A ( cls : Tuple , UpperCamelCase__ : Union[str, Any] ): '''simple docstring''' return super()._strip_protocol(UpperCamelCase__ ).lstrip('''/''' ) def __A ( self : List[Any] ): '''simple docstring''' if self.dir_cache is None: SCREAMING_SNAKE_CASE : Optional[Any] = {**self.file.fs.info(self.file.path ), '''name''': self.uncompressed_name} SCREAMING_SNAKE_CASE : Dict = {f['''name''']: f} def __A ( self : Any , UpperCamelCase__ : str ): '''simple docstring''' return self.file.open().read() def __A ( self : str , UpperCamelCase__ : str , UpperCamelCase__ : str = "rb" , UpperCamelCase__ : List[Any]=None , UpperCamelCase__ : int=True , UpperCamelCase__ : Any=None , **UpperCamelCase__ : Union[str, Any] , ): '''simple docstring''' SCREAMING_SNAKE_CASE : Any = self._strip_protocol(UpperCamelCase__ ) if mode != "rb": raise ValueError(f"""Tried to read with mode {mode} on file {self.file.path} opened with mode 'rb'""" ) return self.file.open() class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = """bz2""" UpperCamelCase_ = """bz2""" UpperCamelCase_ = """.bz2""" class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = """gzip""" UpperCamelCase_ = """gzip""" UpperCamelCase_ = """.gz""" class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = """lz4""" UpperCamelCase_ = """lz4""" UpperCamelCase_ = """.lz4""" class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = """xz""" UpperCamelCase_ = """xz""" UpperCamelCase_ = """.xz""" class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = """zstd""" UpperCamelCase_ = """zstd""" UpperCamelCase_ = """.zst""" def __init__( self : Dict , UpperCamelCase__ : str , UpperCamelCase__ : str = "rb" , UpperCamelCase__ : Optional[str] = None , UpperCamelCase__ : Optional[dict] = None , UpperCamelCase__ : int = DEFAULT_BLOCK_SIZE , **UpperCamelCase__ : Optional[Any] , ): '''simple docstring''' super().__init__( fo=UpperCamelCase__ , mode=UpperCamelCase__ , target_protocol=UpperCamelCase__ , target_options=UpperCamelCase__ , block_size=UpperCamelCase__ , **UpperCamelCase__ , ) # We need to wrap the zstd decompressor to avoid this error in fsspec==2021.7.0 and zstandard==0.15.2: # # File "/Users/user/.virtualenvs/hf-datasets/lib/python3.7/site-packages/fsspec/core.py", line 145, in open # out.close = close # AttributeError: 'zstd.ZstdDecompressionReader' object attribute 'close' is read-only # # see https://github.com/intake/filesystem_spec/issues/725 SCREAMING_SNAKE_CASE : List[Any] = self.file.__enter__ class lowercase__ : def __init__( self : str , UpperCamelCase__ : Any ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[Any] = file_ def __enter__( self : int ): '''simple docstring''' self._file.__enter__() return self def __exit__( self : Tuple , *UpperCamelCase__ : Any , **UpperCamelCase__ : str ): '''simple docstring''' self._file.__exit__(*UpperCamelCase__ , **UpperCamelCase__ ) def __iter__( self : Optional[Any] ): '''simple docstring''' return iter(self._file ) def __A ( self : Tuple ): '''simple docstring''' return next(self._file ) def __getattr__( self : Tuple , UpperCamelCase__ : int ): '''simple docstring''' return getattr(self._file , UpperCamelCase__ ) def fixed_enter(*UpperCamelCase__ : int , **UpperCamelCase__ : Any ): return WrappedFile(_enter(*UpperCamelCase__ , **UpperCamelCase__ ) ) SCREAMING_SNAKE_CASE : Union[str, Any] = fixed_enter
258
import os from shutil import copyfile from typing import Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import AddedToken, BatchEncoding, PreTrainedTokenizer from ...utils import logging __UpperCamelCase : List[str] = logging.get_logger(__name__) __UpperCamelCase : List[Any] = '▁' __UpperCamelCase : str = {'vocab_file': 'sentencepiece.bpe.model'} __UpperCamelCase : Tuple = { 'vocab_file': { 'facebook/mbart-large-en-ro': ( 'https://huggingface.co/facebook/mbart-large-en-ro/resolve/main/sentencepiece.bpe.model' ), 'facebook/mbart-large-cc25': ( 'https://huggingface.co/facebook/mbart-large-cc25/resolve/main/sentencepiece.bpe.model' ), } } __UpperCamelCase : List[str] = { 'facebook/mbart-large-en-ro': 1024, 'facebook/mbart-large-cc25': 1024, } # fmt: off __UpperCamelCase : Dict = ['ar_AR', 'cs_CZ', 'de_DE', 'en_XX', 'es_XX', 'et_EE', 'fi_FI', 'fr_XX', 'gu_IN', 'hi_IN', 'it_IT', 'ja_XX', 'kk_KZ', 'ko_KR', 'lt_LT', 'lv_LV', 'my_MM', 'ne_NP', 'nl_XX', 'ro_RO', 'ru_RU', 'si_LK', 'tr_TR', 'vi_VN', 'zh_CN'] class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = VOCAB_FILES_NAMES UpperCamelCase_ = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES UpperCamelCase_ = PRETRAINED_VOCAB_FILES_MAP UpperCamelCase_ = ["""input_ids""", """attention_mask"""] UpperCamelCase_ = [] UpperCamelCase_ = [] def __init__( self : Dict , UpperCamelCase__ : Optional[Any] , UpperCamelCase__ : Optional[int]="<s>" , UpperCamelCase__ : Union[str, Any]="</s>" , UpperCamelCase__ : str="</s>" , UpperCamelCase__ : List[Any]="<s>" , UpperCamelCase__ : List[str]="<unk>" , UpperCamelCase__ : Tuple="<pad>" , UpperCamelCase__ : str="<mask>" , UpperCamelCase__ : Any=None , UpperCamelCase__ : Dict=None , UpperCamelCase__ : str=None , UpperCamelCase__ : Optional[Dict[str, Any]] = None , UpperCamelCase__ : List[Any]=None , **UpperCamelCase__ : Dict , ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[int] = AddedToken(UpperCamelCase__ , lstrip=UpperCamelCase__ , rstrip=UpperCamelCase__ ) if isinstance(UpperCamelCase__ , UpperCamelCase__ ) else mask_token SCREAMING_SNAKE_CASE : Optional[int] = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( bos_token=UpperCamelCase__ , eos_token=UpperCamelCase__ , unk_token=UpperCamelCase__ , sep_token=UpperCamelCase__ , cls_token=UpperCamelCase__ , pad_token=UpperCamelCase__ , mask_token=UpperCamelCase__ , tokenizer_file=UpperCamelCase__ , src_lang=UpperCamelCase__ , tgt_lang=UpperCamelCase__ , additional_special_tokens=UpperCamelCase__ , sp_model_kwargs=self.sp_model_kwargs , **UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Optional[Any] = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(str(UpperCamelCase__ ) ) SCREAMING_SNAKE_CASE : Dict = vocab_file # Original fairseq vocab and spm vocab must be "aligned": # Vocab | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 # -------- | ------- | ------- | ------ | ------- | --- | --- | --- | ----- | ----- | ---- # fairseq | '<s>' | '<pad>' | '</s>' | '<unk>' | ',' | '.' | '▁' | 's' | '▁de' | '-' # spm | '<unk>' | '<s>' | '</s>' | ',' | '.' | '▁' | 's' | '▁de' | '-' | '▁a' # Mimic fairseq token-to-id alignment for the first 4 token SCREAMING_SNAKE_CASE : str = {'''<s>''': 0, '''<pad>''': 1, '''</s>''': 2, '''<unk>''': 3} # The first "real" token "," has position 4 in the original fairseq vocab and position 3 in the spm vocab SCREAMING_SNAKE_CASE : Tuple = 1 SCREAMING_SNAKE_CASE : Dict = len(self.sp_model ) SCREAMING_SNAKE_CASE : Union[str, Any] = { code: self.sp_model_size + i + self.fairseq_offset for i, code in enumerate(UpperCamelCase__ ) } SCREAMING_SNAKE_CASE : Any = {v: k for k, v in self.lang_code_to_id.items()} SCREAMING_SNAKE_CASE : Optional[Any] = len(self.sp_model ) + len(self.lang_code_to_id ) + self.fairseq_offset self.fairseq_tokens_to_ids.update(self.lang_code_to_id ) SCREAMING_SNAKE_CASE : Any = {v: k for k, v in self.fairseq_tokens_to_ids.items()} SCREAMING_SNAKE_CASE : int = list(self.lang_code_to_id.keys() ) if additional_special_tokens is not None: # Only add those special tokens if they are not already there. self._additional_special_tokens.extend( [t for t in additional_special_tokens if t not in self._additional_special_tokens] ) SCREAMING_SNAKE_CASE : List[str] = src_lang if src_lang is not None else '''en_XX''' SCREAMING_SNAKE_CASE : Any = self.lang_code_to_id[self._src_lang] SCREAMING_SNAKE_CASE : int = tgt_lang self.set_src_lang_special_tokens(self._src_lang ) def __getstate__( self : Union[str, Any] ): '''simple docstring''' SCREAMING_SNAKE_CASE : List[str] = self.__dict__.copy() SCREAMING_SNAKE_CASE : int = None SCREAMING_SNAKE_CASE : Any = self.sp_model.serialized_model_proto() return state def __setstate__( self : Tuple , UpperCamelCase__ : Dict ): '''simple docstring''' SCREAMING_SNAKE_CASE : Tuple = d # for backward compatibility if not hasattr(self , '''sp_model_kwargs''' ): SCREAMING_SNAKE_CASE : Tuple = {} SCREAMING_SNAKE_CASE : Optional[Any] = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.LoadFromSerializedProto(self.sp_model_proto ) @property def __A ( self : int ): '''simple docstring''' return len(self.sp_model ) + len(self.lang_code_to_id ) + self.fairseq_offset + 1 # Plus 1 for the mask token @property def __A ( self : Union[str, Any] ): '''simple docstring''' return self._src_lang @src_lang.setter def __A ( self : Tuple , UpperCamelCase__ : str ): '''simple docstring''' SCREAMING_SNAKE_CASE : Dict = new_src_lang self.set_src_lang_special_tokens(self._src_lang ) def __A ( self : Union[str, Any] , UpperCamelCase__ : List[int] , UpperCamelCase__ : Optional[List[int]] = None , UpperCamelCase__ : bool = False ): '''simple docstring''' if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase__ , token_ids_a=UpperCamelCase__ , already_has_special_tokens=UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Union[str, Any] = [1] * len(self.prefix_tokens ) SCREAMING_SNAKE_CASE : Dict = [1] * len(self.suffix_tokens ) if token_ids_a is None: return prefix_ones + ([0] * len(UpperCamelCase__ )) + suffix_ones return prefix_ones + ([0] * len(UpperCamelCase__ )) + ([0] * len(UpperCamelCase__ )) + suffix_ones def __A ( self : Optional[int] , UpperCamelCase__ : List[int] , UpperCamelCase__ : Optional[List[int]] = None ): '''simple docstring''' if token_ids_a is None: return self.prefix_tokens + token_ids_a + self.suffix_tokens # We don't expect to process pairs, but leave the pair logic for API consistency return self.prefix_tokens + token_ids_a + token_ids_a + self.suffix_tokens def __A ( self : Optional[int] , UpperCamelCase__ : List[int] , UpperCamelCase__ : Optional[List[int]] = None ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[Any] = [self.sep_token_id] SCREAMING_SNAKE_CASE : List[Any] = [self.cls_token_id] if token_ids_a is None: return len(cls + token_ids_a + sep ) * [0] return len(cls + token_ids_a + sep + sep + token_ids_a + sep ) * [0] def __A ( self : Tuple , UpperCamelCase__ : Any , UpperCamelCase__ : str , UpperCamelCase__ : Optional[str] , UpperCamelCase__ : Optional[str] , **UpperCamelCase__ : Tuple ): '''simple docstring''' if src_lang is None or tgt_lang is None: raise ValueError('''Translation requires a `src_lang` and a `tgt_lang` for this model''' ) SCREAMING_SNAKE_CASE : Dict = src_lang SCREAMING_SNAKE_CASE : Union[str, Any] = self(UpperCamelCase__ , add_special_tokens=UpperCamelCase__ , return_tensors=UpperCamelCase__ , **UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Optional[int] = self.convert_tokens_to_ids(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Any = tgt_lang_id return inputs def __A ( self : List[str] ): '''simple docstring''' SCREAMING_SNAKE_CASE : Tuple = {self.convert_ids_to_tokens(UpperCamelCase__ ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def __A ( self : Any , UpperCamelCase__ : str ): '''simple docstring''' return self.sp_model.encode(UpperCamelCase__ , out_type=UpperCamelCase__ ) def __A ( self : str , UpperCamelCase__ : int ): '''simple docstring''' if token in self.fairseq_tokens_to_ids: return self.fairseq_tokens_to_ids[token] SCREAMING_SNAKE_CASE : Optional[Any] = self.sp_model.PieceToId(UpperCamelCase__ ) # Need to return unknown token if the SP model returned 0 return spm_id + self.fairseq_offset if spm_id else self.unk_token_id def __A ( self : Dict , UpperCamelCase__ : str ): '''simple docstring''' if index in self.fairseq_ids_to_tokens: return self.fairseq_ids_to_tokens[index] return self.sp_model.IdToPiece(index - self.fairseq_offset ) def __A ( self : int , UpperCamelCase__ : List[str] ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[Any] = ''''''.join(UpperCamelCase__ ).replace(UpperCamelCase__ , ''' ''' ).strip() return out_string def __A ( self : Dict , UpperCamelCase__ : str , UpperCamelCase__ : Optional[str] = None ): '''simple docstring''' if not os.path.isdir(UpperCamelCase__ ): logger.error(f"""Vocabulary path ({save_directory}) should be a directory""" ) return SCREAMING_SNAKE_CASE : Union[str, Any] = os.path.join( UpperCamelCase__ , (filename_prefix + '''-''' if filename_prefix else '''''') + VOCAB_FILES_NAMES['''vocab_file'''] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase__ ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase__ ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase__ , '''wb''' ) as fi: SCREAMING_SNAKE_CASE : List[str] = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase__ ) return (out_vocab_file,) def __A ( self : Any , UpperCamelCase__ : List[str] , UpperCamelCase__ : str = "en_XX" , UpperCamelCase__ : Optional[List[str]] = None , UpperCamelCase__ : str = "ro_RO" , **UpperCamelCase__ : List[str] , ): '''simple docstring''' SCREAMING_SNAKE_CASE : Tuple = src_lang SCREAMING_SNAKE_CASE : List[str] = tgt_lang return super().prepare_seqaseq_batch(UpperCamelCase__ , UpperCamelCase__ , **UpperCamelCase__ ) def __A ( self : List[Any] ): '''simple docstring''' return self.set_src_lang_special_tokens(self.src_lang ) def __A ( self : List[str] ): '''simple docstring''' return self.set_tgt_lang_special_tokens(self.tgt_lang ) def __A ( self : str , UpperCamelCase__ : str ): '''simple docstring''' SCREAMING_SNAKE_CASE : int = self.lang_code_to_id[src_lang] SCREAMING_SNAKE_CASE : Tuple = [] SCREAMING_SNAKE_CASE : Optional[Any] = [self.eos_token_id, self.cur_lang_code] def __A ( self : List[Any] , UpperCamelCase__ : str ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[int] = self.lang_code_to_id[lang] SCREAMING_SNAKE_CASE : Optional[int] = [] SCREAMING_SNAKE_CASE : List[str] = [self.eos_token_id, self.cur_lang_code]
258
1
"""simple docstring""" import warnings from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding class SCREAMING_SNAKE_CASE__ ( UpperCAmelCase__ ): __lowerCAmelCase : Tuple = ['image_processor', 'tokenizer'] __lowerCAmelCase : Dict = 'ChineseCLIPImageProcessor' __lowerCAmelCase : List[Any] = ('BertTokenizer', 'BertTokenizerFast') def __init__( self , _SCREAMING_SNAKE_CASE=None , _SCREAMING_SNAKE_CASE=None , **_SCREAMING_SNAKE_CASE ) -> str: '''simple docstring''' UpperCAmelCase : int = None if "feature_extractor" in kwargs: warnings.warn( """The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`""" """ instead.""" , __lowerCAmelCase , ) UpperCAmelCase : Any = kwargs.pop("""feature_extractor""" ) UpperCAmelCase : Tuple = image_processor if image_processor is not None else feature_extractor if image_processor is None: raise ValueError("""You need to specify an `image_processor`.""" ) if tokenizer is None: raise ValueError("""You need to specify a `tokenizer`.""" ) super().__init__(__lowerCAmelCase , __lowerCAmelCase ) UpperCAmelCase : int = self.image_processor def __call__( self , _SCREAMING_SNAKE_CASE=None , _SCREAMING_SNAKE_CASE=None , _SCREAMING_SNAKE_CASE=None , **_SCREAMING_SNAKE_CASE ) -> List[str]: '''simple docstring''' if text is None and images is None: raise ValueError("""You have to specify either text or images. Both cannot be none.""" ) if text is not None: UpperCAmelCase : Any = self.tokenizer(__lowerCAmelCase , return_tensors=__lowerCAmelCase , **__lowerCAmelCase ) if images is not None: UpperCAmelCase : str = self.image_processor(__lowerCAmelCase , return_tensors=__lowerCAmelCase , **__lowerCAmelCase ) if text is not None and images is not None: UpperCAmelCase : Tuple = image_features.pixel_values return encoding elif text is not None: return encoding else: return BatchEncoding(data=dict(**__lowerCAmelCase ) , tensor_type=__lowerCAmelCase ) def SCREAMING_SNAKE_CASE ( self , *_SCREAMING_SNAKE_CASE , **_SCREAMING_SNAKE_CASE ) -> Tuple: '''simple docstring''' return self.tokenizer.batch_decode(*__lowerCAmelCase , **__lowerCAmelCase ) def SCREAMING_SNAKE_CASE ( self , *_SCREAMING_SNAKE_CASE , **_SCREAMING_SNAKE_CASE ) -> str: '''simple docstring''' return self.tokenizer.decode(*__lowerCAmelCase , **__lowerCAmelCase ) @property def SCREAMING_SNAKE_CASE ( self ) -> Union[str, Any]: '''simple docstring''' UpperCAmelCase : Optional[Any] = self.tokenizer.model_input_names UpperCAmelCase : Tuple = self.image_processor.model_input_names return list(dict.fromkeys(tokenizer_input_names + image_processor_input_names ) ) @property def SCREAMING_SNAKE_CASE ( self ) -> str: '''simple docstring''' warnings.warn( """`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.""" , __lowerCAmelCase , ) return self.image_processor_class
109
import logging import os import sys import warnings from dataclasses import dataclass, field from random import randint from typing import Optional import datasets import evaluate import numpy as np from datasets import DatasetDict, load_dataset import transformers from transformers import ( AutoConfig, AutoFeatureExtractor, AutoModelForAudioClassification, HfArgumentParser, Trainer, TrainingArguments, set_seed, ) from transformers.trainer_utils import get_last_checkpoint from transformers.utils import check_min_version, send_example_telemetry from transformers.utils.versions import require_version _a = logging.getLogger(__name__) # Will error if the minimal version of Transformers is not installed. Remove at your own risks. check_min_version("4.31.0") require_version("datasets>=1.14.0", "To fix: pip install -r examples/pytorch/audio-classification/requirements.txt") def lowerCAmelCase__(__snake_case ,__snake_case ,__snake_case = 16000 ) -> Any: '''simple docstring''' lowerCamelCase__ = int(round(sample_rate * max_length ) ) if len(__snake_case ) <= sample_length: return wav lowerCamelCase__ = randint(0 ,len(__snake_case ) - sample_length - 1 ) return wav[random_offset : random_offset + sample_length] @dataclass class __A : '''simple docstring''' lowerCAmelCase_ = field(default=lowerCAmelCase , metadata={"""help""": """Name of a dataset from the datasets package"""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """The configuration name of the dataset to use (via the datasets library)."""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """A file containing the training audio paths and labels."""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """A file containing the validation audio paths and labels."""} ) lowerCAmelCase_ = field( default="""train""" , metadata={ """help""": """The name of the training data set split to use (via the datasets library). Defaults to 'train'""" } , ) lowerCAmelCase_ = field( default="""validation""" , metadata={ """help""": ( """The name of the training data set split to use (via the datasets library). Defaults to 'validation'""" ) } , ) lowerCAmelCase_ = field( default="""audio""" , metadata={"""help""": """The name of the dataset column containing the audio data. Defaults to 'audio'"""} , ) lowerCAmelCase_ = field( default="""label""" , metadata={"""help""": """The name of the dataset column containing the labels. Defaults to 'label'"""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={ """help""": ( """For debugging purposes or quicker training, truncate the number of training examples to this """ """value if set.""" ) } , ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={ """help""": ( """For debugging purposes or quicker training, truncate the number of evaluation examples to this """ """value if set.""" ) } , ) lowerCAmelCase_ = field( default=20 , metadata={"""help""": """Audio clips will be randomly cut to this length during training if the value is set."""} , ) @dataclass class __A : '''simple docstring''' lowerCAmelCase_ = field( default="""facebook/wav2vec2-base""" , metadata={"""help""": """Path to pretrained model or model identifier from huggingface.co/models"""} , ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Pretrained config name or path if not the same as model_name"""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Where do you want to store the pretrained models downloaded from the Hub"""} ) lowerCAmelCase_ = field( default="""main""" , metadata={"""help""": """The specific model version to use (can be a branch name, tag name or commit id)."""} , ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Name or path of preprocessor config."""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Whether to freeze the feature encoder layers of the model."""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Whether to generate an attention mask in the feature extractor."""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={ """help""": ( """Will use the token generated when running `huggingface-cli login` (necessary to use this script """ """with private models).""" ) } , ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Whether to freeze the feature extractor layers of the model."""} ) lowerCAmelCase_ = field( default=lowerCAmelCase , metadata={"""help""": """Will enable to load a pretrained model whose head dimensions are different."""} , ) def __lowerCamelCase ( self ): '''simple docstring''' if not self.freeze_feature_extractor and self.freeze_feature_encoder: warnings.warn( '''The argument `--freeze_feature_extractor` is deprecated and ''' '''will be removed in a future version. Use `--freeze_feature_encoder`''' '''instead. Setting `freeze_feature_encoder==True`.''' , __lowerCAmelCase , ) if self.freeze_feature_extractor and not self.freeze_feature_encoder: raise ValueError( '''The argument `--freeze_feature_extractor` is deprecated and ''' '''should not be used in combination with `--freeze_feature_encoder`.''' '''Only make use of `--freeze_feature_encoder`.''' ) def lowerCAmelCase__() -> Optional[int]: '''simple docstring''' lowerCamelCase__ = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments) ) if len(sys.argv ) == 2 and sys.argv[1].endswith('''.json''' ): # If we pass only one argument to the script and it's the path to a json file, # let's parse it to get our arguments. lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1] ) ) else: lowerCamelCase__ , lowerCamelCase__ , lowerCamelCase__ = parser.parse_args_into_dataclasses() # Sending telemetry. Tracking the example usage helps us better allocate resources to maintain them. The # information sent is the one passed as arguments along with your Python/PyTorch versions. send_example_telemetry('''run_audio_classification''' ,__snake_case ,__snake_case ) # Setup logging logging.basicConfig( format='''%(asctime)s - %(levelname)s - %(name)s - %(message)s''' ,datefmt='''%m/%d/%Y %H:%M:%S''' ,handlers=[logging.StreamHandler(sys.stdout )] ,) if training_args.should_log: # The default of training_args.log_level is passive, so we set log level at info here to have that default. transformers.utils.logging.set_verbosity_info() lowerCamelCase__ = training_args.get_process_log_level() logger.setLevel(__snake_case ) transformers.utils.logging.set_verbosity(__snake_case ) transformers.utils.logging.enable_default_handler() transformers.utils.logging.enable_explicit_format() # Log on each process the small summary: logger.warning( F'Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu} ' + F'distributed training: {bool(training_args.local_rank != -1 )}, 16-bits training: {training_args.fpaa}' ) logger.info(F'Training/evaluation parameters {training_args}' ) # Set seed before initializing model. set_seed(training_args.seed ) # Detecting last checkpoint. lowerCamelCase__ = None if os.path.isdir(training_args.output_dir ) and training_args.do_train and not training_args.overwrite_output_dir: lowerCamelCase__ = get_last_checkpoint(training_args.output_dir ) if last_checkpoint is None and len(os.listdir(training_args.output_dir ) ) > 0: raise ValueError( F'Output directory ({training_args.output_dir}) already exists and is not empty. ' '''Use --overwrite_output_dir to train from scratch.''' ) elif last_checkpoint is not None and training_args.resume_from_checkpoint is None: logger.info( F'Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change ' '''the `--output_dir` or add `--overwrite_output_dir` to train from scratch.''' ) # Initialize our dataset and prepare it for the audio classification task. lowerCamelCase__ = DatasetDict() lowerCamelCase__ = load_dataset( data_args.dataset_name ,data_args.dataset_config_name ,split=data_args.train_split_name ,use_auth_token=True if model_args.use_auth_token else None ,) lowerCamelCase__ = load_dataset( data_args.dataset_name ,data_args.dataset_config_name ,split=data_args.eval_split_name ,use_auth_token=True if model_args.use_auth_token else None ,) if data_args.audio_column_name not in raw_datasets["train"].column_names: raise ValueError( F'--audio_column_name {data_args.audio_column_name} not found in dataset \'{data_args.dataset_name}\'. ' '''Make sure to set `--audio_column_name` to the correct audio column - one of ''' F'{", ".join(raw_datasets["train"].column_names )}.' ) if data_args.label_column_name not in raw_datasets["train"].column_names: raise ValueError( F'--label_column_name {data_args.label_column_name} not found in dataset \'{data_args.dataset_name}\'. ' '''Make sure to set `--label_column_name` to the correct text column - one of ''' F'{", ".join(raw_datasets["train"].column_names )}.' ) # Setting `return_attention_mask=True` is the way to get a correctly masked mean-pooling over # transformer outputs in the classifier, but it doesn't always lead to better accuracy lowerCamelCase__ = AutoFeatureExtractor.from_pretrained( model_args.feature_extractor_name or model_args.model_name_or_path ,return_attention_mask=model_args.attention_mask ,cache_dir=model_args.cache_dir ,revision=model_args.model_revision ,use_auth_token=True if model_args.use_auth_token else None ,) # `datasets` takes care of automatically loading and resampling the audio, # so we just need to set the correct target sampling rate. lowerCamelCase__ = raw_datasets.cast_column( data_args.audio_column_name ,datasets.features.Audio(sampling_rate=feature_extractor.sampling_rate ) ) lowerCamelCase__ = feature_extractor.model_input_names[0] def train_transforms(__snake_case ): lowerCamelCase__ = [] for audio in batch[data_args.audio_column_name]: lowerCamelCase__ = random_subsample( audio['''array'''] ,max_length=data_args.max_length_seconds ,sample_rate=feature_extractor.sampling_rate ) subsampled_wavs.append(__snake_case ) lowerCamelCase__ = feature_extractor(__snake_case ,sampling_rate=feature_extractor.sampling_rate ) lowerCamelCase__ = {model_input_name: inputs.get(__snake_case )} lowerCamelCase__ = list(batch[data_args.label_column_name] ) return output_batch def val_transforms(__snake_case ): lowerCamelCase__ = [audio['''array'''] for audio in batch[data_args.audio_column_name]] lowerCamelCase__ = feature_extractor(__snake_case ,sampling_rate=feature_extractor.sampling_rate ) lowerCamelCase__ = {model_input_name: inputs.get(__snake_case )} lowerCamelCase__ = list(batch[data_args.label_column_name] ) return output_batch # Prepare label mappings. # We'll include these in the model's config to get human readable labels in the Inference API. lowerCamelCase__ = raw_datasets['''train'''].features[data_args.label_column_name].names lowerCamelCase__ , lowerCamelCase__ = {}, {} for i, label in enumerate(__snake_case ): lowerCamelCase__ = str(__snake_case ) lowerCamelCase__ = label # Load the accuracy metric from the datasets package lowerCamelCase__ = evaluate.load('''accuracy''' ) # Define our compute_metrics function. It takes an `EvalPrediction` object (a namedtuple with # `predictions` and `label_ids` fields) and has to return a dictionary string to float. def compute_metrics(__snake_case ): lowerCamelCase__ = np.argmax(eval_pred.predictions ,axis=1 ) return metric.compute(predictions=__snake_case ,references=eval_pred.label_ids ) lowerCamelCase__ = AutoConfig.from_pretrained( model_args.config_name or model_args.model_name_or_path ,num_labels=len(__snake_case ) ,labelaid=__snake_case ,idalabel=__snake_case ,finetuning_task='''audio-classification''' ,cache_dir=model_args.cache_dir ,revision=model_args.model_revision ,use_auth_token=True if model_args.use_auth_token else None ,) lowerCamelCase__ = AutoModelForAudioClassification.from_pretrained( model_args.model_name_or_path ,from_tf=bool('''.ckpt''' in model_args.model_name_or_path ) ,config=__snake_case ,cache_dir=model_args.cache_dir ,revision=model_args.model_revision ,use_auth_token=True if model_args.use_auth_token else None ,ignore_mismatched_sizes=model_args.ignore_mismatched_sizes ,) # freeze the convolutional waveform encoder if model_args.freeze_feature_encoder: model.freeze_feature_encoder() if training_args.do_train: if data_args.max_train_samples is not None: lowerCamelCase__ = ( raw_datasets['''train'''].shuffle(seed=training_args.seed ).select(range(data_args.max_train_samples ) ) ) # Set the training transforms raw_datasets["train"].set_transform(__snake_case ,output_all_columns=__snake_case ) if training_args.do_eval: if data_args.max_eval_samples is not None: lowerCamelCase__ = ( raw_datasets['''eval'''].shuffle(seed=training_args.seed ).select(range(data_args.max_eval_samples ) ) ) # Set the validation transforms raw_datasets["eval"].set_transform(__snake_case ,output_all_columns=__snake_case ) # Initialize our trainer lowerCamelCase__ = Trainer( model=__snake_case ,args=__snake_case ,train_dataset=raw_datasets['''train'''] if training_args.do_train else None ,eval_dataset=raw_datasets['''eval'''] if training_args.do_eval else None ,compute_metrics=__snake_case ,tokenizer=__snake_case ,) # Training if training_args.do_train: lowerCamelCase__ = None if training_args.resume_from_checkpoint is not None: lowerCamelCase__ = training_args.resume_from_checkpoint elif last_checkpoint is not None: lowerCamelCase__ = last_checkpoint lowerCamelCase__ = trainer.train(resume_from_checkpoint=__snake_case ) trainer.save_model() trainer.log_metrics('''train''' ,train_result.metrics ) trainer.save_metrics('''train''' ,train_result.metrics ) trainer.save_state() # Evaluation if training_args.do_eval: lowerCamelCase__ = trainer.evaluate() trainer.log_metrics('''eval''' ,__snake_case ) trainer.save_metrics('''eval''' ,__snake_case ) # Write model card and (optionally) push to hub lowerCamelCase__ = { '''finetuned_from''': model_args.model_name_or_path, '''tasks''': '''audio-classification''', '''dataset''': data_args.dataset_name, '''tags''': ['''audio-classification'''], } if training_args.push_to_hub: trainer.push_to_hub(**__snake_case ) else: trainer.create_model_card(**__snake_case ) if __name__ == "__main__": main()
209
0
import argparse import requests import torch from PIL import Image from transformers import ViTMAEConfig, ViTMAEForPreTraining, ViTMAEImageProcessor def lowerCAmelCase( __lowerCamelCase ): if "cls_token" in name: __a = name.replace('cls_token' , 'vit.embeddings.cls_token' ) if "mask_token" in name: __a = name.replace('mask_token' , 'decoder.mask_token' ) if "decoder_pos_embed" in name: __a = name.replace('decoder_pos_embed' , 'decoder.decoder_pos_embed' ) if "pos_embed" in name and "decoder" not in name: __a = name.replace('pos_embed' , 'vit.embeddings.position_embeddings' ) if "patch_embed.proj" in name: __a = name.replace('patch_embed.proj' , 'vit.embeddings.patch_embeddings.projection' ) if "patch_embed.norm" in name: __a = name.replace('patch_embed.norm' , 'vit.embeddings.norm' ) if "decoder_blocks" in name: __a = name.replace('decoder_blocks' , 'decoder.decoder_layers' ) if "blocks" in name: __a = name.replace('blocks' , 'vit.encoder.layer' ) if "attn.proj" in name: __a = name.replace('attn.proj' , 'attention.output.dense' ) if "attn" in name: __a = name.replace('attn' , 'attention.self' ) if "norm1" in name: __a = name.replace('norm1' , 'layernorm_before' ) if "norm2" in name: __a = name.replace('norm2' , 'layernorm_after' ) if "mlp.fc1" in name: __a = name.replace('mlp.fc1' , 'intermediate.dense' ) if "mlp.fc2" in name: __a = name.replace('mlp.fc2' , 'output.dense' ) if "decoder_embed" in name: __a = name.replace('decoder_embed' , 'decoder.decoder_embed' ) if "decoder_norm" in name: __a = name.replace('decoder_norm' , 'decoder.decoder_norm' ) if "decoder_pred" in name: __a = name.replace('decoder_pred' , 'decoder.decoder_pred' ) if "norm.weight" in name and "decoder" not in name: __a = name.replace('norm.weight' , 'vit.layernorm.weight' ) if "norm.bias" in name and "decoder" not in name: __a = name.replace('norm.bias' , 'vit.layernorm.bias' ) return name def lowerCAmelCase( __lowerCamelCase , __lowerCamelCase ): for key in orig_state_dict.copy().keys(): __a = orig_state_dict.pop(__lowerCamelCase ) if "qkv" in key: __a = key.split('.' ) __a = int(key_split[1] ) if "decoder_blocks" in key: __a = config.decoder_hidden_size __a = 'decoder.decoder_layers.' if "weight" in key: __a = val[:dim, :] __a = val[dim : dim * 2, :] __a = val[-dim:, :] elif "bias" in key: __a = val[:dim] __a = val[dim : dim * 2] __a = val[-dim:] else: __a = config.hidden_size __a = 'vit.encoder.layer.' if "weight" in key: __a = val[:dim, :] __a = val[dim : dim * 2, :] __a = val[-dim:, :] elif "bias" in key: __a = val[:dim] __a = val[dim : dim * 2] __a = val[-dim:] else: __a = val return orig_state_dict def lowerCAmelCase( __lowerCamelCase , __lowerCamelCase ): __a = ViTMAEConfig() if "large" in checkpoint_url: __a = 1024 __a = 4096 __a = 24 __a = 16 elif "huge" in checkpoint_url: __a = 14 __a = 1280 __a = 5120 __a = 32 __a = 16 __a = ViTMAEForPreTraining(__lowerCamelCase ) __a = torch.hub.load_state_dict_from_url(__lowerCamelCase , map_location='cpu' )['model'] __a = ViTMAEImageProcessor(size=config.image_size ) __a = convert_state_dict(__lowerCamelCase , __lowerCamelCase ) model.load_state_dict(__lowerCamelCase ) model.eval() __a = 'https://user-images.githubusercontent.com/11435359/147738734-196fd92f-9260-48d5-ba7e-bf103d29364d.jpg' __a = Image.open(requests.get(__lowerCamelCase , stream=__lowerCamelCase ).raw ) __a = ViTMAEImageProcessor(size=config.image_size ) __a = image_processor(images=__lowerCamelCase , return_tensors='pt' ) # forward pass torch.manual_seed(2 ) __a = model(**__lowerCamelCase ) __a = outputs.logits if "large" in checkpoint_url: __a = torch.tensor( [[-0.73_09, -0.71_28, -1.01_69], [-1.01_61, -0.90_58, -1.18_78], [-1.04_78, -0.94_11, -1.19_11]] ) elif "huge" in checkpoint_url: __a = torch.tensor( [[-1.15_99, -0.91_99, -1.22_21], [-1.19_52, -0.92_69, -1.23_07], [-1.21_43, -0.93_37, -1.22_62]] ) else: __a = torch.tensor( [[-0.91_92, -0.84_81, -1.12_59], [-1.13_49, -1.00_34, -1.25_99], [-1.17_57, -1.04_29, -1.27_26]] ) # verify logits assert torch.allclose(logits[0, :3, :3] , __lowerCamelCase , atol=1e-4 ) print(f'''Saving model to {pytorch_dump_folder_path}''' ) model.save_pretrained(__lowerCamelCase ) print(f'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(__lowerCamelCase ) if __name__ == "__main__": lowerCamelCase_ : Any = argparse.ArgumentParser() # Required parameters parser.add_argument( """--checkpoint_url""", default="""https://dl.fbaipublicfiles.com/mae/visualize/mae_visualize_vit_base.pth""", type=str, help="""URL of the checkpoint you\'d like to convert.""", ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model directory.""" ) lowerCamelCase_ : Tuple = parser.parse_args() convert_vit_mae_checkpoint(args.checkpoint_url, args.pytorch_dump_folder_path)
356
import warnings from ..trainer import Trainer from ..utils import logging lowerCamelCase_ : Union[str, Any] = logging.get_logger(__name__) class a__ ( __snake_case ): def __init__( self , UpperCAmelCase=None , **UpperCAmelCase ) -> Any: warnings.warn( '`SageMakerTrainer` is deprecated and will be removed in v5 of Transformers. You can use `Trainer` ' 'instead.' , UpperCAmelCase , ) super().__init__(args=UpperCAmelCase , **UpperCAmelCase )
197
0
"""simple docstring""" from __future__ import annotations def __A ( a_ :List[Any] , a_ :List[Any] , a_ :Tuple , a_ :Tuple) -> Optional[Any]: # noqa: E741 while r - l > 1: __a : Optional[int] = (l + r) // 2 if v[m] >= key: __a : Optional[int] = m else: __a : List[str] = m # noqa: E741 return r def __A ( a_ :list[int]) -> int: if len(a_) == 0: return 0 __a : Optional[Any] = [0] * len(a_) __a : List[str] = 1 __a : Union[str, Any] = v[0] for i in range(1 , len(a_)): if v[i] < tail[0]: __a : Optional[int] = v[i] elif v[i] > tail[length - 1]: __a : Union[str, Any] = v[i] length += 1 else: __a : List[Any] = v[i] return length if __name__ == "__main__": import doctest doctest.testmod()
160
"""simple docstring""" from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tf_available, is_torch_available A = { '''configuration_ctrl''': ['''CTRL_PRETRAINED_CONFIG_ARCHIVE_MAP''', '''CTRLConfig'''], '''tokenization_ctrl''': ['''CTRLTokenizer'''], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A = [ '''CTRL_PRETRAINED_MODEL_ARCHIVE_LIST''', '''CTRLForSequenceClassification''', '''CTRLLMHeadModel''', '''CTRLModel''', '''CTRLPreTrainedModel''', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A = [ '''TF_CTRL_PRETRAINED_MODEL_ARCHIVE_LIST''', '''TFCTRLForSequenceClassification''', '''TFCTRLLMHeadModel''', '''TFCTRLModel''', '''TFCTRLPreTrainedModel''', ] if TYPE_CHECKING: from .configuration_ctrl import CTRL_PRETRAINED_CONFIG_ARCHIVE_MAP, CTRLConfig from .tokenization_ctrl import CTRLTokenizer try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_ctrl import ( CTRL_PRETRAINED_MODEL_ARCHIVE_LIST, CTRLForSequenceClassification, CTRLLMHeadModel, CTRLModel, CTRLPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_ctrl import ( TF_CTRL_PRETRAINED_MODEL_ARCHIVE_LIST, TFCTRLForSequenceClassification, TFCTRLLMHeadModel, TFCTRLModel, TFCTRLPreTrainedModel, ) else: import sys A = _LazyModule(__name__, globals()['''__file__'''], _import_structure, module_spec=__spec__)
160
1
'''simple docstring''' from __future__ import annotations class __UpperCAmelCase : '''simple docstring''' def __init__(self : Any , _lowerCAmelCase : str , _lowerCAmelCase : str ): A , A = text, pattern A , A = len(_lowerCAmelCase ), len(_lowerCAmelCase ) def A (self : Tuple , _lowerCAmelCase : str ): for i in range(self.patLen - 1 , -1 , -1 ): if char == self.pattern[i]: return i return -1 def A (self : str , _lowerCAmelCase : int ): for i in range(self.patLen - 1 , -1 , -1 ): if self.pattern[i] != self.text[current_pos + i]: return current_pos + i return -1 def A (self : List[str] ): # searches pattern in text and returns index positions A = [] for i in range(self.textLen - self.patLen + 1 ): A = self.mismatch_in_text(_lowerCAmelCase ) if mismatch_index == -1: positions.append(_lowerCAmelCase ) else: A = self.match_in_pattern(self.text[mismatch_index] ) A = ( mismatch_index - match_index ) # shifting index lgtm [py/multiple-definition] return positions _lowerCamelCase : str = 'ABAABA' _lowerCamelCase : List[str] = 'AB' _lowerCamelCase : Union[str, Any] = BoyerMooreSearch(text, pattern) _lowerCamelCase : Dict = bms.bad_character_heuristic() if len(positions) == 0: print('No match found') else: print('Pattern found in following positions: ') print(positions)
359
'''simple docstring''' def __a ( UpperCAmelCase , UpperCAmelCase ) ->Tuple: """simple docstring""" if b == 0: return 1 if (b % 2) == 0: return actual_power(UpperCAmelCase , int(b / 2 ) ) * actual_power(UpperCAmelCase , int(b / 2 ) ) else: return a * actual_power(UpperCAmelCase , int(b / 2 ) ) * actual_power(UpperCAmelCase , int(b / 2 ) ) def __a ( UpperCAmelCase , UpperCAmelCase ) ->float: """simple docstring""" if b < 0: return 1 / actual_power(UpperCAmelCase , UpperCAmelCase ) return actual_power(UpperCAmelCase , UpperCAmelCase ) if __name__ == "__main__": print(power(-2, -3))
337
0
"""simple docstring""" from scipy.stats import pearsonr import datasets UpperCAmelCase__ = '\nPearson correlation coefficient and p-value for testing non-correlation.\nThe Pearson correlation coefficient measures the linear relationship between two datasets. The calculation of the p-value relies on the assumption that each dataset is normally distributed. Like other correlation coefficients, this one varies between -1 and +1 with 0 implying no correlation. Correlations of -1 or +1 imply an exact linear relationship. Positive correlations imply that as x increases, so does y. Negative correlations imply that as x increases, y decreases.\nThe p-value roughly indicates the probability of an uncorrelated system producing datasets that have a Pearson correlation at least as extreme as the one computed from these datasets.\n' UpperCAmelCase__ = '\nArgs:\n predictions (`list` of `int`): Predicted class labels, as returned by a model.\n references (`list` of `int`): Ground truth labels.\n return_pvalue (`boolean`): If `True`, returns the p-value, along with the correlation coefficient. If `False`, returns only the correlation coefficient. Defaults to `False`.\n\nReturns:\n pearsonr (`float`): Pearson correlation coefficient. Minimum possible value is -1. Maximum possible value is 1. Values of 1 and -1 indicate exact linear positive and negative relationships, respectively. A value of 0 implies no correlation.\n p-value (`float`): P-value, which roughly indicates the probability of an The p-value roughly indicates the probability of an uncorrelated system producing datasets that have a Pearson correlation at least as extreme as the one computed from these datasets. Minimum possible value is 0. Maximum possible value is 1. Higher values indicate higher probabilities.\n\nExamples:\n\n Example 1-A simple example using only predictions and references.\n >>> pearsonr_metric = datasets.load_metric("pearsonr")\n >>> results = pearsonr_metric.compute(predictions=[10, 9, 2.5, 6, 4], references=[1, 2, 3, 4, 5])\n >>> print(round(results[\'pearsonr\'], 2))\n -0.74\n\n Example 2-The same as Example 1, but that also returns the `p-value`.\n >>> pearsonr_metric = datasets.load_metric("pearsonr")\n >>> results = pearsonr_metric.compute(predictions=[10, 9, 2.5, 6, 4], references=[1, 2, 3, 4, 5], return_pvalue=True)\n >>> print(sorted(list(results.keys())))\n [\'p-value\', \'pearsonr\']\n >>> print(round(results[\'pearsonr\'], 2))\n -0.74\n >>> print(round(results[\'p-value\'], 2))\n 0.15\n' UpperCAmelCase__ = '\n@article{2020SciPy-NMeth,\nauthor = {Virtanen, Pauli and Gommers, Ralf and Oliphant, Travis E. and\n Haberland, Matt and Reddy, Tyler and Cournapeau, David and\n Burovski, Evgeni and Peterson, Pearu and Weckesser, Warren and\n Bright, Jonathan and {van der Walt}, St{\'e}fan J. and\n Brett, Matthew and Wilson, Joshua and Millman, K. Jarrod and\n Mayorov, Nikolay and Nelson, Andrew R. J. and Jones, Eric and\n Kern, Robert and Larson, Eric and Carey, C J and\n Polat, Ilhan and Feng, Yu and Moore, Eric W. and\n {VanderPlas}, Jake and Laxalde, Denis and Perktold, Josef and\n Cimrman, Robert and Henriksen, Ian and Quintero, E. A. and\n Harris, Charles R. and Archibald, Anne M. and\n Ribeiro, Antonio H. and Pedregosa, Fabian and\n {van Mulbregt}, Paul and {SciPy 1.0 Contributors}},\ntitle = {{{SciPy} 1.0: Fundamental Algorithms for Scientific\n Computing in Python}},\njournal = {Nature Methods},\nyear = {2020},\nvolume = {17},\npages = {261--272},\nadsurl = {https://rdcu.be/b08Wh},\ndoi = {10.1038/s41592-019-0686-2},\n}\n' @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class lowerCAmelCase__ ( datasets.Metric ): def lowercase ( self : int ): return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { '''predictions''': datasets.Value('''float''' ), '''references''': datasets.Value('''float''' ), } ) , reference_urls=['''https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html'''] , ) def lowercase ( self : Any , _lowerCamelCase : Optional[int] , _lowerCamelCase : int , _lowerCamelCase : Union[str, Any]=False ): if return_pvalue: _snake_case = pearsonr(_lowerCamelCase , _lowerCamelCase ) return {"pearsonr": results[0], "p-value": results[1]} else: return {"pearsonr": float(pearsonr(_lowerCamelCase , _lowerCamelCase )[0] )}
288
"""simple docstring""" import argparse import torch from transformers import ( SpeechTaConfig, SpeechTaFeatureExtractor, SpeechTaForSpeechToSpeech, SpeechTaForSpeechToText, SpeechTaForTextToSpeech, SpeechTaProcessor, SpeechTaTokenizer, logging, ) from transformers.tokenization_utils import AddedToken logging.set_verbosity_info() UpperCAmelCase__ = logging.get_logger('transformers.models.speecht5') UpperCAmelCase__ = { 'speech_encoder_prenet.layer_norm': 'speecht5.encoder.prenet.feature_projection.layer_norm', 'speech_encoder_prenet.post_extract_proj': 'speecht5.encoder.prenet.feature_projection.projection', 'speech_encoder_prenet.pos_conv.0': 'speecht5.encoder.prenet.pos_conv_embed.conv', 'speech_encoder_prenet.mask_emb': 'speecht5.encoder.prenet.masked_spec_embed', } UpperCAmelCase__ = { 'text_encoder_prenet.encoder_prenet.0': 'speecht5.encoder.prenet.embed_tokens', 'text_encoder_prenet.encoder_prenet.1.alpha': 'speecht5.encoder.prenet.encode_positions.alpha', } UpperCAmelCase__ = { 'speech_decoder_prenet.decoder_prenet.0.0.prenet.0.0': 'speecht5.decoder.prenet.layers.0', 'speech_decoder_prenet.decoder_prenet.0.0.prenet.1.0': 'speecht5.decoder.prenet.layers.1', 'speech_decoder_prenet.decoder_prenet.0.1': 'speecht5.decoder.prenet.final_layer', 'speech_decoder_prenet.decoder_prenet.1.alpha': 'speecht5.decoder.prenet.encode_positions.alpha', 'speech_decoder_prenet.spkembs_layer.0': 'speecht5.decoder.prenet.speaker_embeds_layer', } UpperCAmelCase__ = { 'speech_decoder_postnet.feat_out': 'speech_decoder_postnet.feat_out', 'speech_decoder_postnet.prob_out': 'speech_decoder_postnet.prob_out', 'speech_decoder_postnet.postnet.postnet.0.0': 'speech_decoder_postnet.layers.0.conv', 'speech_decoder_postnet.postnet.postnet.0.1': 'speech_decoder_postnet.layers.0.batch_norm', 'speech_decoder_postnet.postnet.postnet.1.0': 'speech_decoder_postnet.layers.1.conv', 'speech_decoder_postnet.postnet.postnet.1.1': 'speech_decoder_postnet.layers.1.batch_norm', 'speech_decoder_postnet.postnet.postnet.2.0': 'speech_decoder_postnet.layers.2.conv', 'speech_decoder_postnet.postnet.postnet.2.1': 'speech_decoder_postnet.layers.2.batch_norm', 'speech_decoder_postnet.postnet.postnet.3.0': 'speech_decoder_postnet.layers.3.conv', 'speech_decoder_postnet.postnet.postnet.3.1': 'speech_decoder_postnet.layers.3.batch_norm', 'speech_decoder_postnet.postnet.postnet.4.0': 'speech_decoder_postnet.layers.4.conv', 'speech_decoder_postnet.postnet.postnet.4.1': 'speech_decoder_postnet.layers.4.batch_norm', } UpperCAmelCase__ = { 'text_decoder_prenet.embed_tokens': 'speecht5.decoder.prenet.embed_tokens', } UpperCAmelCase__ = { 'text_decoder_postnet.output_projection': 'text_decoder_postnet.lm_head', } UpperCAmelCase__ = { 'encoder.layers.*.self_attn.k_proj': 'speecht5.encoder.wrapped_encoder.layers.*.attention.k_proj', 'encoder.layers.*.self_attn.v_proj': 'speecht5.encoder.wrapped_encoder.layers.*.attention.v_proj', 'encoder.layers.*.self_attn.q_proj': 'speecht5.encoder.wrapped_encoder.layers.*.attention.q_proj', 'encoder.layers.*.self_attn.out_proj': 'speecht5.encoder.wrapped_encoder.layers.*.attention.out_proj', 'encoder.layers.*.self_attn_layer_norm': 'speecht5.encoder.wrapped_encoder.layers.*.layer_norm', 'encoder.layers.*.fc1': 'speecht5.encoder.wrapped_encoder.layers.*.feed_forward.intermediate_dense', 'encoder.layers.*.fc2': 'speecht5.encoder.wrapped_encoder.layers.*.feed_forward.output_dense', 'encoder.layers.*.final_layer_norm': 'speecht5.encoder.wrapped_encoder.layers.*.final_layer_norm', 'encoder.layer_norm': 'speecht5.encoder.wrapped_encoder.layer_norm', 'encoder.pos_emb.pe_k': 'speecht5.encoder.wrapped_encoder.embed_positions.pe_k', } UpperCAmelCase__ = { 'decoder.layers.*.self_attn.k_proj': 'speecht5.decoder.wrapped_decoder.layers.*.self_attn.k_proj', 'decoder.layers.*.self_attn.v_proj': 'speecht5.decoder.wrapped_decoder.layers.*.self_attn.v_proj', 'decoder.layers.*.self_attn.q_proj': 'speecht5.decoder.wrapped_decoder.layers.*.self_attn.q_proj', 'decoder.layers.*.self_attn.out_proj': 'speecht5.decoder.wrapped_decoder.layers.*.self_attn.out_proj', 'decoder.layers.*.self_attn_layer_norm': 'speecht5.decoder.wrapped_decoder.layers.*.self_attn_layer_norm', 'decoder.layers.*.encoder_attn.k_proj': 'speecht5.decoder.wrapped_decoder.layers.*.encoder_attn.k_proj', 'decoder.layers.*.encoder_attn.v_proj': 'speecht5.decoder.wrapped_decoder.layers.*.encoder_attn.v_proj', 'decoder.layers.*.encoder_attn.q_proj': 'speecht5.decoder.wrapped_decoder.layers.*.encoder_attn.q_proj', 'decoder.layers.*.encoder_attn.out_proj': 'speecht5.decoder.wrapped_decoder.layers.*.encoder_attn.out_proj', 'decoder.layers.*.encoder_attn_layer_norm': 'speecht5.decoder.wrapped_decoder.layers.*.encoder_attn_layer_norm', 'decoder.layers.*.fc1': 'speecht5.decoder.wrapped_decoder.layers.*.feed_forward.intermediate_dense', 'decoder.layers.*.fc2': 'speecht5.decoder.wrapped_decoder.layers.*.feed_forward.output_dense', 'decoder.layers.*.final_layer_norm': 'speecht5.decoder.wrapped_decoder.layers.*.final_layer_norm', } UpperCAmelCase__ = { **MAPPING_SPEECH_ENCODER_PRENET, **MAPPING_ENCODER, **MAPPING_DECODER, **MAPPING_TEXT_DECODER_PRENET, **MAPPING_TEXT_DECODER_POSTNET, } UpperCAmelCase__ = { **MAPPING_TEXT_ENCODER_PRENET, **MAPPING_ENCODER, **MAPPING_DECODER, **MAPPING_SPEECH_DECODER_PRENET, **MAPPING_SPEECH_DECODER_POSTNET, } UpperCAmelCase__ = { **MAPPING_SPEECH_ENCODER_PRENET, **MAPPING_ENCODER, **MAPPING_DECODER, **MAPPING_SPEECH_DECODER_PRENET, **MAPPING_SPEECH_DECODER_POSTNET, } UpperCAmelCase__ = [] UpperCAmelCase__ = [ 'encoder.version', 'encoder.layers.*.norm_k.weight', 'encoder.layers.*.norm_k.bias', 'decoder.version', 'decoder.layers.*.norm_k.weight', 'decoder.layers.*.norm_k.bias', 'decoder.pos_emb.pe_k', 'speech_encoder_prenet.embed_positions._float_tensor', 'text_decoder_prenet.embed_positions._float_tensor', ] UpperCAmelCase__ = IGNORE_KEYS + [ 'encoder.proj', 'text_encoder_prenet.*', 'speech_decoder_prenet.*', 'speech_decoder_postnet.*', ] UpperCAmelCase__ = IGNORE_KEYS + [ 'encoder.proj', 'speech_encoder_prenet.*', 'text_decoder_prenet.*', 'text_decoder_postnet.*', ] UpperCAmelCase__ = IGNORE_KEYS + [ 'encoder.proj', 'text_encoder_prenet.*', 'text_decoder_prenet.*', 'text_decoder_postnet.*', ] def _UpperCAmelCase ( __lowerCamelCase : Dict , __lowerCamelCase : Optional[Any] , __lowerCamelCase : Union[str, Any] , __lowerCamelCase : int , __lowerCamelCase : Dict ) -> List[Any]: for attribute in key.split('''.''' ): _snake_case = getattr(__lowerCamelCase , __lowerCamelCase ) if weight_type is not None: _snake_case = getattr(__lowerCamelCase , __lowerCamelCase ).shape else: _snake_case = hf_pointer.shape if hf_shape != value.shape: raise ValueError( f'''Shape of hf {key + '.' + weight_type if weight_type is not None else ''} is {hf_shape}, but should be''' f''' {value.shape} for {full_name}''' ) if weight_type == "weight": _snake_case = value elif weight_type == "weight_g": _snake_case = value elif weight_type == "weight_v": _snake_case = value elif weight_type == "bias": _snake_case = value elif weight_type == "running_mean": _snake_case = value elif weight_type == "running_var": _snake_case = value elif weight_type == "num_batches_tracked": _snake_case = value else: _snake_case = value logger.info(f'''{key + ('.' + weight_type if weight_type is not None else '')} was initialized from {full_name}.''' ) def _UpperCAmelCase ( __lowerCamelCase : Optional[Any] , __lowerCamelCase : Optional[int] ) -> List[str]: for key in ignore_keys: if key.endswith('''.*''' ): if name.startswith(key[:-1] ): return True elif ".*." in key: _snake_case , _snake_case = key.split('''.*.''' ) if prefix in name and suffix in name: return True elif key in name: return True return False def _UpperCAmelCase ( __lowerCamelCase : Dict , __lowerCamelCase : List[Any] , __lowerCamelCase : Tuple ) -> Optional[Any]: _snake_case = [] if task == "s2t": _snake_case = hf_model.speechta.encoder.prenet.feature_encoder _snake_case = MAPPING_S2T _snake_case = IGNORE_KEYS_S2T elif task == "t2s": _snake_case = None _snake_case = MAPPING_T2S _snake_case = IGNORE_KEYS_T2S elif task == "s2s": _snake_case = hf_model.speechta.encoder.prenet.feature_encoder _snake_case = MAPPING_S2S _snake_case = IGNORE_KEYS_S2S else: raise ValueError(f'''Unsupported task: {task}''' ) for name, value in fairseq_dict.items(): if should_ignore(__lowerCamelCase , __lowerCamelCase ): logger.info(f'''{name} was ignored''' ) continue _snake_case = False if "conv_layers" in name: load_conv_layer( __lowerCamelCase , __lowerCamelCase , __lowerCamelCase , __lowerCamelCase , hf_model.config.feat_extract_norm == '''group''' , ) _snake_case = True else: for key, mapped_key in MAPPING.items(): # mapped_key = "speecht5." + mapped_key if mapped_key not in TOP_LEVEL_KEYS else mapped_key if "*" in key: _snake_case , _snake_case = key.split('''.*.''' ) if prefix in name and suffix in name: _snake_case = suffix # if key in name or key.split("w2v_model.")[-1] == name.split(".")[0]: if key in name: _snake_case = True if "*" in mapped_key: _snake_case = name.split(__lowerCamelCase )[0].split('''.''' )[-2] _snake_case = mapped_key.replace('''*''' , __lowerCamelCase ) if "weight_g" in name: _snake_case = '''weight_g''' elif "weight_v" in name: _snake_case = '''weight_v''' elif "bias" in name: _snake_case = '''bias''' elif "weight" in name: _snake_case = '''weight''' elif "running_mean" in name: _snake_case = '''running_mean''' elif "running_var" in name: _snake_case = '''running_var''' elif "num_batches_tracked" in name: _snake_case = '''num_batches_tracked''' else: _snake_case = None set_recursively(__lowerCamelCase , __lowerCamelCase , __lowerCamelCase , __lowerCamelCase , __lowerCamelCase ) continue if not is_used: unused_weights.append(__lowerCamelCase ) logger.warning(f'''Unused weights: {unused_weights}''' ) def _UpperCAmelCase ( __lowerCamelCase : Any , __lowerCamelCase : Optional[int] , __lowerCamelCase : Tuple , __lowerCamelCase : List[Any] , __lowerCamelCase : Tuple ) -> List[Any]: _snake_case = full_name.split('''conv_layers.''' )[-1] _snake_case = name.split('''.''' ) _snake_case = int(items[0] ) _snake_case = int(items[1] ) if type_id == 0: if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.bias.data.shape: raise ValueError( f'''{full_name} has size {value.shape}, but''' f''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _snake_case = value logger.info(f'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.weight.data.shape: raise ValueError( f'''{full_name} has size {value.shape}, but''' f''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _snake_case = value logger.info(f'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif (type_id == 2 and not use_group_norm) or (type_id == 2 and layer_id == 0 and use_group_norm): if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape: raise ValueError( f'''{full_name} has size {value.shape}, but''' f''' {feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape} was found.''' ) _snake_case = value logger.info(f'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape: raise ValueError( f'''{full_name} has size {value.shape}, but''' f''' {feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape} was found.''' ) _snake_case = value logger.info(f'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__lowerCamelCase ) @torch.no_grad() def _UpperCAmelCase ( __lowerCamelCase : Union[str, Any] , __lowerCamelCase : Dict , __lowerCamelCase : Optional[Any] , __lowerCamelCase : Optional[int]=None , __lowerCamelCase : int=None , __lowerCamelCase : Union[str, Any]=None , ) -> Dict: if config_path is not None: _snake_case = SpeechTaConfig.from_pretrained(__lowerCamelCase ) else: _snake_case = SpeechTaConfig() if task == "s2t": _snake_case = config.max_text_positions _snake_case = SpeechTaForSpeechToText(__lowerCamelCase ) elif task == "t2s": _snake_case = 18_76 _snake_case = 6_00 _snake_case = config.max_speech_positions _snake_case = SpeechTaForTextToSpeech(__lowerCamelCase ) elif task == "s2s": _snake_case = 18_76 _snake_case = config.max_speech_positions _snake_case = SpeechTaForSpeechToSpeech(__lowerCamelCase ) else: raise ValueError(f'''Unknown task name: {task}''' ) if vocab_path: _snake_case = SpeechTaTokenizer(__lowerCamelCase , model_max_length=config.max_text_positions ) # Mask token behaves like a normal word, i.e. include the space before it _snake_case = AddedToken('''<mask>''' , lstrip=__lowerCamelCase , rstrip=__lowerCamelCase ) _snake_case = mask_token tokenizer.add_special_tokens({'''mask_token''': mask_token} ) tokenizer.add_tokens(['''<ctc_blank>'''] ) _snake_case = SpeechTaFeatureExtractor() _snake_case = SpeechTaProcessor(tokenizer=__lowerCamelCase , feature_extractor=__lowerCamelCase ) processor.save_pretrained(__lowerCamelCase ) _snake_case = torch.load(__lowerCamelCase ) recursively_load_weights(fairseq_checkpoint['''model'''] , __lowerCamelCase , __lowerCamelCase ) model.save_pretrained(__lowerCamelCase ) if repo_id: print('''Pushing to the hub...''' ) processor.push_to_hub(__lowerCamelCase ) model.push_to_hub(__lowerCamelCase ) if __name__ == "__main__": UpperCAmelCase__ = argparse.ArgumentParser() parser.add_argument( '--task', default='s2t', type=str, help='Type of the SpeechT5 model you\'d like to convert. Should be one of \'s2t\', \'t2s\', \'s2s\'.', ) parser.add_argument('--checkpoint_path', required=True, default=None, type=str, help='Path to fairseq checkpoint') parser.add_argument('--vocab_path', default=None, type=str, help='Path to SentencePiece model') parser.add_argument('--config_path', default=None, type=str, help='Path to hf config.json of model to convert') parser.add_argument( '--pytorch_dump_folder_path', required=True, default=None, type=str, help='Path to the output PyTorch model.' ) parser.add_argument( '--push_to_hub', default=None, type=str, help='Where to upload the converted model on the 🤗 hub.' ) UpperCAmelCase__ = parser.parse_args() convert_speechta_checkpoint( args.task, args.checkpoint_path, args.pytorch_dump_folder_path, args.config_path, args.vocab_path, args.push_to_hub, )
288
1
import unittest from transformers import LiltConfig, is_torch_available from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import ( LiltForQuestionAnswering, LiltForSequenceClassification, LiltForTokenClassification, LiltModel, ) from transformers.models.lilt.modeling_lilt import LILT_PRETRAINED_MODEL_ARCHIVE_LIST class lowercase : def __init__( self , _a , _a=13 , _a=7 , _a=True , _a=True , _a=True , _a=True , _a=99 , _a=24 , _a=2 , _a=6 , _a=37 , _a="gelu" , _a=0.1 , _a=0.1 , _a=512 , _a=16 , _a=2 , _a=0.02 , _a=3 , _a=None , _a=1000 , ) -> Optional[int]: _A : Optional[Any] = parent _A : Union[str, Any] = batch_size _A : Union[str, Any] = seq_length _A : str = is_training _A : Optional[Any] = use_input_mask _A : str = use_token_type_ids _A : int = use_labels _A : Any = vocab_size _A : Optional[Any] = hidden_size _A : Tuple = num_hidden_layers _A : List[Any] = num_attention_heads _A : Optional[Any] = intermediate_size _A : List[Any] = hidden_act _A : List[Any] = hidden_dropout_prob _A : int = attention_probs_dropout_prob _A : Any = max_position_embeddings _A : Union[str, Any] = type_vocab_size _A : Optional[Any] = type_sequence_label_size _A : Optional[Any] = initializer_range _A : Optional[Any] = num_labels _A : Any = scope _A : List[str] = range_bbox def a__ ( self ) -> int: _A : Dict = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) _A : Optional[Any] = ids_tensor([self.batch_size, self.seq_length, 4] , self.range_bbox ) # Ensure that bbox is legal for i in range(bbox.shape[0] ): for j in range(bbox.shape[1] ): if bbox[i, j, 3] < bbox[i, j, 1]: _A : Optional[Any] = bbox[i, j, 3] _A : Dict = bbox[i, j, 1] _A : List[str] = t if bbox[i, j, 2] < bbox[i, j, 0]: _A : List[Any] = bbox[i, j, 2] _A : int = bbox[i, j, 0] _A : List[Any] = t _A : Dict = None if self.use_input_mask: _A : Optional[Any] = ids_tensor([self.batch_size, self.seq_length] , vocab_size=2 ) _A : Any = None if self.use_token_type_ids: _A : Optional[int] = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) _A : Union[str, Any] = None _A : int = None if self.use_labels: _A : Dict = ids_tensor([self.batch_size] , self.type_sequence_label_size ) _A : int = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) _A : List[Any] = self.get_config() return config, input_ids, bbox, token_type_ids, input_mask, sequence_labels, token_labels def a__ ( self ) -> Union[str, Any]: return LiltConfig( vocab_size=self.vocab_size , hidden_size=self.hidden_size , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , type_vocab_size=self.type_vocab_size , initializer_range=self.initializer_range , ) def a__ ( self , _a , _a , _a , _a , _a , _a , _a , ) -> Union[str, Any]: _A : Any = LiltModel(config=_a ) model.to(_a ) model.eval() _A : Union[str, Any] = model(_a , bbox=_a , attention_mask=_a , token_type_ids=_a ) _A : Optional[int] = model(_a , bbox=_a , token_type_ids=_a ) _A : str = model(_a , bbox=_a ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.hidden_size) ) def a__ ( self , _a , _a , _a , _a , _a , _a , _a , ) -> Union[str, Any]: _A : List[str] = self.num_labels _A : Optional[Any] = LiltForTokenClassification(config=_a ) model.to(_a ) model.eval() _A : List[str] = model( _a , bbox=_a , attention_mask=_a , token_type_ids=_a , labels=_a ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels) ) def a__ ( self , _a , _a , _a , _a , _a , _a , _a , ) -> Tuple: _A : Optional[Any] = LiltForQuestionAnswering(config=_a ) model.to(_a ) model.eval() _A : List[Any] = model( _a , bbox=_a , attention_mask=_a , token_type_ids=_a , start_positions=_a , end_positions=_a , ) self.parent.assertEqual(result.start_logits.shape , (self.batch_size, self.seq_length) ) self.parent.assertEqual(result.end_logits.shape , (self.batch_size, self.seq_length) ) def a__ ( self ) -> Tuple: _A : Optional[Any] = self.prepare_config_and_inputs() ( ( _A ) , ( _A ) , ( _A ) , ( _A ) , ( _A ) , ( _A ) , ( _A ) , ) : Optional[Any] = config_and_inputs _A : Dict = { """input_ids""": input_ids, """bbox""": bbox, """token_type_ids""": token_type_ids, """attention_mask""": input_mask, } return config, inputs_dict @require_torch class lowercase ( UpperCamelCase__,UpperCamelCase__,UpperCamelCase__,unittest.TestCase ): _a = ( ( LiltModel, LiltForSequenceClassification, LiltForTokenClassification, LiltForQuestionAnswering, ) if is_torch_available() else () ) _a = ( { "feature-extraction": LiltModel, "question-answering": LiltForQuestionAnswering, "text-classification": LiltForSequenceClassification, "token-classification": LiltForTokenClassification, "zero-shot": LiltForSequenceClassification, } if is_torch_available() else {} ) _a = False _a = False def a__ ( self , _a , _a , _a , _a , _a ) -> Dict: return True def a__ ( self ) -> Optional[Any]: _A : int = LiltModelTester(self ) _A : Union[str, Any] = ConfigTester(self , config_class=_a , hidden_size=37 ) def a__ ( self ) -> Dict: self.config_tester.run_common_tests() def a__ ( self ) -> Any: _A : Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_a ) def a__ ( self ) -> int: _A : Dict = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: _A : Union[str, Any] = type self.model_tester.create_and_check_model(*_a ) def a__ ( self ) -> Union[str, Any]: _A : List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification(*_a ) def a__ ( self ) -> Optional[int]: _A : str = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_question_answering(*_a ) @slow def a__ ( self ) -> Union[str, Any]: for model_name in LILT_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _A : int = LiltModel.from_pretrained(_a ) self.assertIsNotNone(_a ) @require_torch @slow class lowercase ( unittest.TestCase ): def a__ ( self ) -> Any: _A : Optional[int] = LiltModel.from_pretrained("""SCUT-DLVCLab/lilt-roberta-en-base""" ).to(_a ) _A : Optional[int] = torch.tensor([[1, 2]] , device=_a ) _A : Optional[Any] = torch.tensor([[[1, 2, 3, 4], [5, 6, 7, 8]]] , device=_a ) # forward pass with torch.no_grad(): _A : List[Any] = model(input_ids=_a , bbox=_a ) _A : Tuple = torch.Size([1, 2, 768] ) _A : Any = torch.tensor( [[-0.0653, 0.0950, -0.0061], [-0.0545, 0.0926, -0.0324]] , device=_a , ) self.assertTrue(outputs.last_hidden_state.shape , _a ) self.assertTrue(torch.allclose(outputs.last_hidden_state[0, :, :3] , _a , atol=1e-3 ) )
343
# DISCLAIMER: This file is strongly influenced by https://github.com/ermongroup/ddim from dataclasses import dataclass from typing import Optional, Tuple, Union import flax import jax import jax.numpy as jnp from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils_flax import ( CommonSchedulerState, FlaxKarrasDiffusionSchedulers, FlaxSchedulerMixin, FlaxSchedulerOutput, add_noise_common, get_velocity_common, ) @flax.struct.dataclass class lowercase : _a = 42 # setable values _a = 42 _a = 42 _a = None @classmethod def a__ ( cls , _a , _a , _a ) -> Tuple: return cls(common=_a , init_noise_sigma=_a , timesteps=_a ) @dataclass class lowercase ( UpperCamelCase__ ): _a = 42 class lowercase ( UpperCamelCase__,UpperCamelCase__ ): _a = [e.name for e in FlaxKarrasDiffusionSchedulers] _a = 42 @property def a__ ( self ) -> Dict: return True @register_to_config def __init__( self , _a = 1000 , _a = 0.0001 , _a = 0.02 , _a = "linear" , _a = None , _a = "fixed_small" , _a = True , _a = "epsilon" , _a = jnp.floataa , ) -> Tuple: _A : Tuple = dtype def a__ ( self , _a = None ) -> DDPMSchedulerState: if common is None: _A : Dict = CommonSchedulerState.create(self ) # standard deviation of the initial noise distribution _A : Union[str, Any] = jnp.array(1.0 , dtype=self.dtype ) _A : Tuple = jnp.arange(0 , self.config.num_train_timesteps ).round()[::-1] return DDPMSchedulerState.create( common=_a , init_noise_sigma=_a , timesteps=_a , ) def a__ ( self , _a , _a , _a = None ) -> jnp.ndarray: return sample def a__ ( self , _a , _a , _a = () ) -> DDPMSchedulerState: _A : Any = self.config.num_train_timesteps // num_inference_steps # creates integer timesteps by multiplying by ratio # rounding to avoid issues when num_inference_step is power of 3 _A : Dict = (jnp.arange(0 , _a ) * step_ratio).round()[::-1] return state.replace( num_inference_steps=_a , timesteps=_a , ) def a__ ( self , _a , _a , _a=None , _a=None ) -> Optional[int]: _A : Optional[Any] = state.common.alphas_cumprod[t] _A : int = jnp.where(t > 0 , state.common.alphas_cumprod[t - 1] , jnp.array(1.0 , dtype=self.dtype ) ) # For t > 0, compute predicted variance βt (see formula (6) and (7) from https://arxiv.org/pdf/2006.11239.pdf) # and sample from it to get previous sample # x_{t-1} ~ N(pred_prev_sample, variance) == add variance to pred_sample _A : List[str] = (1 - alpha_prod_t_prev) / (1 - alpha_prod_t) * state.common.betas[t] if variance_type is None: _A : Optional[Any] = self.config.variance_type # hacks - were probably added for training stability if variance_type == "fixed_small": _A : Optional[Any] = jnp.clip(_a , a_min=1e-20 ) # for rl-diffuser https://arxiv.org/abs/2205.09991 elif variance_type == "fixed_small_log": _A : Any = jnp.log(jnp.clip(_a , a_min=1e-20 ) ) elif variance_type == "fixed_large": _A : Optional[Any] = state.common.betas[t] elif variance_type == "fixed_large_log": # Glide max_log _A : Tuple = jnp.log(state.common.betas[t] ) elif variance_type == "learned": return predicted_variance elif variance_type == "learned_range": _A : str = variance _A : Union[str, Any] = state.common.betas[t] _A : Tuple = (predicted_variance + 1) / 2 _A : List[str] = frac * max_log + (1 - frac) * min_log return variance def a__ ( self , _a , _a , _a , _a , _a = None , _a = True , ) -> Union[FlaxDDPMSchedulerOutput, Tuple]: _A : Dict = timestep if key is None: _A : int = jax.random.PRNGKey(0 ) if model_output.shape[1] == sample.shape[1] * 2 and self.config.variance_type in ["learned", "learned_range"]: _A , _A : List[str] = jnp.split(_a , sample.shape[1] , axis=1 ) else: _A : int = None # 1. compute alphas, betas _A : int = state.common.alphas_cumprod[t] _A : List[str] = jnp.where(t > 0 , state.common.alphas_cumprod[t - 1] , jnp.array(1.0 , dtype=self.dtype ) ) _A : Union[str, Any] = 1 - alpha_prod_t _A : Optional[int] = 1 - alpha_prod_t_prev # 2. compute predicted original sample from predicted noise also called # "predicted x_0" of formula (15) from https://arxiv.org/pdf/2006.11239.pdf if self.config.prediction_type == "epsilon": _A : Dict = (sample - beta_prod_t ** 0.5 * model_output) / alpha_prod_t ** 0.5 elif self.config.prediction_type == "sample": _A : Optional[int] = model_output elif self.config.prediction_type == "v_prediction": _A : Any = (alpha_prod_t**0.5) * sample - (beta_prod_t**0.5) * model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, `sample` ''' """ for the FlaxDDPMScheduler.""" ) # 3. Clip "predicted x_0" if self.config.clip_sample: _A : Union[str, Any] = jnp.clip(_a , -1 , 1 ) # 4. Compute coefficients for pred_original_sample x_0 and current sample x_t # See formula (7) from https://arxiv.org/pdf/2006.11239.pdf _A : List[Any] = (alpha_prod_t_prev ** 0.5 * state.common.betas[t]) / beta_prod_t _A : Dict = state.common.alphas[t] ** 0.5 * beta_prod_t_prev / beta_prod_t # 5. Compute predicted previous sample µ_t # See formula (7) from https://arxiv.org/pdf/2006.11239.pdf _A : int = pred_original_sample_coeff * pred_original_sample + current_sample_coeff * sample # 6. Add noise def random_variance(): _A : Tuple = jax.random.split(_a , num=1 ) _A : Dict = jax.random.normal(_a , shape=model_output.shape , dtype=self.dtype ) return (self._get_variance(_a , _a , predicted_variance=_a ) ** 0.5) * noise _A : int = jnp.where(t > 0 , random_variance() , jnp.zeros(model_output.shape , dtype=self.dtype ) ) _A : Union[str, Any] = pred_prev_sample + variance if not return_dict: return (pred_prev_sample, state) return FlaxDDPMSchedulerOutput(prev_sample=_a , state=_a ) def a__ ( self , _a , _a , _a , _a , ) -> jnp.ndarray: return add_noise_common(state.common , _a , _a , _a ) def a__ ( self , _a , _a , _a , _a , ) -> jnp.ndarray: return get_velocity_common(state.common , _a , _a , _a ) def __len__( self ) -> List[Any]: return self.config.num_train_timesteps
343
1
import argparse import shutil from pathlib import Path from tqdm import tqdm from transformers import AutoTokenizer def _UpperCAmelCase ( snake_case , snake_case , snake_case , snake_case=10_24 ): """simple docstring""" _lowerCAmelCase , _lowerCAmelCase = [], [] _lowerCAmelCase = list(zip(snake_case , snake_case ) ) _lowerCAmelCase , _lowerCAmelCase = sorted_examples[0] def is_too_big(snake_case ): return tok(snake_case , return_tensors="""pt""" ).input_ids.shape[1] > max_tokens for src, tgt in tqdm(sorted_examples[1:] ): _lowerCAmelCase = new_src + """ """ + src _lowerCAmelCase = new_tgt + """ """ + tgt if is_too_big(snake_case ) or is_too_big(snake_case ): # cant fit, finalize example finished_src.append(snake_case ) finished_tgt.append(snake_case ) _lowerCAmelCase , _lowerCAmelCase = src, tgt else: # can fit, keep adding _lowerCAmelCase , _lowerCAmelCase = cand_src, cand_tgt # cleanup if new_src: assert new_tgt finished_src.append(snake_case ) finished_tgt.append(snake_case ) return finished_src, finished_tgt def _UpperCAmelCase ( snake_case , snake_case , snake_case , snake_case ): """simple docstring""" _lowerCAmelCase = Path(snake_case ) save_path.mkdir(exist_ok=snake_case ) for split in ["train"]: _lowerCAmelCase , _lowerCAmelCase = data_dir / F'{split}.source', data_dir / F'{split}.target' _lowerCAmelCase = [x.rstrip() for x in Path(snake_case ).open().readlines()] _lowerCAmelCase = [x.rstrip() for x in Path(snake_case ).open().readlines()] _lowerCAmelCase , _lowerCAmelCase = pack_examples(snake_case , snake_case , snake_case , snake_case ) print(F'packed {split} split from {len(snake_case )} examples -> {len(snake_case )}.' ) Path(save_path / F'{split}.source' ).open("""w""" ).write("""\n""".join(snake_case ) ) Path(save_path / F'{split}.target' ).open("""w""" ).write("""\n""".join(snake_case ) ) for split in ["val", "test"]: _lowerCAmelCase , _lowerCAmelCase = data_dir / F'{split}.source', data_dir / F'{split}.target' shutil.copyfile(snake_case , save_path / F'{split}.source' ) shutil.copyfile(snake_case , save_path / F'{split}.target' ) def _UpperCAmelCase ( ): """simple docstring""" _lowerCAmelCase = argparse.ArgumentParser() parser.add_argument("""--tok_name""" , type=snake_case , help="""like facebook/bart-large-cnn,t5-base, etc.""" ) parser.add_argument("""--max_seq_len""" , type=snake_case , default=1_28 ) parser.add_argument("""--data_dir""" , type=snake_case ) parser.add_argument("""--save_path""" , type=snake_case ) _lowerCAmelCase = parser.parse_args() _lowerCAmelCase = AutoTokenizer.from_pretrained(args.tok_name ) return pack_data_dir(snake_case , Path(args.data_dir ) , args.max_seq_len , args.save_path ) if __name__ == "__main__": packer_cli()
82
def lowerCAmelCase_ ( __UpperCAmelCase: float , __UpperCAmelCase: int ) -> float: if digit_amount > 0: return round(number - int(__UpperCAmelCase ) , __UpperCAmelCase ) return number - int(__UpperCAmelCase ) if __name__ == "__main__": print(decimal_isolate(1.53, 0)) print(decimal_isolate(35.345, 1)) print(decimal_isolate(35.345, 2)) print(decimal_isolate(35.345, 3)) print(decimal_isolate(-14.789, 3)) print(decimal_isolate(0, 2)) print(decimal_isolate(-14.123, 1)) print(decimal_isolate(-14.123, 2)) print(decimal_isolate(-14.123, 3))
201
0
"""simple docstring""" from typing import Callable, List, Optional, Union import PIL import torch from transformers import ( CLIPImageProcessor, CLIPSegForImageSegmentation, CLIPSegProcessor, CLIPTextModel, CLIPTokenizer, ) from diffusers import DiffusionPipeline from diffusers.configuration_utils import FrozenDict from diffusers.models import AutoencoderKL, UNetaDConditionModel from diffusers.pipelines.stable_diffusion import StableDiffusionInpaintPipeline from diffusers.pipelines.stable_diffusion.safety_checker import StableDiffusionSafetyChecker from diffusers.schedulers import DDIMScheduler, LMSDiscreteScheduler, PNDMScheduler from diffusers.utils import deprecate, is_accelerate_available, logging UpperCAmelCase : List[str] = logging.get_logger(__name__) # pylint: disable=invalid-name class SCREAMING_SNAKE_CASE__ ( __UpperCAmelCase ): def __init__( self : Any , lowerCAmelCase_ : CLIPSegForImageSegmentation , lowerCAmelCase_ : CLIPSegProcessor , lowerCAmelCase_ : AutoencoderKL , lowerCAmelCase_ : CLIPTextModel , lowerCAmelCase_ : CLIPTokenizer , lowerCAmelCase_ : UNetaDConditionModel , lowerCAmelCase_ : Union[DDIMScheduler, PNDMScheduler, LMSDiscreteScheduler] , lowerCAmelCase_ : StableDiffusionSafetyChecker , lowerCAmelCase_ : CLIPImageProcessor , ): """simple docstring""" super().__init__() if hasattr(scheduler.config , """steps_offset""") and scheduler.config.steps_offset != 1: lowercase_ = ( F'''The configuration file of this scheduler: {scheduler} is outdated. `steps_offset`''' F''' should be set to 1 instead of {scheduler.config.steps_offset}. Please make sure ''' """to update the config accordingly as leaving `steps_offset` might led to incorrect results""" """ in future versions. If you have downloaded this checkpoint from the Hugging Face Hub,""" """ it would be very nice if you could open a Pull request for the `scheduler/scheduler_config.json`""" """ file""" ) deprecate("""steps_offset!=1""" , """1.0.0""" , lowerCAmelCase_ , standard_warn=lowerCAmelCase_) lowercase_ = dict(scheduler.config) lowercase_ = 1 lowercase_ = FrozenDict(lowerCAmelCase_) if hasattr(scheduler.config , """skip_prk_steps""") and scheduler.config.skip_prk_steps is False: lowercase_ = ( F'''The configuration file of this scheduler: {scheduler} has not set the configuration''' """ `skip_prk_steps`. `skip_prk_steps` should be set to True in the configuration file. Please make""" """ sure to update the config accordingly as not setting `skip_prk_steps` in the config might lead to""" """ incorrect results in future versions. If you have downloaded this checkpoint from the Hugging Face""" """ Hub, it would be very nice if you could open a Pull request for the""" """ `scheduler/scheduler_config.json` file""" ) deprecate("""skip_prk_steps not set""" , """1.0.0""" , lowerCAmelCase_ , standard_warn=lowerCAmelCase_) lowercase_ = dict(scheduler.config) lowercase_ = True lowercase_ = FrozenDict(lowerCAmelCase_) if safety_checker is None: logger.warning( F'''You have disabled the safety checker for {self.__class__} by passing `safety_checker=None`. Ensure''' """ that you abide to the conditions of the Stable Diffusion license and do not expose unfiltered""" """ results in services or applications open to the public. Both the diffusers team and Hugging Face""" """ strongly recommend to keep the safety filter enabled in all public facing circumstances, disabling""" """ it only for use-cases that involve analyzing network behavior or auditing its results. For more""" """ information, please have a look at https://github.com/huggingface/diffusers/pull/254 .""") self.register_modules( segmentation_model=lowerCAmelCase_ , segmentation_processor=lowerCAmelCase_ , vae=lowerCAmelCase_ , text_encoder=lowerCAmelCase_ , tokenizer=lowerCAmelCase_ , unet=lowerCAmelCase_ , scheduler=lowerCAmelCase_ , safety_checker=lowerCAmelCase_ , feature_extractor=lowerCAmelCase_ , ) def _UpperCAmelCase ( self : str , lowerCAmelCase_ : Optional[Union[str, int]] = "auto"): """simple docstring""" if slice_size == "auto": # half the attention head size is usually a good trade-off between # speed and memory lowercase_ = self.unet.config.attention_head_dim // 2 self.unet.set_attention_slice(lowerCAmelCase_) def _UpperCAmelCase ( self : Dict): """simple docstring""" self.enable_attention_slicing(lowerCAmelCase_) def _UpperCAmelCase ( self : Tuple): """simple docstring""" if is_accelerate_available(): from accelerate import cpu_offload else: raise ImportError("""Please install accelerate via `pip install accelerate`""") lowercase_ = torch.device("""cuda""") for cpu_offloaded_model in [self.unet, self.text_encoder, self.vae, self.safety_checker]: if cpu_offloaded_model is not None: cpu_offload(lowerCAmelCase_ , lowerCAmelCase_) @property # Copied from diffusers.pipelines.stable_diffusion.pipeline_stable_diffusion.StableDiffusionPipeline._execution_device def _UpperCAmelCase ( self : int): """simple docstring""" if self.device != torch.device("""meta""") or not hasattr(self.unet , """_hf_hook"""): return self.device for module in self.unet.modules(): if ( hasattr(lowerCAmelCase_ , """_hf_hook""") and hasattr(module._hf_hook , """execution_device""") and module._hf_hook.execution_device is not None ): return torch.device(module._hf_hook.execution_device) return self.device @torch.no_grad() def __call__( self : Any , lowerCAmelCase_ : Union[str, List[str]] , lowerCAmelCase_ : Union[torch.FloatTensor, PIL.Image.Image] , lowerCAmelCase_ : str , lowerCAmelCase_ : int = 5_1_2 , lowerCAmelCase_ : int = 5_1_2 , lowerCAmelCase_ : int = 5_0 , lowerCAmelCase_ : float = 7.5 , lowerCAmelCase_ : Optional[Union[str, List[str]]] = None , lowerCAmelCase_ : Optional[int] = 1 , lowerCAmelCase_ : float = 0.0 , lowerCAmelCase_ : Optional[torch.Generator] = None , lowerCAmelCase_ : Optional[torch.FloatTensor] = None , lowerCAmelCase_ : Optional[str] = "pil" , lowerCAmelCase_ : bool = True , lowerCAmelCase_ : Optional[Callable[[int, int, torch.FloatTensor], None]] = None , lowerCAmelCase_ : int = 1 , **lowerCAmelCase_ : Tuple , ): """simple docstring""" lowercase_ = self.segmentation_processor( text=[text] , images=[image] , padding="""max_length""" , return_tensors="""pt""").to(self.device) lowercase_ = self.segmentation_model(**lowerCAmelCase_) lowercase_ = torch.sigmoid(outputs.logits).cpu().detach().unsqueeze(-1).numpy() lowercase_ = self.numpy_to_pil(lowerCAmelCase_)[0].resize(image.size) # Run inpainting pipeline with the generated mask lowercase_ = StableDiffusionInpaintPipeline( vae=self.vae , text_encoder=self.text_encoder , tokenizer=self.tokenizer , unet=self.unet , scheduler=self.scheduler , safety_checker=self.safety_checker , feature_extractor=self.feature_extractor , ) return inpainting_pipeline( prompt=lowerCAmelCase_ , image=lowerCAmelCase_ , mask_image=lowerCAmelCase_ , height=lowerCAmelCase_ , width=lowerCAmelCase_ , num_inference_steps=lowerCAmelCase_ , guidance_scale=lowerCAmelCase_ , negative_prompt=lowerCAmelCase_ , num_images_per_prompt=lowerCAmelCase_ , eta=lowerCAmelCase_ , generator=lowerCAmelCase_ , latents=lowerCAmelCase_ , output_type=lowerCAmelCase_ , return_dict=lowerCAmelCase_ , callback=lowerCAmelCase_ , callback_steps=lowerCAmelCase_ , )
368
"""simple docstring""" from random import randint from tempfile import TemporaryFile import numpy as np def _SCREAMING_SNAKE_CASE (__lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase ) -> Tuple: '''simple docstring''' lowercase_ = 0 if start < end: lowercase_ = randint(__lowerCAmelCase , __lowerCAmelCase ) lowercase_ = a[end] lowercase_ = a[pivot] lowercase_ = temp lowercase_ , lowercase_ = _in_place_partition(__lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase ) count += _in_place_quick_sort(__lowerCAmelCase , __lowerCAmelCase , p - 1 ) count += _in_place_quick_sort(__lowerCAmelCase , p + 1 , __lowerCAmelCase ) return count def _SCREAMING_SNAKE_CASE (__lowerCAmelCase , __lowerCAmelCase , __lowerCAmelCase ) -> int: '''simple docstring''' lowercase_ = 0 lowercase_ = randint(__lowerCAmelCase , __lowerCAmelCase ) lowercase_ = a[end] lowercase_ = a[pivot] lowercase_ = temp lowercase_ = start - 1 for index in range(__lowerCAmelCase , __lowerCAmelCase ): count += 1 if a[index] < a[end]: # check if current val is less than pivot value lowercase_ = new_pivot_index + 1 lowercase_ = a[new_pivot_index] lowercase_ = a[index] lowercase_ = temp lowercase_ = a[new_pivot_index + 1] lowercase_ = a[end] lowercase_ = temp return new_pivot_index + 1, count UpperCAmelCase : Union[str, Any] = TemporaryFile() UpperCAmelCase : Optional[int] = 100 # 1000 elements are to be sorted UpperCAmelCase , UpperCAmelCase : List[str] = 0, 1 # mean and standard deviation UpperCAmelCase : Optional[Any] = np.random.normal(mu, sigma, p) np.save(outfile, X) print("The array is") print(X) outfile.seek(0) # using the same array UpperCAmelCase : List[str] = np.load(outfile) UpperCAmelCase : List[Any] = len(M) - 1 UpperCAmelCase : Optional[int] = _in_place_quick_sort(M, 0, r) print( "No of Comparisons for 100 elements selected from a standard normal distribution" "is :" ) print(z)
313
0
import requests from bsa import BeautifulSoup def SCREAMING_SNAKE_CASE__ ( __a = "https://www.worldometers.info/coronavirus" ): snake_case_ : List[str] = BeautifulSoup(requests.get(_SCREAMING_SNAKE_CASE ).text , 'html.parser' ) snake_case_ : List[Any] = soup.findAll('h1' ) snake_case_ : List[str] = soup.findAll('div' , {'class': 'maincounter-number'} ) keys += soup.findAll('span' , {'class': 'panel-title'} ) values += soup.findAll('div' , {'class': 'number-table-main'} ) return {key.text.strip(): value.text.strip() for key, value in zip(_SCREAMING_SNAKE_CASE , _SCREAMING_SNAKE_CASE )} if __name__ == "__main__": print("""\033[1m""" + """COVID-19 Status of the World""" + """\033[0m\n""") for key, value in world_covidaa_stats().items(): print(F'''{key}\n{value}\n''')
327
"""simple docstring""" class _lowerCamelCase : def __init__(self , __a ) -> None: UpperCamelCase = len(__a ) UpperCamelCase = [0] * len_array if len_array > 0: UpperCamelCase = array[0] for i in range(1 , __a ): UpperCamelCase = self.prefix_sum[i - 1] + array[i] def snake_case_ (self , __a , __a ) -> int: if start == 0: return self.prefix_sum[end] return self.prefix_sum[end] - self.prefix_sum[start - 1] def snake_case_ (self , __a ) -> bool: UpperCamelCase = {0} for sum_item in self.prefix_sum: if sum_item - target_sum in sums: return True sums.add(__a ) return False if __name__ == "__main__": import doctest doctest.testmod()
153
0
from statistics import mean, stdev def lowerCamelCase__ ( a , a = 3 ) -> list: _A: Union[str, Any] = min(a ) _A: Tuple = max(a ) # normalize data return [round((x - x_min) / (x_max - x_min) , a ) for x in data] def lowerCamelCase__ ( a , a = 3 ) -> list: _A: Optional[Any] = mean(a ) _A: Any = stdev(a ) # standardize data return [round((x - mu) / (sigma) , a ) for x in data]
367
import torch from diffusers import DDPMParallelScheduler from .test_schedulers import SchedulerCommonTest class UpperCAmelCase ( SCREAMING_SNAKE_CASE__ ): '''simple docstring''' __UpperCamelCase : Any = (DDPMParallelScheduler,) def __magic_name__ ( self : Optional[int] , **lowerCAmelCase_ : Any ): """simple docstring""" _A: Optional[int] = { '''num_train_timesteps''': 1_0_0_0, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**lowerCAmelCase_ ) return config def __magic_name__ ( self : int ): """simple docstring""" for timesteps in [1, 5, 1_0_0, 1_0_0_0]: self.check_over_configs(num_train_timesteps=lowerCAmelCase_ ) def __magic_name__ ( self : Tuple ): """simple docstring""" for beta_start, beta_end in zip([0.0001, 0.001, 0.01, 0.1] , [0.002, 0.02, 0.2, 2] ): self.check_over_configs(beta_start=lowerCAmelCase_ , beta_end=lowerCAmelCase_ ) def __magic_name__ ( self : Optional[Any] ): """simple docstring""" for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=lowerCAmelCase_ ) def __magic_name__ ( self : Optional[int] ): """simple docstring""" for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=lowerCAmelCase_ ) def __magic_name__ ( self : Tuple ): """simple docstring""" for clip_sample in [True, False]: self.check_over_configs(clip_sample=lowerCAmelCase_ ) def __magic_name__ ( self : List[str] ): """simple docstring""" self.check_over_configs(thresholding=lowerCAmelCase_ ) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=lowerCAmelCase_ , prediction_type=lowerCAmelCase_ , sample_max_value=lowerCAmelCase_ , ) def __magic_name__ ( self : Dict ): """simple docstring""" for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=lowerCAmelCase_ ) def __magic_name__ ( self : int ): """simple docstring""" for t in [0, 5_0_0, 9_9_9]: self.check_over_forward(time_step=lowerCAmelCase_ ) def __magic_name__ ( self : Any ): """simple docstring""" _A: List[Any] = self.scheduler_classes[0] _A: Union[str, Any] = self.get_scheduler_config() _A: Optional[Any] = scheduler_class(**lowerCAmelCase_ ) assert torch.sum(torch.abs(scheduler._get_variance(0 ) - 0.0 ) ) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_8_7 ) - 0.00979 ) ) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_9_9 ) - 0.02 ) ) < 1e-5 def __magic_name__ ( self : Optional[int] ): """simple docstring""" _A: Any = self.scheduler_classes[0] _A: List[str] = self.get_scheduler_config() _A: Union[str, Any] = scheduler_class(**lowerCAmelCase_ ) _A: List[Any] = len(lowerCAmelCase_ ) _A: Union[str, Any] = self.dummy_model() _A: Dict = self.dummy_sample_deter _A: Dict = self.dummy_sample_deter + 0.1 _A: str = self.dummy_sample_deter - 0.1 _A: str = samplea.shape[0] _A: Optional[Any] = torch.stack([samplea, samplea, samplea] , dim=0 ) _A: List[str] = torch.arange(lowerCAmelCase_ )[0:3, None].repeat(1 , lowerCAmelCase_ ) _A: List[Any] = model(samples.flatten(0 , 1 ) , timesteps.flatten(0 , 1 ) ) _A: Optional[int] = scheduler.batch_step_no_noise(lowerCAmelCase_ , timesteps.flatten(0 , 1 ) , samples.flatten(0 , 1 ) ) _A: Dict = torch.sum(torch.abs(lowerCAmelCase_ ) ) _A: List[str] = torch.mean(torch.abs(lowerCAmelCase_ ) ) assert abs(result_sum.item() - 1153.1833 ) < 1e-2 assert abs(result_mean.item() - 0.5005 ) < 1e-3 def __magic_name__ ( self : Tuple ): """simple docstring""" _A: Optional[Any] = self.scheduler_classes[0] _A: List[Any] = self.get_scheduler_config() _A: Any = scheduler_class(**lowerCAmelCase_ ) _A: Union[str, Any] = len(lowerCAmelCase_ ) _A: Any = self.dummy_model() _A: Optional[int] = self.dummy_sample_deter _A: List[str] = torch.manual_seed(0 ) for t in reversed(range(lowerCAmelCase_ ) ): # 1. predict noise residual _A: Optional[int] = model(lowerCAmelCase_ , lowerCAmelCase_ ) # 2. predict previous mean of sample x_t-1 _A: Optional[int] = scheduler.step(lowerCAmelCase_ , lowerCAmelCase_ , lowerCAmelCase_ , generator=lowerCAmelCase_ ).prev_sample _A: List[Any] = pred_prev_sample _A: Optional[int] = torch.sum(torch.abs(lowerCAmelCase_ ) ) _A: Any = torch.mean(torch.abs(lowerCAmelCase_ ) ) assert abs(result_sum.item() - 258.9606 ) < 1e-2 assert abs(result_mean.item() - 0.3372 ) < 1e-3 def __magic_name__ ( self : Tuple ): """simple docstring""" _A: Optional[int] = self.scheduler_classes[0] _A: Union[str, Any] = self.get_scheduler_config(prediction_type='''v_prediction''' ) _A: List[str] = scheduler_class(**lowerCAmelCase_ ) _A: Union[str, Any] = len(lowerCAmelCase_ ) _A: Any = self.dummy_model() _A: Any = self.dummy_sample_deter _A: str = torch.manual_seed(0 ) for t in reversed(range(lowerCAmelCase_ ) ): # 1. predict noise residual _A: Any = model(lowerCAmelCase_ , lowerCAmelCase_ ) # 2. predict previous mean of sample x_t-1 _A: int = scheduler.step(lowerCAmelCase_ , lowerCAmelCase_ , lowerCAmelCase_ , generator=lowerCAmelCase_ ).prev_sample _A: Tuple = pred_prev_sample _A: List[Any] = torch.sum(torch.abs(lowerCAmelCase_ ) ) _A: str = torch.mean(torch.abs(lowerCAmelCase_ ) ) assert abs(result_sum.item() - 202.0296 ) < 1e-2 assert abs(result_mean.item() - 0.2631 ) < 1e-3 def __magic_name__ ( self : Optional[int] ): """simple docstring""" _A: Optional[int] = self.scheduler_classes[0] _A: Optional[Any] = self.get_scheduler_config() _A: Dict = scheduler_class(**lowerCAmelCase_ ) _A: Any = [1_0_0, 8_7, 5_0, 1, 0] scheduler.set_timesteps(timesteps=lowerCAmelCase_ ) _A: Tuple = scheduler.timesteps for i, timestep in enumerate(lowerCAmelCase_ ): if i == len(lowerCAmelCase_ ) - 1: _A: Dict = -1 else: _A: int = timesteps[i + 1] _A: List[str] = scheduler.previous_timestep(lowerCAmelCase_ ) _A: str = prev_t.item() self.assertEqual(lowerCAmelCase_ , lowerCAmelCase_ ) def __magic_name__ ( self : Any ): """simple docstring""" _A: Tuple = self.scheduler_classes[0] _A: int = self.get_scheduler_config() _A: Any = scheduler_class(**lowerCAmelCase_ ) _A: Union[str, Any] = [1_0_0, 8_7, 5_0, 5_1, 0] with self.assertRaises(lowerCAmelCase_ , msg='''`custom_timesteps` must be in descending order.''' ): scheduler.set_timesteps(timesteps=lowerCAmelCase_ ) def __magic_name__ ( self : int ): """simple docstring""" _A: List[str] = self.scheduler_classes[0] _A: Optional[Any] = self.get_scheduler_config() _A: Union[str, Any] = scheduler_class(**lowerCAmelCase_ ) _A: Union[str, Any] = [1_0_0, 8_7, 5_0, 1, 0] _A: Dict = len(lowerCAmelCase_ ) with self.assertRaises(lowerCAmelCase_ , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.''' ): scheduler.set_timesteps(num_inference_steps=lowerCAmelCase_ , timesteps=lowerCAmelCase_ ) def __magic_name__ ( self : Any ): """simple docstring""" _A: List[Any] = self.scheduler_classes[0] _A: int = self.get_scheduler_config() _A: str = scheduler_class(**lowerCAmelCase_ ) _A: Any = [scheduler.config.num_train_timesteps] with self.assertRaises( lowerCAmelCase_ , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=lowerCAmelCase_ )
301
0
import itertools import json import linecache import os import pickle import re import socket import string from collections import Counter from logging import getLogger from pathlib import Path from typing import Callable, Dict, Iterable, List import git import torch from torch.utils.data import Dataset from transformers import BartTokenizer, RagTokenizer, TaTokenizer def lowerCamelCase_ ( _a : Any , _a : Tuple , _a : Any , _a : Any , _a : Optional[Any]=True , _a : Tuple="pt" ): '''simple docstring''' UpperCAmelCase_ : Optional[Any] = {'''add_prefix_space''': True} if isinstance(_lowercase , _lowercase ) and not line.startswith(""" """ ) else {} UpperCAmelCase_ : str = padding_side return tokenizer( [line] , max_length=_lowercase , padding="""max_length""" if pad_to_max_length else None , truncation=_lowercase , return_tensors=_lowercase , add_special_tokens=_lowercase , **_lowercase , ) def lowerCamelCase_ ( _a : Tuple , _a : Dict , _a : Dict=None , ): '''simple docstring''' UpperCAmelCase_ : Dict = input_ids.ne(_lowercase ).any(dim=0 ) if attention_mask is None: return input_ids[:, keep_column_mask] else: return (input_ids[:, keep_column_mask], attention_mask[:, keep_column_mask]) class _snake_case ( UpperCamelCase_ ): '''simple docstring''' def __init__( self: Tuple ,lowerCamelCase_: Optional[Any] ,lowerCamelCase_: List[Any] ,lowerCamelCase_: Optional[Any] ,lowerCamelCase_: List[Any] ,lowerCamelCase_: Tuple="train" ,lowerCamelCase_: str=None ,lowerCamelCase_: Optional[int]=None ,lowerCamelCase_: List[Any]=None ,lowerCamelCase_: int="" ,) -> Optional[int]: super().__init__() UpperCAmelCase_ : List[Any] = Path(UpperCamelCase__ ).joinpath(type_path + """.source""" ) UpperCAmelCase_ : Union[str, Any] = Path(UpperCamelCase__ ).joinpath(type_path + """.target""" ) UpperCAmelCase_ : Any = self.get_char_lens(self.src_file ) UpperCAmelCase_ : Dict = max_source_length UpperCAmelCase_ : Dict = max_target_length assert min(self.src_lens ) > 0, F'''found empty line in {self.src_file}''' UpperCAmelCase_ : Tuple = tokenizer UpperCAmelCase_ : Tuple = prefix if n_obs is not None: UpperCAmelCase_ : List[Any] = self.src_lens[:n_obs] UpperCAmelCase_ : str = src_lang UpperCAmelCase_ : List[str] = tgt_lang def __len__( self: Union[str, Any] ) -> Any: return len(self.src_lens ) def __getitem__( self: List[str] ,lowerCamelCase_: Union[str, Any] ) -> Tuple: UpperCAmelCase_ : List[Any] = index + 1 # linecache starts at 1 UpperCAmelCase_ : List[Any] = self.prefix + linecache.getline(str(self.src_file ) ,UpperCamelCase__ ).rstrip("""\n""" ) UpperCAmelCase_ : Dict = linecache.getline(str(self.tgt_file ) ,UpperCamelCase__ ).rstrip("""\n""" ) assert source_line, F'''empty source line for index {index}''' assert tgt_line, F'''empty tgt line for index {index}''' # Need to add eos token manually for T5 if isinstance(self.tokenizer ,UpperCamelCase__ ): source_line += self.tokenizer.eos_token tgt_line += self.tokenizer.eos_token # Pad source and target to the right UpperCAmelCase_ : str = ( self.tokenizer.question_encoder if isinstance(self.tokenizer ,UpperCamelCase__ ) else self.tokenizer ) UpperCAmelCase_ : Dict = self.tokenizer.generator if isinstance(self.tokenizer ,UpperCamelCase__ ) else self.tokenizer UpperCAmelCase_ : List[str] = encode_line(UpperCamelCase__ ,UpperCamelCase__ ,self.max_source_length ,"""right""" ) UpperCAmelCase_ : List[str] = encode_line(UpperCamelCase__ ,UpperCamelCase__ ,self.max_target_length ,"""right""" ) UpperCAmelCase_ : Optional[int] = source_inputs['''input_ids'''].squeeze() UpperCAmelCase_ : Dict = target_inputs['''input_ids'''].squeeze() UpperCAmelCase_ : List[str] = source_inputs['''attention_mask'''].squeeze() return { "input_ids": source_ids, "attention_mask": src_mask, "decoder_input_ids": target_ids, } @staticmethod def A__ ( lowerCamelCase_: Any ) -> Dict: return [len(UpperCamelCase__ ) for x in Path(UpperCamelCase__ ).open().readlines()] def A__ ( self: Optional[Any] ,lowerCamelCase_: Optional[Any] ) -> Dict: UpperCAmelCase_ : List[str] = torch.stack([x["""input_ids"""] for x in batch] ) UpperCAmelCase_ : Optional[Any] = torch.stack([x["""attention_mask"""] for x in batch] ) UpperCAmelCase_ : List[Any] = torch.stack([x["""decoder_input_ids"""] for x in batch] ) UpperCAmelCase_ : Optional[int] = ( self.tokenizer.generator.pad_token_id if isinstance(self.tokenizer ,UpperCamelCase__ ) else self.tokenizer.pad_token_id ) UpperCAmelCase_ : Any = ( self.tokenizer.question_encoder.pad_token_id if isinstance(self.tokenizer ,UpperCamelCase__ ) else self.tokenizer.pad_token_id ) UpperCAmelCase_ : Optional[int] = trim_batch(UpperCamelCase__ ,UpperCamelCase__ ) UpperCAmelCase_ : str = trim_batch(UpperCamelCase__ ,UpperCamelCase__ ,attention_mask=UpperCamelCase__ ) UpperCAmelCase_ : Dict = { '''input_ids''': source_ids, '''attention_mask''': source_mask, '''decoder_input_ids''': y, } return batch UpperCamelCase_ = getLogger(__name__) def lowerCamelCase_ ( _a : List[str] ): '''simple docstring''' return list(itertools.chain.from_iterable(_lowercase ) ) def lowerCamelCase_ ( _a : int ): '''simple docstring''' UpperCAmelCase_ : List[Any] = get_git_info() save_json(_lowercase , os.path.join(_lowercase , """git_log.json""" ) ) def lowerCamelCase_ ( _a : Optional[Any] , _a : Any , _a : Union[str, Any]=4 , **_a : Tuple ): '''simple docstring''' with open(_lowercase , """w""" ) as f: json.dump(_lowercase , _lowercase , indent=_lowercase , **_lowercase ) def lowerCamelCase_ ( _a : int ): '''simple docstring''' with open(_lowercase ) as f: return json.load(_lowercase ) def lowerCamelCase_ ( ): '''simple docstring''' UpperCAmelCase_ : List[str] = git.Repo(search_parent_directories=_lowercase ) UpperCAmelCase_ : Union[str, Any] = { '''repo_id''': str(_lowercase ), '''repo_sha''': str(repo.head.object.hexsha ), '''repo_branch''': str(repo.active_branch ), '''hostname''': str(socket.gethostname() ), } return repo_infos def lowerCamelCase_ ( _a : Tuple , _a : Optional[Any] ): '''simple docstring''' return list(map(_lowercase , _lowercase ) ) def lowerCamelCase_ ( _a : Optional[Any] , _a : List[str] ): '''simple docstring''' with open(_lowercase , """wb""" ) as f: return pickle.dump(_lowercase , _lowercase ) def lowerCamelCase_ ( _a : List[str] ): '''simple docstring''' def remove_articles(_a : Optional[int] ): return re.sub(r"""\b(a|an|the)\b""" , """ """ , _lowercase ) def white_space_fix(_a : int ): return " ".join(text.split() ) def remove_punc(_a : List[Any] ): UpperCAmelCase_ : int = set(string.punctuation ) return "".join(ch for ch in text if ch not in exclude ) def lower(_a : str ): return text.lower() return white_space_fix(remove_articles(remove_punc(lower(_lowercase ) ) ) ) def lowerCamelCase_ ( _a : List[Any] , _a : List[Any] ): '''simple docstring''' UpperCAmelCase_ : Tuple = normalize_answer(_lowercase ).split() UpperCAmelCase_ : Union[str, Any] = normalize_answer(_lowercase ).split() UpperCAmelCase_ : List[str] = Counter(_lowercase ) & Counter(_lowercase ) UpperCAmelCase_ : Dict = sum(common.values() ) if num_same == 0: return 0 UpperCAmelCase_ : int = 1.0 * num_same / len(_lowercase ) UpperCAmelCase_ : Optional[Any] = 1.0 * num_same / len(_lowercase ) UpperCAmelCase_ : Tuple = (2 * precision * recall) / (precision + recall) return fa def lowerCamelCase_ ( _a : List[str] , _a : str ): '''simple docstring''' return normalize_answer(_lowercase ) == normalize_answer(_lowercase ) def lowerCamelCase_ ( _a : Optional[int] , _a : Optional[Any] ): '''simple docstring''' assert len(_lowercase ) == len(_lowercase ) UpperCAmelCase_ : Union[str, Any] = 0 for hypo, pred in zip(_lowercase , _lowercase ): em += exact_match_score(_lowercase , _lowercase ) if len(_lowercase ) > 0: em /= len(_lowercase ) return {"em": em} def lowerCamelCase_ ( _a : int ): '''simple docstring''' return model_prefix.startswith("""rag""" ) def lowerCamelCase_ ( _a : Tuple , _a : str , _a : Union[str, Any] ): '''simple docstring''' UpperCAmelCase_ : Any = {p: p for p in extra_params} # T5 models don't have `dropout` param, they have `dropout_rate` instead UpperCAmelCase_ : Optional[int] = '''dropout_rate''' for p in extra_params: if getattr(_lowercase , _lowercase , _lowercase ): if not hasattr(_lowercase , _lowercase ) and not hasattr(_lowercase , equivalent_param[p] ): logger.info("""config doesn\'t have a `{}` attribute""".format(_lowercase ) ) delattr(_lowercase , _lowercase ) continue UpperCAmelCase_ : Dict = p if hasattr(_lowercase , _lowercase ) else equivalent_param[p] setattr(_lowercase , _lowercase , getattr(_lowercase , _lowercase ) ) delattr(_lowercase , _lowercase ) return hparams, config
345
import os import tempfile import unittest from pathlib import Path from transformers import AutoConfig, is_tf_available from transformers.testing_utils import require_tf if is_tf_available(): import tensorflow as tf from transformers import TensorFlowBenchmark, TensorFlowBenchmarkArguments @require_tf class lowercase__ ( unittest.TestCase): def __A ( self : str , UpperCamelCase__ : int ): '''simple docstring''' for model_result in results.values(): for batch_size, sequence_length in zip(model_result['''bs'''] , model_result['''ss'''] ): SCREAMING_SNAKE_CASE : Union[str, Any] = model_result['''result'''][batch_size][sequence_length] self.assertIsNotNone(UpperCamelCase__ ) def __A ( self : Optional[Any] ): '''simple docstring''' SCREAMING_SNAKE_CASE : List[Any] = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : List[Any] = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , eager_mode=UpperCamelCase__ , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : str = TensorFlowBenchmark(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : List[Any] = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) def __A ( self : List[str] ): '''simple docstring''' SCREAMING_SNAKE_CASE : str = '''sgugger/tiny-distilbert-classification''' SCREAMING_SNAKE_CASE : Union[str, Any] = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , multi_process=UpperCamelCase__ , only_pretrain_model=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : List[str] = TensorFlowBenchmark(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Optional[Any] = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) def __A ( self : Any ): '''simple docstring''' SCREAMING_SNAKE_CASE : Union[str, Any] = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : int = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Union[str, Any] = TensorFlowBenchmark(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : int = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) def __A ( self : Optional[Any] ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[int] = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : int = AutoConfig.from_pretrained(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Optional[int] = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , eager_mode=UpperCamelCase__ , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : str = TensorFlowBenchmark(UpperCamelCase__ , [config] ) SCREAMING_SNAKE_CASE : Optional[int] = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) def __A ( self : int ): '''simple docstring''' SCREAMING_SNAKE_CASE : Dict = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : Optional[int] = AutoConfig.from_pretrained(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Optional[Any] = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : List[str] = TensorFlowBenchmark(UpperCamelCase__ , [config] ) SCREAMING_SNAKE_CASE : int = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) def __A ( self : List[Any] ): '''simple docstring''' SCREAMING_SNAKE_CASE : str = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : int = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Optional[int] = TensorFlowBenchmark(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Tuple = benchmark.run() self.check_results_dict_not_empty(results.time_train_result ) self.check_results_dict_not_empty(results.memory_train_result ) def __A ( self : Optional[Any] ): '''simple docstring''' SCREAMING_SNAKE_CASE : List[str] = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : int = AutoConfig.from_pretrained(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Tuple = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Dict = TensorFlowBenchmark(UpperCamelCase__ , [config] ) SCREAMING_SNAKE_CASE : str = benchmark.run() self.check_results_dict_not_empty(results.time_train_result ) self.check_results_dict_not_empty(results.memory_train_result ) def __A ( self : Optional[int] ): '''simple docstring''' SCREAMING_SNAKE_CASE : List[str] = '''patrickvonplaten/t5-tiny-random''' SCREAMING_SNAKE_CASE : Union[str, Any] = AutoConfig.from_pretrained(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Union[str, Any] = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Dict = TensorFlowBenchmark(UpperCamelCase__ , configs=[config] ) SCREAMING_SNAKE_CASE : Dict = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) @unittest.skipIf(is_tf_available() and len(tf.config.list_physical_devices('''GPU''' ) ) == 0 , '''Cannot do xla on CPU.''' ) def __A ( self : Optional[int] ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[Any] = '''sshleifer/tiny-gpt2''' SCREAMING_SNAKE_CASE : Tuple = TensorFlowBenchmarkArguments( models=[MODEL_ID] , training=UpperCamelCase__ , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , use_xla=UpperCamelCase__ , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Any = TensorFlowBenchmark(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : List[Any] = benchmark.run() self.check_results_dict_not_empty(results.time_inference_result ) self.check_results_dict_not_empty(results.memory_inference_result ) def __A ( self : List[str] ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[int] = '''sshleifer/tiny-gpt2''' with tempfile.TemporaryDirectory() as tmp_dir: SCREAMING_SNAKE_CASE : Tuple = TensorFlowBenchmarkArguments( models=[MODEL_ID] , inference=UpperCamelCase__ , save_to_csv=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , inference_time_csv_file=os.path.join(UpperCamelCase__ , '''inf_time.csv''' ) , inference_memory_csv_file=os.path.join(UpperCamelCase__ , '''inf_mem.csv''' ) , env_info_csv_file=os.path.join(UpperCamelCase__ , '''env.csv''' ) , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : Optional[Any] = TensorFlowBenchmark(UpperCamelCase__ ) benchmark.run() self.assertTrue(Path(os.path.join(UpperCamelCase__ , '''inf_time.csv''' ) ).exists() ) self.assertTrue(Path(os.path.join(UpperCamelCase__ , '''inf_mem.csv''' ) ).exists() ) self.assertTrue(Path(os.path.join(UpperCamelCase__ , '''env.csv''' ) ).exists() ) def __A ( self : int ): '''simple docstring''' SCREAMING_SNAKE_CASE : Any = '''sshleifer/tiny-gpt2''' def _check_summary_is_not_empty(UpperCamelCase__ : Dict ): self.assertTrue(hasattr(UpperCamelCase__ , '''sequential''' ) ) self.assertTrue(hasattr(UpperCamelCase__ , '''cumulative''' ) ) self.assertTrue(hasattr(UpperCamelCase__ , '''current''' ) ) self.assertTrue(hasattr(UpperCamelCase__ , '''total''' ) ) with tempfile.TemporaryDirectory() as tmp_dir: SCREAMING_SNAKE_CASE : List[str] = TensorFlowBenchmarkArguments( models=[MODEL_ID] , inference=UpperCamelCase__ , sequence_lengths=[8] , batch_sizes=[1] , log_filename=os.path.join(UpperCamelCase__ , '''log.txt''' ) , log_print=UpperCamelCase__ , trace_memory_line_by_line=UpperCamelCase__ , eager_mode=UpperCamelCase__ , multi_process=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : List[Any] = TensorFlowBenchmark(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Dict = benchmark.run() _check_summary_is_not_empty(result.inference_summary ) self.assertTrue(Path(os.path.join(UpperCamelCase__ , '''log.txt''' ) ).exists() )
182
0
"""simple docstring""" import collections import json import math import os import re import time from fnmatch import fnmatch from typing import Dict import requests from slack_sdk import WebClient UpperCamelCase : Tuple = WebClient(token=os.environ["CI_SLACK_BOT_TOKEN"]) def A ( snake_case :Dict ) -> int: __UpperCamelCase = test_results.split(' ' ) __UpperCamelCase = 0 __UpperCamelCase = 0 # When the output is short enough, the output is surrounded by = signs: "== OUTPUT ==" # When it is too long, those signs are not present. __UpperCamelCase = expressions[-2] if '=' in expressions[-1] else expressions[-1] for i, expression in enumerate(snake_case ): if "failed" in expression: failed += int(expressions[i - 1] ) if "passed" in expression: success += int(expressions[i - 1] ) return failed, success, time_spent def A ( snake_case :List[Any] ) -> str: __UpperCamelCase = {} __UpperCamelCase = None __UpperCamelCase = False for line in failures_short_lines.split('\n' ): if re.search(r'_ \[doctest\]' , snake_case ): __UpperCamelCase = True __UpperCamelCase = line.split(' ' )[2] elif in_error and not line.split(' ' )[0].isdigit(): __UpperCamelCase = line __UpperCamelCase = False return failures class __lowerCAmelCase : def __init__( self , __UpperCAmelCase , __UpperCAmelCase ): '''simple docstring''' __UpperCamelCase = title __UpperCamelCase = doc_test_results['time_spent'].split(',' )[0] __UpperCamelCase = doc_test_results['success'] __UpperCamelCase = doc_test_results['failures'] __UpperCamelCase = self.n_success + self.n_failures # Failures and success of the modeling tests __UpperCamelCase = doc_test_results @property def UpperCAmelCase ( self ): '''simple docstring''' __UpperCamelCase = [self._time_spent] __UpperCamelCase = 0 for time in time_spent: __UpperCamelCase = time.split(':' ) # Time can be formatted as xx:xx:xx, as .xx, or as x.xx if the time spent was less than a minute. if len(__UpperCAmelCase ) == 1: __UpperCamelCase = [0, 0, time_parts[0]] __UpperCamelCase , __UpperCamelCase , __UpperCamelCase = int(time_parts[0] ), int(time_parts[1] ), float(time_parts[2] ) total_secs += hours * 3600 + minutes * 60 + seconds __UpperCamelCase , __UpperCamelCase , __UpperCamelCase = total_secs // 3600, (total_secs % 3600) // 60, total_secs % 60 return F'{int(__UpperCAmelCase )}h{int(__UpperCAmelCase )}m{int(__UpperCAmelCase )}s' @property def UpperCAmelCase ( self ): '''simple docstring''' return {"type": "header", "text": {"type": "plain_text", "text": self.title}} @property def UpperCAmelCase ( self ): '''simple docstring''' return { "type": "section", "text": { "type": "plain_text", "text": F'🌞 There were no failures: all {self.n_tests} tests passed. The suite ran in {self.time}.', "emoji": True, }, "accessory": { "type": "button", "text": {"type": "plain_text", "text": "Check Action results", "emoji": True}, "url": F'https://github.com/huggingface/transformers/actions/runs/{os.environ["GITHUB_RUN_ID"]}', }, } @property def UpperCAmelCase ( self ): '''simple docstring''' return { "type": "section", "text": { "type": "plain_text", "text": ( F'There were {self.n_failures} failures, out of {self.n_tests} tests.\nThe suite ran in' F' {self.time}.' ), "emoji": True, }, "accessory": { "type": "button", "text": {"type": "plain_text", "text": "Check Action results", "emoji": True}, "url": F'https://github.com/huggingface/transformers/actions/runs/{os.environ["GITHUB_RUN_ID"]}', }, } @property def UpperCAmelCase ( self ): '''simple docstring''' __UpperCamelCase = 40 __UpperCamelCase = {k: v['failed'] for k, v in doc_test_results.items() if isinstance(__UpperCAmelCase , __UpperCAmelCase )} __UpperCamelCase = '' for category, failures in category_failures.items(): if len(__UpperCAmelCase ) == 0: continue if report != "": report += "\n\n" report += F'*{category} failures*:'.ljust(line_length // 2 ).rjust(line_length // 2 ) + "\n" report += "`" report += "`\n`".join(__UpperCAmelCase ) report += "`" return { "type": "section", "text": { "type": "mrkdwn", "text": F'The following examples had failures:\n\n\n{report}\n', }, } @property def UpperCAmelCase ( self ): '''simple docstring''' __UpperCamelCase = [self.header] if self.n_failures > 0: blocks.append(self.failures ) if self.n_failures > 0: blocks.extend([self.category_failures] ) if self.n_failures == 0: blocks.append(self.no_failures ) return json.dumps(__UpperCAmelCase ) @staticmethod def UpperCAmelCase ( ): '''simple docstring''' __UpperCamelCase = [ { 'type': 'section', 'text': { 'type': 'plain_text', 'text': 'There was an issue running the tests.', }, 'accessory': { 'type': 'button', 'text': {'type': 'plain_text', 'text': 'Check Action results', 'emoji': True}, 'url': F'https://github.com/huggingface/transformers/actions/runs/{os.environ["GITHUB_RUN_ID"]}', }, } ] print('Sending the following payload' ) print(json.dumps({'blocks': json.loads(__UpperCAmelCase )} ) ) client.chat_postMessage( channel=os.environ['CI_SLACK_CHANNEL_ID_DAILY'] , text='There was an issue running the tests.' , blocks=__UpperCAmelCase , ) def UpperCAmelCase ( self ): '''simple docstring''' print('Sending the following payload' ) print(json.dumps({'blocks': json.loads(self.payload )} ) ) __UpperCamelCase = F'{self.n_failures} failures out of {self.n_tests} tests,' if self.n_failures else 'All tests passed.' __UpperCamelCase = client.chat_postMessage( channel=os.environ['CI_SLACK_CHANNEL_ID_DAILY'] , blocks=self.payload , text=__UpperCAmelCase , ) def UpperCAmelCase ( self , __UpperCAmelCase , __UpperCAmelCase , __UpperCAmelCase , __UpperCAmelCase ): '''simple docstring''' __UpperCamelCase = '' for key, value in failures.items(): __UpperCamelCase = value[:200] + ' [Truncated]' if len(__UpperCAmelCase ) > 250 else value failures_text += F'*{key}*\n_{value}_\n\n' __UpperCamelCase = job_name __UpperCamelCase = {'type': 'section', 'text': {'type': 'mrkdwn', 'text': text}} if job_link is not None: __UpperCamelCase = { 'type': 'button', 'text': {'type': 'plain_text', 'text': 'GitHub Action job', 'emoji': True}, 'url': job_link, } return [ {"type": "header", "text": {"type": "plain_text", "text": title.upper(), "emoji": True}}, content, {"type": "section", "text": {"type": "mrkdwn", "text": failures_text}}, ] def UpperCAmelCase ( self ): '''simple docstring''' if self.thread_ts is None: raise ValueError('Can only post reply if a post has been made.' ) __UpperCamelCase = self.doc_test_results.pop('job_link' ) self.doc_test_results.pop('failures' ) self.doc_test_results.pop('success' ) self.doc_test_results.pop('time_spent' ) __UpperCamelCase = sorted(self.doc_test_results.items() , key=lambda __UpperCAmelCase : t[0] ) for job, job_result in sorted_dict: if len(job_result['failures'] ): __UpperCamelCase = F'*Num failures* :{len(job_result["failed"] )} \n' __UpperCamelCase = job_result['failures'] __UpperCamelCase = self.get_reply_blocks(__UpperCAmelCase , __UpperCAmelCase , __UpperCAmelCase , text=__UpperCAmelCase ) print('Sending the following reply' ) print(json.dumps({'blocks': blocks} ) ) client.chat_postMessage( channel=os.environ['CI_SLACK_CHANNEL_ID_DAILY'] , text=F'Results for {job}' , blocks=__UpperCAmelCase , thread_ts=self.thread_ts['ts'] , ) time.sleep(1 ) def A ( ) -> int: __UpperCamelCase = os.environ['GITHUB_RUN_ID'] __UpperCamelCase = f'https://api.github.com/repos/huggingface/transformers/actions/runs/{run_id}/jobs?per_page=100' __UpperCamelCase = requests.get(snake_case ).json() __UpperCamelCase = {} try: jobs.update({job['name']: job['html_url'] for job in result['jobs']} ) __UpperCamelCase = math.ceil((result['total_count'] - 1_0_0) / 1_0_0 ) for i in range(snake_case ): __UpperCamelCase = requests.get(url + f'&page={i + 2}' ).json() jobs.update({job['name']: job['html_url'] for job in result['jobs']} ) return jobs except Exception as e: print('Unknown error, could not fetch links.' , snake_case ) return {} def A ( snake_case :str ) -> Union[str, Any]: __UpperCamelCase = {} if os.path.exists(snake_case ): __UpperCamelCase = os.listdir(snake_case ) for file in files: try: with open(os.path.join(snake_case , snake_case ) , encoding='utf-8' ) as f: __UpperCamelCase = f.read() except UnicodeDecodeError as e: raise ValueError(f'Could not open {os.path.join(snake_case , snake_case )}.' ) from e return _artifact def A ( ) -> List[Any]: class __lowerCAmelCase : def __init__( self , __UpperCAmelCase ): '''simple docstring''' __UpperCamelCase = name __UpperCamelCase = [] def __str__( self ): '''simple docstring''' return self.name def UpperCAmelCase ( self , __UpperCAmelCase ): '''simple docstring''' self.paths.append({'name': self.name, 'path': path} ) __UpperCamelCase = {} __UpperCamelCase = filter(os.path.isdir , os.listdir() ) for directory in directories: __UpperCamelCase = directory if artifact_name not in _available_artifacts: __UpperCamelCase = Artifact(snake_case ) _available_artifacts[artifact_name].add_path(snake_case ) return _available_artifacts if __name__ == "__main__": UpperCamelCase : Optional[int] = get_job_links() UpperCamelCase : List[str] = retrieve_available_artifacts() UpperCamelCase : Optional[Any] = collections.OrderedDict( [ ("*.py", "API Examples"), ("*.md", "MD Examples"), ] ) # This dict will contain all the information relative to each doc test category: # - failed: list of failed tests # - failures: dict in the format 'test': 'error_message' UpperCamelCase : Optional[Any] = { v: { "failed": [], "failures": {}, } for v in docs.values() } # Link to the GitHub Action job UpperCamelCase : Optional[Any] = github_actions_job_links.get("run_doctests") UpperCamelCase : int = available_artifacts["doc_tests_gpu_test_reports"].paths[0] UpperCamelCase : Optional[Any] = retrieve_artifact(artifact_path["name"]) if "stats" in artifact: UpperCamelCase , UpperCamelCase , UpperCamelCase : List[Any] = handle_test_results(artifact["stats"]) UpperCamelCase : Optional[Any] = failed UpperCamelCase : List[str] = success UpperCamelCase : Optional[Any] = time_spent[1:-1] + ", " UpperCamelCase : str = extract_first_line_failure(artifact["failures_short"]) for line in artifact["summary_short"].split("\n"): if re.search("FAILED", line): UpperCamelCase : Union[str, Any] = line.replace("FAILED ", "") UpperCamelCase : str = line.split()[0].replace("\n", "") if "::" in line: UpperCamelCase , UpperCamelCase : int = line.split("::") else: UpperCamelCase , UpperCamelCase : Union[str, Any] = line, line for file_regex in docs.keys(): if fnmatch(file_path, file_regex): UpperCamelCase : Tuple = docs[file_regex] doc_test_results[category]["failed"].append(test) UpperCamelCase : List[str] = all_failures[test] if test in all_failures else "N/A" UpperCamelCase : Dict = failure break UpperCamelCase : List[Any] = Message("🤗 Results of the doc tests.", doc_test_results) message.post() message.post_reply()
263
"""simple docstring""" from math import isqrt def A ( snake_case :int ) -> list[int]: __UpperCamelCase = [True] * max_number for i in range(2 , isqrt(max_number - 1 ) + 1 ): if is_prime[i]: for j in range(i**2 , snake_case , snake_case ): __UpperCamelCase = False return [i for i in range(2 , snake_case ) if is_prime[i]] def A ( snake_case :int = 1_0**8 ) -> int: __UpperCamelCase = calculate_prime_numbers(max_number // 2 ) __UpperCamelCase = 0 __UpperCamelCase = 0 __UpperCamelCase = len(snake_case ) - 1 while left <= right: while prime_numbers[left] * prime_numbers[right] >= max_number: right -= 1 semiprimes_count += right - left + 1 left += 1 return semiprimes_count if __name__ == "__main__": print(f'''{solution() = }''')
263
1
def A__ ( __lowerCamelCase = 10_00 ): return sum(2 * a * ((a - 1) // 2) for a in range(3, n + 1 ) ) if __name__ == "__main__": print(solution())
299
def A__ ( __lowerCamelCase = 10_00 ): SCREAMING_SNAKE_CASE_ = 2**power SCREAMING_SNAKE_CASE_ = 0 while n: SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ = r + n % 10, n // 10 return r if __name__ == "__main__": print(solution(int(str(input()).strip())))
299
1
from __future__ import absolute_import, division, print_function, unicode_literals from torch import nn from torch.nn import CrossEntropyLoss, MSELoss from transformers import RobertaConfig from transformers.file_utils import add_start_docstrings, add_start_docstrings_to_model_forward from transformers.models.roberta.modeling_roberta import ( ROBERTA_INPUTS_DOCSTRING, ROBERTA_START_DOCSTRING, RobertaEmbeddings, ) from .modeling_highway_bert import BertPreTrainedModel, DeeBertModel, HighwayException, entropy @add_start_docstrings( """The RoBERTa Model transformer with early exiting (DeeRoBERTa). """ , UpperCamelCase_ , ) class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = RobertaConfig UpperCamelCase_ = """roberta""" def __init__( self : List[Any] , UpperCamelCase__ : List[Any] ): '''simple docstring''' super().__init__(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Dict = RobertaEmbeddings(UpperCamelCase__ ) self.init_weights() @add_start_docstrings( """RoBERTa Model (with early exiting - DeeRoBERTa) with a classifier on top, also takes care of multi-layer training. """ , UpperCamelCase_ , ) class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = RobertaConfig UpperCamelCase_ = """roberta""" def __init__( self : Union[str, Any] , UpperCamelCase__ : Dict ): '''simple docstring''' super().__init__(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : int = config.num_labels SCREAMING_SNAKE_CASE : int = config.num_hidden_layers SCREAMING_SNAKE_CASE : Any = DeeRobertaModel(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Optional[int] = nn.Dropout(config.hidden_dropout_prob ) SCREAMING_SNAKE_CASE : str = nn.Linear(config.hidden_size , self.config.num_labels ) @add_start_docstrings_to_model_forward(UpperCamelCase__ ) def __A ( self : Union[str, Any] , UpperCamelCase__ : str=None , UpperCamelCase__ : Optional[Any]=None , UpperCamelCase__ : Optional[int]=None , UpperCamelCase__ : Any=None , UpperCamelCase__ : Tuple=None , UpperCamelCase__ : Optional[int]=None , UpperCamelCase__ : Optional[int]=None , UpperCamelCase__ : int=-1 , UpperCamelCase__ : List[str]=False , ): '''simple docstring''' SCREAMING_SNAKE_CASE : Optional[int] = self.num_layers try: SCREAMING_SNAKE_CASE : str = self.roberta( UpperCamelCase__ , attention_mask=UpperCamelCase__ , token_type_ids=UpperCamelCase__ , position_ids=UpperCamelCase__ , head_mask=UpperCamelCase__ , inputs_embeds=UpperCamelCase__ , ) SCREAMING_SNAKE_CASE : int = outputs[1] SCREAMING_SNAKE_CASE : int = self.dropout(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Optional[int] = self.classifier(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Union[str, Any] = (logits,) + outputs[2:] # add hidden states and attention if they are here except HighwayException as e: SCREAMING_SNAKE_CASE : Optional[int] = e.message SCREAMING_SNAKE_CASE : str = e.exit_layer SCREAMING_SNAKE_CASE : Tuple = outputs[0] if not self.training: SCREAMING_SNAKE_CASE : int = entropy(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Tuple = [] SCREAMING_SNAKE_CASE : Dict = [] if labels is not None: if self.num_labels == 1: # We are doing regression SCREAMING_SNAKE_CASE : Union[str, Any] = MSELoss() SCREAMING_SNAKE_CASE : Any = loss_fct(logits.view(-1 ) , labels.view(-1 ) ) else: SCREAMING_SNAKE_CASE : Dict = CrossEntropyLoss() SCREAMING_SNAKE_CASE : List[Any] = loss_fct(logits.view(-1 , self.num_labels ) , labels.view(-1 ) ) # work with highway exits SCREAMING_SNAKE_CASE : Dict = [] for highway_exit in outputs[-1]: SCREAMING_SNAKE_CASE : Tuple = highway_exit[0] if not self.training: highway_logits_all.append(UpperCamelCase__ ) highway_entropy.append(highway_exit[2] ) if self.num_labels == 1: # We are doing regression SCREAMING_SNAKE_CASE : Optional[int] = MSELoss() SCREAMING_SNAKE_CASE : Tuple = loss_fct(highway_logits.view(-1 ) , labels.view(-1 ) ) else: SCREAMING_SNAKE_CASE : Optional[int] = CrossEntropyLoss() SCREAMING_SNAKE_CASE : int = loss_fct(highway_logits.view(-1 , self.num_labels ) , labels.view(-1 ) ) highway_losses.append(UpperCamelCase__ ) if train_highway: SCREAMING_SNAKE_CASE : Any = (sum(highway_losses[:-1] ),) + outputs # exclude the final highway, of course else: SCREAMING_SNAKE_CASE : Optional[int] = (loss,) + outputs if not self.training: SCREAMING_SNAKE_CASE : int = outputs + ((original_entropy, highway_entropy), exit_layer) if output_layer >= 0: SCREAMING_SNAKE_CASE : Optional[Any] = ( (outputs[0],) + (highway_logits_all[output_layer],) + outputs[2:] ) # use the highway of the last layer return outputs # (loss), logits, (hidden_states), (attentions), entropy
258
import os from typing import List, Optional, Union from ...tokenization_utils import PreTrainedTokenizer from ...tokenization_utils_base import AddedToken from ...utils import logging __UpperCamelCase : Any = logging.get_logger(__name__) __UpperCamelCase : Tuple = {'vocab_file': 'vocab.txt'} __UpperCamelCase : Tuple = { 'vocab_file': { 'facebook/esm2_t6_8M_UR50D': 'https://huggingface.co/facebook/esm2_t6_8M_UR50D/resolve/main/vocab.txt', 'facebook/esm2_t12_35M_UR50D': 'https://huggingface.co/facebook/esm2_t12_35M_UR50D/resolve/main/vocab.txt', }, } __UpperCamelCase : Union[str, Any] = { 'facebook/esm2_t6_8M_UR50D': 1024, 'facebook/esm2_t12_35M_UR50D': 1024, } def A ( _lowercase ): with open(_lowercase , '''r''' ) as f: SCREAMING_SNAKE_CASE : Optional[int] = f.read().splitlines() return [l.strip() for l in lines] class lowercase__ ( UpperCamelCase_): UpperCamelCase_ = VOCAB_FILES_NAMES UpperCamelCase_ = PRETRAINED_VOCAB_FILES_MAP UpperCamelCase_ = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES UpperCamelCase_ = ["""input_ids""", """attention_mask"""] def __init__( self : str , UpperCamelCase__ : List[str] , UpperCamelCase__ : Tuple="<unk>" , UpperCamelCase__ : Union[str, Any]="<cls>" , UpperCamelCase__ : Dict="<pad>" , UpperCamelCase__ : str="<mask>" , UpperCamelCase__ : Any="<eos>" , **UpperCamelCase__ : int , ): '''simple docstring''' super().__init__(**UpperCamelCase__ ) SCREAMING_SNAKE_CASE : Union[str, Any] = load_vocab_file(UpperCamelCase__ ) SCREAMING_SNAKE_CASE : int = dict(enumerate(self.all_tokens ) ) SCREAMING_SNAKE_CASE : List[Any] = {tok: ind for ind, tok in enumerate(self.all_tokens )} SCREAMING_SNAKE_CASE : Union[str, Any] = unk_token SCREAMING_SNAKE_CASE : Any = cls_token SCREAMING_SNAKE_CASE : List[str] = pad_token SCREAMING_SNAKE_CASE : List[str] = mask_token SCREAMING_SNAKE_CASE : Any = eos_token SCREAMING_SNAKE_CASE : List[str] = self.all_tokens self._create_trie(self.unique_no_split_tokens ) def __A ( self : Union[str, Any] , UpperCamelCase__ : int ): '''simple docstring''' return self._id_to_token.get(UpperCamelCase__ , self.unk_token ) def __A ( self : Dict , UpperCamelCase__ : str ): '''simple docstring''' return self._token_to_id.get(UpperCamelCase__ , self._token_to_id.get(self.unk_token ) ) def __A ( self : List[Any] , UpperCamelCase__ : Union[str, Any] , **UpperCamelCase__ : List[Any] ): '''simple docstring''' return text.split() def __A ( self : List[str] , UpperCamelCase__ : Dict=False ): '''simple docstring''' return len(self._id_to_token ) def __A ( self : Optional[Any] ): '''simple docstring''' return {token: i for i, token in enumerate(self.all_tokens )} def __A ( self : Union[str, Any] , UpperCamelCase__ : str ): '''simple docstring''' return self._token_to_id.get(UpperCamelCase__ , self._token_to_id.get(self.unk_token ) ) def __A ( self : List[str] , UpperCamelCase__ : int ): '''simple docstring''' return self._id_to_token.get(UpperCamelCase__ , self.unk_token ) def __A ( self : str , UpperCamelCase__ : List[int] , UpperCamelCase__ : Optional[List[int]] = None ): '''simple docstring''' SCREAMING_SNAKE_CASE : str = [self.cls_token_id] SCREAMING_SNAKE_CASE : List[str] = [self.eos_token_id] # No sep token in ESM vocabulary if token_ids_a is None: if self.eos_token_id is None: return cls + token_ids_a else: return cls + token_ids_a + sep elif self.eos_token_id is None: raise ValueError('''Cannot tokenize multiple sequences when EOS token is not set!''' ) return cls + token_ids_a + sep + token_ids_a + sep # Multiple inputs always have an EOS token def __A ( self : Union[str, Any] , UpperCamelCase__ : List , UpperCamelCase__ : Optional[List] = None , UpperCamelCase__ : bool = False ): '''simple docstring''' if already_has_special_tokens: if token_ids_a is not None: raise ValueError( '''You should not supply a second sequence if the provided sequence of ''' '''ids is already formatted with special tokens for the model.''' ) return [1 if token in self.all_special_ids else 0 for token in token_ids_a] SCREAMING_SNAKE_CASE : List[str] = [1] + ([0] * len(UpperCamelCase__ )) + [1] if token_ids_a is not None: mask += [0] * len(UpperCamelCase__ ) + [1] return mask def __A ( self : int , UpperCamelCase__ : List[Any] , UpperCamelCase__ : List[str] ): '''simple docstring''' SCREAMING_SNAKE_CASE : str = os.path.join(UpperCamelCase__ , (filename_prefix + '''-''' if filename_prefix else '''''') + '''vocab.txt''' ) with open(UpperCamelCase__ , '''w''' ) as f: f.write('''\n'''.join(self.all_tokens ) ) return (vocab_file,) @property def __A ( self : Dict ): '''simple docstring''' return self.get_vocab_size(with_added_tokens=UpperCamelCase__ ) def __A ( self : str , UpperCamelCase__ : Union[List[str], List[AddedToken]] , UpperCamelCase__ : bool = False ): '''simple docstring''' return super()._add_tokens(UpperCamelCase__ , special_tokens=UpperCamelCase__ )
258
1
import warnings from ...utils import logging from .image_processing_beit import BeitImageProcessor __UpperCAmelCase = logging.get_logger(__name__) class UpperCamelCase__ ( __SCREAMING_SNAKE_CASE ): """simple docstring""" def __init__( self , *_A , **_A ) -> None: warnings.warn( '''The class BeitFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please''' ''' use BeitImageProcessor instead.''' , _A , ) super().__init__(*_A , **_A )
299
import math import random def A__ ( __lowerCamelCase, __lowerCamelCase = False ): if deriv: return value * (1 - value) return 1 / (1 + math.exp(-value )) # Initial Value __UpperCAmelCase = 0.02 def A__ ( __lowerCamelCase, __lowerCamelCase ): SCREAMING_SNAKE_CASE_ = float(2 * (random.randint(1, 1_00 )) - 1 ) for _ in range(__lowerCamelCase ): # Forward propagation SCREAMING_SNAKE_CASE_ = sigmoid_function(INITIAL_VALUE * weight ) # How much did we miss? SCREAMING_SNAKE_CASE_ = (expected / 1_00) - layer_a # Error delta SCREAMING_SNAKE_CASE_ = layer_1_error * sigmoid_function(__lowerCamelCase, __lowerCamelCase ) # Update weight weight += INITIAL_VALUE * layer_1_delta return layer_a * 1_00 if __name__ == "__main__": import doctest doctest.testmod() __UpperCAmelCase = int(input("Expected value: ")) __UpperCAmelCase = int(input("Number of propagations: ")) print(forward_propagation(expected, number_propagations))
299
1
'''simple docstring''' from __future__ import annotations class lowercase : """simple docstring""" def __init__( self ,a_ ,a_ ) -> str: _UpperCAmelCase ,_UpperCAmelCase : List[str] = text, pattern _UpperCAmelCase ,_UpperCAmelCase : List[str] = len(__SCREAMING_SNAKE_CASE ), len(__SCREAMING_SNAKE_CASE ) def _snake_case ( self ,a_ ) -> int: for i in range(self.patLen - 1 ,-1 ,-1 ): if char == self.pattern[i]: return i return -1 def _snake_case ( self ,a_ ) -> Any: for i in range(self.patLen - 1 ,-1 ,-1 ): if self.pattern[i] != self.text[current_pos + i]: return current_pos + i return -1 def _snake_case ( self ) -> Tuple: # searches pattern in text and returns index positions _UpperCAmelCase : Optional[Any] = [] for i in range(self.textLen - self.patLen + 1 ): _UpperCAmelCase : Tuple = self.mismatch_in_text(__SCREAMING_SNAKE_CASE ) if mismatch_index == -1: positions.append(__SCREAMING_SNAKE_CASE ) else: _UpperCAmelCase : str = self.match_in_pattern(self.text[mismatch_index] ) _UpperCAmelCase : Dict = ( mismatch_index - match_index ) # shifting index lgtm [py/multiple-definition] return positions A_ : int = 'ABAABA' A_ : Optional[Any] = 'AB' A_ : Any = BoyerMooreSearch(text, pattern) A_ : Any = bms.bad_character_heuristic() if len(positions) == 0: print("""No match found""") else: print("""Pattern found in following positions: """) print(positions)
363
'''simple docstring''' import math def snake_case_ ( lowerCAmelCase_ , lowerCAmelCase_ )-> int: '''simple docstring''' _UpperCAmelCase : str = len(lowerCAmelCase_ ) _UpperCAmelCase : List[str] = int(math.floor(math.sqrt(lowerCAmelCase_ ) ) ) _UpperCAmelCase : int = 0 while arr[min(lowerCAmelCase_ , lowerCAmelCase_ ) - 1] < x: _UpperCAmelCase : Optional[int] = step step += int(math.floor(math.sqrt(lowerCAmelCase_ ) ) ) if prev >= n: return -1 while arr[prev] < x: _UpperCAmelCase : List[Any] = prev + 1 if prev == min(lowerCAmelCase_ , lowerCAmelCase_ ): return -1 if arr[prev] == x: return prev return -1 if __name__ == "__main__": A_ : str = input("""Enter numbers separated by a comma:\n""").strip() A_ : Union[str, Any] = [int(item) for item in user_input.split(""",""")] A_ : int = int(input("""Enter the number to be searched:\n""")) A_ : Any = jump_search(arr, x) if res == -1: print("""Number not found!""") else: print(f"""Number {x} is at index {res}""")
349
0
import numpy as np from matplotlib import pyplot as plt from sklearn.datasets import load_iris from sklearn.metrics import ConfusionMatrixDisplay from sklearn.model_selection import train_test_split from xgboost import XGBClassifier def lowerCamelCase_ ( UpperCamelCase__ : dict ) -> tuple: """simple docstring""" return (data["data"], data["target"]) def lowerCamelCase_ ( UpperCamelCase__ : np.ndarray , UpperCamelCase__ : np.ndarray ) -> XGBClassifier: """simple docstring""" __lowerCamelCase = XGBClassifier() classifier.fit(_UpperCAmelCase , _UpperCAmelCase ) return classifier def lowerCamelCase_ ( ) -> None: """simple docstring""" __lowerCamelCase = load_iris() __lowerCamelCase = data_handling(_UpperCAmelCase ) __lowerCamelCase = train_test_split( _UpperCAmelCase , _UpperCAmelCase , test_size=0.25 ) __lowerCamelCase = iris["target_names"] # Create an XGBoost Classifier from the training data __lowerCamelCase = xgboost(_UpperCAmelCase , _UpperCAmelCase ) # Display the confusion matrix of the classifier with both training and test sets ConfusionMatrixDisplay.from_estimator( _UpperCAmelCase , _UpperCAmelCase , _UpperCAmelCase , display_labels=_UpperCAmelCase , cmap='Blues' , normalize='true' , ) plt.title('Normalized Confusion Matrix - IRIS Dataset' ) plt.show() if __name__ == "__main__": import doctest doctest.testmod(verbose=True) main()
90
'''simple docstring''' import math from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import SchedulerMixin, SchedulerOutput class lowerCamelCase_ (snake_case__ , snake_case__ ): '''simple docstring''' __UpperCamelCase: Optional[Any] = 1 @register_to_config def __init__( self : Optional[int] , A : int = 1000 , A : Optional[Union[np.ndarray, List[float]]] = None ): # set `betas`, `alphas`, `timesteps` self.set_timesteps(A ) # standard deviation of the initial noise distribution _UpperCAmelCase : int = 1.0 # For now we only support F-PNDM, i.e. the runge-kutta method # For more information on the algorithm please take a look at the paper: https://arxiv.org/pdf/2202.09778.pdf # mainly at formula (9), (12), (13) and the Algorithm 2. _UpperCAmelCase : int = 4 # running values _UpperCAmelCase : Dict = [] def _A ( self : Optional[int] , A : int , A : Union[str, torch.device] = None ): _UpperCAmelCase : int = num_inference_steps _UpperCAmelCase : Union[str, Any] = torch.linspace(1 , 0 , num_inference_steps + 1 )[:-1] _UpperCAmelCase : Any = torch.cat([steps, torch.tensor([0.0] )] ) if self.config.trained_betas is not None: _UpperCAmelCase : str = torch.tensor(self.config.trained_betas , dtype=torch.floataa ) else: _UpperCAmelCase : Dict = torch.sin(steps * math.pi / 2 ) ** 2 _UpperCAmelCase : List[Any] = (1.0 - self.betas**2) ** 0.5 _UpperCAmelCase : List[str] = (torch.atana(self.betas , self.alphas ) / math.pi * 2)[:-1] _UpperCAmelCase : Dict = timesteps.to(A ) _UpperCAmelCase : Dict = [] def _A ( self : Optional[int] , A : torch.FloatTensor , A : int , A : torch.FloatTensor , A : bool = True , ): if self.num_inference_steps is None: raise ValueError( "Number of inference steps is 'None', you need to run 'set_timesteps' after creating the scheduler" ) _UpperCAmelCase : Tuple = (self.timesteps == timestep).nonzero().item() _UpperCAmelCase : Optional[Any] = timestep_index + 1 _UpperCAmelCase : int = sample * self.betas[timestep_index] + model_output * self.alphas[timestep_index] self.ets.append(A ) if len(self.ets ) == 1: _UpperCAmelCase : List[Any] = self.ets[-1] elif len(self.ets ) == 2: _UpperCAmelCase : str = (3 * self.ets[-1] - self.ets[-2]) / 2 elif len(self.ets ) == 3: _UpperCAmelCase : Tuple = (23 * self.ets[-1] - 16 * self.ets[-2] + 5 * self.ets[-3]) / 12 else: _UpperCAmelCase : Union[str, Any] = (1 / 24) * (55 * self.ets[-1] - 59 * self.ets[-2] + 37 * self.ets[-3] - 9 * self.ets[-4]) _UpperCAmelCase : Union[str, Any] = self._get_prev_sample(A , A , A , A ) if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=A ) def _A ( self : Union[str, Any] , A : torch.FloatTensor , *A : Union[str, Any] , **A : Dict ): return sample def _A ( self : Optional[Any] , A : Optional[int] , A : int , A : Optional[Any] , A : List[str] ): _UpperCAmelCase : List[str] = self.alphas[timestep_index] _UpperCAmelCase : List[Any] = self.betas[timestep_index] _UpperCAmelCase : Optional[Any] = self.alphas[prev_timestep_index] _UpperCAmelCase : Dict = self.betas[prev_timestep_index] _UpperCAmelCase : Tuple = (sample - sigma * ets) / max(A , 1E-8 ) _UpperCAmelCase : List[str] = next_alpha * pred + ets * next_sigma return prev_sample def __len__( self : Union[str, Any] ): return self.config.num_train_timesteps
31
0
from typing import List, Optional, Union from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding, PaddingStrategy, PreTokenizedInput, TextInput, TruncationStrategy from ...utils import TensorType class _snake_case ( snake_case ): UpperCamelCase__ = ['image_processor', 'tokenizer'] UpperCamelCase__ = 'BridgeTowerImageProcessor' UpperCamelCase__ = ('RobertaTokenizer', 'RobertaTokenizerFast') def __init__( self , _a , _a ): super().__init__(_a , _a ) def __call__( self , _a , _a = None , _a = True , _a = False , _a = None , _a = None , _a = 0 , _a = None , _a = None , _a = None , _a = False , _a = False , _a = False , _a = False , _a = True , _a = None , **_a , ): __magic_name__ : Dict = self.tokenizer( text=_a , add_special_tokens=_a , padding=_a , truncation=_a , max_length=_a , stride=_a , pad_to_multiple_of=_a , return_token_type_ids=_a , return_attention_mask=_a , return_overflowing_tokens=_a , return_special_tokens_mask=_a , return_offsets_mapping=_a , return_length=_a , verbose=_a , return_tensors=_a , **_a , ) # add pixel_values + pixel_mask __magic_name__ : List[str] = self.image_processor( _a , return_tensors=_a , do_normalize=_a , do_center_crop=_a , **_a ) encoding.update(_a ) return encoding def SCREAMING_SNAKE_CASE ( self , *_a , **_a ): return self.tokenizer.batch_decode(*_a , **_a ) def SCREAMING_SNAKE_CASE ( self , *_a , **_a ): return self.tokenizer.decode(*_a , **_a ) @property def SCREAMING_SNAKE_CASE ( self ): __magic_name__ : Dict = self.tokenizer.model_input_names __magic_name__ : Any = self.image_processor.model_input_names return list(dict.fromkeys(tokenizer_input_names + image_processor_input_names ) )
41
from ...configuration_utils import PretrainedConfig from ...utils import logging snake_case : Optional[Any] = logging.get_logger(__name__) snake_case : Union[str, Any] = { "transfo-xl-wt103": "https://huggingface.co/transfo-xl-wt103/resolve/main/config.json", } class _snake_case ( snake_case ): UpperCamelCase__ = 'transfo-xl' UpperCamelCase__ = ['mems'] UpperCamelCase__ = { 'n_token': 'vocab_size', 'hidden_size': 'd_model', 'num_attention_heads': 'n_head', 'num_hidden_layers': 'n_layer', } def __init__( self , _a=267_735 , _a=[20_000, 40_000, 200_000] , _a=1_024 , _a=1_024 , _a=16 , _a=64 , _a=4_096 , _a=4 , _a=False , _a=18 , _a=1_600 , _a=1_000 , _a=True , _a=True , _a=0 , _a=-1 , _a=True , _a=0.1 , _a=0.0 , _a=True , _a="normal" , _a=0.01 , _a=0.01 , _a=0.02 , _a=1e-5 , _a=0 , **_a , ): __magic_name__ : List[Any] = vocab_size __magic_name__ : Dict = [] self.cutoffs.extend(_a ) if proj_share_all_but_first: __magic_name__ : List[str] = [False] + [True] * len(self.cutoffs ) else: __magic_name__ : Optional[Any] = [False] + [False] * len(self.cutoffs ) __magic_name__ : Optional[int] = d_model __magic_name__ : str = d_embed __magic_name__ : Optional[Any] = d_head __magic_name__ : Optional[int] = d_inner __magic_name__ : List[str] = div_val __magic_name__ : List[str] = pre_lnorm __magic_name__ : Union[str, Any] = n_layer __magic_name__ : Optional[int] = n_head __magic_name__ : str = mem_len __magic_name__ : int = same_length __magic_name__ : Dict = attn_type __magic_name__ : int = clamp_len __magic_name__ : Optional[int] = sample_softmax __magic_name__ : List[Any] = adaptive __magic_name__ : Optional[int] = dropout __magic_name__ : Optional[int] = dropatt __magic_name__ : Optional[Any] = untie_r __magic_name__ : List[str] = init __magic_name__ : Any = init_range __magic_name__ : Optional[int] = proj_init_std __magic_name__ : List[Any] = init_std __magic_name__ : List[Any] = layer_norm_epsilon super().__init__(eos_token_id=_a , **_a ) @property def SCREAMING_SNAKE_CASE ( self ): # Message copied from Transformer-XL documentation logger.info(f'''The model {self.model_type} is one of the few models that has no sequence length limit.''' ) return -1 @max_position_embeddings.setter def SCREAMING_SNAKE_CASE ( self , _a ): # Message copied from Transformer-XL documentation raise NotImplementedError( f'''The model {self.model_type} is one of the few models that has no sequence length limit.''' )
41
1
import logging import os import sys from dataclasses import dataclass, field from itertools import chain from typing import Optional, Union import datasets import numpy as np import torch from datasets import load_dataset import transformers from transformers import ( AutoConfig, AutoModelForMultipleChoice, AutoTokenizer, HfArgumentParser, Trainer, TrainingArguments, default_data_collator, set_seed, ) from transformers.tokenization_utils_base import PreTrainedTokenizerBase from transformers.trainer_utils import get_last_checkpoint from transformers.utils import PaddingStrategy, check_min_version, send_example_telemetry # Will error if the minimal version of Transformers is not installed. Remove at your own risks. check_min_version('4.31.0') lowerCAmelCase__ = logging.getLogger(__name__) @dataclass class lowerCAmelCase__ : '''simple docstring''' __SCREAMING_SNAKE_CASE = field( metadata={"help": "Path to pretrained model or model identifier from huggingface.co/models"}) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "Pretrained config name or path if not the same as model_name"}) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "Pretrained tokenizer name or path if not the same as model_name"}) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "Where do you want to store the pretrained models downloaded from huggingface.co"} , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "Whether to use one of the fast tokenizer (backed by the tokenizers library) or not."} , ) __SCREAMING_SNAKE_CASE = field( default="main" , metadata={"help": "The specific model version to use (can be a branch name, tag name or commit id)."} , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={ "help": ( "Will use the token generated when running `huggingface-cli login` (necessary to use this script " "with private models)." ) } , ) @dataclass class lowerCAmelCase__ : '''simple docstring''' __SCREAMING_SNAKE_CASE = field(default=a , metadata={"help": "The input training data file (a text file)."}) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "An optional input evaluation data file to evaluate the perplexity on (a text file)."} , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "Overwrite the cached training and evaluation sets"}) __SCREAMING_SNAKE_CASE = field( default=a , metadata={"help": "The number of processes to use for the preprocessing."} , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={ "help": ( "The maximum total input sequence length after tokenization. If passed, sequences longer " "than this will be truncated, sequences shorter will be padded." ) } , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={ "help": ( "Whether to pad all samples to the maximum sentence length. " "If False, will pad the samples dynamically when batching to the maximum length in the batch. More " "efficient on GPU but very bad for TPU." ) } , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={ "help": ( "For debugging purposes or quicker training, truncate the number of training examples to this " "value if set." ) } , ) __SCREAMING_SNAKE_CASE = field( default=a , metadata={ "help": ( "For debugging purposes or quicker training, truncate the number of evaluation examples to this " "value if set." ) } , ) def _lowerCamelCase ( self) -> int: if self.train_file is not None: _A : Optional[int] = self.train_file.split(".")[-1] assert extension in ["csv", "json"], "`train_file` should be a csv or a json file." if self.validation_file is not None: _A : Dict = self.validation_file.split(".")[-1] assert extension in ["csv", "json"], "`validation_file` should be a csv or a json file." @dataclass class lowerCAmelCase__ : '''simple docstring''' __SCREAMING_SNAKE_CASE = 42 __SCREAMING_SNAKE_CASE = True __SCREAMING_SNAKE_CASE = None __SCREAMING_SNAKE_CASE = None def __call__( self , __lowerCamelCase) -> str: _A : List[Any] = "label" if "label" in features[0].keys() else "labels" _A : Any = [feature.pop(__lowerCamelCase) for feature in features] _A : Optional[int] = len(__lowerCamelCase) _A : int = len(features[0]["input_ids"]) _A : Tuple = [ [{k: v[i] for k, v in feature.items()} for i in range(__lowerCamelCase)] for feature in features ] _A : str = list(chain(*__lowerCamelCase)) _A : Tuple = self.tokenizer.pad( __lowerCamelCase , padding=self.padding , max_length=self.max_length , pad_to_multiple_of=self.pad_to_multiple_of , return_tensors="pt" , ) # Un-flatten _A : Optional[int] = {k: v.view(__lowerCamelCase , __lowerCamelCase , -1) for k, v in batch.items()} # Add back labels _A : Optional[int] = torch.tensor(__lowerCamelCase , dtype=torch.intaa) return batch def _UpperCAmelCase (): # See all possible arguments in src/transformers/training_args.py # or by passing the --help flag to this script. # We now keep distinct sets of args, for a cleaner separation of concerns. _A : int = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments) ) if len(sys.argv ) == 2 and sys.argv[1].endswith(".json" ): # If we pass only one argument to the script and it's the path to a json file, # let's parse it to get our arguments. _A , _A , _A : int = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1] ) ) else: _A , _A , _A : Union[str, Any] = parser.parse_args_into_dataclasses() # Sending telemetry. Tracking the example usage helps us better allocate resources to maintain them. The # information sent is the one passed as arguments along with your Python/PyTorch versions. send_example_telemetry("run_swag" , UpperCamelCase__ , UpperCamelCase__ ) # Setup logging logging.basicConfig( format="%(asctime)s - %(levelname)s - %(name)s - %(message)s" , datefmt="%m/%d/%Y %H:%M:%S" , handlers=[logging.StreamHandler(sys.stdout )] , ) if training_args.should_log: # The default of training_args.log_level is passive, so we set log level at info here to have that default. transformers.utils.logging.set_verbosity_info() _A : int = training_args.get_process_log_level() logger.setLevel(UpperCamelCase__ ) datasets.utils.logging.set_verbosity(UpperCamelCase__ ) transformers.utils.logging.set_verbosity(UpperCamelCase__ ) transformers.utils.logging.enable_default_handler() transformers.utils.logging.enable_explicit_format() # Log on each process the small summary: logger.warning( f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}" + f"distributed training: {bool(training_args.local_rank != -1 )}, 16-bits training: {training_args.fpaa}" ) logger.info(f"Training/evaluation parameters {training_args}" ) # Detecting last checkpoint. _A : List[Any] = None if os.path.isdir(training_args.output_dir ) and training_args.do_train and not training_args.overwrite_output_dir: _A : Optional[int] = get_last_checkpoint(training_args.output_dir ) if last_checkpoint is None and len(os.listdir(training_args.output_dir ) ) > 0: raise ValueError( f"Output directory ({training_args.output_dir}) already exists and is not empty. " "Use --overwrite_output_dir to overcome." ) elif last_checkpoint is not None and training_args.resume_from_checkpoint is None: logger.info( f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change " "the `--output_dir` or add `--overwrite_output_dir` to train from scratch." ) # Set seed before initializing model. set_seed(training_args.seed ) # Get the datasets: you can either provide your own CSV/JSON/TXT training and evaluation files (see below) # or just provide the name of one of the public datasets available on the hub at https://huggingface.co/datasets/ # (the dataset will be downloaded automatically from the datasets Hub). # For CSV/JSON files, this script will use the column called 'text' or the first column if no column called # 'text' is found. You can easily tweak this behavior (see below). # In distributed training, the load_dataset function guarantee that only one local process can concurrently # download the dataset. if data_args.train_file is not None or data_args.validation_file is not None: _A : List[str] = {} if data_args.train_file is not None: _A : Optional[int] = data_args.train_file if data_args.validation_file is not None: _A : Tuple = data_args.validation_file _A : Union[str, Any] = data_args.train_file.split("." )[-1] _A : List[str] = load_dataset( UpperCamelCase__ , data_files=UpperCamelCase__ , cache_dir=model_args.cache_dir , use_auth_token=True if model_args.use_auth_token else None , ) else: # Downloading and loading the swag dataset from the hub. _A : Union[str, Any] = load_dataset( "swag" , "regular" , cache_dir=model_args.cache_dir , use_auth_token=True if model_args.use_auth_token else None , ) # See more about loading any type of standard or custom dataset (from files, python dict, pandas DataFrame, etc) at # https://huggingface.co/docs/datasets/loading_datasets.html. # Load pretrained model and tokenizer # Distributed training: # The .from_pretrained methods guarantee that only one local process can concurrently # download model & vocab. _A : Optional[Any] = AutoConfig.from_pretrained( model_args.config_name if model_args.config_name else model_args.model_name_or_path , cache_dir=model_args.cache_dir , revision=model_args.model_revision , use_auth_token=True if model_args.use_auth_token else None , ) _A : Optional[Any] = AutoTokenizer.from_pretrained( model_args.tokenizer_name if model_args.tokenizer_name else model_args.model_name_or_path , cache_dir=model_args.cache_dir , use_fast=model_args.use_fast_tokenizer , revision=model_args.model_revision , use_auth_token=True if model_args.use_auth_token else None , ) _A : List[Any] = AutoModelForMultipleChoice.from_pretrained( model_args.model_name_or_path , from_tf=bool(".ckpt" in model_args.model_name_or_path ) , config=UpperCamelCase__ , cache_dir=model_args.cache_dir , revision=model_args.model_revision , use_auth_token=True if model_args.use_auth_token else None , ) # When using your own dataset or a different dataset from swag, you will probably need to change this. _A : str = [f"ending{i}" for i in range(4 )] _A : Union[str, Any] = "sent1" _A : str = "sent2" if data_args.max_seq_length is None: _A : Any = tokenizer.model_max_length if max_seq_length > 1024: logger.warning( "The chosen tokenizer supports a `model_max_length` that is longer than the default `block_size` value" " of 1024. If you would like to use a longer `block_size` up to `tokenizer.model_max_length` you can" " override this default with `--block_size xxx`." ) _A : Optional[Any] = 1024 else: if data_args.max_seq_length > tokenizer.model_max_length: logger.warning( f"The max_seq_length passed ({data_args.max_seq_length}) is larger than the maximum length for the" f"model ({tokenizer.model_max_length}). Using max_seq_length={tokenizer.model_max_length}." ) _A : int = min(data_args.max_seq_length , tokenizer.model_max_length ) # Preprocessing the datasets. def preprocess_function(UpperCamelCase__ : List[Any] ): _A : List[Any] = [[context] * 4 for context in examples[context_name]] _A : Any = examples[question_header_name] _A : Union[str, Any] = [ [f"{header} {examples[end][i]}" for end in ending_names] for i, header in enumerate(UpperCamelCase__ ) ] # Flatten out _A : Dict = list(chain(*UpperCamelCase__ ) ) _A : List[Any] = list(chain(*UpperCamelCase__ ) ) # Tokenize _A : str = tokenizer( UpperCamelCase__ , UpperCamelCase__ , truncation=UpperCamelCase__ , max_length=UpperCamelCase__ , padding="max_length" if data_args.pad_to_max_length else False , ) # Un-flatten return {k: [v[i : i + 4] for i in range(0 , len(UpperCamelCase__ ) , 4 )] for k, v in tokenized_examples.items()} if training_args.do_train: if "train" not in raw_datasets: raise ValueError("--do_train requires a train dataset" ) _A : Optional[int] = raw_datasets["train"] if data_args.max_train_samples is not None: _A : Union[str, Any] = min(len(UpperCamelCase__ ) , data_args.max_train_samples ) _A : Any = train_dataset.select(range(UpperCamelCase__ ) ) with training_args.main_process_first(desc="train dataset map pre-processing" ): _A : Optional[int] = train_dataset.map( UpperCamelCase__ , batched=UpperCamelCase__ , num_proc=data_args.preprocessing_num_workers , load_from_cache_file=not data_args.overwrite_cache , ) if training_args.do_eval: if "validation" not in raw_datasets: raise ValueError("--do_eval requires a validation dataset" ) _A : Optional[int] = raw_datasets["validation"] if data_args.max_eval_samples is not None: _A : str = min(len(UpperCamelCase__ ) , data_args.max_eval_samples ) _A : Dict = eval_dataset.select(range(UpperCamelCase__ ) ) with training_args.main_process_first(desc="validation dataset map pre-processing" ): _A : List[str] = eval_dataset.map( UpperCamelCase__ , batched=UpperCamelCase__ , num_proc=data_args.preprocessing_num_workers , load_from_cache_file=not data_args.overwrite_cache , ) # Data collator _A : str = ( default_data_collator if data_args.pad_to_max_length else DataCollatorForMultipleChoice(tokenizer=UpperCamelCase__ , pad_to_multiple_of=8 if training_args.fpaa else None ) ) # Metric def compute_metrics(UpperCamelCase__ : Tuple ): _A , _A : List[str] = eval_predictions _A : Optional[int] = np.argmax(UpperCamelCase__ , axis=1 ) return {"accuracy": (preds == label_ids).astype(np.floataa ).mean().item()} # Initialize our Trainer _A : List[str] = Trainer( model=UpperCamelCase__ , args=UpperCamelCase__ , train_dataset=train_dataset if training_args.do_train else None , eval_dataset=eval_dataset if training_args.do_eval else None , tokenizer=UpperCamelCase__ , data_collator=UpperCamelCase__ , compute_metrics=UpperCamelCase__ , ) # Training if training_args.do_train: _A : Any = None if training_args.resume_from_checkpoint is not None: _A : Optional[int] = training_args.resume_from_checkpoint elif last_checkpoint is not None: _A : int = last_checkpoint _A : Any = trainer.train(resume_from_checkpoint=UpperCamelCase__ ) trainer.save_model() # Saves the tokenizer too for easy upload _A : Optional[int] = train_result.metrics _A : Tuple = ( data_args.max_train_samples if data_args.max_train_samples is not None else len(UpperCamelCase__ ) ) _A : Tuple = min(UpperCamelCase__ , len(UpperCamelCase__ ) ) trainer.log_metrics("train" , UpperCamelCase__ ) trainer.save_metrics("train" , UpperCamelCase__ ) trainer.save_state() # Evaluation if training_args.do_eval: logger.info("*** Evaluate ***" ) _A : List[Any] = trainer.evaluate() _A : int = data_args.max_eval_samples if data_args.max_eval_samples is not None else len(UpperCamelCase__ ) _A : Optional[Any] = min(UpperCamelCase__ , len(UpperCamelCase__ ) ) trainer.log_metrics("eval" , UpperCamelCase__ ) trainer.save_metrics("eval" , UpperCamelCase__ ) _A : Tuple = { "finetuned_from": model_args.model_name_or_path, "tasks": "multiple-choice", "dataset_tags": "swag", "dataset_args": "regular", "dataset": "SWAG", "language": "en", } if training_args.push_to_hub: trainer.push_to_hub(**UpperCamelCase__ ) else: trainer.create_model_card(**UpperCamelCase__ ) def _UpperCAmelCase (UpperCamelCase__ : Optional[int] ): # For xla_spawn (TPUs) main() if __name__ == "__main__": main()
11
from __future__ import annotations def _UpperCAmelCase (UpperCamelCase__ : list[int] , UpperCamelCase__ : list[int] , UpperCamelCase__ : int ): _A : Dict = list(range(len(UpperCamelCase__ ) ) ) _A : Any = [v / w for v, w in zip(UpperCamelCase__ , UpperCamelCase__ )] index.sort(key=lambda UpperCamelCase__ : ratio[i] , reverse=UpperCamelCase__ ) _A : float = 0 _A : list[float] = [0] * len(UpperCamelCase__ ) for i in index: if weight[i] <= capacity: _A : Union[str, Any] = 1 max_value += value[i] capacity -= weight[i] else: _A : Optional[Any] = capacity / weight[i] max_value += value[i] * capacity / weight[i] break return max_value, fractions if __name__ == "__main__": import doctest doctest.testmod()
11
1
"""simple docstring""" import sys from collections import defaultdict class _UpperCAmelCase : def __init__( self : str ): __UpperCAmelCase = [] def a ( self : List[Any] , _lowercase : List[Any] ): return self.node_position[vertex] def a ( self : List[Any] , _lowercase : List[Any] , _lowercase : str ): __UpperCAmelCase = pos def a ( self : Dict , _lowercase : str , _lowercase : Optional[Any] , _lowercase : int , _lowercase : int ): if start > size // 2 - 1: return else: if 2 * start + 2 >= size: __UpperCAmelCase = 2 * start + 1 else: if heap[2 * start + 1] < heap[2 * start + 2]: __UpperCAmelCase = 2 * start + 1 else: __UpperCAmelCase = 2 * start + 2 if heap[smallest_child] < heap[start]: __UpperCAmelCase , __UpperCAmelCase = heap[smallest_child], positions[smallest_child] __UpperCAmelCase , __UpperCAmelCase = ( heap[start], positions[start], ) __UpperCAmelCase , __UpperCAmelCase = temp, tempa __UpperCAmelCase = self.get_position(positions[smallest_child] ) self.set_position( positions[smallest_child] , self.get_position(positions[start] ) ) self.set_position(positions[start] , _lowercase ) self.top_to_bottom(_lowercase , _lowercase , _lowercase , _lowercase ) def a ( self : List[str] , _lowercase : int , _lowercase : Union[str, Any] , _lowercase : str , _lowercase : Tuple ): __UpperCAmelCase = position[index] while index != 0: __UpperCAmelCase = int((index - 2) / 2 ) if index % 2 == 0 else int((index - 1) / 2 ) if val < heap[parent]: __UpperCAmelCase = heap[parent] __UpperCAmelCase = position[parent] self.set_position(position[parent] , _lowercase ) else: __UpperCAmelCase = val __UpperCAmelCase = temp self.set_position(_lowercase , _lowercase ) break __UpperCAmelCase = parent else: __UpperCAmelCase = val __UpperCAmelCase = temp self.set_position(_lowercase , 0 ) def a ( self : Union[str, Any] , _lowercase : str , _lowercase : Tuple ): __UpperCAmelCase = len(_lowercase ) // 2 - 1 for i in range(_lowercase , -1 , -1 ): self.top_to_bottom(_lowercase , _lowercase , len(_lowercase ) , _lowercase ) def a ( self : Tuple , _lowercase : Any , _lowercase : int ): __UpperCAmelCase = positions[0] __UpperCAmelCase = sys.maxsize self.top_to_bottom(_lowercase , 0 , len(_lowercase ) , _lowercase ) return temp def lowercase__ ( snake_case_ :Any ): __UpperCAmelCase = Heap() __UpperCAmelCase = [0] * len(snake_case_ ) __UpperCAmelCase = [-1] * len(snake_case_ ) # Neighboring Tree Vertex of selected vertex # Minimum Distance of explored vertex with neighboring vertex of partial tree # formed in graph __UpperCAmelCase = [] # Heap of Distance of vertices from their neighboring vertex __UpperCAmelCase = [] for vertex in range(len(snake_case_ ) ): distance_tv.append(sys.maxsize ) positions.append(snake_case_ ) heap.node_position.append(snake_case_ ) __UpperCAmelCase = [] __UpperCAmelCase = 1 __UpperCAmelCase = sys.maxsize for neighbor, distance in adjacency_list[0]: __UpperCAmelCase = 0 __UpperCAmelCase = distance heap.heapify(snake_case_ , snake_case_ ) for _ in range(1 , len(snake_case_ ) ): __UpperCAmelCase = heap.delete_minimum(snake_case_ , snake_case_ ) if visited[vertex] == 0: tree_edges.append((nbr_tv[vertex], vertex) ) __UpperCAmelCase = 1 for neighbor, distance in adjacency_list[vertex]: if ( visited[neighbor] == 0 and distance < distance_tv[heap.get_position(snake_case_ )] ): __UpperCAmelCase = distance heap.bottom_to_top( snake_case_ , heap.get_position(snake_case_ ) , snake_case_ , snake_case_ ) __UpperCAmelCase = vertex return tree_edges if __name__ == "__main__": # pragma: no cover # < --------- Prims Algorithm --------- > _lowercase : str = int(input('Enter number of edges: ').strip()) _lowercase : Union[str, Any] = defaultdict(list) for _ in range(edges_number): _lowercase : Union[str, Any] = [int(x) for x in input().strip().split()] adjacency_list[edge[0]].append([edge[1], edge[2]]) adjacency_list[edge[1]].append([edge[0], edge[2]]) print(prisms_algorithm(adjacency_list))
86
"""simple docstring""" from ...utils import ( OptionalDependencyNotAvailable, is_torch_available, is_transformers_available, is_transformers_version, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import ( ImageTextPipelineOutput, UniDiffuserPipeline, ) else: from .modeling_text_decoder import UniDiffuserTextDecoder from .modeling_uvit import UniDiffuserModel, UTransformeraDModel from .pipeline_unidiffuser import ImageTextPipelineOutput, UniDiffuserPipeline
86
1
from typing import Optional import torch import torch.utils.checkpoint from torch import Tensor, nn from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss from ...activations import ACTaFN from ...modeling_outputs import ( BackboneOutput, BaseModelOutputWithNoAttention, BaseModelOutputWithPoolingAndNoAttention, ImageClassifierOutputWithNoAttention, ) from ...modeling_utils import PreTrainedModel from ...utils import ( add_code_sample_docstrings, add_start_docstrings, add_start_docstrings_to_model_forward, logging, replace_return_docstrings, ) from ...utils.backbone_utils import BackboneMixin from .configuration_resnet import ResNetConfig _snake_case = logging.get_logger(__name__) # General docstring _snake_case = "ResNetConfig" # Base docstring _snake_case = "microsoft/resnet-50" _snake_case = [1, 2048, 7, 7] # Image classification docstring _snake_case = "microsoft/resnet-50" _snake_case = "tiger cat" _snake_case = [ "microsoft/resnet-50", # See all resnet models at https://huggingface.co/models?filter=resnet ] class UpperCAmelCase_ ( nn.Module): def __init__( self, __a, __a, __a = 3, __a = 1, __a = "relu"): '''simple docstring''' super().__init__() _lowerCAmelCase : Optional[Any] = nn.Convad( __a, __a, kernel_size=__a, stride=__a, padding=kernel_size // 2, bias=__a) _lowerCAmelCase : List[Any] = nn.BatchNormad(__a) _lowerCAmelCase : Optional[Any] = ACTaFN[activation] if activation is not None else nn.Identity() def snake_case__ ( self, __a): '''simple docstring''' _lowerCAmelCase : List[Any] = self.convolution(__a) _lowerCAmelCase : Dict = self.normalization(__a) _lowerCAmelCase : List[Any] = self.activation(__a) return hidden_state class UpperCAmelCase_ ( nn.Module): def __init__( self, __a): '''simple docstring''' super().__init__() _lowerCAmelCase : Optional[int] = ResNetConvLayer( config.num_channels, config.embedding_size, kernel_size=7, stride=2, activation=config.hidden_act) _lowerCAmelCase : Dict = nn.MaxPoolad(kernel_size=3, stride=2, padding=1) _lowerCAmelCase : Tuple = config.num_channels def snake_case__ ( self, __a): '''simple docstring''' _lowerCAmelCase : Optional[Any] = pixel_values.shape[1] if num_channels != self.num_channels: raise ValueError( "Make sure that the channel dimension of the pixel values match with the one set in the configuration.") _lowerCAmelCase : int = self.embedder(__a) _lowerCAmelCase : Tuple = self.pooler(__a) return embedding class UpperCAmelCase_ ( nn.Module): def __init__( self, __a, __a, __a = 2): '''simple docstring''' super().__init__() _lowerCAmelCase : Union[str, Any] = nn.Convad(__a, __a, kernel_size=1, stride=__a, bias=__a) _lowerCAmelCase : int = nn.BatchNormad(__a) def snake_case__ ( self, __a): '''simple docstring''' _lowerCAmelCase : Optional[Any] = self.convolution(__a) _lowerCAmelCase : Dict = self.normalization(__a) return hidden_state class UpperCAmelCase_ ( nn.Module): def __init__( self, __a, __a, __a = 1, __a = "relu"): '''simple docstring''' super().__init__() _lowerCAmelCase : Tuple = in_channels != out_channels or stride != 1 _lowerCAmelCase : Tuple = ( ResNetShortCut(__a, __a, stride=__a) if should_apply_shortcut else nn.Identity() ) _lowerCAmelCase : str = nn.Sequential( ResNetConvLayer(__a, __a, stride=__a), ResNetConvLayer(__a, __a, activation=__a), ) _lowerCAmelCase : Union[str, Any] = ACTaFN[activation] def snake_case__ ( self, __a): '''simple docstring''' _lowerCAmelCase : int = hidden_state _lowerCAmelCase : Dict = self.layer(__a) _lowerCAmelCase : Optional[int] = self.shortcut(__a) hidden_state += residual _lowerCAmelCase : Tuple = self.activation(__a) return hidden_state class UpperCAmelCase_ ( nn.Module): def __init__( self, __a, __a, __a = 1, __a = "relu", __a = 4): '''simple docstring''' super().__init__() _lowerCAmelCase : int = in_channels != out_channels or stride != 1 _lowerCAmelCase : str = out_channels // reduction _lowerCAmelCase : Optional[int] = ( ResNetShortCut(__a, __a, stride=__a) if should_apply_shortcut else nn.Identity() ) _lowerCAmelCase : Tuple = nn.Sequential( ResNetConvLayer(__a, __a, kernel_size=1), ResNetConvLayer(__a, __a, stride=__a), ResNetConvLayer(__a, __a, kernel_size=1, activation=__a), ) _lowerCAmelCase : Optional[int] = ACTaFN[activation] def snake_case__ ( self, __a): '''simple docstring''' _lowerCAmelCase : Any = hidden_state _lowerCAmelCase : Any = self.layer(__a) _lowerCAmelCase : str = self.shortcut(__a) hidden_state += residual _lowerCAmelCase : int = self.activation(__a) return hidden_state class UpperCAmelCase_ ( nn.Module): def __init__( self, __a, __a, __a, __a = 2, __a = 2, ): '''simple docstring''' super().__init__() _lowerCAmelCase : List[str] = ResNetBottleNeckLayer if config.layer_type == "bottleneck" else ResNetBasicLayer _lowerCAmelCase : Dict = nn.Sequential( # downsampling is done in the first layer with stride of 2 layer(__a, __a, stride=__a, activation=config.hidden_act), *[layer(__a, __a, activation=config.hidden_act) for _ in range(depth - 1)], ) def snake_case__ ( self, __a): '''simple docstring''' _lowerCAmelCase : Tuple = input for layer in self.layers: _lowerCAmelCase : Tuple = layer(__a) return hidden_state class UpperCAmelCase_ ( nn.Module): def __init__( self, __a): '''simple docstring''' super().__init__() _lowerCAmelCase : Any = nn.ModuleList([]) # based on `downsample_in_first_stage` the first layer of the first stage may or may not downsample the input self.stages.append( ResNetStage( __a, config.embedding_size, config.hidden_sizes[0], stride=2 if config.downsample_in_first_stage else 1, depth=config.depths[0], )) _lowerCAmelCase : Union[str, Any] = zip(config.hidden_sizes, config.hidden_sizes[1:]) for (in_channels, out_channels), depth in zip(__a, config.depths[1:]): self.stages.append(ResNetStage(__a, __a, __a, depth=__a)) def snake_case__ ( self, __a, __a = False, __a = True): '''simple docstring''' _lowerCAmelCase : Optional[int] = () if output_hidden_states else None for stage_module in self.stages: if output_hidden_states: _lowerCAmelCase : Optional[Any] = hidden_states + (hidden_state,) _lowerCAmelCase : List[str] = stage_module(__a) if output_hidden_states: _lowerCAmelCase : str = hidden_states + (hidden_state,) if not return_dict: return tuple(v for v in [hidden_state, hidden_states] if v is not None) return BaseModelOutputWithNoAttention( last_hidden_state=__a, hidden_states=__a, ) class UpperCAmelCase_ ( a): lowerCamelCase__ = ResNetConfig lowerCamelCase__ = 'resnet' lowerCamelCase__ = 'pixel_values' lowerCamelCase__ = True def snake_case__ ( self, __a): '''simple docstring''' if isinstance(__a, nn.Convad): nn.init.kaiming_normal_(module.weight, mode="fan_out", nonlinearity="relu") elif isinstance(__a, (nn.BatchNormad, nn.GroupNorm)): nn.init.constant_(module.weight, 1) nn.init.constant_(module.bias, 0) def snake_case__ ( self, __a, __a=False): '''simple docstring''' if isinstance(__a, __a): _lowerCAmelCase : Tuple = value _snake_case = R"\n This model is a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass. Use it\n as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage and\n behavior.\n\n Parameters:\n config ([`ResNetConfig`]): Model configuration class with all the parameters of the model.\n Initializing with a config file does not load the weights associated with the model, only the\n configuration. Check out the [`~PreTrainedModel.from_pretrained`] method to load the model weights.\n" _snake_case = R"\n Args:\n pixel_values (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)`):\n Pixel values. Pixel values can be obtained using [`AutoImageProcessor`]. See\n [`ConvNextImageProcessor.__call__`] for details.\n\n output_hidden_states (`bool`, *optional*):\n Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for\n more detail.\n return_dict (`bool`, *optional*):\n Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.\n" @add_start_docstrings( 'The bare ResNet model outputting raw features without any specific head on top.' , a , ) class UpperCAmelCase_ ( a): def __init__( self, __a): '''simple docstring''' super().__init__(__a) _lowerCAmelCase : Tuple = config _lowerCAmelCase : List[str] = ResNetEmbeddings(__a) _lowerCAmelCase : List[str] = ResNetEncoder(__a) _lowerCAmelCase : Any = nn.AdaptiveAvgPoolad((1, 1)) # Initialize weights and apply final processing self.post_init() @add_start_docstrings_to_model_forward(__a) @add_code_sample_docstrings( checkpoint=_CHECKPOINT_FOR_DOC, output_type=__a, config_class=_CONFIG_FOR_DOC, modality="vision", expected_output=_EXPECTED_OUTPUT_SHAPE, ) def snake_case__ ( self, __a, __a = None, __a = None): '''simple docstring''' _lowerCAmelCase : Union[str, Any] = ( output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states ) _lowerCAmelCase : List[str] = return_dict if return_dict is not None else self.config.use_return_dict _lowerCAmelCase : List[str] = self.embedder(__a) _lowerCAmelCase : int = self.encoder( __a, output_hidden_states=__a, return_dict=__a) _lowerCAmelCase : int = encoder_outputs[0] _lowerCAmelCase : List[Any] = self.pooler(__a) if not return_dict: return (last_hidden_state, pooled_output) + encoder_outputs[1:] return BaseModelOutputWithPoolingAndNoAttention( last_hidden_state=__a, pooler_output=__a, hidden_states=encoder_outputs.hidden_states, ) @add_start_docstrings( '\n ResNet Model with an image classification head on top (a linear layer on top of the pooled features), e.g. for\n ImageNet.\n ' , a , ) class UpperCAmelCase_ ( a): def __init__( self, __a): '''simple docstring''' super().__init__(__a) _lowerCAmelCase : Tuple = config.num_labels _lowerCAmelCase : str = ResNetModel(__a) # classification head _lowerCAmelCase : str = nn.Sequential( nn.Flatten(), nn.Linear(config.hidden_sizes[-1], config.num_labels) if config.num_labels > 0 else nn.Identity(), ) # initialize weights and apply final processing self.post_init() @add_start_docstrings_to_model_forward(__a) @add_code_sample_docstrings( checkpoint=_IMAGE_CLASS_CHECKPOINT, output_type=__a, config_class=_CONFIG_FOR_DOC, expected_output=_IMAGE_CLASS_EXPECTED_OUTPUT, ) def snake_case__ ( self, __a = None, __a = None, __a = None, __a = None, ): '''simple docstring''' _lowerCAmelCase : List[Any] = return_dict if return_dict is not None else self.config.use_return_dict _lowerCAmelCase : List[Any] = self.resnet(__a, output_hidden_states=__a, return_dict=__a) _lowerCAmelCase : Tuple = outputs.pooler_output if return_dict else outputs[1] _lowerCAmelCase : int = self.classifier(__a) _lowerCAmelCase : Optional[Any] = None if labels is not None: if self.config.problem_type is None: if self.num_labels == 1: _lowerCAmelCase : Optional[int] = "regression" elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int): _lowerCAmelCase : Optional[Any] = "single_label_classification" else: _lowerCAmelCase : Tuple = "multi_label_classification" if self.config.problem_type == "regression": _lowerCAmelCase : Optional[int] = MSELoss() if self.num_labels == 1: _lowerCAmelCase : int = loss_fct(logits.squeeze(), labels.squeeze()) else: _lowerCAmelCase : Optional[Any] = loss_fct(__a, __a) elif self.config.problem_type == "single_label_classification": _lowerCAmelCase : List[str] = CrossEntropyLoss() _lowerCAmelCase : Any = loss_fct(logits.view(-1, self.num_labels), labels.view(-1)) elif self.config.problem_type == "multi_label_classification": _lowerCAmelCase : Any = BCEWithLogitsLoss() _lowerCAmelCase : str = loss_fct(__a, __a) if not return_dict: _lowerCAmelCase : Dict = (logits,) + outputs[2:] return (loss,) + output if loss is not None else output return ImageClassifierOutputWithNoAttention(loss=__a, logits=__a, hidden_states=outputs.hidden_states) @add_start_docstrings( '\n ResNet backbone, to be used with frameworks like DETR and MaskFormer.\n ' , a , ) class UpperCAmelCase_ ( a , a): def __init__( self, __a): '''simple docstring''' super().__init__(__a) super()._init_backbone(__a) _lowerCAmelCase : Dict = [config.embedding_size] + config.hidden_sizes _lowerCAmelCase : List[Any] = ResNetEmbeddings(__a) _lowerCAmelCase : Union[str, Any] = ResNetEncoder(__a) # initialize weights and apply final processing self.post_init() @add_start_docstrings_to_model_forward(__a) @replace_return_docstrings(output_type=__a, config_class=_CONFIG_FOR_DOC) def snake_case__ ( self, __a, __a = None, __a = None): '''simple docstring''' _lowerCAmelCase : Tuple = return_dict if return_dict is not None else self.config.use_return_dict _lowerCAmelCase : Optional[Any] = ( output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states ) _lowerCAmelCase : Union[str, Any] = self.embedder(__a) _lowerCAmelCase : Union[str, Any] = self.encoder(__a, output_hidden_states=__a, return_dict=__a) _lowerCAmelCase : Tuple = outputs.hidden_states _lowerCAmelCase : Dict = () for idx, stage in enumerate(self.stage_names): if stage in self.out_features: feature_maps += (hidden_states[idx],) if not return_dict: _lowerCAmelCase : str = (feature_maps,) if output_hidden_states: output += (outputs.hidden_states,) return output return BackboneOutput( feature_maps=__a, hidden_states=outputs.hidden_states if output_hidden_states else None, attentions=__a, )
36
'''simple docstring''' import json from typing import List, Optional, Tuple from tokenizers import normalizers from ...tokenization_utils_fast import PreTrainedTokenizerFast from ...utils import logging from .tokenization_distilbert import DistilBertTokenizer __SCREAMING_SNAKE_CASE : str = logging.get_logger(__name__) __SCREAMING_SNAKE_CASE : str = {"""vocab_file""": """vocab.txt""", """tokenizer_file""": """tokenizer.json"""} __SCREAMING_SNAKE_CASE : Dict = { """vocab_file""": { """distilbert-base-uncased""": """https://huggingface.co/distilbert-base-uncased/resolve/main/vocab.txt""", """distilbert-base-uncased-distilled-squad""": ( """https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/vocab.txt""" ), """distilbert-base-cased""": """https://huggingface.co/distilbert-base-cased/resolve/main/vocab.txt""", """distilbert-base-cased-distilled-squad""": ( """https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/vocab.txt""" ), """distilbert-base-german-cased""": """https://huggingface.co/distilbert-base-german-cased/resolve/main/vocab.txt""", """distilbert-base-multilingual-cased""": ( """https://huggingface.co/distilbert-base-multilingual-cased/resolve/main/vocab.txt""" ), }, """tokenizer_file""": { """distilbert-base-uncased""": """https://huggingface.co/distilbert-base-uncased/resolve/main/tokenizer.json""", """distilbert-base-uncased-distilled-squad""": ( """https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/tokenizer.json""" ), """distilbert-base-cased""": """https://huggingface.co/distilbert-base-cased/resolve/main/tokenizer.json""", """distilbert-base-cased-distilled-squad""": ( """https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/tokenizer.json""" ), """distilbert-base-german-cased""": ( """https://huggingface.co/distilbert-base-german-cased/resolve/main/tokenizer.json""" ), """distilbert-base-multilingual-cased""": ( """https://huggingface.co/distilbert-base-multilingual-cased/resolve/main/tokenizer.json""" ), }, } __SCREAMING_SNAKE_CASE : Optional[Any] = { """distilbert-base-uncased""": 512, """distilbert-base-uncased-distilled-squad""": 512, """distilbert-base-cased""": 512, """distilbert-base-cased-distilled-squad""": 512, """distilbert-base-german-cased""": 512, """distilbert-base-multilingual-cased""": 512, } __SCREAMING_SNAKE_CASE : List[Any] = { """distilbert-base-uncased""": {"""do_lower_case""": True}, """distilbert-base-uncased-distilled-squad""": {"""do_lower_case""": True}, """distilbert-base-cased""": {"""do_lower_case""": False}, """distilbert-base-cased-distilled-squad""": {"""do_lower_case""": False}, """distilbert-base-german-cased""": {"""do_lower_case""": False}, """distilbert-base-multilingual-cased""": {"""do_lower_case""": False}, } class lowerCamelCase_ (snake_case__ ): '''simple docstring''' __UpperCamelCase: Union[str, Any] = VOCAB_FILES_NAMES __UpperCamelCase: str = PRETRAINED_VOCAB_FILES_MAP __UpperCamelCase: Optional[Any] = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES __UpperCamelCase: Any = PRETRAINED_INIT_CONFIGURATION __UpperCamelCase: str = ["input_ids", "attention_mask"] __UpperCamelCase: List[str] = DistilBertTokenizer def __init__( self : str , A : int=None , A : Tuple=None , A : Tuple=True , A : Dict="[UNK]" , A : List[Any]="[SEP]" , A : Optional[Any]="[PAD]" , A : Dict="[CLS]" , A : Tuple="[MASK]" , A : str=True , A : Dict=None , **A : List[Any] , ): super().__init__( A , tokenizer_file=A , do_lower_case=A , unk_token=A , sep_token=A , pad_token=A , cls_token=A , mask_token=A , tokenize_chinese_chars=A , strip_accents=A , **A , ) _UpperCAmelCase : str = json.loads(self.backend_tokenizer.normalizer.__getstate__() ) if ( normalizer_state.get("lowercase" , A ) != do_lower_case or normalizer_state.get("strip_accents" , A ) != strip_accents or normalizer_state.get("handle_chinese_chars" , A ) != tokenize_chinese_chars ): _UpperCAmelCase : Dict = getattr(A , normalizer_state.pop("type" ) ) _UpperCAmelCase : int = do_lower_case _UpperCAmelCase : Optional[int] = strip_accents _UpperCAmelCase : str = tokenize_chinese_chars _UpperCAmelCase : List[Any] = normalizer_class(**A ) _UpperCAmelCase : Dict = do_lower_case def _A ( self : List[Any] , A : Tuple , A : Any=None ): _UpperCAmelCase : Optional[int] = [self.cls_token_id] + token_ids_a + [self.sep_token_id] if token_ids_a: output += token_ids_a + [self.sep_token_id] return output def _A ( self : int , A : List[int] , A : Optional[List[int]] = None ): _UpperCAmelCase : Any = [self.sep_token_id] _UpperCAmelCase : str = [self.cls_token_id] if token_ids_a is None: return len(cls + token_ids_a + sep ) * [0] return len(cls + token_ids_a + sep ) * [0] + len(token_ids_a + sep ) * [1] def _A ( self : Dict , A : str , A : Optional[str] = None ): _UpperCAmelCase : Any = self._tokenizer.model.save(A , name=A ) return tuple(A )
31
0
from collections import UserDict from typing import List, Union from ..utils import ( add_end_docstrings, is_tf_available, is_torch_available, is_vision_available, logging, requires_backends, ) from .base import PIPELINE_INIT_ARGS, Pipeline if is_vision_available(): from PIL import Image from ..image_utils import load_image if is_torch_available(): from ..models.auto.modeling_auto import MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING if is_tf_available(): from ..models.auto.modeling_tf_auto import TF_MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING from ..tf_utils import stable_softmax __UpperCAmelCase = logging.get_logger(__name__) @add_end_docstrings(__SCREAMING_SNAKE_CASE ) class UpperCamelCase__ ( __SCREAMING_SNAKE_CASE ): """simple docstring""" def __init__( self , **_A ) -> List[str]: super().__init__(**_A ) requires_backends(self , '''vision''' ) self.check_model_type( TF_MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING if self.framework == '''tf''' else MODEL_FOR_ZERO_SHOT_IMAGE_CLASSIFICATION_MAPPING ) def __call__( self , _A , **_A ) -> List[str]: return super().__call__(_A , **_A ) def _UpperCamelCase ( self , **_A ) -> List[Any]: SCREAMING_SNAKE_CASE_ = {} if "candidate_labels" in kwargs: SCREAMING_SNAKE_CASE_ = kwargs['''candidate_labels'''] if "hypothesis_template" in kwargs: SCREAMING_SNAKE_CASE_ = kwargs['''hypothesis_template'''] return preprocess_params, {}, {} def _UpperCamelCase ( self , _A , _A=None , _A="This is a photo of {}." ) -> Tuple: SCREAMING_SNAKE_CASE_ = load_image(_A ) SCREAMING_SNAKE_CASE_ = self.image_processor(images=[image] , return_tensors=self.framework ) SCREAMING_SNAKE_CASE_ = candidate_labels SCREAMING_SNAKE_CASE_ = [hypothesis_template.format(_A ) for x in candidate_labels] SCREAMING_SNAKE_CASE_ = self.tokenizer(_A , return_tensors=self.framework , padding=_A ) SCREAMING_SNAKE_CASE_ = [text_inputs] return inputs def _UpperCamelCase ( self , _A ) -> Tuple: SCREAMING_SNAKE_CASE_ = model_inputs.pop('''candidate_labels''' ) SCREAMING_SNAKE_CASE_ = model_inputs.pop('''text_inputs''' ) if isinstance(text_inputs[0] , _A ): SCREAMING_SNAKE_CASE_ = text_inputs[0] else: # Batching case. SCREAMING_SNAKE_CASE_ = text_inputs[0][0] SCREAMING_SNAKE_CASE_ = self.model(**_A , **_A ) SCREAMING_SNAKE_CASE_ = { '''candidate_labels''': candidate_labels, '''logits''': outputs.logits_per_image, } return model_outputs def _UpperCamelCase ( self , _A ) -> Union[str, Any]: SCREAMING_SNAKE_CASE_ = model_outputs.pop('''candidate_labels''' ) SCREAMING_SNAKE_CASE_ = model_outputs['''logits'''][0] if self.framework == "pt": SCREAMING_SNAKE_CASE_ = logits.softmax(dim=-1 ).squeeze(-1 ) SCREAMING_SNAKE_CASE_ = probs.tolist() if not isinstance(_A , _A ): SCREAMING_SNAKE_CASE_ = [scores] elif self.framework == "tf": SCREAMING_SNAKE_CASE_ = stable_softmax(_A , axis=-1 ) SCREAMING_SNAKE_CASE_ = probs.numpy().tolist() else: raise ValueError(F'''Unsupported framework: {self.framework}''' ) SCREAMING_SNAKE_CASE_ = [ {'''score''': score, '''label''': candidate_label} for score, candidate_label in sorted(zip(_A , _A ) , key=lambda _A : -x[0] ) ] return result
257
import itertools from dataclasses import dataclass from typing import Optional import pandas as pd import pyarrow as pa import datasets from datasets.table import table_cast @dataclass class UpperCamelCase__ ( datasets.BuilderConfig ): """simple docstring""" UpperCAmelCase_ =None class UpperCamelCase__ ( datasets.ArrowBasedBuilder ): """simple docstring""" UpperCAmelCase_ =PandasConfig def _UpperCamelCase ( self ) -> int: return datasets.DatasetInfo(features=self.config.features ) def _UpperCamelCase ( self , _A ) -> Tuple: if not self.config.data_files: raise ValueError(F'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) SCREAMING_SNAKE_CASE_ = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_A , (str, list, tuple) ): SCREAMING_SNAKE_CASE_ = data_files if isinstance(_A , _A ): SCREAMING_SNAKE_CASE_ = [files] # Use `dl_manager.iter_files` to skip hidden files in an extracted archive SCREAMING_SNAKE_CASE_ = [dl_manager.iter_files(_A ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'''files''': files} )] SCREAMING_SNAKE_CASE_ = [] for split_name, files in data_files.items(): if isinstance(_A , _A ): SCREAMING_SNAKE_CASE_ = [files] # Use `dl_manager.iter_files` to skip hidden files in an extracted archive SCREAMING_SNAKE_CASE_ = [dl_manager.iter_files(_A ) for file in files] splits.append(datasets.SplitGenerator(name=_A , gen_kwargs={'''files''': files} ) ) return splits def _UpperCamelCase ( self , _A ) -> pa.Table: if self.config.features is not None: # more expensive cast to support nested features with keys in a different order # allows str <-> int/float or str to Audio for example SCREAMING_SNAKE_CASE_ = table_cast(_A , self.config.features.arrow_schema ) return pa_table def _UpperCamelCase ( self , _A ) -> Any: for i, file in enumerate(itertools.chain.from_iterable(_A ) ): with open(_A , '''rb''' ) as f: SCREAMING_SNAKE_CASE_ = pa.Table.from_pandas(pd.read_pickle(_A ) ) yield i, self._cast_table(_A )
257
1