code
stringlengths
82
54.1k
code_codestyle
int64
0
699
style_context
stringlengths
111
35.6k
style_context_codestyle
int64
0
699
label
int64
0
1
"""simple docstring""" import inspect from typing import List, Optional, Tuple, Union import torch from ...models import UNetaDModel, VQModel from ...schedulers import DDIMScheduler from ...utils import randn_tensor from ..pipeline_utils import DiffusionPipeline, ImagePipelineOutput class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' super().__init__() self.register_modules(vqvae=__a , unet=__a , scheduler=__a) @torch.no_grad() def __call__( self , __a = 1 , __a = None , __a = 0.0 , __a = 50 , __a = "pil" , __a = True , **__a , ) -> Union[Tuple, ImagePipelineOutput]: '''simple docstring''' _UpperCamelCase = randn_tensor( (batch_size, self.unet.config.in_channels, self.unet.config.sample_size, self.unet.config.sample_size) , generator=__a , ) _UpperCamelCase = latents.to(self.device) # scale the initial noise by the standard deviation required by the scheduler _UpperCamelCase = latents * self.scheduler.init_noise_sigma self.scheduler.set_timesteps(__a) # prepare extra kwargs for the scheduler step, since not all schedulers have the same signature _UpperCamelCase = '''eta''' in set(inspect.signature(self.scheduler.step).parameters.keys()) _UpperCamelCase = {} if accepts_eta: _UpperCamelCase = eta for t in self.progress_bar(self.scheduler.timesteps): _UpperCamelCase = self.scheduler.scale_model_input(__a , __a) # predict the noise residual _UpperCamelCase = self.unet(__a , __a).sample # compute the previous noisy sample x_t -> x_t-1 _UpperCamelCase = self.scheduler.step(__a , __a , __a , **__a).prev_sample # decode the image latents with the VAE _UpperCamelCase = self.vqvae.decode(__a).sample _UpperCamelCase = (image / 2 + 0.5).clamp(0 , 1) _UpperCamelCase = image.cpu().permute(0 , 2 , 3 , 1).numpy() if output_type == "pil": _UpperCamelCase = self.numpy_to_pil(__a) if not return_dict: return (image,) return ImagePipelineOutput(images=__a)
19
"""simple docstring""" from math import acos, sin from typing import List, Tuple, Union import numpy as np import torch from PIL import Image from ...models import AutoencoderKL, UNetaDConditionModel from ...schedulers import DDIMScheduler, DDPMScheduler from ...utils import randn_tensor from ..pipeline_utils import AudioPipelineOutput, BaseOutput, DiffusionPipeline, ImagePipelineOutput from .mel import Mel class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['vqvae'] def __init__( self , __a , __a , __a , __a , ) -> List[str]: '''simple docstring''' super().__init__() self.register_modules(unet=__a , scheduler=__a , mel=__a , vqvae=__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' return 50 if isinstance(self.scheduler , __a) else 10_00 @torch.no_grad() def __call__( self , __a = 1 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = 0 , __a = None , __a = None , __a=True , ) -> Union[ Union[AudioPipelineOutput, ImagePipelineOutput], Tuple[List[Image.Image], Tuple[int, List[np.ndarray]]], ]: '''simple docstring''' _UpperCamelCase = steps or self.get_default_steps() self.scheduler.set_timesteps(__a) _UpperCamelCase = step_generator or generator # For backwards compatibility if type(self.unet.config.sample_size) == int: _UpperCamelCase = (self.unet.config.sample_size, self.unet.config.sample_size) if noise is None: _UpperCamelCase = randn_tensor( ( batch_size, self.unet.config.in_channels, self.unet.config.sample_size[0], self.unet.config.sample_size[1], ) , generator=__a , device=self.device , ) _UpperCamelCase = noise _UpperCamelCase = None if audio_file is not None or raw_audio is not None: self.mel.load_audio(__a , __a) _UpperCamelCase = self.mel.audio_slice_to_image(__a) _UpperCamelCase = np.frombuffer(input_image.tobytes() , dtype='''uint8''').reshape( (input_image.height, input_image.width)) _UpperCamelCase = (input_image / 2_55) * 2 - 1 _UpperCamelCase = torch.tensor(input_image[np.newaxis, :, :] , dtype=torch.float).to(self.device) if self.vqvae is not None: _UpperCamelCase = self.vqvae.encode(torch.unsqueeze(__a , 0)).latent_dist.sample( generator=__a)[0] _UpperCamelCase = self.vqvae.config.scaling_factor * input_images if start_step > 0: _UpperCamelCase = self.scheduler.add_noise(__a , __a , self.scheduler.timesteps[start_step - 1]) _UpperCamelCase = ( self.unet.config.sample_size[1] * self.mel.get_sample_rate() / self.mel.x_res / self.mel.hop_length ) _UpperCamelCase = int(mask_start_secs * pixels_per_second) _UpperCamelCase = int(mask_end_secs * pixels_per_second) _UpperCamelCase = self.scheduler.add_noise(__a , __a , torch.tensor(self.scheduler.timesteps[start_step:])) for step, t in enumerate(self.progress_bar(self.scheduler.timesteps[start_step:])): if isinstance(self.unet , __a): _UpperCamelCase = self.unet(__a , __a , __a)['''sample'''] else: _UpperCamelCase = self.unet(__a , __a)['''sample'''] if isinstance(self.scheduler , __a): _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , eta=__a , generator=__a , )['''prev_sample'''] else: _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , generator=__a , )['''prev_sample'''] if mask is not None: if mask_start > 0: _UpperCamelCase = mask[:, step, :, :mask_start] if mask_end > 0: _UpperCamelCase = mask[:, step, :, -mask_end:] if self.vqvae is not None: # 0.18215 was scaling factor used in training to ensure unit variance _UpperCamelCase = 1 / self.vqvae.config.scaling_factor * images _UpperCamelCase = self.vqvae.decode(__a)['''sample'''] _UpperCamelCase = (images / 2 + 0.5).clamp(0 , 1) _UpperCamelCase = images.cpu().permute(0 , 2 , 3 , 1).numpy() _UpperCamelCase = (images * 2_55).round().astype('''uint8''') _UpperCamelCase = list( (Image.fromarray(_[:, :, 0]) for _ in images) if images.shape[3] == 1 else (Image.fromarray(__a , mode='''RGB''').convert('''L''') for _ in images)) _UpperCamelCase = [self.mel.image_to_audio(__a) for _ in images] if not return_dict: return images, (self.mel.get_sample_rate(), audios) return BaseOutput(**AudioPipelineOutput(np.array(__a)[:, np.newaxis, :]) , **ImagePipelineOutput(__a)) @torch.no_grad() def UpperCAmelCase ( self , __a , __a = 50) -> np.ndarray: '''simple docstring''' assert isinstance(self.scheduler , __a) self.scheduler.set_timesteps(__a) _UpperCamelCase = np.array( [np.frombuffer(image.tobytes() , dtype='''uint8''').reshape((1, image.height, image.width)) for image in images]) _UpperCamelCase = (sample / 2_55) * 2 - 1 _UpperCamelCase = torch.Tensor(__a).to(self.device) for t in self.progress_bar(torch.flip(self.scheduler.timesteps , (0,))): _UpperCamelCase = t - self.scheduler.config.num_train_timesteps // self.scheduler.num_inference_steps _UpperCamelCase = self.scheduler.alphas_cumprod[t] _UpperCamelCase = ( self.scheduler.alphas_cumprod[prev_timestep] if prev_timestep >= 0 else self.scheduler.final_alpha_cumprod ) _UpperCamelCase = 1 - alpha_prod_t _UpperCamelCase = self.unet(__a , __a)['''sample'''] _UpperCamelCase = (1 - alpha_prod_t_prev) ** 0.5 * model_output _UpperCamelCase = (sample - pred_sample_direction) * alpha_prod_t_prev ** (-0.5) _UpperCamelCase = sample * alpha_prod_t ** 0.5 + beta_prod_t ** 0.5 * model_output return sample @staticmethod def UpperCAmelCase ( __a , __a , __a) -> torch.Tensor: '''simple docstring''' _UpperCamelCase = acos(torch.dot(torch.flatten(__a) , torch.flatten(__a)) / torch.norm(__a) / torch.norm(__a)) return sin((1 - alpha) * theta) * xa / sin(__a) + sin(alpha * theta) * xa / sin(__a)
19
1
"""simple docstring""" from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) _a = { """configuration_blenderbot""": [ """BLENDERBOT_PRETRAINED_CONFIG_ARCHIVE_MAP""", """BlenderbotConfig""", """BlenderbotOnnxConfig""", ], """tokenization_blenderbot""": ["""BlenderbotTokenizer"""], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = ["""BlenderbotTokenizerFast"""] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = [ """BLENDERBOT_PRETRAINED_MODEL_ARCHIVE_LIST""", """BlenderbotForCausalLM""", """BlenderbotForConditionalGeneration""", """BlenderbotModel""", """BlenderbotPreTrainedModel""", ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = [ """TFBlenderbotForConditionalGeneration""", """TFBlenderbotModel""", """TFBlenderbotPreTrainedModel""", ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = [ """FlaxBlenderbotForConditionalGeneration""", """FlaxBlenderbotModel""", """FlaxBlenderbotPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_blenderbot import ( BLENDERBOT_PRETRAINED_CONFIG_ARCHIVE_MAP, BlenderbotConfig, BlenderbotOnnxConfig, ) from .tokenization_blenderbot import BlenderbotTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_blenderbot_fast import BlenderbotTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_blenderbot import ( BLENDERBOT_PRETRAINED_MODEL_ARCHIVE_LIST, BlenderbotForCausalLM, BlenderbotForConditionalGeneration, BlenderbotModel, BlenderbotPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_blenderbot import ( TFBlenderbotForConditionalGeneration, TFBlenderbotModel, TFBlenderbotPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_blenderbot import ( FlaxBlenderbotForConditionalGeneration, FlaxBlenderbotModel, FlaxBlenderbotPreTrainedModel, ) else: import sys _a = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
19
"""simple docstring""" import copy from collections import OrderedDict from typing import Dict, Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging from ..auto import CONFIG_MAPPING _a = logging.get_logger(__name__) _a = { """facebook/detr-resnet-50""": """https://huggingface.co/facebook/detr-resnet-50/resolve/main/config.json""", # See all DETR models at https://huggingface.co/models?filter=detr } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'detr' lowercase__ = ['past_key_values'] lowercase__ = { 'hidden_size': 'd_model', 'num_attention_heads': 'encoder_attention_heads', } def __init__( self , __a=True , __a=None , __a=3 , __a=1_00 , __a=6 , __a=20_48 , __a=8 , __a=6 , __a=20_48 , __a=8 , __a=0.0 , __a=0.0 , __a=True , __a="relu" , __a=2_56 , __a=0.1 , __a=0.0 , __a=0.0 , __a=0.02 , __a=1.0 , __a=False , __a="sine" , __a="resnet50" , __a=True , __a=False , __a=1 , __a=5 , __a=2 , __a=1 , __a=1 , __a=5 , __a=2 , __a=0.1 , **__a , ) -> int: '''simple docstring''' if backbone_config is not None and use_timm_backbone: raise ValueError('''You can\'t specify both `backbone_config` and `use_timm_backbone`.''') if not use_timm_backbone: if backbone_config is None: logger.info('''`backbone_config` is `None`. Initializing the config with the default `ResNet` backbone.''') _UpperCamelCase = CONFIG_MAPPING['''resnet'''](out_features=['''stage4''']) elif isinstance(__a , __a): _UpperCamelCase = backbone_config.get('''model_type''') _UpperCamelCase = CONFIG_MAPPING[backbone_model_type] _UpperCamelCase = config_class.from_dict(__a) # set timm attributes to None _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = None, None, None _UpperCamelCase = use_timm_backbone _UpperCamelCase = backbone_config _UpperCamelCase = num_channels _UpperCamelCase = num_queries _UpperCamelCase = d_model _UpperCamelCase = encoder_ffn_dim _UpperCamelCase = encoder_layers _UpperCamelCase = encoder_attention_heads _UpperCamelCase = decoder_ffn_dim _UpperCamelCase = decoder_layers _UpperCamelCase = decoder_attention_heads _UpperCamelCase = dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = activation_function _UpperCamelCase = init_std _UpperCamelCase = init_xavier_std _UpperCamelCase = encoder_layerdrop _UpperCamelCase = decoder_layerdrop _UpperCamelCase = encoder_layers _UpperCamelCase = auxiliary_loss _UpperCamelCase = position_embedding_type _UpperCamelCase = backbone _UpperCamelCase = use_pretrained_backbone _UpperCamelCase = dilation # Hungarian matcher _UpperCamelCase = class_cost _UpperCamelCase = bbox_cost _UpperCamelCase = giou_cost # Loss coefficients _UpperCamelCase = mask_loss_coefficient _UpperCamelCase = dice_loss_coefficient _UpperCamelCase = bbox_loss_coefficient _UpperCamelCase = giou_loss_coefficient _UpperCamelCase = eos_coefficient super().__init__(is_encoder_decoder=__a , **__a) @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.encoder_attention_heads @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.d_model @classmethod def UpperCAmelCase ( cls , __a , **__a) -> int: '''simple docstring''' return cls(backbone_config=__a , **__a) def UpperCAmelCase ( self) -> Dict[str, any]: '''simple docstring''' _UpperCamelCase = copy.deepcopy(self.__dict__) if output["backbone_config"] is not None: _UpperCamelCase = self.backbone_config.to_dict() _UpperCamelCase = self.__class__.model_type return output class _UpperCAmelCase( lowerCamelCase ): lowercase__ = version.parse('1.11' ) @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''pixel_values''', {0: '''batch''', 1: '''num_channels''', 2: '''height''', 3: '''width'''}), ('''pixel_mask''', {0: '''batch'''}), ]) @property def UpperCAmelCase ( self) -> float: '''simple docstring''' return 1e-5 @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return 12
19
1
"""simple docstring""" from collections import Counter import numpy as np from sklearn import datasets from sklearn.model_selection import train_test_split _a = datasets.load_iris() _a = np.array(data["""data"""]) _a = np.array(data["""target"""]) _a = data["""target_names"""] _a , _a , _a , _a = train_test_split(X, y) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" return np.linalg.norm(np.array(__snake_case ) - np.array(__snake_case ) ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case=5 ) -> str: """simple docstring""" _UpperCamelCase = zip(__snake_case, __snake_case ) # List of distances of all points from the point to be classified _UpperCamelCase = [] for data_point in data: _UpperCamelCase = euclidean_distance(data_point[0], __snake_case ) distances.append((distance, data_point[1]) ) # Choosing 'k' points with the least distances. _UpperCamelCase = [i[1] for i in sorted(__snake_case )[:k]] # Most commonly occurring class among them # is the class into which the point is classified _UpperCamelCase = Counter(__snake_case ).most_common(1 )[0][0] return classes[result] if __name__ == "__main__": print(classifier(X_train, y_train, classes, [4.4, 3.1, 1.3, 1.4]))
19
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """microsoft/wavlm-base""": """https://huggingface.co/microsoft/wavlm-base/resolve/main/config.json""", # See all WavLM models at https://huggingface.co/models?filter=wavlm } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'wavlm' def __init__( self , __a=32 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu" , __a=0.1 , __a=0.1 , __a=0.1 , __a=0.0 , __a=0.1 , __a=0.1 , __a=0.02 , __a=1e-5 , __a="group" , __a="gelu" , __a=(5_12, 5_12, 5_12, 5_12, 5_12, 5_12, 5_12) , __a=(5, 2, 2, 2, 2, 2, 2) , __a=(10, 3, 3, 3, 3, 2, 2) , __a=False , __a=1_28 , __a=16 , __a=3_20 , __a=8_00 , __a=False , __a=True , __a=0.05 , __a=10 , __a=2 , __a=0.0 , __a=10 , __a=3_20 , __a=2 , __a=0.1 , __a=1_00 , __a=2_56 , __a=2_56 , __a=0.1 , __a="mean" , __a=False , __a=False , __a=2_56 , __a=(5_12, 5_12, 5_12, 5_12, 15_00) , __a=(5, 3, 3, 1, 1) , __a=(1, 2, 3, 1, 1) , __a=5_12 , __a=80 , __a=0 , __a=1 , __a=2 , __a=False , __a=3 , __a=2 , __a=3 , __a=None , **__a , ) -> Union[str, Any]: '''simple docstring''' super().__init__(**__a , pad_token_id=__a , bos_token_id=__a , eos_token_id=__a) _UpperCamelCase = hidden_size _UpperCamelCase = feat_extract_norm _UpperCamelCase = feat_extract_activation _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = conv_bias _UpperCamelCase = num_buckets _UpperCamelCase = max_bucket_distance _UpperCamelCase = num_conv_pos_embeddings _UpperCamelCase = num_conv_pos_embedding_groups _UpperCamelCase = len(self.conv_dim) _UpperCamelCase = num_hidden_layers _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = feat_proj_dropout _UpperCamelCase = final_dropout _UpperCamelCase = layerdrop _UpperCamelCase = layer_norm_eps _UpperCamelCase = initializer_range _UpperCamelCase = num_ctc_classes _UpperCamelCase = vocab_size _UpperCamelCase = do_stable_layer_norm _UpperCamelCase = use_weighted_layer_sum _UpperCamelCase = 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 _UpperCamelCase = apply_spec_augment _UpperCamelCase = mask_time_prob _UpperCamelCase = mask_time_length _UpperCamelCase = mask_time_min_masks _UpperCamelCase = mask_feature_prob _UpperCamelCase = mask_feature_length # parameters for pretraining with codevector quantized representations _UpperCamelCase = num_codevectors_per_group _UpperCamelCase = num_codevector_groups _UpperCamelCase = contrastive_logits_temperature _UpperCamelCase = num_negatives _UpperCamelCase = codevector_dim _UpperCamelCase = proj_codevector_dim _UpperCamelCase = diversity_loss_weight # ctc loss _UpperCamelCase = ctc_loss_reduction _UpperCamelCase = ctc_zero_infinity # adapter _UpperCamelCase = add_adapter _UpperCamelCase = adapter_kernel_size _UpperCamelCase = adapter_stride _UpperCamelCase = num_adapter_layers _UpperCamelCase = output_hidden_size or hidden_size # SequenceClassification-specific parameter. Feel free to ignore for other classes. _UpperCamelCase = classifier_proj_size # XVector-specific parameters. Feel free to ignore for other classes. _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = xvector_output_dim @property def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return functools.reduce(operator.mul , self.conv_stride , 1)
19
1
"""simple docstring""" def lowerCamelCase__ ( __snake_case, __snake_case = 0 ) -> list: """simple docstring""" _UpperCamelCase = length or len(__snake_case ) _UpperCamelCase = False for i in range(length - 1 ): if list_data[i] > list_data[i + 1]: _UpperCamelCase , _UpperCamelCase = list_data[i + 1], list_data[i] _UpperCamelCase = True return list_data if not swapped else bubble_sort(__snake_case, length - 1 ) if __name__ == "__main__": import doctest doctest.testmod()
19
"""simple docstring""" import datasets import faiss import numpy as np import streamlit as st import torch from elasticsearch import Elasticsearch from elia_utils import ( embed_questions_for_retrieval, make_qa_sas_model, qa_sas_generate, query_es_index, query_qa_dense_index, ) import transformers from transformers import AutoModel, AutoModelForSeqaSeqLM, AutoTokenizer _a = """bart""" _a = True @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Dict: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/retribert-base-uncased''' ) _UpperCamelCase = AutoModel.from_pretrained('''yjernite/retribert-base-uncased''' ).to('''cuda:0''' ) _UpperCamelCase = qar_model.eval() else: _UpperCamelCase , _UpperCamelCase = (None, None) if MODEL_TYPE == "bart": _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/bart_eli5''' ) _UpperCamelCase = AutoModelForSeqaSeqLM.from_pretrained('''yjernite/bart_eli5''' ).to('''cuda:0''' ) _UpperCamelCase = torch.load('''seq2seq_models/eli5_bart_model_blm_2.pth''' ) sas_model.load_state_dict(save_dict['''model'''] ) _UpperCamelCase = sas_model.eval() else: _UpperCamelCase , _UpperCamelCase = make_qa_sas_model( model_name='''t5-small''', from_file='''seq2seq_models/eli5_t5_model_1024_4.pth''', device='''cuda:0''' ) return (qar_tokenizer, qar_model, sas_tokenizer, sas_model) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = faiss.StandardGpuResources() _UpperCamelCase = datasets.load_dataset(path='''wiki_snippets''', name='''wiki40b_en_100_0''' )['''train'''] _UpperCamelCase = np.memmap( '''wiki40b_passages_reps_32_l-8_h-768_b-512-512.dat''', dtype='''float32''', mode='''r''', shape=(wikiaab_passages.num_rows, 1_28), ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) _UpperCamelCase = faiss.index_cpu_to_gpu(__snake_case, 1, __snake_case ) wikiaab_gpu_index_flat.add(__snake_case ) # TODO fix for larger GPU else: _UpperCamelCase , _UpperCamelCase = (None, None) _UpperCamelCase = Elasticsearch([{'''host''': '''localhost''', '''port''': '''9200'''}] ) return (wikiaab_passages, wikiaab_gpu_index_flat, es_client) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = datasets.load_dataset('''eli5''', name='''LFQA_reddit''' ) _UpperCamelCase = elia['''train_eli5'''] _UpperCamelCase = np.memmap( '''eli5_questions_reps.dat''', dtype='''float32''', mode='''r''', shape=(elia_train.num_rows, 1_28) ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) eli5_train_q_index.add(__snake_case ) return (elia_train, eli5_train_q_index) _a , _a , _a = load_indexes() _a , _a , _a , _a = load_models() _a , _a = load_train_data() def lowerCamelCase__ ( __snake_case, __snake_case=10 ) -> List[Any]: """simple docstring""" _UpperCamelCase = embed_questions_for_retrieval([question], __snake_case, __snake_case ) _UpperCamelCase , _UpperCamelCase = eli5_train_q_index.search(__snake_case, __snake_case ) _UpperCamelCase = [elia_train[int(__snake_case )] for i in I[0]] return nn_examples def lowerCamelCase__ ( __snake_case, __snake_case="wiki40b", __snake_case="dense", __snake_case=10 ) -> List[str]: """simple docstring""" if source == "none": _UpperCamelCase , _UpperCamelCase = (''' <P> '''.join(['''''' for _ in range(11 )] ).strip(), []) else: if method == "dense": _UpperCamelCase , _UpperCamelCase = query_qa_dense_index( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) else: _UpperCamelCase , _UpperCamelCase = query_es_index( __snake_case, __snake_case, index_name='''english_wiki40b_snippets_100w''', n_results=__snake_case, ) _UpperCamelCase = [ (res['''article_title'''], res['''section_title'''].strip(), res['''score'''], res['''passage_text''']) for res in hit_lst ] _UpperCamelCase = '''question: {} context: {}'''.format(__snake_case, __snake_case ) return question_doc, support_list @st.cache( hash_funcs={ torch.Tensor: (lambda __snake_case : None), transformers.models.bart.tokenization_bart.BartTokenizer: (lambda __snake_case : None), } ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=64, __snake_case=2_56, __snake_case=False, __snake_case=2, __snake_case=0.95, __snake_case=0.8 ) -> Dict: """simple docstring""" with torch.no_grad(): _UpperCamelCase = qa_sas_generate( __snake_case, __snake_case, __snake_case, num_answers=1, num_beams=__snake_case, min_len=__snake_case, max_len=__snake_case, do_sample=__snake_case, temp=__snake_case, top_p=__snake_case, top_k=__snake_case, max_input_length=10_24, device='''cuda:0''', )[0] return (answer, support_list) st.title("""Long Form Question Answering with ELI5""") # Start sidebar _a = """<img src='https://huggingface.co/front/assets/huggingface_logo.svg'>""" _a = """ <html> <head> <style> .img-container { padding-left: 90px; padding-right: 90px; padding-top: 50px; padding-bottom: 50px; background-color: #f0f3f9; } </style> </head> <body> <span class=\"img-container\"> <!-- Inline parent element --> %s </span> </body> </html> """ % ( header_html, ) st.sidebar.markdown( header_full, unsafe_allow_html=True, ) # Long Form QA with ELI5 and Wikipedia _a = """ This demo presents a model trained to [provide long-form answers to open-domain questions](https://yjernite.github.io/lfqa.html). First, a document retriever fetches a set of relevant Wikipedia passages given the question from the [Wiki40b](https://research.google/pubs/pub49029/) dataset, a pre-processed fixed snapshot of Wikipedia. """ st.sidebar.markdown(description, unsafe_allow_html=True) _a = [ """Answer the question""", """View the retrieved document only""", """View the most similar ELI5 question and answer""", """Show me everything, please!""", ] _a = st.sidebar.checkbox("""Demo options""") if demo_options: _a = st.sidebar.selectbox( """""", action_list, index=3, ) _a = action_list.index(action_st) _a = st.sidebar.selectbox( """""", ["""Show full text of passages""", """Show passage section titles"""], index=0, ) _a = show_type == """Show full text of passages""" else: _a = 3 _a = True _a = st.sidebar.checkbox("""Retrieval options""") if retrieval_options: _a = """ ### Information retriever options The **sparse** retriever uses ElasticSearch, while the **dense** retriever uses max-inner-product search between a question and passage embedding trained using the [ELI5](https://arxiv.org/abs/1907.09190) questions-answer pairs. The answer is then generated by sequence to sequence model which takes the question and retrieved document as input. """ st.sidebar.markdown(retriever_info) _a = st.sidebar.selectbox("""Which Wikipedia format should the model use?""", ["""wiki40b""", """none"""]) _a = st.sidebar.selectbox("""Which Wikipedia indexer should the model use?""", ["""dense""", """sparse""", """mixed"""]) else: _a = """wiki40b""" _a = """dense""" _a = """beam""" _a = 2 _a = 64 _a = 256 _a = None _a = None _a = st.sidebar.checkbox("""Generation options""") if generate_options: _a = """ ### Answer generation options The sequence-to-sequence model was initialized with [BART](https://huggingface.co/facebook/bart-large) weights and fine-tuned on the ELI5 QA pairs and retrieved documents. You can use the model for greedy decoding with **beam** search, or **sample** from the decoder's output probabilities. """ st.sidebar.markdown(generate_info) _a = st.sidebar.selectbox("""Would you like to use beam search or sample an answer?""", ["""beam""", """sampled"""]) _a = st.sidebar.slider( """Minimum generation length""", min_value=8, max_value=256, value=64, step=8, format=None, key=None ) _a = st.sidebar.slider( """Maximum generation length""", min_value=64, max_value=512, value=256, step=16, format=None, key=None ) if sampled == "beam": _a = st.sidebar.slider("""Beam size""", min_value=1, max_value=8, value=2, step=None, format=None, key=None) else: _a = st.sidebar.slider( """Nucleus sampling p""", min_value=0.1, max_value=1.0, value=0.95, step=0.01, format=None, key=None ) _a = st.sidebar.slider( """Temperature""", min_value=0.1, max_value=1.0, value=0.7, step=0.01, format=None, key=None ) _a = None # start main text _a = [ """<MY QUESTION>""", """How do people make chocolate?""", """Why do we get a fever when we are sick?""", """How can different animals perceive different colors?""", """What is natural language processing?""", """What's the best way to treat a sunburn?""", """What exactly are vitamins ?""", """How does nuclear energy provide electricity?""", """What's the difference between viruses and bacteria?""", """Why are flutes classified as woodwinds when most of them are made out of metal ?""", """Why do people like drinking coffee even though it tastes so bad?""", """What happens when wine ages? How does it make the wine taste better?""", """If an animal is an herbivore, where does it get the protein that it needs to survive if it only eats grass?""", """How can we set a date to the beginning or end of an artistic period? Doesn't the change happen gradually?""", """How does New Zealand have so many large bird predators?""", ] _a = st.selectbox( """What would you like to ask? ---- select <MY QUESTION> to enter a new query""", questions_list, index=1, ) if question_s == "<MY QUESTION>": _a = st.text_input("""Enter your question here:""", """""") else: _a = question_s if st.button("""Show me!"""): if action in [0, 1, 3]: if index_type == "mixed": _a , _a = make_support(question, source=wiki_source, method="""dense""", n_results=10) _a , _a = make_support(question, source=wiki_source, method="""sparse""", n_results=10) _a = [] for res_d, res_s in zip(support_list_dense, support_list_sparse): if tuple(res_d) not in support_list: support_list += [tuple(res_d)] if tuple(res_s) not in support_list: support_list += [tuple(res_s)] _a = support_list[:10] _a = """<P> """ + """ <P> """.join([res[-1] for res in support_list]) else: _a , _a = make_support(question, source=wiki_source, method=index_type, n_results=10) if action in [0, 3]: _a , _a = answer_question( question_doc, sas_model, sas_tokenizer, min_len=min_len, max_len=int(max_len), sampling=(sampled == """sampled"""), n_beams=n_beams, top_p=top_p, temp=temp, ) st.markdown("""### The model generated answer is:""") st.write(answer) if action in [0, 1, 3] and wiki_source != "none": st.markdown("""--- \n ### The model is drawing information from the following Wikipedia passages:""") for i, res in enumerate(support_list): _a = """https://en.wikipedia.org/wiki/{}""".format(res[0].replace(""" """, """_""")) _a = res[1].strip() if sec_titles == "": _a = """[{}]({})""".format(res[0], wiki_url) else: _a = sec_titles.split(""" & """) _a = """ & """.join( ["""[{}]({}#{})""".format(sec.strip(), wiki_url, sec.strip().replace(""" """, """_""")) for sec in sec_list] ) st.markdown( """{0:02d} - **Article**: {1:<18} <br> _Section_: {2}""".format(i + 1, res[0], sections), unsafe_allow_html=True, ) if show_passages: st.write( """> <span style=\"font-family:arial; font-size:10pt;\">""" + res[-1] + """</span>""", unsafe_allow_html=True ) if action in [2, 3]: _a = find_nearest_training(question) _a = nn_train_list[0] st.markdown( """--- \n ### The most similar question in the ELI5 training set was: \n\n {}""".format(train_exple["""title"""]) ) _a = [ """{}. {}""".format(i + 1, """ \n""".join([line.strip() for line in ans.split("""\n""") if line.strip() != """"""])) for i, (ans, sc) in enumerate(zip(train_exple["""answers"""]["""text"""], train_exple["""answers"""]["""score"""])) if i == 0 or sc > 2 ] st.markdown("""##### Its answers were: \n\n {}""".format("""\n""".join(answers_st))) _a = """ --- **Disclaimer** *The intent of this app is to provide some (hopefully entertaining) insights into the behavior of a current LFQA system. Evaluating biases of such a model and ensuring factual generations are still very much open research problems. Therefore, until some significant progress is achieved, we caution against using the generated answers for practical purposes.* """ st.sidebar.markdown(disclaimer, unsafe_allow_html=True)
19
1
"""simple docstring""" import inspect import unittest from transformers import DecisionTransformerConfig, 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, floats_tensor, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import DecisionTransformerModel from transformers.models.decision_transformer.modeling_decision_transformer import ( DECISION_TRANSFORMER_PRETRAINED_MODEL_ARCHIVE_LIST, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=6 , __a=17 , __a=23 , __a=11 , __a=True , ) -> Optional[int]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = act_dim _UpperCamelCase = state_dim _UpperCamelCase = hidden_size _UpperCamelCase = max_length _UpperCamelCase = is_training def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = floats_tensor((self.batch_size, self.seq_length, self.state_dim)) _UpperCamelCase = floats_tensor((self.batch_size, self.seq_length, self.act_dim)) _UpperCamelCase = floats_tensor((self.batch_size, self.seq_length, 1)) _UpperCamelCase = floats_tensor((self.batch_size, self.seq_length, 1)) _UpperCamelCase = ids_tensor((self.batch_size, self.seq_length) , vocab_size=10_00) _UpperCamelCase = random_attention_mask((self.batch_size, self.seq_length)) _UpperCamelCase = self.get_config() return ( config, states, actions, rewards, returns_to_go, timesteps, attention_mask, ) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return DecisionTransformerConfig( batch_size=self.batch_size , seq_length=self.seq_length , act_dim=self.act_dim , state_dim=self.state_dim , hidden_size=self.hidden_size , max_length=self.max_length , ) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , ) -> List[str]: '''simple docstring''' _UpperCamelCase = DecisionTransformerModel(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , __a , __a , __a , __a , __a) self.parent.assertEqual(result.state_preds.shape , states.shape) self.parent.assertEqual(result.action_preds.shape , actions.shape) self.parent.assertEqual(result.return_preds.shape , returns_to_go.shape) self.parent.assertEqual( result.last_hidden_state.shape , (self.batch_size, self.seq_length * 3, self.hidden_size)) # seq length *3 as there are 3 modelities: states, returns and actions def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = { '''states''': states, '''actions''': actions, '''rewards''': rewards, '''returns_to_go''': returns_to_go, '''timesteps''': timesteps, '''attention_mask''': attention_mask, } return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (DecisionTransformerModel,) if is_torch_available() else () lowercase__ = () lowercase__ = {'feature-extraction': DecisionTransformerModel} if is_torch_available() else {} # Ignoring of a failing test from GenerationTesterMixin, as the model does not use inputs_ids lowercase__ = False # Ignoring of a failing tests from ModelTesterMixin, as the model does not implement these features lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = DecisionTransformerModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) @slow def UpperCAmelCase ( self) -> Any: '''simple docstring''' for model_name in DECISION_TRANSFORMER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = DecisionTransformerModel.from_pretrained(__a) self.assertIsNotNone(__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _UpperCamelCase = inspect.signature(model.forward) # signature.parameters is an OrderedDict => so arg_names order is deterministic _UpperCamelCase = [*signature.parameters.keys()] _UpperCamelCase = [ '''states''', '''actions''', '''rewards''', '''returns_to_go''', '''timesteps''', '''attention_mask''', ] self.assertListEqual(arg_names[: len(__a)] , __a) @require_torch class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = 2 # number of steps of autoregressive prediction we will perform _UpperCamelCase = 10 # defined by the RL environment, may be normalized _UpperCamelCase = DecisionTransformerModel.from_pretrained('''edbeeching/decision-transformer-gym-hopper-expert''') _UpperCamelCase = model.to(__a) _UpperCamelCase = model.config torch.manual_seed(0) _UpperCamelCase = torch.randn(1 , 1 , config.state_dim).to(device=__a , dtype=torch.floataa) # env.reset() _UpperCamelCase = torch.tensor( [[0.24_2793, -0.2869_3074, 0.874_2613], [0.6781_5274, -0.0810_1085, -0.1295_2147]] , device=__a) _UpperCamelCase = torch.tensor(__a , device=__a , dtype=torch.floataa).reshape(1 , 1 , 1) _UpperCamelCase = state _UpperCamelCase = torch.zeros(1 , 0 , config.act_dim , device=__a , dtype=torch.floataa) _UpperCamelCase = torch.zeros(1 , 0 , device=__a , dtype=torch.floataa) _UpperCamelCase = torch.tensor(0 , device=__a , dtype=torch.long).reshape(1 , 1) for step in range(__a): _UpperCamelCase = torch.cat([actions, torch.zeros(1 , 1 , config.act_dim , device=__a)] , dim=1) _UpperCamelCase = torch.cat([rewards, torch.zeros(1 , 1 , device=__a)] , dim=1) _UpperCamelCase = torch.ones(1 , states.shape[1]).to(dtype=torch.long , device=states.device) with torch.no_grad(): _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = model( states=__a , actions=__a , rewards=__a , returns_to_go=__a , timesteps=__a , attention_mask=__a , return_dict=__a , ) self.assertEqual(action_pred.shape , actions.shape) self.assertTrue(torch.allclose(action_pred[0, -1] , expected_outputs[step] , atol=1e-4)) _UpperCamelCase , _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = ( # env.step(action) torch.randn(1 , 1 , config.state_dim).to(device=__a , dtype=torch.floataa), 1.0, False, {}, ) _UpperCamelCase = action_pred[0, -1] _UpperCamelCase = torch.cat([states, state] , dim=1) _UpperCamelCase = returns_to_go[0, -1] - reward _UpperCamelCase = torch.cat([returns_to_go, pred_return.reshape(1 , 1 , 1)] , dim=1) _UpperCamelCase = torch.cat( [timesteps, torch.ones((1, 1) , device=__a , dtype=torch.long) * (step + 1)] , dim=1)
19
"""simple docstring""" import argparse import fairseq import torch from torch import nn from transformers import ( MBartaaTokenizer, MBartConfig, MBartForCausalLM, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() _a = logging.get_logger(__name__) _a = { """post_extract_proj""": """feature_projection.projection""", """encoder.pos_conv.0""": """encoder.pos_conv_embed.conv""", """self_attn.k_proj""": """encoder.layers.*.attention.k_proj""", """self_attn.v_proj""": """encoder.layers.*.attention.v_proj""", """self_attn.q_proj""": """encoder.layers.*.attention.q_proj""", """self_attn.out_proj""": """encoder.layers.*.attention.out_proj""", """self_attn_layer_norm""": """encoder.layers.*.layer_norm""", """fc1""": """encoder.layers.*.feed_forward.intermediate_dense""", """fc2""": """encoder.layers.*.feed_forward.output_dense""", """final_layer_norm""": """encoder.layers.*.final_layer_norm""", """encoder.layer_norm""": """encoder.layer_norm""", """w2v_model.layer_norm""": """feature_projection.layer_norm""", """quantizer.weight_proj""": """quantizer.weight_proj""", """quantizer.vars""": """quantizer.codevectors""", """project_q""": """project_q""", """final_proj""": """project_hid""", """w2v_encoder.proj""": """lm_head""", """mask_emb""": """masked_spec_embed""", } _a = [ """lm_head""", """quantizer.weight_proj""", """quantizer.codevectors""", """project_q""", """project_hid""", ] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" for attribute in key.split('''.''' ): _UpperCamelCase = getattr(__snake_case, __snake_case ) if weight_type is not None: _UpperCamelCase = getattr(__snake_case, __snake_case ).shape else: _UpperCamelCase = hf_pointer.shape assert hf_shape == value.shape, ( 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": _UpperCamelCase = value elif weight_type == "weight_g": _UpperCamelCase = value elif weight_type == "weight_v": _UpperCamelCase = value elif weight_type == "bias": _UpperCamelCase = value else: _UpperCamelCase = value logger.info(F'''{key + "." + weight_type if weight_type is not None else ""} was initialized from {full_name}.''' ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = [] _UpperCamelCase = fairseq_model.state_dict() _UpperCamelCase = hf_model.feature_extractor _UpperCamelCase = hf_model.adapter for name, value in fairseq_dict.items(): _UpperCamelCase = False if "conv_layers" in name: load_conv_layer( __snake_case, __snake_case, __snake_case, __snake_case, hf_model.config.feat_extract_norm == '''group''', ) _UpperCamelCase = True elif any(x in name for x in ['''adaptor''', '''w2v_encoder.proj.''', '''w2v_proj_ln.'''] ): load_adapter(__snake_case, __snake_case, __snake_case, __snake_case ) _UpperCamelCase = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('''w2v_model.''' )[-1] == name.split('''.''' )[0]: _UpperCamelCase = True if "*" in mapped_key: _UpperCamelCase = name.split(__snake_case )[0].split('''.''' )[-2] _UpperCamelCase = mapped_key.replace('''*''', __snake_case ) if "weight_g" in name: _UpperCamelCase = '''weight_g''' elif "weight_v" in name: _UpperCamelCase = '''weight_v''' elif "bias" in name: _UpperCamelCase = '''bias''' elif "weight" in name: _UpperCamelCase = '''weight''' else: _UpperCamelCase = None set_recursively(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) continue if not is_used: unused_weights.append(__snake_case ) logger.warning(F'''Unused weights: {unused_weights}''' ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = full_name.split('''conv_layers.''' )[-1] _UpperCamelCase = name.split('''.''' ) _UpperCamelCase = int(items[0] ) _UpperCamelCase = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _UpperCamelCase = 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: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = full_name.split('''adaptor.''' )[-1] _UpperCamelCase = name.split('''.''' ) if items[1].isdigit(): _UpperCamelCase = int(items[1] ) else: _UpperCamelCase = None if "adaptor" not in full_name: if "proj_ln" in full_name: # has to be layer norm if "bias" in name: assert ( value.shape == adapter.proj_layer_norm.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer norm bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj_layer_norm.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.weight.data.shape} was found.''' _UpperCamelCase = value else: # has to be projection layer if "bias" in name: assert ( value.shape == adapter.proj.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer weight was initialized from {full_name}.''' ) elif isinstance(__snake_case, __snake_case ): if "bias" in name: assert ( value.shape == adapter.layers[layer_id].conv.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) elif "weight" in name: assert ( value.shape == adapter.layers[layer_id].conv.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase , _UpperCamelCase = emb.weight.shape _UpperCamelCase = nn.Linear(__snake_case, __snake_case, bias=__snake_case ) _UpperCamelCase = emb.weight.data return lin_layer @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = WavaVecaConfig.from_pretrained( __snake_case, add_adapter=__snake_case, adapter_stride=__snake_case, adapter_kernel_size=__snake_case, use_auth_token=__snake_case, output_hidden_size=__snake_case, ) _UpperCamelCase = MBartConfig.from_pretrained(__snake_case ) # load model _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path], arg_overrides={ '''config_yaml''': config_yaml_path, '''data''': '''/'''.join(dict_path.split('''/''' )[:-1] ), '''w2v_path''': checkpoint_path, '''load_pretrained_decoder_from''': None, }, ) _UpperCamelCase = model[0].eval() # load feature extractor _UpperCamelCase = WavaVecaFeatureExtractor.from_pretrained(__snake_case, use_auth_token=__snake_case ) # set weights for wav2vec2 encoder _UpperCamelCase = WavaVecaModel(__snake_case ) recursively_load_weights_wavaveca(model.encoder, __snake_case ) # load decoder weights _UpperCamelCase = MBartForCausalLM(__snake_case ) _UpperCamelCase , _UpperCamelCase = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict(), strict=__snake_case ) logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) _UpperCamelCase = SpeechEncoderDecoderModel(encoder=__snake_case, decoder=__snake_case ) _UpperCamelCase = False _UpperCamelCase = MBartaaTokenizer(__snake_case ) tokenizer.save_pretrained(__snake_case ) _UpperCamelCase = hf_wavavec.config.to_dict() _UpperCamelCase = tokenizer.pad_token_id _UpperCamelCase = tokenizer.bos_token_id _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = '''mbart50''' _UpperCamelCase = '''wav2vec2''' _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = 25_00_04 _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = SpeechEncoderDecoderConfig.from_dict(__snake_case ) hf_wavavec.save_pretrained(__snake_case ) feature_extractor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model.""") parser.add_argument("""--checkpoint_path""", default=None, type=str, help="""Path to fairseq checkpoint""") parser.add_argument("""--dict_path""", default=None, type=str, help="""Path to dict of fine-tuned model""") parser.add_argument("""--config_yaml_path""", default=None, type=str, help="""Path to yaml file of fine-tuned model""") parser.add_argument( """--encoder_config_path""", default="""facebook/wav2vec2-xls-r-1b""", type=str, help="""Path to hf encoder wav2vec2 checkpoint config""", ) parser.add_argument( """--decoder_config_path""", default="""facebook/mbart-large-50-one-to-many-mmt""", type=str, help="""Path to hf decoder checkpoint config""", ) parser.add_argument("""--add_adapter""", default=True, type=bool, help="""whethere to add model adapter layers""") parser.add_argument("""--adapter_stride""", default=2, type=int, help="""stride of adapter layers""") parser.add_argument("""--adapter_kernel_size""", default=3, type=int, help="""kernel size of adapter layers""") parser.add_argument("""--encoder_output_dim""", default=1024, type=int, help="""encoder output dim""") parser.add_argument("""--start_token_id""", default=25_0004, type=int, help="""`decoder_start_token_id` of model config""") _a = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, args.config_yaml_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, add_adapter=args.add_adapter, adapter_kernel_size=args.adapter_kernel_size, adapter_stride=args.adapter_stride, decoder_start_token_id=args.start_token_id, encoder_output_dim=args.encoder_output_dim, )
19
1
"""simple docstring""" import os import unittest from transformers import BertTokenizerFast from transformers.models.bert.tokenization_bert import ( VOCAB_FILES_NAMES, BasicTokenizer, BertTokenizer, WordpieceTokenizer, _is_control, _is_punctuation, _is_whitespace, ) from transformers.testing_utils import require_tokenizers, slow from ...test_tokenization_common import TokenizerTesterMixin, filter_non_english @require_tokenizers class _UpperCAmelCase( lowerCamelCase , unittest.TestCase ): lowercase__ = BertTokenizer lowercase__ = BertTokenizerFast lowercase__ = True lowercase__ = True lowercase__ = filter_non_english def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' super().setUp() _UpperCamelCase = [ '''[UNK]''', '''[CLS]''', '''[SEP]''', '''[PAD]''', '''[MASK]''', '''want''', '''##want''', '''##ed''', '''wa''', '''un''', '''runn''', '''##ing''', ''',''', '''low''', '''lowest''', ] _UpperCamelCase = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['''vocab_file''']) with open(self.vocab_file , '''w''' , encoding='''utf-8''') as vocab_writer: vocab_writer.write(''''''.join([x + '''\n''' for x in vocab_tokens])) def UpperCAmelCase ( self , __a) -> str: '''simple docstring''' _UpperCamelCase = '''UNwant\u00E9d,running''' _UpperCamelCase = '''unwanted, running''' return input_text, output_text def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.tokenizer_class(self.vocab_file) _UpperCamelCase = tokenizer.tokenize('''UNwant\u00E9d,running''') self.assertListEqual(__a , ['''un''', '''##want''', '''##ed''', ''',''', '''runn''', '''##ing''']) self.assertListEqual(tokenizer.convert_tokens_to_ids(__a) , [9, 6, 7, 12, 10, 11]) def UpperCAmelCase ( self) -> int: '''simple docstring''' if not self.test_rust_tokenizer: return _UpperCamelCase = self.get_tokenizer() _UpperCamelCase = self.get_rust_tokenizer() _UpperCamelCase = '''UNwant\u00E9d,running''' _UpperCamelCase = tokenizer.tokenize(__a) _UpperCamelCase = rust_tokenizer.tokenize(__a) self.assertListEqual(__a , __a) _UpperCamelCase = tokenizer.encode(__a , add_special_tokens=__a) _UpperCamelCase = rust_tokenizer.encode(__a , add_special_tokens=__a) self.assertListEqual(__a , __a) _UpperCamelCase = self.get_rust_tokenizer() _UpperCamelCase = tokenizer.encode(__a) _UpperCamelCase = rust_tokenizer.encode(__a) self.assertListEqual(__a , __a) # With lower casing _UpperCamelCase = self.get_tokenizer(do_lower_case=__a) _UpperCamelCase = self.get_rust_tokenizer(do_lower_case=__a) _UpperCamelCase = '''UNwant\u00E9d,running''' _UpperCamelCase = tokenizer.tokenize(__a) _UpperCamelCase = rust_tokenizer.tokenize(__a) self.assertListEqual(__a , __a) _UpperCamelCase = tokenizer.encode(__a , add_special_tokens=__a) _UpperCamelCase = rust_tokenizer.encode(__a , add_special_tokens=__a) self.assertListEqual(__a , __a) _UpperCamelCase = self.get_rust_tokenizer() _UpperCamelCase = tokenizer.encode(__a) _UpperCamelCase = rust_tokenizer.encode(__a) self.assertListEqual(__a , __a) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = BasicTokenizer() self.assertListEqual(tokenizer.tokenize('''ah\u535A\u63A8zz''') , ['''ah''', '''\u535A''', '''\u63A8''', '''zz''']) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a) self.assertListEqual( tokenizer.tokenize(''' \tHeLLo!how \n Are yoU? ''') , ['''hello''', '''!''', '''how''', '''are''', '''you''', '''?''']) self.assertListEqual(tokenizer.tokenize('''H\u00E9llo''') , ['''hello''']) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a , strip_accents=__a) self.assertListEqual( tokenizer.tokenize(''' \tHäLLo!how \n Are yoU? ''') , ['''hällo''', '''!''', '''how''', '''are''', '''you''', '''?''']) self.assertListEqual(tokenizer.tokenize('''H\u00E9llo''') , ['''h\u00E9llo''']) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a , strip_accents=__a) self.assertListEqual( tokenizer.tokenize(''' \tHäLLo!how \n Are yoU? ''') , ['''hallo''', '''!''', '''how''', '''are''', '''you''', '''?''']) self.assertListEqual(tokenizer.tokenize('''H\u00E9llo''') , ['''hello''']) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a) self.assertListEqual( tokenizer.tokenize(''' \tHäLLo!how \n Are yoU? ''') , ['''hallo''', '''!''', '''how''', '''are''', '''you''', '''?''']) self.assertListEqual(tokenizer.tokenize('''H\u00E9llo''') , ['''hello''']) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a) self.assertListEqual( tokenizer.tokenize(''' \tHeLLo!how \n Are yoU? ''') , ['''HeLLo''', '''!''', '''how''', '''Are''', '''yoU''', '''?''']) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a , strip_accents=__a) self.assertListEqual( tokenizer.tokenize(''' \tHäLLo!how \n Are yoU? ''') , ['''HäLLo''', '''!''', '''how''', '''Are''', '''yoU''', '''?''']) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a , strip_accents=__a) self.assertListEqual( tokenizer.tokenize(''' \tHäLLo!how \n Are yoU? ''') , ['''HaLLo''', '''!''', '''how''', '''Are''', '''yoU''', '''?''']) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = BasicTokenizer(do_lower_case=__a , never_split=['''[UNK]''']) self.assertListEqual( tokenizer.tokenize(''' \tHeLLo!how \n Are yoU? [UNK]''') , ['''HeLLo''', '''!''', '''how''', '''Are''', '''yoU''', '''?''', '''[UNK]''']) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = BasicTokenizer() _UpperCamelCase = '''a\n\'ll !!to?\'d of, can\'t.''' _UpperCamelCase = ['''a''', '''\'''', '''ll''', '''!''', '''!''', '''to''', '''?''', '''\'''', '''d''', '''of''', ''',''', '''can''', '''\'''', '''t''', '''.'''] self.assertListEqual(tokenizer.tokenize(__a) , __a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = ['''[UNK]''', '''[CLS]''', '''[SEP]''', '''want''', '''##want''', '''##ed''', '''wa''', '''un''', '''runn''', '''##ing'''] _UpperCamelCase = {} for i, token in enumerate(__a): _UpperCamelCase = i _UpperCamelCase = WordpieceTokenizer(vocab=__a , unk_token='''[UNK]''') self.assertListEqual(tokenizer.tokenize('''''') , []) self.assertListEqual(tokenizer.tokenize('''unwanted running''') , ['''un''', '''##want''', '''##ed''', '''runn''', '''##ing''']) self.assertListEqual(tokenizer.tokenize('''unwantedX running''') , ['''[UNK]''', '''runn''', '''##ing''']) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' self.assertTrue(_is_whitespace(''' ''')) self.assertTrue(_is_whitespace('''\t''')) self.assertTrue(_is_whitespace('''\r''')) self.assertTrue(_is_whitespace('''\n''')) self.assertTrue(_is_whitespace('''\u00A0''')) self.assertFalse(_is_whitespace('''A''')) self.assertFalse(_is_whitespace('''-''')) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' self.assertTrue(_is_control('''\u0005''')) self.assertFalse(_is_control('''A''')) self.assertFalse(_is_control(''' ''')) self.assertFalse(_is_control('''\t''')) self.assertFalse(_is_control('''\r''')) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' self.assertTrue(_is_punctuation('''-''')) self.assertTrue(_is_punctuation('''$''')) self.assertTrue(_is_punctuation('''`''')) self.assertTrue(_is_punctuation('''.''')) self.assertFalse(_is_punctuation('''A''')) self.assertFalse(_is_punctuation(''' ''')) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.get_tokenizer() _UpperCamelCase = self.get_rust_tokenizer() # Example taken from the issue https://github.com/huggingface/tokenizers/issues/340 self.assertListEqual([tokenizer.tokenize(__a) for t in ['''Test''', '''\xad''', '''test''']] , [['''[UNK]'''], [], ['''[UNK]''']]) self.assertListEqual( [rust_tokenizer.tokenize(__a) for t in ['''Test''', '''\xad''', '''test''']] , [['''[UNK]'''], [], ['''[UNK]''']]) @slow def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.tokenizer_class.from_pretrained('''bert-base-uncased''') _UpperCamelCase = tokenizer.encode('''sequence builders''' , add_special_tokens=__a) _UpperCamelCase = tokenizer.encode('''multi-sequence build''' , add_special_tokens=__a) _UpperCamelCase = tokenizer.build_inputs_with_special_tokens(__a) _UpperCamelCase = tokenizer.build_inputs_with_special_tokens(__a , __a) assert encoded_sentence == [1_01] + text + [1_02] assert encoded_pair == [1_01] + text + [1_02] + text_a + [1_02] def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for tokenizer, pretrained_name, kwargs in self.tokenizers_list: with self.subTest(F'''{tokenizer.__class__.__name__} ({pretrained_name})'''): _UpperCamelCase = self.rust_tokenizer_class.from_pretrained(__a , **__a) _UpperCamelCase = F'''A, naïve {tokenizer_r.mask_token} AllenNLP sentence.''' _UpperCamelCase = tokenizer_r.encode_plus( __a , return_attention_mask=__a , return_token_type_ids=__a , return_offsets_mapping=__a , add_special_tokens=__a , ) _UpperCamelCase = tokenizer_r.do_lower_case if hasattr(__a , '''do_lower_case''') else False _UpperCamelCase = ( [ ((0, 0), tokenizer_r.cls_token), ((0, 1), '''A'''), ((1, 2), ''','''), ((3, 5), '''na'''), ((5, 6), '''##ï'''), ((6, 8), '''##ve'''), ((9, 15), tokenizer_r.mask_token), ((16, 21), '''Allen'''), ((21, 23), '''##NL'''), ((23, 24), '''##P'''), ((25, 33), '''sentence'''), ((33, 34), '''.'''), ((0, 0), tokenizer_r.sep_token), ] if not do_lower_case else [ ((0, 0), tokenizer_r.cls_token), ((0, 1), '''a'''), ((1, 2), ''','''), ((3, 8), '''naive'''), ((9, 15), tokenizer_r.mask_token), ((16, 21), '''allen'''), ((21, 23), '''##nl'''), ((23, 24), '''##p'''), ((25, 33), '''sentence'''), ((33, 34), '''.'''), ((0, 0), tokenizer_r.sep_token), ] ) self.assertEqual( [e[1] for e in expected_results] , tokenizer_r.convert_ids_to_tokens(tokens['''input_ids'''])) self.assertEqual([e[0] for e in expected_results] , tokens['''offset_mapping''']) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ['''的''', '''人''', '''有'''] _UpperCamelCase = ''''''.join(__a) for tokenizer, pretrained_name, kwargs in self.tokenizers_list: with self.subTest(F'''{tokenizer.__class__.__name__} ({pretrained_name})'''): _UpperCamelCase = True _UpperCamelCase = self.tokenizer_class.from_pretrained(__a , **__a) _UpperCamelCase = self.rust_tokenizer_class.from_pretrained(__a , **__a) _UpperCamelCase = tokenizer_p.encode(__a , add_special_tokens=__a) _UpperCamelCase = tokenizer_r.encode(__a , add_special_tokens=__a) _UpperCamelCase = tokenizer_r.convert_ids_to_tokens(__a) _UpperCamelCase = tokenizer_p.convert_ids_to_tokens(__a) # it is expected that each Chinese character is not preceded by "##" self.assertListEqual(__a , __a) self.assertListEqual(__a , __a) _UpperCamelCase = False _UpperCamelCase = self.rust_tokenizer_class.from_pretrained(__a , **__a) _UpperCamelCase = self.tokenizer_class.from_pretrained(__a , **__a) _UpperCamelCase = tokenizer_r.encode(__a , add_special_tokens=__a) _UpperCamelCase = tokenizer_p.encode(__a , add_special_tokens=__a) _UpperCamelCase = tokenizer_r.convert_ids_to_tokens(__a) _UpperCamelCase = tokenizer_p.convert_ids_to_tokens(__a) # it is expected that only the first Chinese character is not preceded by "##". _UpperCamelCase = [ F'''##{token}''' if idx != 0 else token for idx, token in enumerate(__a) ] self.assertListEqual(__a , __a) self.assertListEqual(__a , __a)
19
"""simple docstring""" import fire from utils import calculate_rouge, save_json def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case=None, **__snake_case ) -> Optional[int]: """simple docstring""" _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()] _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()][: len(__snake_case )] _UpperCamelCase = calculate_rouge(__snake_case, __snake_case, **__snake_case ) if save_path is not None: save_json(__snake_case, __snake_case, indent=__snake_case ) return metrics # these print nicely if __name__ == "__main__": fire.Fire(calculate_rouge_path)
19
1
"""simple docstring""" def lowerCamelCase__ ( __snake_case ) -> int: """simple docstring""" if a < 0: raise ValueError('''Input value must be a positive integer''' ) elif isinstance(__snake_case, __snake_case ): raise TypeError('''Input value must be a \'int\' type''' ) return bin(__snake_case ).count('''1''' ) if __name__ == "__main__": import doctest doctest.testmod()
19
"""simple docstring""" import warnings from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'ViTImageProcessor' lowercase__ = ('CLIPTokenizer', 'CLIPTokenizerFast') def __init__( self , __a=None , __a=None , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) def __call__( self , __a=None , __a=None , __a=None , __a=None , **__a) -> Tuple: '''simple docstring''' if text is None and visual_prompt is None and images is None: raise ValueError('''You have to specify either text, visual prompt or images.''') if text is not None and visual_prompt is not None: raise ValueError('''You have to specify exactly one type of prompt. Either text or visual prompt.''') if text is not None: _UpperCamelCase = self.tokenizer(__a , return_tensors=__a , **__a) if visual_prompt is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if images is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if visual_prompt is not None and images is not None: _UpperCamelCase = { '''pixel_values''': image_features.pixel_values, '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding elif text is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif text is not None: return encoding elif visual_prompt is not None: _UpperCamelCase = { '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding else: return BatchEncoding(data=dict(**__a) , tensor_type=__a) def UpperCAmelCase ( self , *__a , **__a) -> Any: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> List[str]: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
1
"""simple docstring""" import colorsys from PIL import Image # type: ignore def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> float: """simple docstring""" _UpperCamelCase = x _UpperCamelCase = y for step in range(__snake_case ): # noqa: B007 _UpperCamelCase = a * a - b * b + x _UpperCamelCase = 2 * a * b + y _UpperCamelCase = a_new # divergence happens for all complex number with an absolute value # greater than 4 if a * a + b * b > 4: break return step / (max_step - 1) def lowerCamelCase__ ( __snake_case ) -> tuple: """simple docstring""" if distance == 1: return (0, 0, 0) else: return (2_55, 2_55, 2_55) def lowerCamelCase__ ( __snake_case ) -> tuple: """simple docstring""" if distance == 1: return (0, 0, 0) else: return tuple(round(i * 2_55 ) for i in colorsys.hsv_to_rgb(__snake_case, 1, 1 ) ) def lowerCamelCase__ ( __snake_case = 8_00, __snake_case = 6_00, __snake_case = -0.6, __snake_case = 0, __snake_case = 3.2, __snake_case = 50, __snake_case = True, ) -> Image.Image: """simple docstring""" _UpperCamelCase = Image.new('''RGB''', (image_width, image_height) ) _UpperCamelCase = img.load() # loop through the image-coordinates for image_x in range(__snake_case ): for image_y in range(__snake_case ): # determine the figure-coordinates based on the image-coordinates _UpperCamelCase = figure_width / image_width * image_height _UpperCamelCase = figure_center_x + (image_x / image_width - 0.5) * figure_width _UpperCamelCase = figure_center_y + (image_y / image_height - 0.5) * figure_height _UpperCamelCase = get_distance(__snake_case, __snake_case, __snake_case ) # color the corresponding pixel based on the selected coloring-function if use_distance_color_coding: _UpperCamelCase = get_color_coded_rgb(__snake_case ) else: _UpperCamelCase = get_black_and_white_rgb(__snake_case ) return img if __name__ == "__main__": import doctest doctest.testmod() # colored version, full figure _a = get_image() # uncomment for colored version, different section, zoomed in # img = get_image(figure_center_x = -0.6, figure_center_y = -0.4, # figure_width = 0.8) # uncomment for black and white version, full figure # img = get_image(use_distance_color_coding = False) # uncomment to save the image # img.save("mandelbrot.png") img.show()
19
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=32 , __a=3 , __a=4 , __a=[10, 20, 30, 40] , __a=[2, 2, 3, 2] , __a=True , __a=True , __a=37 , __a="gelu" , __a=10 , __a=0.02 , __a=["stage2", "stage3", "stage4"] , __a=3 , __a=None , ) -> Optional[Any]: '''simple docstring''' _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 = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = out_features _UpperCamelCase = num_labels _UpperCamelCase = scope _UpperCamelCase = num_stages def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Any: '''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) -> Optional[int]: '''simple docstring''' return UperNetConfig( backbone_config=self.get_backbone_config() , hidden_size=5_12 , pool_scales=[1, 2, 3, 6] , use_auxiliary_head=__a , auxiliary_loss_weight=0.4 , auxiliary_in_channels=40 , auxiliary_channels=2_56 , auxiliary_num_convs=1 , auxiliary_concat_input=__a , loss_ignore_index=2_55 , num_labels=self.num_labels , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = UperNetForSemanticSegmentation(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual( result.logits.shape , (self.batch_size, self.num_labels, self.image_size, self.image_size)) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (UperNetForSemanticSegmentation,) if is_torch_available() else () lowercase__ = {'image-segmentation': UperNetForSemanticSegmentation} if is_torch_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = UperNetModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , 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) -> List[Any]: '''simple docstring''' return def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__a) @unittest.skip(reason='''UperNet does not use inputs_embeds''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not support input and output embeddings''') def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> int: '''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) -> Union[str, 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) -> List[Any]: '''simple docstring''' def check_hidden_states_output(__a , __a , __a): _UpperCamelCase = model_class(__a) model.to(__a) model.eval() with torch.no_grad(): _UpperCamelCase = model(**self._prepare_for_class(__a , __a)) _UpperCamelCase = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states _UpperCamelCase = self.model_tester.num_stages self.assertEqual(len(__a) , 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 = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) _UpperCamelCase = _config_zero_init(configs_no_init.backbone_config) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) 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) -> Optional[int]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''', repo_type='''dataset''', filename='''ADE_val_00000001.jpg''' ) _UpperCamelCase = Image.open(__snake_case ).convert('''RGB''' ) return image @require_torch @require_vision @slow class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4))
19
1
"""simple docstring""" # flake8: noqa # Lint as: python3 from typing import Dict, List, Optional, Type from .. import config from ..utils import logging from .formatting import ( ArrowFormatter, CustomFormatter, Formatter, PandasFormatter, PythonFormatter, TensorFormatter, format_table, query_table, ) from .np_formatter import NumpyFormatter _a = logging.get_logger(__name__) _a = {} _a = {} _a = {} def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case = None, ) -> int: """simple docstring""" _UpperCamelCase = aliases if aliases is not None else [] if format_type in _FORMAT_TYPES: logger.warning( F'''Overwriting format type \'{format_type}\' ({_FORMAT_TYPES[format_type].__name__} -> {formatter_cls.__name__})''' ) _UpperCamelCase = formatter_cls for alias in set(aliases + [format_type] ): if alias in _FORMAT_TYPES_ALIASES: logger.warning( F'''Overwriting format type alias \'{alias}\' ({_FORMAT_TYPES_ALIASES[alias]} -> {format_type})''' ) _UpperCamelCase = format_type def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case = None ) -> Optional[int]: """simple docstring""" _UpperCamelCase = aliases if aliases is not None else [] for alias in set(aliases + [format_type] ): _UpperCamelCase = unavailable_error # Here we define all the available formatting functions that can be used by `Dataset.set_format` _register_formatter(PythonFormatter, None, aliases=["""python"""]) _register_formatter(ArrowFormatter, """arrow""", aliases=["""pa""", """pyarrow"""]) _register_formatter(NumpyFormatter, """numpy""", aliases=["""np"""]) _register_formatter(PandasFormatter, """pandas""", aliases=["""pd"""]) _register_formatter(CustomFormatter, """custom""") if config.TORCH_AVAILABLE: from .torch_formatter import TorchFormatter _register_formatter(TorchFormatter, """torch""", aliases=["""pt""", """pytorch"""]) else: _a = ValueError("""PyTorch needs to be installed to be able to return PyTorch tensors.""") _register_unavailable_formatter(_torch_error, """torch""", aliases=["""pt""", """pytorch"""]) if config.TF_AVAILABLE: from .tf_formatter import TFFormatter _register_formatter(TFFormatter, """tensorflow""", aliases=["""tf"""]) else: _a = ValueError("""Tensorflow needs to be installed to be able to return Tensorflow tensors.""") _register_unavailable_formatter(_tf_error, """tensorflow""", aliases=["""tf"""]) if config.JAX_AVAILABLE: from .jax_formatter import JaxFormatter _register_formatter(JaxFormatter, """jax""", aliases=[]) else: _a = ValueError("""JAX needs to be installed to be able to return JAX arrays.""") _register_unavailable_formatter(_jax_error, """jax""", aliases=[]) def lowerCamelCase__ ( __snake_case ) -> Optional[str]: """simple docstring""" if format_type in _FORMAT_TYPES_ALIASES: return _FORMAT_TYPES_ALIASES[format_type] else: return format_type def lowerCamelCase__ ( __snake_case, **__snake_case ) -> Formatter: """simple docstring""" _UpperCamelCase = get_format_type_from_alias(__snake_case ) if format_type in _FORMAT_TYPES: return _FORMAT_TYPES[format_type](**__snake_case ) if format_type in _FORMAT_TYPES_ALIASES_UNAVAILABLE: raise _FORMAT_TYPES_ALIASES_UNAVAILABLE[format_type] else: raise ValueError( F'''Return type should be None or selected in {list(type for type in _FORMAT_TYPES.keys() if type != None )}, but got \'{format_type}\'''' )
19
"""simple docstring""" import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DDPMScheduler,) def UpperCAmelCase ( self , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 10_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**__a) return config def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for timesteps in [1, 5, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> int: '''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=__a , beta_end=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for clip_sample in [True, False]: self.check_over_configs(clip_sample=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.check_over_configs(thresholding=__a) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=__a , prediction_type=__a , sample_max_value=__a , ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for t in [0, 5_00, 9_99]: self.check_over_forward(time_step=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) assert torch.sum(torch.abs(scheduler._get_variance(0) - 0.0)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_87) - 0.0_0979)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_99) - 0.02)) < 1e-5 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 258.9606) < 1e-2 assert abs(result_mean.item() - 0.3372) < 1e-3 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 202.0296) < 1e-2 assert abs(result_mean.item() - 0.2631) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] scheduler.set_timesteps(timesteps=__a) _UpperCamelCase = scheduler.timesteps for i, timestep in enumerate(__a): if i == len(__a) - 1: _UpperCamelCase = -1 else: _UpperCamelCase = timesteps[i + 1] _UpperCamelCase = scheduler.previous_timestep(__a) _UpperCamelCase = prev_t.item() self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 51, 0] with self.assertRaises(__a , msg='''`custom_timesteps` must be in descending order.'''): scheduler.set_timesteps(timesteps=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] _UpperCamelCase = len(__a) with self.assertRaises(__a , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.'''): scheduler.set_timesteps(num_inference_steps=__a , timesteps=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [scheduler.config.num_train_timesteps] with self.assertRaises( __a , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=__a)
19
1
"""simple docstring""" def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" def update_area_of_max_square(__snake_case, __snake_case ) -> int: # BASE CASE if row >= rows or col >= cols: return 0 _UpperCamelCase = update_area_of_max_square(__snake_case, col + 1 ) _UpperCamelCase = update_area_of_max_square(row + 1, col + 1 ) _UpperCamelCase = update_area_of_max_square(row + 1, __snake_case ) if mat[row][col]: _UpperCamelCase = 1 + min([right, diagonal, down] ) _UpperCamelCase = max(largest_square_area[0], __snake_case ) return sub_problem_sol else: return 0 _UpperCamelCase = [0] update_area_of_max_square(0, 0 ) return largest_square_area[0] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" def update_area_of_max_square_using_dp_array( __snake_case, __snake_case, __snake_case ) -> int: if row >= rows or col >= cols: return 0 if dp_array[row][col] != -1: return dp_array[row][col] _UpperCamelCase = update_area_of_max_square_using_dp_array(__snake_case, col + 1, __snake_case ) _UpperCamelCase = update_area_of_max_square_using_dp_array(row + 1, col + 1, __snake_case ) _UpperCamelCase = update_area_of_max_square_using_dp_array(row + 1, __snake_case, __snake_case ) if mat[row][col]: _UpperCamelCase = 1 + min([right, diagonal, down] ) _UpperCamelCase = max(largest_square_area[0], __snake_case ) _UpperCamelCase = sub_problem_sol return sub_problem_sol else: return 0 _UpperCamelCase = [0] _UpperCamelCase = [[-1] * cols for _ in range(__snake_case )] update_area_of_max_square_using_dp_array(0, 0, __snake_case ) return largest_square_area[0] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" _UpperCamelCase = [[0] * (cols + 1) for _ in range(rows + 1 )] _UpperCamelCase = 0 for row in range(rows - 1, -1, -1 ): for col in range(cols - 1, -1, -1 ): _UpperCamelCase = dp_array[row][col + 1] _UpperCamelCase = dp_array[row + 1][col + 1] _UpperCamelCase = dp_array[row + 1][col] if mat[row][col] == 1: _UpperCamelCase = 1 + min(__snake_case, __snake_case, __snake_case ) _UpperCamelCase = max(dp_array[row][col], __snake_case ) else: _UpperCamelCase = 0 return largest_square_area def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" _UpperCamelCase = [0] * (cols + 1) _UpperCamelCase = [0] * (cols + 1) _UpperCamelCase = 0 for row in range(rows - 1, -1, -1 ): for col in range(cols - 1, -1, -1 ): _UpperCamelCase = current_row[col + 1] _UpperCamelCase = next_row[col + 1] _UpperCamelCase = next_row[col] if mat[row][col] == 1: _UpperCamelCase = 1 + min(__snake_case, __snake_case, __snake_case ) _UpperCamelCase = max(current_row[col], __snake_case ) else: _UpperCamelCase = 0 _UpperCamelCase = current_row return largest_square_area if __name__ == "__main__": import doctest doctest.testmod() print(largest_square_area_in_matrix_bottom_up(2, 2, [[1, 1], [1, 1]]))
19
"""simple docstring""" from __future__ import annotations from functools import lru_cache from math import ceil _a = 100 _a = set(range(3, NUM_PRIMES, 2)) primes.add(2) _a = 42 for prime in range(3, ceil(NUM_PRIMES**0.5), 2): if prime not in primes: continue primes.difference_update(set(range(prime * prime, NUM_PRIMES, prime))) @lru_cache(maxsize=1_00 ) def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" if number_to_partition < 0: return set() elif number_to_partition == 0: return {1} _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = 42 for prime in primes: if prime > number_to_partition: continue for sub in partition(number_to_partition - prime ): ret.add(sub * prime ) return ret def lowerCamelCase__ ( __snake_case = 50_00 ) -> int | None: """simple docstring""" for number_to_partition in range(1, __snake_case ): if len(partition(__snake_case ) ) > number_unique_partitions: return number_to_partition return None if __name__ == "__main__": print(F"""{solution() = }""")
19
1
"""simple docstring""" from dataclasses import dataclass from typing import List, Optional, Union import numpy as np import torch from ...utils import BaseOutput, OptionalDependencyNotAvailable, is_torch_available, is_transformers_available @dataclass class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 42 try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .pipeline_text_to_video_synth import TextToVideoSDPipeline from .pipeline_text_to_video_synth_imgaimg import VideoToVideoSDPipeline # noqa: F401 from .pipeline_text_to_video_zero import TextToVideoZeroPipeline
19
"""simple docstring""" from collections.abc import Callable import numpy as np def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> np.array: """simple docstring""" _UpperCamelCase = int(np.ceil((x_end - xa) / step_size ) ) _UpperCamelCase = np.zeros((n + 1,) ) _UpperCamelCase = ya _UpperCamelCase = xa for k in range(__snake_case ): _UpperCamelCase = y[k] + step_size * ode_func(__snake_case, y[k] ) _UpperCamelCase = y[k] + ( (step_size / 2) * (ode_func(__snake_case, y[k] ) + ode_func(x + step_size, __snake_case )) ) x += step_size return y if __name__ == "__main__": import doctest doctest.testmod()
19
1
"""simple docstring""" import unittest import numpy as np import torch from transformers import CLIPTextConfig, CLIPTextModel from diffusers import DDIMScheduler, LDMPipeline, UNetaDModel, VQModel from diffusers.utils.testing_utils import enable_full_determinism, require_torch, slow, torch_device enable_full_determinism() class _UpperCAmelCase( unittest.TestCase ): @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' torch.manual_seed(0) _UpperCamelCase = 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''') , ) return model @property def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' torch.manual_seed(0) _UpperCamelCase = VQModel( block_out_channels=[32, 64] , in_channels=3 , out_channels=3 , down_block_types=['''DownEncoderBlock2D''', '''DownEncoderBlock2D'''] , up_block_types=['''UpDecoderBlock2D''', '''UpDecoderBlock2D'''] , latent_channels=3 , ) return model @property def UpperCAmelCase ( self) -> int: '''simple docstring''' torch.manual_seed(0) _UpperCamelCase = CLIPTextConfig( bos_token_id=0 , eos_token_id=2 , hidden_size=32 , intermediate_size=37 , layer_norm_eps=1e-05 , num_attention_heads=4 , num_hidden_layers=5 , pad_token_id=1 , vocab_size=10_00 , ) return CLIPTextModel(__a) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.dummy_uncond_unet _UpperCamelCase = DDIMScheduler() _UpperCamelCase = self.dummy_vq_model _UpperCamelCase = LDMPipeline(unet=__a , vqvae=__a , scheduler=__a) ldm.to(__a) ldm.set_progress_bar_config(disable=__a) _UpperCamelCase = torch.manual_seed(0) _UpperCamelCase = ldm(generator=__a , num_inference_steps=2 , output_type='''numpy''').images _UpperCamelCase = torch.manual_seed(0) _UpperCamelCase = ldm(generator=__a , num_inference_steps=2 , output_type='''numpy''' , return_dict=__a)[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.8512, 0.818, 0.6411, 0.6808, 0.4465, 0.5618, 0.46, 0.6231, 0.5172]) _UpperCamelCase = 1e-2 if torch_device != '''mps''' else 3e-2 assert np.abs(image_slice.flatten() - expected_slice).max() < tolerance assert np.abs(image_from_tuple_slice.flatten() - expected_slice).max() < tolerance @slow @require_torch class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = LDMPipeline.from_pretrained('''CompVis/ldm-celebahq-256''') ldm.to(__a) ldm.set_progress_bar_config(disable=__a) _UpperCamelCase = torch.manual_seed(0) _UpperCamelCase = ldm(generator=__a , num_inference_steps=5 , output_type='''numpy''').images _UpperCamelCase = image[0, -3:, -3:, -1] assert image.shape == (1, 2_56, 2_56, 3) _UpperCamelCase = np.array([0.4399, 0.4_4975, 0.4_6825, 0.474, 0.4359, 0.4581, 0.4_5095, 0.4341, 0.4447]) _UpperCamelCase = 1e-2 if torch_device != '''mps''' else 3e-2 assert np.abs(image_slice.flatten() - expected_slice).max() < tolerance
19
"""simple docstring""" import argparse import torch from transformers import BertForMaskedLM if __name__ == "__main__": _a = argparse.ArgumentParser( description=( """Extraction some layers of the full BertForMaskedLM or RObertaForMaskedLM for Transfer Learned""" """ Distillation""" ) ) parser.add_argument("""--model_type""", default="""bert""", choices=["""bert"""]) parser.add_argument("""--model_name""", default="""bert-base-uncased""", type=str) parser.add_argument("""--dump_checkpoint""", default="""serialization_dir/tf_bert-base-uncased_0247911.pth""", type=str) parser.add_argument("""--vocab_transform""", action="""store_true""") _a = parser.parse_args() if args.model_type == "bert": _a = BertForMaskedLM.from_pretrained(args.model_name) _a = """bert""" else: raise ValueError("""args.model_type should be \"bert\".""") _a = model.state_dict() _a = {} for w in ["word_embeddings", "position_embeddings"]: _a = state_dict[F"""{prefix}.embeddings.{w}.weight"""] for w in ["weight", "bias"]: _a = state_dict[F"""{prefix}.embeddings.LayerNorm.{w}"""] _a = 0 for teacher_idx in [0, 2, 4, 7, 9, 11]: for w in ["weight", "bias"]: _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.query.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.key.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.value.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.LayerNorm.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.intermediate.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.LayerNorm.{w}""" ] std_idx += 1 _a = state_dict["""cls.predictions.decoder.weight"""] _a = state_dict["""cls.predictions.bias"""] if args.vocab_transform: for w in ["weight", "bias"]: _a = state_dict[F"""cls.predictions.transform.dense.{w}"""] _a = state_dict[F"""cls.predictions.transform.LayerNorm.{w}"""] print(F"""N layers selected for distillation: {std_idx}""") print(F"""Number of params transferred for distillation: {len(compressed_sd.keys())}""") print(F"""Save transferred checkpoint to {args.dump_checkpoint}.""") torch.save(compressed_sd, args.dump_checkpoint)
19
1
"""simple docstring""" 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 lowerCamelCase__ ( __snake_case, __snake_case=False ) -> List[str]: """simple docstring""" try: _UpperCamelCase = os.environ[key] except KeyError: # KEY isn't set, default to `default`. _UpperCamelCase = default else: # KEY is set, convert it to True or False. try: _UpperCamelCase = strtobool(__snake_case ) 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 _a = parse_flag_from_env("""RUN_SLOW""", default=False) _a = parse_flag_from_env("""RUN_REMOTE""", default=False) _a = parse_flag_from_env("""RUN_LOCAL""", default=True) _a = parse_flag_from_env("""RUN_PACKAGED""", default=True) # Compression _a = pytest.mark.skipif(not config.LZ4_AVAILABLE, reason="""test requires lz4""") _a = pytest.mark.skipif(not config.PY7ZR_AVAILABLE, reason="""test requires py7zr""") _a = pytest.mark.skipif(not config.ZSTANDARD_AVAILABLE, reason="""test requires zstandard""") # Audio _a = 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 _a = 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 _a = pytest.mark.skipif( config.DILL_VERSION <= version.parse("""0.3.2"""), reason="""test requires dill>0.3.2 for cloudpickle compatibility""", ) # Windows _a = pytest.mark.skipif( sys.platform == """win32""", reason="""test should not be run on Windows""", ) def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" try: import faiss # noqa except ImportError: _UpperCamelCase = unittest.skip('''test requires faiss''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Union[str, Any]: """simple docstring""" try: import regex # noqa except ImportError: _UpperCamelCase = unittest.skip('''test requires regex''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Tuple: """simple docstring""" try: import elasticsearch # noqa except ImportError: _UpperCamelCase = unittest.skip('''test requires elasticsearch''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Dict: """simple docstring""" try: import sqlalchemy # noqa except ImportError: _UpperCamelCase = unittest.skip('''test requires sqlalchemy''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if not config.TORCH_AVAILABLE: _UpperCamelCase = unittest.skip('''test requires PyTorch''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Any: """simple docstring""" if not config.TF_AVAILABLE: _UpperCamelCase = unittest.skip('''test requires TensorFlow''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Dict: """simple docstring""" if not config.JAX_AVAILABLE: _UpperCamelCase = unittest.skip('''test requires JAX''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> List[str]: """simple docstring""" if not config.PIL_AVAILABLE: _UpperCamelCase = unittest.skip('''test requires Pillow''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> List[Any]: """simple docstring""" try: import transformers # noqa F401 except ImportError: return unittest.skip('''test requires transformers''' )(__snake_case ) else: return test_case def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" try: import tiktoken # noqa F401 except ImportError: return unittest.skip('''test requires tiktoken''' )(__snake_case ) else: return test_case def lowerCamelCase__ ( __snake_case ) -> Tuple: """simple docstring""" try: import spacy # noqa F401 except ImportError: return unittest.skip('''test requires spacy''' )(__snake_case ) else: return test_case def lowerCamelCase__ ( __snake_case ) -> Any: """simple docstring""" def _require_spacy_model(__snake_case ): try: import spacy # noqa F401 spacy.load(__snake_case ) except ImportError: return unittest.skip('''test requires spacy''' )(__snake_case ) except OSError: return unittest.skip('''test requires spacy model \'{}\''''.format(__snake_case ) )(__snake_case ) else: return test_case return _require_spacy_model def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" try: import pyspark # noqa F401 except ImportError: return unittest.skip('''test requires pyspark''' )(__snake_case ) else: return test_case def lowerCamelCase__ ( __snake_case ) -> Dict: """simple docstring""" try: import joblibspark # noqa F401 except ImportError: return unittest.skip('''test requires joblibspark''' )(__snake_case ) else: return test_case def lowerCamelCase__ ( __snake_case ) -> Any: """simple docstring""" if not _run_slow_tests or _run_slow_tests == 0: _UpperCamelCase = unittest.skip('''test is slow''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" if not _run_local_tests or _run_local_tests == 0: _UpperCamelCase = unittest.skip('''test is local''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if not _run_packaged_tests or _run_packaged_tests == 0: _UpperCamelCase = unittest.skip('''test is packaged''' )(__snake_case ) return test_case def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if not _run_remote_tests or _run_remote_tests == 0: _UpperCamelCase = unittest.skip('''test requires remote''' )(__snake_case ) return test_case def lowerCamelCase__ ( *__snake_case ) -> str: """simple docstring""" def decorate(cls ): for name, fn in cls.__dict__.items(): if callable(__snake_case ) and name.startswith('''test''' ): for decorator in decorators: _UpperCamelCase = decorator(__snake_case ) setattr(cls, __snake_case, __snake_case ) return cls return decorate class _UpperCAmelCase( lowerCamelCase ): pass class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 0 lowercase__ = 1 lowercase__ = 2 @contextmanager def lowerCamelCase__ ( __snake_case=OfflineSimulationMode.CONNECTION_FAILS, __snake_case=1e-16 ) -> str: """simple docstring""" _UpperCamelCase = requests.Session().request def timeout_request(__snake_case, __snake_case, __snake_case, **__snake_case ): # Change the url to an invalid url so that the connection hangs _UpperCamelCase = '''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.''' ) _UpperCamelCase = timeout try: return online_request(__snake_case, __snake_case, **__snake_case ) except Exception as e: # The following changes in the error are just here to make the offline timeout error prettier _UpperCamelCase = url _UpperCamelCase = e.args[0] _UpperCamelCase = (max_retry_error.args[0].replace('''10.255.255.1''', F'''OfflineMock[{url}]''' ),) _UpperCamelCase = (max_retry_error,) raise def raise_connection_error(__snake_case, __snake_case, **__snake_case ): raise requests.ConnectionError('''Offline mode is enabled.''', request=__snake_case ) if mode is OfflineSimulationMode.CONNECTION_FAILS: with patch('''requests.Session.send''', __snake_case ): yield elif mode is OfflineSimulationMode.CONNECTION_TIMES_OUT: # inspired from https://stackoverflow.com/a/904609 with patch('''requests.Session.request''', __snake_case ): yield elif mode is OfflineSimulationMode.HF_DATASETS_OFFLINE_SET_TO_1: with patch('''datasets.config.HF_DATASETS_OFFLINE''', __snake_case ): yield else: raise ValueError('''Please use a value from the OfflineSimulationMode enum.''' ) @contextmanager def lowerCamelCase__ ( *__snake_case, **__snake_case ) -> str: """simple docstring""" _UpperCamelCase = str(Path().resolve() ) with tempfile.TemporaryDirectory(*__snake_case, **__snake_case ) as tmp_dir: try: os.chdir(__snake_case ) yield finally: os.chdir(__snake_case ) @contextmanager def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" import gc gc.collect() _UpperCamelCase = pa.total_allocated_bytes() yield assert pa.total_allocated_bytes() - previous_allocated_memory > 0, "Arrow memory didn't increase." @contextmanager def lowerCamelCase__ ( ) -> int: """simple docstring""" import gc gc.collect() _UpperCamelCase = pa.total_allocated_bytes() yield assert pa.total_allocated_bytes() - previous_allocated_memory <= 0, "Arrow memory wasn't expected to increase." def lowerCamelCase__ ( __snake_case, __snake_case ) -> Union[str, Any]: """simple docstring""" return deepcopy(__snake_case ).integers(0, 1_00, 10 ).tolist() == deepcopy(__snake_case ).integers(0, 1_00, 10 ).tolist() def lowerCamelCase__ ( __snake_case ) -> Dict: """simple docstring""" import decorator from requests.exceptions import HTTPError def _wrapper(__snake_case, *__snake_case, **__snake_case ): try: return func(*__snake_case, **__snake_case ) except HTTPError as err: if str(__snake_case ).startswith('''500''' ) or str(__snake_case ).startswith('''502''' ): pytest.xfail(str(__snake_case ) ) raise err return decorator.decorator(_wrapper, __snake_case ) class _UpperCAmelCase: def __init__( self , __a , __a , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = returncode _UpperCamelCase = stdout _UpperCamelCase = stderr async def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[Any]: """simple docstring""" while True: _UpperCamelCase = await stream.readline() if line: callback(__snake_case ) else: break async def lowerCamelCase__ ( __snake_case, __snake_case=None, __snake_case=None, __snake_case=None, __snake_case=False, __snake_case=False ) -> _RunOutput: """simple docstring""" if echo: print('''\nRunning: ''', ''' '''.join(__snake_case ) ) _UpperCamelCase = await asyncio.create_subprocess_exec( cmd[0], *cmd[1:], stdin=__snake_case, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE, env=__snake_case, ) # 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) _UpperCamelCase = [] _UpperCamelCase = [] def tee(__snake_case, __snake_case, __snake_case, __snake_case="" ): _UpperCamelCase = line.decode('''utf-8''' ).rstrip() sink.append(__snake_case ) if not quiet: print(__snake_case, __snake_case, file=__snake_case ) # XXX: the timeout doesn't seem to make any difference here await asyncio.wait( [ _read_stream(p.stdout, lambda __snake_case : tee(__snake_case, __snake_case, sys.stdout, label='''stdout:''' ) ), _read_stream(p.stderr, lambda __snake_case : tee(__snake_case, __snake_case, sys.stderr, label='''stderr:''' ) ), ], timeout=__snake_case, ) return _RunOutput(await p.wait(), __snake_case, __snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case=None, __snake_case=None, __snake_case=1_80, __snake_case=False, __snake_case=True ) -> _RunOutput: """simple docstring""" _UpperCamelCase = asyncio.get_event_loop() _UpperCamelCase = loop.run_until_complete( _stream_subprocess(__snake_case, env=__snake_case, stdin=__snake_case, timeout=__snake_case, quiet=__snake_case, echo=__snake_case ) ) _UpperCamelCase = ''' '''.join(__snake_case ) if result.returncode > 0: _UpperCamelCase = '''\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 lowerCamelCase__ ( ) -> List[Any]: """simple docstring""" _UpperCamelCase = os.environ.get('''PYTEST_XDIST_WORKER''', '''gw0''' ) _UpperCamelCase = re.sub(r'''^gw''', '''''', __snake_case, 0, re.M ) return int(__snake_case ) def lowerCamelCase__ ( ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = 2_95_00 _UpperCamelCase = pytest_xdist_worker_id() return port + uniq_delta
19
"""simple docstring""" import unittest from transformers import PegasusConfig, PegasusTokenizer, is_flax_available from transformers.testing_utils import require_flax, slow from ...test_configuration_common import ConfigTester from ...test_modeling_flax_common import FlaxModelTesterMixin, ids_tensor if is_flax_available(): import os # The slow tests are often failing with OOM error on GPU # This makes JAX allocate exactly what is needed on demand, and deallocate memory that is no longer needed # but will be slower as stated here https://jax.readthedocs.io/en/latest/gpu_memory_allocation.html _a = """platform""" import jax import jax.numpy as jnp import numpy as np from transformers import FlaxPegasusForConditionalGeneration, FlaxPegasusModel @require_flax class _UpperCAmelCase: lowercase__ = PegasusConfig lowercase__ = {} lowercase__ = 'gelu' def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=False , __a=99 , __a=32 , __a=5 , __a=4 , __a=37 , __a=0.1 , __a=0.1 , __a=20 , __a=2 , __a=1 , __a=0 , ) -> int: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = eos_token_id _UpperCamelCase = pad_token_id _UpperCamelCase = bos_token_id def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size).clip(3 , self.vocab_size) _UpperCamelCase = np.expand_dims(np.array([self.eos_token_id] * self.batch_size) , 1) _UpperCamelCase = np.concatenate([input_ids, eos_tensor] , axis=1) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_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_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) _UpperCamelCase = prepare_pegasus_inputs_dict(__a , __a , __a) return config, inputs_dict def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.ones((decoder_input_ids.shape[0], max_decoder_length) , dtype='''i4''') _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , decoder_attention_mask=__a , past_key_values=outputs_cache.past_key_values , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = jnp.concatenate( [ decoder_attention_mask, jnp.zeros((decoder_attention_mask.shape[0], max_decoder_length - decoder_attention_mask.shape[1])), ] , axis=-1 , ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , past_key_values=outputs_cache.past_key_values , decoder_attention_mask=__a , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a , decoder_attention_mask=__a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=None, __snake_case=None, ) -> Union[str, Any]: """simple docstring""" if attention_mask is None: _UpperCamelCase = np.not_equal(__snake_case, config.pad_token_id ).astype(np.inta ) if decoder_attention_mask is None: _UpperCamelCase = np.concatenate( [ np.ones(decoder_input_ids[:, :1].shape, dtype=np.inta ), np.not_equal(decoder_input_ids[:, 1:], config.pad_token_id ).astype(np.inta ), ], axis=-1, ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, } @require_flax class _UpperCAmelCase( lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( FlaxPegasusForConditionalGeneration, FlaxPegasusModel, ) if is_flax_available() else () ) lowercase__ = (FlaxPegasusForConditionalGeneration,) if is_flax_available() else () lowercase__ = True lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = FlaxPegasusModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward_with_attn_mask(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = self._prepare_for_class(__a , __a) _UpperCamelCase = model_class(__a) @jax.jit def encode_jitted(__a , __a=None , **__a): return model.encode(input_ids=__a , attention_mask=__a) with self.subTest('''JIT Enabled'''): _UpperCamelCase = encode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = encode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = model_class(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids'''] , inputs_dict['''attention_mask''']) _UpperCamelCase = { '''decoder_input_ids''': inputs_dict['''decoder_input_ids'''], '''decoder_attention_mask''': inputs_dict['''decoder_attention_mask'''], '''encoder_outputs''': encoder_outputs, } @jax.jit def decode_jitted(__a , __a , __a): return model.decode( decoder_input_ids=__a , decoder_attention_mask=__a , encoder_outputs=__a , ) with self.subTest('''JIT Enabled'''): _UpperCamelCase = decode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = decode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) @slow def UpperCAmelCase ( self) -> int: '''simple docstring''' for model_class_name in self.all_model_classes: _UpperCamelCase = model_class_name.from_pretrained('''google/pegasus-large''' , from_pt=__a) _UpperCamelCase = np.ones((1, 1)) _UpperCamelCase = model(__a) self.assertIsNotNone(__a) @slow def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = FlaxPegasusForConditionalGeneration.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = PegasusTokenizer.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = [ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] _UpperCamelCase = [ '''California\'s largest electricity provider has turned off power to hundreds of thousands of customers.''', '''Pop group N-Dubz have revealed they were surprised to get four nominations for this year\'s Mobo Awards.''', ] _UpperCamelCase = tokenizer(__a , return_tensors='''np''' , truncation=__a , max_length=5_12 , padding=__a) _UpperCamelCase = model.generate(**__a , num_beams=2).sequences _UpperCamelCase = tokenizer.batch_decode(__a , skip_special_tokens=__a) assert tgt_text == decoded
19
1
"""simple docstring""" import os import re import shutil import sys import tempfile import unittest import black _a = os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))) sys.path.append(os.path.join(git_repo_path, """utils""")) import check_copies # noqa: E402 # This is the reference code that will be used in the tests. # If DDPMSchedulerOutput is changed in scheduling_ddpm.py, this code needs to be manually updated. _a = """ \"\"\" Output class for the scheduler's step function output. Args: prev_sample (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)` for images): Computed sample (x_{t-1}) of previous timestep. `prev_sample` should be used as next model input in the denoising loop. pred_original_sample (`torch.FloatTensor` of shape `(batch_size, num_channels, height, width)` for images): The predicted denoised sample (x_{0}) based on the model output from the current timestep. `pred_original_sample` can be used to preview progress or for guidance. \"\"\" prev_sample: torch.FloatTensor pred_original_sample: Optional[torch.FloatTensor] = None """ class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = tempfile.mkdtemp() os.makedirs(os.path.join(self.diffusers_dir , '''schedulers/''')) _UpperCamelCase = self.diffusers_dir shutil.copy( os.path.join(__a , '''src/diffusers/schedulers/scheduling_ddpm.py''') , os.path.join(self.diffusers_dir , '''schedulers/scheduling_ddpm.py''') , ) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = '''src/diffusers''' shutil.rmtree(self.diffusers_dir) def UpperCAmelCase ( self , __a , __a , __a , __a=None) -> str: '''simple docstring''' _UpperCamelCase = comment + F'''\nclass {class_name}(nn.Module):\n''' + class_code if overwrite_result is not None: _UpperCamelCase = comment + F'''\nclass {class_name}(nn.Module):\n''' + overwrite_result _UpperCamelCase = black.Mode(target_versions={black.TargetVersion.PYaa} , line_length=1_19) _UpperCamelCase = black.format_str(__a , mode=__a) _UpperCamelCase = os.path.join(self.diffusers_dir , '''new_code.py''') with open(__a , '''w''' , newline='''\n''') as f: f.write(__a) if overwrite_result is None: self.assertTrue(len(check_copies.is_copy_consistent(__a)) == 0) else: check_copies.is_copy_consistent(f.name , overwrite=__a) with open(__a , '''r''') as f: self.assertTrue(f.read() , __a) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = check_copies.find_code_in_diffusers('''schedulers.scheduling_ddpm.DDPMSchedulerOutput''') self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' # Base copy consistency self.check_copy_consistency( '''# Copied from diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput''' , '''DDPMSchedulerOutput''' , REFERENCE_CODE + '''\n''' , ) # With no empty line at the end self.check_copy_consistency( '''# Copied from diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput''' , '''DDPMSchedulerOutput''' , __a , ) # Copy consistency with rename self.check_copy_consistency( '''# Copied from diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput with DDPM->Test''' , '''TestSchedulerOutput''' , re.sub('''DDPM''' , '''Test''' , __a) , ) # Copy consistency with a really long name _UpperCamelCase = '''TestClassWithAReallyLongNameBecauseSomePeopleLikeThatForSomeReason''' self.check_copy_consistency( F'''# Copied from diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput with DDPM->{long_class_name}''' , F'''{long_class_name}SchedulerOutput''' , re.sub('''Bert''' , __a , __a) , ) # Copy consistency with overwrite self.check_copy_consistency( '''# Copied from diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput with DDPM->Test''' , '''TestSchedulerOutput''' , __a , overwrite_result=re.sub('''DDPM''' , '''Test''' , __a) , )
19
"""simple docstring""" from __future__ import annotations import unittest from transformers import 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 numpy import tensorflow as tf from transformers import ( TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST, BertConfig, DPRConfig, TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a=None , __a=0 , ) -> Any: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_mask _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = scope _UpperCamelCase = projection_dim def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: # follow test_modeling_tf_ctrl.py _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = BertConfig( 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=__a , initializer_range=self.initializer_range , ) _UpperCamelCase = DPRConfig(projection_dim=self.projection_dim , **config.to_dict()) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = TFDPRContextEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Dict: '''simple docstring''' _UpperCamelCase = TFDPRReader(config=__a) _UpperCamelCase = model(__a , attention_mask=__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)) self.parent.assertEqual(result.relevance_logits.shape , (self.batch_size,)) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) if is_tf_available() else () ) lowercase__ = {'feature-extraction': TFDPRQuestionEncoder} if is_tf_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_context_encoder(*__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_question_encoder(*__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_reader(*__a) @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRReader.from_pretrained(__a) self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained('''facebook/dpr-question_encoder-single-nq-base''') _UpperCamelCase = tf.constant( [[1_01, 75_92, 10_10, 20_03, 20_26, 38_99, 1_01_40, 10_29, 1_02]]) # [CLS] hello, is my dog cute? [SEP] _UpperCamelCase = model(__a)[0] # embedding shape = (1, 768) # compare the actual values for a slice. _UpperCamelCase = tf.constant( [ [ 0.0323_6253, 0.1275_3335, 0.1681_8509, 0.0027_9786, 0.389_6933, 0.2426_4945, 0.217_8971, -0.0233_5227, -0.0848_1959, -0.1432_4117, ] ]) self.assertTrue(numpy.allclose(output[:, :10].numpy() , expected_slice.numpy() , atol=1e-4))
19
1
"""simple docstring""" import numpy as np def lowerCamelCase__ ( __snake_case ) -> np.array: """simple docstring""" return 1 / (1 + np.exp(-vector )) if __name__ == "__main__": import doctest doctest.testmod()
19
"""simple docstring""" import argparse import json from typing import List from ltp import LTP from transformers.models.bert.tokenization_bert import BertTokenizer def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if ( (cp >= 0x4E00 and cp <= 0x9FFF) or (cp >= 0x3400 and cp <= 0x4DBF) # or (cp >= 0x2_0000 and cp <= 0x2_A6DF) # or (cp >= 0x2_A700 and cp <= 0x2_B73F) # or (cp >= 0x2_B740 and cp <= 0x2_B81F) # or (cp >= 0x2_B820 and cp <= 0x2_CEAF) # or (cp >= 0xF900 and cp <= 0xFAFF) or (cp >= 0x2_F800 and cp <= 0x2_FA1F) # ): # return True return False def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" for char in word: _UpperCamelCase = ord(__snake_case ) if not _is_chinese_char(__snake_case ): return 0 return 1 def lowerCamelCase__ ( __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = set() for token in tokens: _UpperCamelCase = len(__snake_case ) > 1 and is_chinese(__snake_case ) if chinese_word: word_set.add(__snake_case ) _UpperCamelCase = list(__snake_case ) return word_list def lowerCamelCase__ ( __snake_case, __snake_case ) -> int: """simple docstring""" if not chinese_word_set: return bert_tokens _UpperCamelCase = max([len(__snake_case ) for w in chinese_word_set] ) _UpperCamelCase = bert_tokens _UpperCamelCase , _UpperCamelCase = 0, len(__snake_case ) while start < end: _UpperCamelCase = True if is_chinese(bert_word[start] ): _UpperCamelCase = min(end - start, __snake_case ) for i in range(__snake_case, 1, -1 ): _UpperCamelCase = ''''''.join(bert_word[start : start + i] ) if whole_word in chinese_word_set: for j in range(start + 1, start + i ): _UpperCamelCase = '''##''' + bert_word[j] _UpperCamelCase = start + i _UpperCamelCase = False break if single_word: start += 1 return bert_word def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = ltp_tokenizer.pipeline(lines[i : i + 1_00], tasks=['''cws'''] ).cws _UpperCamelCase = [get_chinese_word(__snake_case ) for r in res] ltp_res.extend(__snake_case ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = bert_tokenizer(lines[i : i + 1_00], add_special_tokens=__snake_case, truncation=__snake_case, max_length=5_12 ) bert_res.extend(res['''input_ids'''] ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for input_ids, chinese_word in zip(__snake_case, __snake_case ): _UpperCamelCase = [] for id in input_ids: _UpperCamelCase = bert_tokenizer._convert_id_to_token(__snake_case ) input_tokens.append(__snake_case ) _UpperCamelCase = add_sub_symbol(__snake_case, __snake_case ) _UpperCamelCase = [] # We only save pos of chinese subwords start with ##, which mean is part of a whole word. for i, token in enumerate(__snake_case ): if token[:2] == "##": _UpperCamelCase = token[2:] # save chinese tokens' pos if len(__snake_case ) == 1 and _is_chinese_char(ord(__snake_case ) ): ref_id.append(__snake_case ) ref_ids.append(__snake_case ) assert len(__snake_case ) == len(__snake_case ) return ref_ids def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" with open(args.file_name, '''r''', encoding='''utf-8''' ) as f: _UpperCamelCase = f.readlines() _UpperCamelCase = [line.strip() for line in data if len(__snake_case ) > 0 and not line.isspace()] # avoid delimiter like '\u2029' _UpperCamelCase = LTP(args.ltp ) # faster in GPU device _UpperCamelCase = BertTokenizer.from_pretrained(args.bert ) _UpperCamelCase = prepare_ref(__snake_case, __snake_case, __snake_case ) with open(args.save_path, '''w''', encoding='''utf-8''' ) as f: _UpperCamelCase = [json.dumps(__snake_case ) + '''\n''' for ref in ref_ids] f.writelines(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser(description="""prepare_chinese_ref""") parser.add_argument( """--file_name""", required=False, type=str, default="""./resources/chinese-demo.txt""", help="""file need process, same as training data in lm""", ) parser.add_argument( """--ltp""", required=False, type=str, default="""./resources/ltp""", help="""resources for LTP tokenizer, usually a path""", ) parser.add_argument( """--bert""", required=False, type=str, default="""./resources/robert""", help="""resources for Bert tokenizer""", ) parser.add_argument( """--save_path""", required=False, type=str, default="""./resources/ref.txt""", help="""path to save res""", ) _a = parser.parse_args() main(args)
19
1
"""simple docstring""" _a = tuple[float, float, float] _a = tuple[float, float, float] def lowerCamelCase__ ( __snake_case, __snake_case ) -> Vectorad: """simple docstring""" _UpperCamelCase = end_pointa[0] - end_pointa[0] _UpperCamelCase = end_pointa[1] - end_pointa[1] _UpperCamelCase = end_pointa[2] - end_pointa[2] return (x, y, z) def lowerCamelCase__ ( __snake_case, __snake_case ) -> Vectorad: """simple docstring""" _UpperCamelCase = ab[1] * ac[2] - ab[2] * ac[1] # *i _UpperCamelCase = (ab[0] * ac[2] - ab[2] * ac[0]) * -1 # *j _UpperCamelCase = ab[0] * ac[1] - ab[1] * ac[0] # *k return (x, y, z) def lowerCamelCase__ ( __snake_case, __snake_case ) -> bool: """simple docstring""" return tuple(round(__snake_case, __snake_case ) for x in vector ) == (0, 0, 0) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case = 10 ) -> bool: """simple docstring""" _UpperCamelCase = create_vector(__snake_case, __snake_case ) _UpperCamelCase = create_vector(__snake_case, __snake_case ) return is_zero_vector(get_ad_vectors_cross(__snake_case, __snake_case ), __snake_case )
19
"""simple docstring""" import heapq def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" _UpperCamelCase = [] # for each node and his adjacency list add them and the rank of the node to queue # using heapq module the queue will be filled like a Priority Queue # heapq works with a min priority queue, so I used -1*len(v) to build it for key, value in graph.items(): # O(log(n)) heapq.heappush(__snake_case, [-1 * len(__snake_case ), (key, value)] ) # chosen_vertices = set of chosen vertices _UpperCamelCase = set() # while queue isn't empty and there are still edges # (queue[0][0] is the rank of the node with max rank) while queue and queue[0][0] != 0: # extract vertex with max rank from queue and add it to chosen_vertices _UpperCamelCase = heapq.heappop(__snake_case )[1][0] chosen_vertices.add(__snake_case ) # Remove all arcs adjacent to argmax for elem in queue: # if v haven't adjacent node, skip if elem[0] == 0: continue # if argmax is reachable from elem # remove argmax from elem's adjacent list and update his rank if argmax in elem[1][1]: _UpperCamelCase = elem[1][1].index(__snake_case ) del elem[1][1][index] elem[0] += 1 # re-order the queue heapq.heapify(__snake_case ) return chosen_vertices if __name__ == "__main__": import doctest doctest.testmod() _a = {0: [1, 3], 1: [0, 3], 2: [0, 3, 4], 3: [0, 1, 2], 4: [2, 3]} print(F"""Minimum vertex cover:\n{greedy_min_vertex_cover(graph)}""")
19
1
"""simple docstring""" import os from shutil import copyfile from typing import Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer from ...utils import logging _a = logging.get_logger(__name__) _a = """▁""" _a = {"""vocab_file""": """sentencepiece.bpe.model"""} _a = { """vocab_file""": { """facebook/xglm-564M""": """https://huggingface.co/facebook/xglm-564M/resolve/main/sentencepiece.bpe.model""", } } _a = { """facebook/xglm-564M""": 2048, } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = VOCAB_FILES_NAMES lowercase__ = PRETRAINED_VOCAB_FILES_MAP lowercase__ = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES lowercase__ = ['input_ids', 'attention_mask'] def __init__( self , __a , __a="<s>" , __a="</s>" , __a="</s>" , __a="<s>" , __a="<unk>" , __a="<pad>" , __a = None , **__a , ) -> None: '''simple docstring''' _UpperCamelCase = {} if sp_model_kwargs is None else sp_model_kwargs # Compatibility with the original tokenizer _UpperCamelCase = 7 _UpperCamelCase = [F'''<madeupword{i}>''' for i in range(self.num_madeup_words)] _UpperCamelCase = kwargs.get('''additional_special_tokens''' , []) kwargs["additional_special_tokens"] += [ word for word in madeup_words if word not in kwargs["additional_special_tokens"] ] super().__init__( bos_token=__a , eos_token=__a , unk_token=__a , sep_token=__a , cls_token=__a , pad_token=__a , sp_model_kwargs=self.sp_model_kwargs , **__a , ) _UpperCamelCase = spm.SentencePieceProcessor(**self.sp_model_kwargs) self.sp_model.Load(str(__a)) _UpperCamelCase = 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' # The first "real" token "," has position 4 in the original fairseq vocab and position 3 in the spm vocab _UpperCamelCase = 1 # Mimic fairseq token-to-id alignment for the first 4 token _UpperCamelCase = {'''<s>''': 0, '''<pad>''': 1, '''</s>''': 2, '''<unk>''': 3} _UpperCamelCase = len(self.sp_model) _UpperCamelCase = {F'''<madeupword{i}>''': sp_size + i + self.fairseq_offset for i in range(self.num_madeup_words)} self.fairseq_tokens_to_ids.update(__a) _UpperCamelCase = {v: k for k, v in self.fairseq_tokens_to_ids.items()} def __getstate__( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.__dict__.copy() _UpperCamelCase = None _UpperCamelCase = self.sp_model.serialized_model_proto() return state def __setstate__( self , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = d # for backward compatibility if not hasattr(self , '''sp_model_kwargs'''): _UpperCamelCase = {} _UpperCamelCase = spm.SentencePieceProcessor(**self.sp_model_kwargs) self.sp_model.LoadFromSerializedProto(self.sp_model_proto) def UpperCAmelCase ( self , __a , __a = None) -> List[int]: '''simple docstring''' if token_ids_a is None: return [self.sep_token_id] + token_ids_a _UpperCamelCase = [self.sep_token_id] return sep + token_ids_a + sep + sep + token_ids_a def UpperCAmelCase ( self , __a , __a = None , __a = False) -> List[int]: '''simple docstring''' if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=__a , token_ids_a=__a , already_has_special_tokens=__a) if token_ids_a is None: return [1] + ([0] * len(__a)) return [1] + ([0] * len(__a)) + [1, 1] + ([0] * len(__a)) def UpperCAmelCase ( self , __a , __a = None) -> List[int]: '''simple docstring''' _UpperCamelCase = [self.sep_token_id] if token_ids_a is None: return len(sep + token_ids_a) * [0] return len(sep + token_ids_a + sep + sep + token_ids_a) * [0] @property def UpperCAmelCase ( self) -> str: '''simple docstring''' return len(self.sp_model) + self.fairseq_offset + self.num_madeup_words def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = {self.convert_ids_to_tokens(__a): i for i in range(self.vocab_size)} vocab.update(self.added_tokens_encoder) return vocab def UpperCAmelCase ( self , __a) -> List[str]: '''simple docstring''' return self.sp_model.encode(__a , out_type=__a) def UpperCAmelCase ( self , __a) -> Union[str, Any]: '''simple docstring''' if token in self.fairseq_tokens_to_ids: return self.fairseq_tokens_to_ids[token] _UpperCamelCase = self.sp_model.PieceToId(__a) # 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 UpperCAmelCase ( self , __a) -> Tuple: '''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 UpperCAmelCase ( self , __a) -> int: '''simple docstring''' _UpperCamelCase = ''''''.join(__a).replace(__a , ''' ''').strip() return out_string def UpperCAmelCase ( self , __a , __a = None) -> Tuple[str]: '''simple docstring''' if not os.path.isdir(__a): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''') return _UpperCamelCase = os.path.join( __a , (filename_prefix + '''-''' if filename_prefix else '''''') + VOCAB_FILES_NAMES['''vocab_file''']) if os.path.abspath(self.vocab_file) != os.path.abspath(__a) and os.path.isfile(self.vocab_file): copyfile(self.vocab_file , __a) elif not os.path.isfile(self.vocab_file): with open(__a , '''wb''') as fi: _UpperCamelCase = self.sp_model.serialized_model_proto() fi.write(__a) return (out_vocab_file,)
19
"""simple docstring""" from datasets.utils.patching import _PatchedModuleObj, patch_submodule from . import _test_patching def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" import os as original_os from os import path as original_path from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join _UpperCamelCase = '''__test_patch_submodule_mock__''' with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): # Every way to access os.path.join must be patched, and the rest must stay untouched # check os.path.join assert isinstance(_test_patching.os, _PatchedModuleObj ) assert isinstance(_test_patching.os.path, _PatchedModuleObj ) assert _test_patching.os.path.join is mock # check path.join assert isinstance(_test_patching.path, _PatchedModuleObj ) assert _test_patching.path.join is mock # check join assert _test_patching.join is mock # check that the other attributes are untouched assert _test_patching.os.rename is original_rename assert _test_patching.path.dirname is original_dirname assert _test_patching.os.path.dirname is original_dirname # Even renamed modules or objects must be patched # check renamed_os.path.join assert isinstance(_test_patching.renamed_os, _PatchedModuleObj ) assert isinstance(_test_patching.renamed_os.path, _PatchedModuleObj ) assert _test_patching.renamed_os.path.join is mock # check renamed_path.join assert isinstance(_test_patching.renamed_path, _PatchedModuleObj ) assert _test_patching.renamed_path.join is mock # check renamed_join assert _test_patching.renamed_join is mock # check that the other attributes are untouched assert _test_patching.renamed_os.rename is original_rename assert _test_patching.renamed_path.dirname is original_dirname assert _test_patching.renamed_os.path.dirname is original_dirname # check that everthing is back to normal when the patch is over assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" assert _test_patching.open is open _UpperCamelCase = '''__test_patch_submodule_builtin_mock__''' # _test_patching has "open" in its globals assert _test_patching.open is open with patch_submodule(_test_patching, '''open''', __snake_case ): assert _test_patching.open is mock # check that everthing is back to normal when the patch is over assert _test_patching.open is open def lowerCamelCase__ ( ) -> Union[str, Any]: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_mock__''' with patch_submodule(_test_patching, '''pandas.read_csv''', __snake_case ): pass def lowerCamelCase__ ( ) -> Dict: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_builtin_mock__''' # _test_patching doesn't have "len" in its globals assert getattr(_test_patching, '''len''', __snake_case ) is None with patch_submodule(_test_patching, '''len''', __snake_case ): assert _test_patching.len is mock assert _test_patching.len is len def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_start_and_stop_mock__''' _UpperCamelCase = patch_submodule(_test_patching, '''open''', __snake_case ) assert _test_patching.open is open patch.start() assert _test_patching.open is mock patch.stop() assert _test_patching.open is open def lowerCamelCase__ ( ) -> Optional[int]: """simple docstring""" from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join _UpperCamelCase = '''__test_patch_submodule_successive_join__''' _UpperCamelCase = '''__test_patch_submodule_successive_dirname__''' _UpperCamelCase = '''__test_patch_submodule_successive_rename__''' assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename # try another order with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename def lowerCamelCase__ ( ) -> str: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_doesnt_exist_mock__''' with patch_submodule(_test_patching, '''__module_that_doesn_exist__.__attribute_that_doesn_exist__''', __snake_case ): pass with patch_submodule(_test_patching, '''os.__attribute_that_doesn_exist__''', __snake_case ): pass
19
1
"""simple docstring""" import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DDPMScheduler,) def UpperCAmelCase ( self , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 10_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**__a) return config def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for timesteps in [1, 5, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> int: '''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=__a , beta_end=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for clip_sample in [True, False]: self.check_over_configs(clip_sample=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.check_over_configs(thresholding=__a) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=__a , prediction_type=__a , sample_max_value=__a , ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for t in [0, 5_00, 9_99]: self.check_over_forward(time_step=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) assert torch.sum(torch.abs(scheduler._get_variance(0) - 0.0)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_87) - 0.0_0979)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_99) - 0.02)) < 1e-5 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 258.9606) < 1e-2 assert abs(result_mean.item() - 0.3372) < 1e-3 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 202.0296) < 1e-2 assert abs(result_mean.item() - 0.2631) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] scheduler.set_timesteps(timesteps=__a) _UpperCamelCase = scheduler.timesteps for i, timestep in enumerate(__a): if i == len(__a) - 1: _UpperCamelCase = -1 else: _UpperCamelCase = timesteps[i + 1] _UpperCamelCase = scheduler.previous_timestep(__a) _UpperCamelCase = prev_t.item() self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 51, 0] with self.assertRaises(__a , msg='''`custom_timesteps` must be in descending order.'''): scheduler.set_timesteps(timesteps=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] _UpperCamelCase = len(__a) with self.assertRaises(__a , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.'''): scheduler.set_timesteps(num_inference_steps=__a , timesteps=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [scheduler.config.num_train_timesteps] with self.assertRaises( __a , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=__a)
19
"""simple docstring""" import argparse import json from collections import OrderedDict from pathlib import Path import requests import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import PoolFormerConfig, PoolFormerForImageClassification, PoolFormerImageProcessor from transformers.utils import logging logging.set_verbosity_info() _a = logging.get_logger(__name__) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = original_name.split('''.''' )[0] _UpperCamelCase = key.split('''.''' ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 2] ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 1] ) _UpperCamelCase = orig_block_num - offset _UpperCamelCase = key.replace(F'''{orig_block_num}.{layer_num}.{original_name}''', F'''block.{new_block_num}.{layer_num}.{new_name}''' ) return key def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase = OrderedDict() _UpperCamelCase , _UpperCamelCase = 0, 0 for key, value in state_dict.items(): if key.startswith('''network''' ): _UpperCamelCase = key.replace('''network''', '''poolformer.encoder''' ) if "proj" in key: # Works for the first embedding as well as the internal embedding layers if key.endswith('''bias''' ) and "patch_embed" not in key: patch_emb_offset += 1 _UpperCamelCase = key[: key.find('''proj''' )] _UpperCamelCase = key.replace(__snake_case, F'''patch_embeddings.{total_embed_found}.''' ) _UpperCamelCase = key.replace('''proj''', '''projection''' ) if key.endswith('''bias''' ): total_embed_found += 1 if "patch_embeddings" in key: _UpperCamelCase = '''poolformer.encoder.''' + key if "mlp.fc1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc1''', '''output.conv1''' ) if "mlp.fc2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc2''', '''output.conv2''' ) if "norm1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm1''', '''before_norm''' ) if "norm2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm2''', '''after_norm''' ) if "layer_scale_1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_1''', '''layer_scale_1''' ) if "layer_scale_2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_2''', '''layer_scale_2''' ) if "head" in key: _UpperCamelCase = key.replace('''head''', '''classifier''' ) _UpperCamelCase = value return new_state_dict def lowerCamelCase__ ( ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = '''http://images.cocodataset.org/val2017/000000039769.jpg''' _UpperCamelCase = Image.open(requests.get(__snake_case, stream=__snake_case ).raw ) return image @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" _UpperCamelCase = PoolFormerConfig() # set attributes based on model_name _UpperCamelCase = '''huggingface/label-files''' _UpperCamelCase = model_name[-3:] _UpperCamelCase = 10_00 _UpperCamelCase = '''imagenet-1k-id2label.json''' _UpperCamelCase = (1, 10_00) # set config attributes _UpperCamelCase = json.load(open(hf_hub_download(__snake_case, __snake_case, repo_type='''dataset''' ), '''r''' ) ) _UpperCamelCase = {int(__snake_case ): v for k, v in idalabel.items()} _UpperCamelCase = idalabel _UpperCamelCase = {v: k for k, v in idalabel.items()} if size == "s12": _UpperCamelCase = [2, 2, 6, 2] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s24": _UpperCamelCase = [4, 4, 12, 4] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.9 elif size == "m36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 elif size == "m48": _UpperCamelCase = [8, 8, 24, 8] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 else: raise ValueError(F'''Size {size} not supported''' ) # load image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) # Prepare image _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__snake_case, return_tensors='''pt''' ).pixel_values logger.info(F'''Converting model {model_name}...''' ) # load original state dict _UpperCamelCase = torch.load(__snake_case, map_location=torch.device('''cpu''' ) ) # rename keys _UpperCamelCase = rename_keys(__snake_case ) # create HuggingFace model and load state dict _UpperCamelCase = PoolFormerForImageClassification(__snake_case ) model.load_state_dict(__snake_case ) model.eval() # Define image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) _UpperCamelCase = image_processor(images=prepare_img(), return_tensors='''pt''' ).pixel_values # forward pass _UpperCamelCase = model(__snake_case ) _UpperCamelCase = outputs.logits # define expected logit slices for different models if size == "s12": _UpperCamelCase = torch.tensor([-0.3045, -0.6758, -0.4869] ) elif size == "s24": _UpperCamelCase = torch.tensor([0.4402, -0.1374, -0.8045] ) elif size == "s36": _UpperCamelCase = torch.tensor([-0.6080, -0.5133, -0.5898] ) elif size == "m36": _UpperCamelCase = torch.tensor([0.3952, 0.2263, -1.2668] ) elif size == "m48": _UpperCamelCase = torch.tensor([0.1167, -0.0656, -0.3423] ) else: raise ValueError(F'''Size {size} not supported''' ) # verify logits assert logits.shape == expected_shape assert torch.allclose(logits[0, :3], __snake_case, atol=1e-2 ) # finally, save model and image processor logger.info(F'''Saving PyTorch model and image processor to {pytorch_dump_folder_path}...''' ) Path(__snake_case ).mkdir(exist_ok=__snake_case ) model.save_pretrained(__snake_case ) print(F'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument( """--model_name""", default="""poolformer_s12""", type=str, help="""Name of the model you'd like to convert.""", ) parser.add_argument( """--checkpoint_path""", default=None, type=str, help="""Path to the original PyTorch checkpoint (.pth file).""" ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the folder to output PyTorch model.""" ) _a = parser.parse_args() convert_poolformer_checkpoint(args.model_name, args.checkpoint_path, args.pytorch_dump_folder_path)
19
1
"""simple docstring""" import os from bleurt import score # From: git+https://github.com/google-research/bleurt.git import datasets _a = datasets.logging.get_logger(__name__) _a = """\ @inproceedings{bleurt, title={BLEURT: Learning Robust Metrics for Text Generation}, author={Thibault Sellam and Dipanjan Das and Ankur P. Parikh}, booktitle={ACL}, year={2020}, url={https://arxiv.org/abs/2004.04696} } """ _a = """\ BLEURT a learnt evaluation metric for Natural Language Generation. It is built using multiple phases of transfer learning starting from a pretrained BERT model (Devlin et al. 2018) and then employing another pre-training phrase using synthetic data. Finally it is trained on WMT human annotations. You may run BLEURT out-of-the-box or fine-tune it for your specific application (the latter is expected to perform better). See the project's README at https://github.com/google-research/bleurt#readme for more information. """ _a = """ BLEURT score. Args: `predictions` (list of str): prediction/candidate sentences `references` (list of str): reference sentences `checkpoint` BLEURT checkpoint. Will default to BLEURT-tiny if None. Returns: 'scores': List of scores. Examples: >>> predictions = [\"hello there\", \"general kenobi\"] >>> references = [\"hello there\", \"general kenobi\"] >>> bleurt = datasets.load_metric(\"bleurt\") >>> results = bleurt.compute(predictions=predictions, references=references) >>> print([round(v, 2) for v in results[\"scores\"]]) [1.03, 1.04] """ _a = { """bleurt-tiny-128""": """https://storage.googleapis.com/bleurt-oss/bleurt-tiny-128.zip""", """bleurt-tiny-512""": """https://storage.googleapis.com/bleurt-oss/bleurt-tiny-512.zip""", """bleurt-base-128""": """https://storage.googleapis.com/bleurt-oss/bleurt-base-128.zip""", """bleurt-base-512""": """https://storage.googleapis.com/bleurt-oss/bleurt-base-512.zip""", """bleurt-large-128""": """https://storage.googleapis.com/bleurt-oss/bleurt-large-128.zip""", """bleurt-large-512""": """https://storage.googleapis.com/bleurt-oss/bleurt-large-512.zip""", """BLEURT-20-D3""": """https://storage.googleapis.com/bleurt-oss-21/BLEURT-20-D3.zip""", """BLEURT-20-D6""": """https://storage.googleapis.com/bleurt-oss-21/BLEURT-20-D6.zip""", """BLEURT-20-D12""": """https://storage.googleapis.com/bleurt-oss-21/BLEURT-20-D12.zip""", """BLEURT-20""": """https://storage.googleapis.com/bleurt-oss-21/BLEURT-20.zip""", } @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class _UpperCAmelCase( datasets.Metric ): def UpperCAmelCase ( self) -> str: '''simple docstring''' return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , homepage='''https://github.com/google-research/bleurt''' , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { '''predictions''': datasets.Value('''string''' , id='''sequence'''), '''references''': datasets.Value('''string''' , id='''sequence'''), }) , codebase_urls=['''https://github.com/google-research/bleurt'''] , reference_urls=['''https://github.com/google-research/bleurt''', '''https://arxiv.org/abs/2004.04696'''] , ) def UpperCAmelCase ( self , __a) -> Union[str, Any]: '''simple docstring''' # check that config name specifies a valid BLEURT model if self.config_name == "default": logger.warning( '''Using default BLEURT-Base checkpoint for sequence maximum length 128. ''' '''You can use a bigger model for better results with e.g.: datasets.load_metric(\'bleurt\', \'bleurt-large-512\').''') _UpperCamelCase = '''bleurt-base-128''' if self.config_name.lower() in CHECKPOINT_URLS: _UpperCamelCase = self.config_name.lower() elif self.config_name.upper() in CHECKPOINT_URLS: _UpperCamelCase = self.config_name.upper() else: raise KeyError( F'''{self.config_name} model not found. You should supply the name of a model checkpoint for bleurt in {CHECKPOINT_URLS.keys()}''') # download the model checkpoint specified by self.config_name and set up the scorer _UpperCamelCase = dl_manager.download_and_extract(CHECKPOINT_URLS[checkpoint_name]) _UpperCamelCase = score.BleurtScorer(os.path.join(__a , __a)) def UpperCAmelCase ( self , __a , __a) -> Dict: '''simple docstring''' _UpperCamelCase = self.scorer.score(references=__a , candidates=__a) return {"scores": scores}
19
"""simple docstring""" import torch from diffusers import DPMSolverSDEScheduler from diffusers.utils import torch_device from diffusers.utils.testing_utils import require_torchsde from .test_schedulers import SchedulerCommonTest @require_torchsde class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DPMSolverSDEScheduler,) lowercase__ = 10 def UpperCAmelCase ( self , **__a) -> int: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 11_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''noise_sampler_seed''': 0, } config.update(**__a) return config def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' for timesteps in [10, 50, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for beta_start, beta_end in zip([0.0_0001, 0.0001, 0.001] , [0.0002, 0.002, 0.02]): self.check_over_configs(beta_start=__a , beta_end=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for schedule in ["linear", "scaled_linear"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> str: '''simple docstring''' for prediction_type in ["epsilon", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.47_8210_4492_1875) < 1e-2 assert abs(result_mean.item() - 0.2178_7059_6456_5277) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3521_1181_6406) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9068_9229_9652) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 124.77_1492_0043_9453) < 1e-2 assert abs(result_mean.item() - 0.1_6226_2890_1481_6284) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 128.1_6633_6059_5703) < 1e-2 assert abs(result_mean.item() - 0.1_6688_3260_0116_7297) < 1e-3 else: assert abs(result_sum.item() - 119.8_4875_4882_8125) < 1e-2 assert abs(result_mean.item() - 0.1560_5306_6253_6621) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.46_9573_9746_0938) < 1e-2 assert abs(result_mean.item() - 0.2_1805_9346_0798_2635) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3536_3769_5312) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9083_8241_5771) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a , use_karras_sigmas=__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 176.66_9741_3574_2188) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 177.63_6535_6445_3125) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 else: assert abs(result_sum.item() - 170.3_1352_2338_8672) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2
19
1
"""simple docstring""" import argparse import json from typing import List from ltp import LTP from transformers.models.bert.tokenization_bert import BertTokenizer def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if ( (cp >= 0x4E00 and cp <= 0x9FFF) or (cp >= 0x3400 and cp <= 0x4DBF) # or (cp >= 0x2_0000 and cp <= 0x2_A6DF) # or (cp >= 0x2_A700 and cp <= 0x2_B73F) # or (cp >= 0x2_B740 and cp <= 0x2_B81F) # or (cp >= 0x2_B820 and cp <= 0x2_CEAF) # or (cp >= 0xF900 and cp <= 0xFAFF) or (cp >= 0x2_F800 and cp <= 0x2_FA1F) # ): # return True return False def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" for char in word: _UpperCamelCase = ord(__snake_case ) if not _is_chinese_char(__snake_case ): return 0 return 1 def lowerCamelCase__ ( __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = set() for token in tokens: _UpperCamelCase = len(__snake_case ) > 1 and is_chinese(__snake_case ) if chinese_word: word_set.add(__snake_case ) _UpperCamelCase = list(__snake_case ) return word_list def lowerCamelCase__ ( __snake_case, __snake_case ) -> int: """simple docstring""" if not chinese_word_set: return bert_tokens _UpperCamelCase = max([len(__snake_case ) for w in chinese_word_set] ) _UpperCamelCase = bert_tokens _UpperCamelCase , _UpperCamelCase = 0, len(__snake_case ) while start < end: _UpperCamelCase = True if is_chinese(bert_word[start] ): _UpperCamelCase = min(end - start, __snake_case ) for i in range(__snake_case, 1, -1 ): _UpperCamelCase = ''''''.join(bert_word[start : start + i] ) if whole_word in chinese_word_set: for j in range(start + 1, start + i ): _UpperCamelCase = '''##''' + bert_word[j] _UpperCamelCase = start + i _UpperCamelCase = False break if single_word: start += 1 return bert_word def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = ltp_tokenizer.pipeline(lines[i : i + 1_00], tasks=['''cws'''] ).cws _UpperCamelCase = [get_chinese_word(__snake_case ) for r in res] ltp_res.extend(__snake_case ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = bert_tokenizer(lines[i : i + 1_00], add_special_tokens=__snake_case, truncation=__snake_case, max_length=5_12 ) bert_res.extend(res['''input_ids'''] ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for input_ids, chinese_word in zip(__snake_case, __snake_case ): _UpperCamelCase = [] for id in input_ids: _UpperCamelCase = bert_tokenizer._convert_id_to_token(__snake_case ) input_tokens.append(__snake_case ) _UpperCamelCase = add_sub_symbol(__snake_case, __snake_case ) _UpperCamelCase = [] # We only save pos of chinese subwords start with ##, which mean is part of a whole word. for i, token in enumerate(__snake_case ): if token[:2] == "##": _UpperCamelCase = token[2:] # save chinese tokens' pos if len(__snake_case ) == 1 and _is_chinese_char(ord(__snake_case ) ): ref_id.append(__snake_case ) ref_ids.append(__snake_case ) assert len(__snake_case ) == len(__snake_case ) return ref_ids def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" with open(args.file_name, '''r''', encoding='''utf-8''' ) as f: _UpperCamelCase = f.readlines() _UpperCamelCase = [line.strip() for line in data if len(__snake_case ) > 0 and not line.isspace()] # avoid delimiter like '\u2029' _UpperCamelCase = LTP(args.ltp ) # faster in GPU device _UpperCamelCase = BertTokenizer.from_pretrained(args.bert ) _UpperCamelCase = prepare_ref(__snake_case, __snake_case, __snake_case ) with open(args.save_path, '''w''', encoding='''utf-8''' ) as f: _UpperCamelCase = [json.dumps(__snake_case ) + '''\n''' for ref in ref_ids] f.writelines(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser(description="""prepare_chinese_ref""") parser.add_argument( """--file_name""", required=False, type=str, default="""./resources/chinese-demo.txt""", help="""file need process, same as training data in lm""", ) parser.add_argument( """--ltp""", required=False, type=str, default="""./resources/ltp""", help="""resources for LTP tokenizer, usually a path""", ) parser.add_argument( """--bert""", required=False, type=str, default="""./resources/robert""", help="""resources for Bert tokenizer""", ) parser.add_argument( """--save_path""", required=False, type=str, default="""./resources/ref.txt""", help="""path to save res""", ) _a = parser.parse_args() main(args)
19
"""simple docstring""" 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, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, ChannelDimension, ImageInput, PILImageResampling, is_batched, to_numpy_array, valid_images, ) from ...utils import TensorType, logging _a = logging.get_logger(__name__) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['pixel_values'] def __init__( self , __a = True , __a = None , __a = PILImageResampling.BICUBIC , __a = True , __a = True , __a = 1 / 2_55 , __a = None , __a = True , __a = None , __a = None , **__a , ) -> None: '''simple docstring''' super().__init__(**__a) _UpperCamelCase = size if size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a) _UpperCamelCase = crop_size if crop_size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a , default_to_square=__a , param_name='''crop_size''') _UpperCamelCase = do_resize _UpperCamelCase = do_rescale _UpperCamelCase = do_normalize _UpperCamelCase = do_center_crop _UpperCamelCase = crop_size _UpperCamelCase = size _UpperCamelCase = resample _UpperCamelCase = rescale_factor _UpperCamelCase = image_mean if image_mean is not None else IMAGENET_DEFAULT_MEAN _UpperCamelCase = image_std if image_std is not None else IMAGENET_DEFAULT_STD def UpperCAmelCase ( self , __a , __a , __a = PILImageResampling.BILINEAR , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) if "shortest_edge" in size: _UpperCamelCase = get_resize_output_image_size(__a , size=size['''shortest_edge'''] , default_to_square=__a) # size = get_resize_output_image_size(image, size["shortest_edge"], size["longest_edge"]) elif "height" in size and "width" in size: _UpperCamelCase = (size['''height'''], size['''width''']) else: raise ValueError(F'''Size must contain \'height\' and \'width\' keys or \'shortest_edge\' key. Got {size.keys()}''') return resize(__a , size=__a , resample=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) 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(__a , size=(size['''height'''], size['''width''']) , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a) -> np.ndarray: '''simple docstring''' return rescale(__a , scale=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' return normalize(__a , mean=__a , std=__a , data_format=__a , **__a) def UpperCAmelCase ( 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 , **__a , ) -> BatchFeature: '''simple docstring''' _UpperCamelCase = do_resize if do_resize is not None else self.do_resize _UpperCamelCase = do_rescale if do_rescale is not None else self.do_rescale _UpperCamelCase = do_normalize if do_normalize is not None else self.do_normalize _UpperCamelCase = do_center_crop if do_center_crop is not None else self.do_center_crop _UpperCamelCase = crop_size if crop_size is not None else self.crop_size _UpperCamelCase = get_size_dict(__a , param_name='''crop_size''' , default_to_square=__a) _UpperCamelCase = resample if resample is not None else self.resample _UpperCamelCase = rescale_factor if rescale_factor is not None else self.rescale_factor _UpperCamelCase = image_mean if image_mean is not None else self.image_mean _UpperCamelCase = image_std if image_std is not None else self.image_std _UpperCamelCase = size if size is not None else self.size _UpperCamelCase = get_size_dict(__a) if not is_batched(__a): _UpperCamelCase = [images] 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_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.''') # All transformations expect numpy arrays. _UpperCamelCase = [to_numpy_array(__a) for image in images] if do_resize: _UpperCamelCase = [self.resize(image=__a , size=__a , resample=__a) for image in images] if do_center_crop: _UpperCamelCase = [self.center_crop(image=__a , size=__a) for image in images] if do_rescale: _UpperCamelCase = [self.rescale(image=__a , scale=__a) for image in images] if do_normalize: _UpperCamelCase = [self.normalize(image=__a , mean=__a , std=__a) for image in images] _UpperCamelCase = [to_channel_dimension_format(__a , __a) for image in images] _UpperCamelCase = {'''pixel_values''': images} return BatchFeature(data=__a , tensor_type=__a)
19
1
"""simple docstring""" import unittest import numpy as np import torch from diffusers import VersatileDiffusionImageVariationPipeline from diffusers.utils.testing_utils import load_image, require_torch_gpu, slow, torch_device _a = False class _UpperCAmelCase( unittest.TestCase ): pass @slow @require_torch_gpu class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = VersatileDiffusionImageVariationPipeline.from_pretrained('''shi-labs/versatile-diffusion''') pipe.to(__a) pipe.set_progress_bar_config(disable=__a) _UpperCamelCase = load_image( '''https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/versatile_diffusion/benz.jpg''') _UpperCamelCase = torch.manual_seed(0) _UpperCamelCase = pipe( image=__a , generator=__a , guidance_scale=7.5 , num_inference_steps=50 , output_type='''numpy''' , ).images _UpperCamelCase = image[0, 2_53:2_56, 2_53:2_56, -1] assert image.shape == (1, 5_12, 5_12, 3) _UpperCamelCase = np.array([0.0441, 0.0469, 0.0507, 0.0575, 0.0632, 0.0650, 0.0865, 0.0909, 0.0945]) assert np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
19
"""simple docstring""" # Imports import numpy as np class _UpperCAmelCase: def __init__( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) def UpperCAmelCase ( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' if red is not None: _UpperCamelCase = red if green is not None: _UpperCamelCase = green if blue is not None: _UpperCamelCase = blue if red_edge is not None: _UpperCamelCase = red_edge if nir is not None: _UpperCamelCase = nir return True def UpperCAmelCase ( self , __a="" , __a=None , __a=None , __a=None , __a=None , __a=None) -> List[str]: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) _UpperCamelCase = { '''ARVI2''': self.arvaa, '''CCCI''': self.ccci, '''CVI''': self.cvi, '''GLI''': self.gli, '''NDVI''': self.ndvi, '''BNDVI''': self.bndvi, '''redEdgeNDVI''': self.red_edge_ndvi, '''GNDVI''': self.gndvi, '''GBNDVI''': self.gbndvi, '''GRNDVI''': self.grndvi, '''RBNDVI''': self.rbndvi, '''PNDVI''': self.pndvi, '''ATSAVI''': self.atsavi, '''BWDRVI''': self.bwdrvi, '''CIgreen''': self.ci_green, '''CIrededge''': self.ci_rededge, '''CI''': self.ci, '''CTVI''': self.ctvi, '''GDVI''': self.gdvi, '''EVI''': self.evi, '''GEMI''': self.gemi, '''GOSAVI''': self.gosavi, '''GSAVI''': self.gsavi, '''Hue''': self.hue, '''IVI''': self.ivi, '''IPVI''': self.ipvi, '''I''': self.i, '''RVI''': self.rvi, '''MRVI''': self.mrvi, '''MSAVI''': self.m_savi, '''NormG''': self.norm_g, '''NormNIR''': self.norm_nir, '''NormR''': self.norm_r, '''NGRDI''': self.ngrdi, '''RI''': self.ri, '''S''': self.s, '''IF''': self._if, '''DVI''': self.dvi, '''TVI''': self.tvi, '''NDRE''': self.ndre, } try: return funcs[index]() except KeyError: print('''Index not in the list!''') return False def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return -0.18 + (1.17 * ((self.nir - self.red) / (self.nir + self.red))) def UpperCAmelCase ( self) -> Any: '''simple docstring''' return ((self.nir - self.redEdge) / (self.nir + self.redEdge)) / ( (self.nir - self.red) / (self.nir + self.red) ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir * (self.red / (self.green**2)) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.green - self.red - self.blue) / ( 2 * self.green + self.red + self.blue ) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - self.red) / (self.nir + self.red) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (self.nir - self.blue) / (self.nir + self.blue) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.redEdge - self.red) / (self.redEdge + self.red) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir - (self.green + self.blue)) / ( self.nir + (self.green + self.blue) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.nir - (self.green + self.red)) / ( self.nir + (self.green + self.red) ) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir - (self.blue + self.red)) / (self.nir + (self.blue + self.red)) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - (self.green + self.red + self.blue)) / ( self.nir + (self.green + self.red + self.blue) ) def UpperCAmelCase ( self , __a=0.08 , __a=1.22 , __a=0.03) -> Optional[Any]: '''simple docstring''' return a * ( (self.nir - a * self.red - b) / (a * self.nir + self.red - a * b + x * (1 + a**2)) ) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (0.1 * self.nir - self.blue) / (0.1 * self.nir + self.blue) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir / self.green) - 1 def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir / self.redEdge) - 1 def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.red - self.blue) / self.red def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.ndvi() return ((ndvi + 0.5) / (abs(ndvi + 0.5))) * (abs(ndvi + 0.5) ** (1 / 2)) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir - self.green def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return 2.5 * ( (self.nir - self.red) / (self.nir + 6 * self.red - 7.5 * self.blue + 1) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = (2 * (self.nir**2 - self.red**2) + 1.5 * self.nir + 0.5 * self.red) / ( self.nir + self.red + 0.5 ) return n * (1 - 0.25 * n) - (self.red - 0.125) / (1 - self.red) def UpperCAmelCase ( self , __a=0.16) -> Optional[Any]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green + y) def UpperCAmelCase ( self , __a=0.5) -> Dict: '''simple docstring''' return ((self.nir - self.green) / (self.nir + self.green + n)) * (1 + n) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return np.arctan( ((2 * self.red - self.green - self.blue) / 30.5) * (self.green - self.blue)) def UpperCAmelCase ( self , __a=None , __a=None) -> Any: '''simple docstring''' return (self.nir - b) / (a * self.red) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir / ((self.nir + self.red) / 2)) * (self.ndvi() + 1) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.red + self.green + self.blue) / 30.5 def UpperCAmelCase ( self) -> Any: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.rvi() - 1) / (self.rvi() + 1) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return ( (2 * self.nir + 1) - ((2 * self.nir + 1) ** 2 - 8 * (self.nir - self.red)) ** (1 / 2) ) / 2 def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.green / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> str: '''simple docstring''' return self.nir / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.red / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.green - self.red) / (self.green + self.red) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (self.red - self.green) / (self.red + self.green) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = np.max([np.max(self.red), np.max(self.green), np.max(self.blue)]) _UpperCamelCase = np.min([np.min(self.red), np.min(self.green), np.min(self.blue)]) return (max_value - min_value) / max_value def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.red - self.green - self.blue) / (self.green - self.blue) def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Any: '''simple docstring''' return (self.ndvi() + 0.5) ** (1 / 2) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.nir - self.redEdge) / (self.nir + self.redEdge)
19
1
"""simple docstring""" import heapq def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" _UpperCamelCase = [] # for each node and his adjacency list add them and the rank of the node to queue # using heapq module the queue will be filled like a Priority Queue # heapq works with a min priority queue, so I used -1*len(v) to build it for key, value in graph.items(): # O(log(n)) heapq.heappush(__snake_case, [-1 * len(__snake_case ), (key, value)] ) # chosen_vertices = set of chosen vertices _UpperCamelCase = set() # while queue isn't empty and there are still edges # (queue[0][0] is the rank of the node with max rank) while queue and queue[0][0] != 0: # extract vertex with max rank from queue and add it to chosen_vertices _UpperCamelCase = heapq.heappop(__snake_case )[1][0] chosen_vertices.add(__snake_case ) # Remove all arcs adjacent to argmax for elem in queue: # if v haven't adjacent node, skip if elem[0] == 0: continue # if argmax is reachable from elem # remove argmax from elem's adjacent list and update his rank if argmax in elem[1][1]: _UpperCamelCase = elem[1][1].index(__snake_case ) del elem[1][1][index] elem[0] += 1 # re-order the queue heapq.heapify(__snake_case ) return chosen_vertices if __name__ == "__main__": import doctest doctest.testmod() _a = {0: [1, 3], 1: [0, 3], 2: [0, 3, 4], 3: [0, 1, 2], 4: [2, 3]} print(F"""Minimum vertex cover:\n{greedy_min_vertex_cover(graph)}""")
19
"""simple docstring""" import inspect import unittest from transformers import ViTHybridConfig from transformers.testing_utils import require_accelerate, 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, _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 ViTHybridForImageClassification, ViTHybridImageProcessor, ViTHybridModel from transformers.models.vit_hybrid.modeling_vit_hybrid import VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=64 , __a=2 , __a=3 , __a=True , __a=True , __a=32 , __a=5 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=10 , __a=0.02 , __a=[1, 16, 4, 4] , __a=None , ) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = image_size _UpperCamelCase = patch_size _UpperCamelCase = num_channels _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = scope _UpperCamelCase = backbone_featmap_shape # in ViT hybrid, the seq length equals the number of patches + 1 (we add 1 for the [CLS] token) # the number of patches is based on the feature map of the backbone, which by default uses an output stride # of 32, which means that the feature map has a spatial resolution of 1/32 of the input image size _UpperCamelCase = (self.image_size // 32) ** 2 _UpperCamelCase = num_patches + 1 def UpperCAmelCase ( self) -> int: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = { '''global_padding''': '''same''', '''layer_type''': '''bottleneck''', '''depths''': [3, 4, 9], '''out_features''': ['''stage1''', '''stage2''', '''stage3'''], '''embedding_dynamic_padding''': True, '''hidden_sizes''': [4, 8, 16, 32], '''num_groups''': 2, } return ViTHybridConfig( 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 , 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 , backbone_featmap_shape=self.backbone_featmap_shape , backbone_config=__a , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModel(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.type_sequence_label_size _UpperCamelCase = ViTHybridForImageClassification(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , labels=__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (ViTHybridModel, ViTHybridForImageClassification) if is_torch_available() else () lowercase__ = ( {'feature-extraction': ViTHybridModel, 'image-classification': ViTHybridForImageClassification} if is_torch_available() else {} ) lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , hidden_size=37) def UpperCAmelCase ( self) -> Any: '''simple docstring''' self.config_tester.run_common_tests() @unittest.skip(reason='''ViT does not use inputs_embeds''') def UpperCAmelCase ( self) -> Dict: '''simple docstring''' pass def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) self.assertIsInstance(model.get_input_embeddings() , (nn.Module)) _UpperCamelCase = model.get_output_embeddings() self.assertTrue(x is None or isinstance(__a , nn.Linear)) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) # Skip the check for the backbone for name, module in model.named_modules(): if module.__class__.__name__ == "ViTHybridPatchEmbeddings": _UpperCamelCase = [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''' , ) @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = ViTHybridModel.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) return image @require_torch @require_vision class _UpperCAmelCase( unittest.TestCase ): @cached_property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return ( ViTHybridImageProcessor.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]) if is_vision_available() else None ) @slow def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = ViTHybridForImageClassification.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]).to( __a) _UpperCamelCase = self.default_image_processor _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''').to(__a) # forward pass with torch.no_grad(): _UpperCamelCase = model(**__a) # verify the logits _UpperCamelCase = torch.Size((1, 10_00)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor([-1.9090, -0.4993, -0.2389]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, :3] , __a , atol=1e-4)) @slow @require_accelerate def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = ViTHybridImageProcessor.from_pretrained('''google/vit-hybrid-base-bit-384''') _UpperCamelCase = ViTHybridForImageClassification.from_pretrained('''google/vit-hybrid-base-bit-384''' , device_map='''auto''') _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''') _UpperCamelCase = model(**__a) _UpperCamelCase = outputs.logits # model predicts one of the 1000 ImageNet classes _UpperCamelCase = logits.argmax(-1).item() self.assertTrue(model.config.idalabel[predicted_class_idx] , '''tabby, tabby cat''')
19
1
"""simple docstring""" from __future__ import annotations from fractions import Fraction from math import gcd, sqrt def lowerCamelCase__ ( __snake_case ) -> bool: """simple docstring""" _UpperCamelCase = int(number**0.5 ) return number == sq * sq def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> tuple[int, int]: """simple docstring""" _UpperCamelCase = x_num * y_den * z_den + y_num * x_den * z_den + z_num * x_den * y_den _UpperCamelCase = x_den * y_den * z_den _UpperCamelCase = gcd(__snake_case, __snake_case ) top //= hcf bottom //= hcf return top, bottom def lowerCamelCase__ ( __snake_case = 35 ) -> int: """simple docstring""" _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = Fraction(0 ) _UpperCamelCase = 42 for x_num in range(1, order + 1 ): for x_den in range(x_num + 1, order + 1 ): for y_num in range(1, order + 1 ): for y_den in range(y_num + 1, order + 1 ): # n=1 _UpperCamelCase = x_num * y_den + x_den * y_num _UpperCamelCase = x_den * y_den _UpperCamelCase = gcd(__snake_case, __snake_case ) z_num //= hcf z_den //= hcf if 0 < z_num < z_den <= order: _UpperCamelCase = add_three( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) unique_s.add(__snake_case ) # n=2 _UpperCamelCase = ( x_num * x_num * y_den * y_den + x_den * x_den * y_num * y_num ) _UpperCamelCase = x_den * x_den * y_den * y_den if is_sq(__snake_case ) and is_sq(__snake_case ): _UpperCamelCase = int(sqrt(__snake_case ) ) _UpperCamelCase = int(sqrt(__snake_case ) ) _UpperCamelCase = gcd(__snake_case, __snake_case ) z_num //= hcf z_den //= hcf if 0 < z_num < z_den <= order: _UpperCamelCase = add_three( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) unique_s.add(__snake_case ) # n=-1 _UpperCamelCase = x_num * y_num _UpperCamelCase = x_den * y_num + x_num * y_den _UpperCamelCase = gcd(__snake_case, __snake_case ) z_num //= hcf z_den //= hcf if 0 < z_num < z_den <= order: _UpperCamelCase = add_three( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) unique_s.add(__snake_case ) # n=2 _UpperCamelCase = x_num * x_num * y_num * y_num _UpperCamelCase = ( x_den * x_den * y_num * y_num + x_num * x_num * y_den * y_den ) if is_sq(__snake_case ) and is_sq(__snake_case ): _UpperCamelCase = int(sqrt(__snake_case ) ) _UpperCamelCase = int(sqrt(__snake_case ) ) _UpperCamelCase = gcd(__snake_case, __snake_case ) z_num //= hcf z_den //= hcf if 0 < z_num < z_den <= order: _UpperCamelCase = add_three( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) unique_s.add(__snake_case ) for num, den in unique_s: total += Fraction(__snake_case, __snake_case ) return total.denominator + total.numerator if __name__ == "__main__": print(F"""{solution() = }""")
19
"""simple docstring""" from math import acos, sin from typing import List, Tuple, Union import numpy as np import torch from PIL import Image from ...models import AutoencoderKL, UNetaDConditionModel from ...schedulers import DDIMScheduler, DDPMScheduler from ...utils import randn_tensor from ..pipeline_utils import AudioPipelineOutput, BaseOutput, DiffusionPipeline, ImagePipelineOutput from .mel import Mel class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['vqvae'] def __init__( self , __a , __a , __a , __a , ) -> List[str]: '''simple docstring''' super().__init__() self.register_modules(unet=__a , scheduler=__a , mel=__a , vqvae=__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' return 50 if isinstance(self.scheduler , __a) else 10_00 @torch.no_grad() def __call__( self , __a = 1 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = 0 , __a = None , __a = None , __a=True , ) -> Union[ Union[AudioPipelineOutput, ImagePipelineOutput], Tuple[List[Image.Image], Tuple[int, List[np.ndarray]]], ]: '''simple docstring''' _UpperCamelCase = steps or self.get_default_steps() self.scheduler.set_timesteps(__a) _UpperCamelCase = step_generator or generator # For backwards compatibility if type(self.unet.config.sample_size) == int: _UpperCamelCase = (self.unet.config.sample_size, self.unet.config.sample_size) if noise is None: _UpperCamelCase = randn_tensor( ( batch_size, self.unet.config.in_channels, self.unet.config.sample_size[0], self.unet.config.sample_size[1], ) , generator=__a , device=self.device , ) _UpperCamelCase = noise _UpperCamelCase = None if audio_file is not None or raw_audio is not None: self.mel.load_audio(__a , __a) _UpperCamelCase = self.mel.audio_slice_to_image(__a) _UpperCamelCase = np.frombuffer(input_image.tobytes() , dtype='''uint8''').reshape( (input_image.height, input_image.width)) _UpperCamelCase = (input_image / 2_55) * 2 - 1 _UpperCamelCase = torch.tensor(input_image[np.newaxis, :, :] , dtype=torch.float).to(self.device) if self.vqvae is not None: _UpperCamelCase = self.vqvae.encode(torch.unsqueeze(__a , 0)).latent_dist.sample( generator=__a)[0] _UpperCamelCase = self.vqvae.config.scaling_factor * input_images if start_step > 0: _UpperCamelCase = self.scheduler.add_noise(__a , __a , self.scheduler.timesteps[start_step - 1]) _UpperCamelCase = ( self.unet.config.sample_size[1] * self.mel.get_sample_rate() / self.mel.x_res / self.mel.hop_length ) _UpperCamelCase = int(mask_start_secs * pixels_per_second) _UpperCamelCase = int(mask_end_secs * pixels_per_second) _UpperCamelCase = self.scheduler.add_noise(__a , __a , torch.tensor(self.scheduler.timesteps[start_step:])) for step, t in enumerate(self.progress_bar(self.scheduler.timesteps[start_step:])): if isinstance(self.unet , __a): _UpperCamelCase = self.unet(__a , __a , __a)['''sample'''] else: _UpperCamelCase = self.unet(__a , __a)['''sample'''] if isinstance(self.scheduler , __a): _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , eta=__a , generator=__a , )['''prev_sample'''] else: _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , generator=__a , )['''prev_sample'''] if mask is not None: if mask_start > 0: _UpperCamelCase = mask[:, step, :, :mask_start] if mask_end > 0: _UpperCamelCase = mask[:, step, :, -mask_end:] if self.vqvae is not None: # 0.18215 was scaling factor used in training to ensure unit variance _UpperCamelCase = 1 / self.vqvae.config.scaling_factor * images _UpperCamelCase = self.vqvae.decode(__a)['''sample'''] _UpperCamelCase = (images / 2 + 0.5).clamp(0 , 1) _UpperCamelCase = images.cpu().permute(0 , 2 , 3 , 1).numpy() _UpperCamelCase = (images * 2_55).round().astype('''uint8''') _UpperCamelCase = list( (Image.fromarray(_[:, :, 0]) for _ in images) if images.shape[3] == 1 else (Image.fromarray(__a , mode='''RGB''').convert('''L''') for _ in images)) _UpperCamelCase = [self.mel.image_to_audio(__a) for _ in images] if not return_dict: return images, (self.mel.get_sample_rate(), audios) return BaseOutput(**AudioPipelineOutput(np.array(__a)[:, np.newaxis, :]) , **ImagePipelineOutput(__a)) @torch.no_grad() def UpperCAmelCase ( self , __a , __a = 50) -> np.ndarray: '''simple docstring''' assert isinstance(self.scheduler , __a) self.scheduler.set_timesteps(__a) _UpperCamelCase = np.array( [np.frombuffer(image.tobytes() , dtype='''uint8''').reshape((1, image.height, image.width)) for image in images]) _UpperCamelCase = (sample / 2_55) * 2 - 1 _UpperCamelCase = torch.Tensor(__a).to(self.device) for t in self.progress_bar(torch.flip(self.scheduler.timesteps , (0,))): _UpperCamelCase = t - self.scheduler.config.num_train_timesteps // self.scheduler.num_inference_steps _UpperCamelCase = self.scheduler.alphas_cumprod[t] _UpperCamelCase = ( self.scheduler.alphas_cumprod[prev_timestep] if prev_timestep >= 0 else self.scheduler.final_alpha_cumprod ) _UpperCamelCase = 1 - alpha_prod_t _UpperCamelCase = self.unet(__a , __a)['''sample'''] _UpperCamelCase = (1 - alpha_prod_t_prev) ** 0.5 * model_output _UpperCamelCase = (sample - pred_sample_direction) * alpha_prod_t_prev ** (-0.5) _UpperCamelCase = sample * alpha_prod_t ** 0.5 + beta_prod_t ** 0.5 * model_output return sample @staticmethod def UpperCAmelCase ( __a , __a , __a) -> torch.Tensor: '''simple docstring''' _UpperCamelCase = acos(torch.dot(torch.flatten(__a) , torch.flatten(__a)) / torch.norm(__a) / torch.norm(__a)) return sin((1 - alpha) * theta) * xa / sin(__a) + sin(alpha * theta) * xa / sin(__a)
19
1
"""simple docstring""" from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """microsoft/markuplm-base""": """https://huggingface.co/microsoft/markuplm-base/resolve/main/config.json""", """microsoft/markuplm-large""": """https://huggingface.co/microsoft/markuplm-large/resolve/main/config.json""", } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'markuplm' def __init__( self , __a=3_05_22 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=2 , __a=0.02 , __a=1e-12 , __a=0 , __a=0 , __a=2 , __a=2_56 , __a=10_24 , __a=2_16 , __a=10_01 , __a=32 , __a=50 , __a="absolute" , __a=True , __a=None , **__a , ) -> List[Any]: '''simple docstring''' super().__init__( pad_token_id=__a , bos_token_id=__a , eos_token_id=__a , **__a , ) _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_act _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = initializer_range _UpperCamelCase = layer_norm_eps _UpperCamelCase = position_embedding_type _UpperCamelCase = use_cache _UpperCamelCase = classifier_dropout # additional properties _UpperCamelCase = max_depth _UpperCamelCase = max_xpath_tag_unit_embeddings _UpperCamelCase = max_xpath_subs_unit_embeddings _UpperCamelCase = tag_pad_id _UpperCamelCase = subs_pad_id _UpperCamelCase = xpath_unit_hidden_size
19
"""simple docstring""" import copy from collections import OrderedDict from typing import Dict, Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging from ..auto import CONFIG_MAPPING _a = logging.get_logger(__name__) _a = { """facebook/detr-resnet-50""": """https://huggingface.co/facebook/detr-resnet-50/resolve/main/config.json""", # See all DETR models at https://huggingface.co/models?filter=detr } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'detr' lowercase__ = ['past_key_values'] lowercase__ = { 'hidden_size': 'd_model', 'num_attention_heads': 'encoder_attention_heads', } def __init__( self , __a=True , __a=None , __a=3 , __a=1_00 , __a=6 , __a=20_48 , __a=8 , __a=6 , __a=20_48 , __a=8 , __a=0.0 , __a=0.0 , __a=True , __a="relu" , __a=2_56 , __a=0.1 , __a=0.0 , __a=0.0 , __a=0.02 , __a=1.0 , __a=False , __a="sine" , __a="resnet50" , __a=True , __a=False , __a=1 , __a=5 , __a=2 , __a=1 , __a=1 , __a=5 , __a=2 , __a=0.1 , **__a , ) -> int: '''simple docstring''' if backbone_config is not None and use_timm_backbone: raise ValueError('''You can\'t specify both `backbone_config` and `use_timm_backbone`.''') if not use_timm_backbone: if backbone_config is None: logger.info('''`backbone_config` is `None`. Initializing the config with the default `ResNet` backbone.''') _UpperCamelCase = CONFIG_MAPPING['''resnet'''](out_features=['''stage4''']) elif isinstance(__a , __a): _UpperCamelCase = backbone_config.get('''model_type''') _UpperCamelCase = CONFIG_MAPPING[backbone_model_type] _UpperCamelCase = config_class.from_dict(__a) # set timm attributes to None _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = None, None, None _UpperCamelCase = use_timm_backbone _UpperCamelCase = backbone_config _UpperCamelCase = num_channels _UpperCamelCase = num_queries _UpperCamelCase = d_model _UpperCamelCase = encoder_ffn_dim _UpperCamelCase = encoder_layers _UpperCamelCase = encoder_attention_heads _UpperCamelCase = decoder_ffn_dim _UpperCamelCase = decoder_layers _UpperCamelCase = decoder_attention_heads _UpperCamelCase = dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = activation_function _UpperCamelCase = init_std _UpperCamelCase = init_xavier_std _UpperCamelCase = encoder_layerdrop _UpperCamelCase = decoder_layerdrop _UpperCamelCase = encoder_layers _UpperCamelCase = auxiliary_loss _UpperCamelCase = position_embedding_type _UpperCamelCase = backbone _UpperCamelCase = use_pretrained_backbone _UpperCamelCase = dilation # Hungarian matcher _UpperCamelCase = class_cost _UpperCamelCase = bbox_cost _UpperCamelCase = giou_cost # Loss coefficients _UpperCamelCase = mask_loss_coefficient _UpperCamelCase = dice_loss_coefficient _UpperCamelCase = bbox_loss_coefficient _UpperCamelCase = giou_loss_coefficient _UpperCamelCase = eos_coefficient super().__init__(is_encoder_decoder=__a , **__a) @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.encoder_attention_heads @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.d_model @classmethod def UpperCAmelCase ( cls , __a , **__a) -> int: '''simple docstring''' return cls(backbone_config=__a , **__a) def UpperCAmelCase ( self) -> Dict[str, any]: '''simple docstring''' _UpperCamelCase = copy.deepcopy(self.__dict__) if output["backbone_config"] is not None: _UpperCamelCase = self.backbone_config.to_dict() _UpperCamelCase = self.__class__.model_type return output class _UpperCAmelCase( lowerCamelCase ): lowercase__ = version.parse('1.11' ) @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''pixel_values''', {0: '''batch''', 1: '''num_channels''', 2: '''height''', 3: '''width'''}), ('''pixel_mask''', {0: '''batch'''}), ]) @property def UpperCAmelCase ( self) -> float: '''simple docstring''' return 1e-5 @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return 12
19
1
"""simple docstring""" import os import tempfile import unittest from transformers import FlaubertConfig, is_torch_available from transformers.testing_utils import require_torch, require_torch_gpu, 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 ( FlaubertForMultipleChoice, FlaubertForQuestionAnswering, FlaubertForQuestionAnsweringSimple, FlaubertForSequenceClassification, FlaubertForTokenClassification, FlaubertModel, FlaubertWithLMHeadModel, ) from transformers.models.flaubert.modeling_flaubert import FLAUBERT_PRETRAINED_MODEL_ARCHIVE_LIST class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=True , __a=False , __a=False , __a=False , __a=2 , __a=99 , __a=0 , __a=32 , __a=5 , __a=4 , __a=0.1 , __a=0.1 , __a=5_12 , __a=12 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a="last" , __a=None , __a=None , ) -> List[str]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_lengths _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = gelu_activation _UpperCamelCase = sinusoidal_embeddings _UpperCamelCase = causal _UpperCamelCase = asm _UpperCamelCase = n_langs _UpperCamelCase = vocab_size _UpperCamelCase = n_special _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = summary_type _UpperCamelCase = use_proj _UpperCamelCase = scope def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_input_lengths: _UpperCamelCase = ( ids_tensor([self.batch_size] , vocab_size=2) + self.seq_length - 2 ) # small variation of seq_length _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.n_langs) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , 2).float() _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = self.get_config() return ( config, input_ids, token_type_ids, input_lengths, sequence_labels, token_labels, is_impossible_labels, choice_labels, input_mask, ) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return FlaubertConfig( vocab_size=self.vocab_size , n_special=self.n_special , emb_dim=self.hidden_size , n_layers=self.num_hidden_layers , n_heads=self.num_attention_heads , dropout=self.hidden_dropout_prob , attention_dropout=self.attention_probs_dropout_prob , gelu_activation=self.gelu_activation , sinusoidal_embeddings=self.sinusoidal_embeddings , asm=self.asm , causal=self.causal , n_langs=self.n_langs , max_position_embeddings=self.max_position_embeddings , initializer_range=self.initializer_range , summary_type=self.summary_type , use_proj=self.use_proj , ) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> Any: '''simple docstring''' _UpperCamelCase = FlaubertModel(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , lengths=__a , langs=__a) _UpperCamelCase = model(__a , langs=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> List[Any]: '''simple docstring''' _UpperCamelCase = FlaubertWithLMHeadModel(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , token_type_ids=__a , labels=__a) self.parent.assertEqual(result.loss.shape , ()) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> Dict: '''simple docstring''' _UpperCamelCase = FlaubertForQuestionAnsweringSimple(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) _UpperCamelCase = model(__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 UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> Tuple: '''simple docstring''' _UpperCamelCase = FlaubertForQuestionAnswering(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) _UpperCamelCase = model( __a , start_positions=__a , end_positions=__a , cls_index=__a , is_impossible=__a , p_mask=__a , ) _UpperCamelCase = model( __a , start_positions=__a , end_positions=__a , cls_index=__a , is_impossible=__a , ) ((_UpperCamelCase) , ) = result_with_labels.to_tuple() _UpperCamelCase = model(__a , start_positions=__a , end_positions=__a) ((_UpperCamelCase) , ) = result_with_labels.to_tuple() self.parent.assertEqual(result_with_labels.loss.shape , ()) self.parent.assertEqual(result.start_top_log_probs.shape , (self.batch_size, model.config.start_n_top)) self.parent.assertEqual(result.start_top_index.shape , (self.batch_size, model.config.start_n_top)) self.parent.assertEqual( result.end_top_log_probs.shape , (self.batch_size, model.config.start_n_top * model.config.end_n_top)) self.parent.assertEqual( result.end_top_index.shape , (self.batch_size, model.config.start_n_top * model.config.end_n_top)) self.parent.assertEqual(result.cls_logits.shape , (self.batch_size,)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> Dict: '''simple docstring''' _UpperCamelCase = FlaubertForSequenceClassification(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) _UpperCamelCase = model(__a , labels=__a) self.parent.assertEqual(result.loss.shape , ()) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> int: '''simple docstring''' _UpperCamelCase = self.num_labels _UpperCamelCase = FlaubertForTokenClassification(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , attention_mask=__a , labels=__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a , __a , __a , ) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.num_choices _UpperCamelCase = FlaubertForMultipleChoice(config=__a) model.to(__a) model.eval() _UpperCamelCase = input_ids.unsqueeze(1).expand(-1 , self.num_choices , -1).contiguous() _UpperCamelCase = token_type_ids.unsqueeze(1).expand(-1 , self.num_choices , -1).contiguous() _UpperCamelCase = input_mask.unsqueeze(1).expand(-1 , self.num_choices , -1).contiguous() _UpperCamelCase = model( __a , attention_mask=__a , token_type_ids=__a , labels=__a , ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_choices)) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = { '''input_ids''': input_ids, '''token_type_ids''': token_type_ids, '''lengths''': input_lengths, '''attention_mask''': input_mask, } return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( FlaubertModel, FlaubertWithLMHeadModel, FlaubertForQuestionAnswering, FlaubertForQuestionAnsweringSimple, FlaubertForSequenceClassification, FlaubertForTokenClassification, FlaubertForMultipleChoice, ) if is_torch_available() else () ) lowercase__ = ( { 'feature-extraction': FlaubertModel, 'fill-mask': FlaubertWithLMHeadModel, 'question-answering': FlaubertForQuestionAnsweringSimple, 'text-classification': FlaubertForSequenceClassification, 'token-classification': FlaubertForTokenClassification, 'zero-shot': FlaubertForSequenceClassification, } if is_torch_available() else {} ) def UpperCAmelCase ( self , __a , __a , __a , __a , __a) -> Optional[Any]: '''simple docstring''' if ( pipeline_test_casse_name == "QAPipelineTests" and tokenizer_name is not None and not tokenizer_name.endswith('''Fast''') ): # `QAPipelineTests` fails for a few models when the slower tokenizer are used. # (The slower tokenizers were never used for pipeline tests before the pipeline testing rework) # TODO: check (and possibly fix) the `QAPipelineTests` with slower tokenizer return True return False def UpperCAmelCase ( self , __a , __a , __a=False) -> Dict: '''simple docstring''' _UpperCamelCase = super()._prepare_for_class(__a , __a , return_labels=__a) if return_labels: if model_class.__name__ == "FlaubertForQuestionAnswering": _UpperCamelCase = torch.zeros( self.model_tester.batch_size , dtype=torch.long , device=__a) _UpperCamelCase = torch.zeros( self.model_tester.batch_size , dtype=torch.long , device=__a) return inputs_dict def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = FlaubertModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , emb_dim=37) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_model(*__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_lm_head(*__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_simple_qa(*__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_qa(*__a) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_sequence_classif(*__a) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_token_classif(*__a) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_flaubert_multiple_choice(*__a) @slow def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' for model_name in FLAUBERT_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = FlaubertModel.from_pretrained(__a) self.assertIsNotNone(__a) @slow @require_torch_gpu def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: # FlauBertForMultipleChoice behaves incorrectly in JIT environments. if model_class == FlaubertForMultipleChoice: return _UpperCamelCase = True _UpperCamelCase = model_class(config=__a) _UpperCamelCase = self._prepare_for_class(__a , __a) _UpperCamelCase = torch.jit.trace( __a , (inputs_dict['''input_ids'''].to('''cpu'''), inputs_dict['''attention_mask'''].to('''cpu'''))) with tempfile.TemporaryDirectory() as tmp: torch.jit.save(__a , os.path.join(__a , '''traced_model.pt''')) _UpperCamelCase = torch.jit.load(os.path.join(__a , '''traced_model.pt''') , map_location=__a) loaded(inputs_dict['''input_ids'''].to(__a) , inputs_dict['''attention_mask'''].to(__a)) @require_torch class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = FlaubertModel.from_pretrained('''flaubert/flaubert_base_cased''') _UpperCamelCase = torch.tensor([[0, 3_45, 2_32, 3_28, 7_40, 1_40, 16_95, 69, 60_78, 15_88, 2]]) with torch.no_grad(): _UpperCamelCase = model(__a)[0] _UpperCamelCase = torch.Size((1, 11, 7_68)) self.assertEqual(output.shape , __a) _UpperCamelCase = torch.tensor( [[[-2.6251, -1.4298, -0.0227], [-2.8510, -1.6387, 0.2258], [-2.8114, -1.1832, -0.3066]]]) self.assertTrue(torch.allclose(output[:, :3, :3] , __a , atol=1e-4))
19
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """microsoft/wavlm-base""": """https://huggingface.co/microsoft/wavlm-base/resolve/main/config.json""", # See all WavLM models at https://huggingface.co/models?filter=wavlm } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'wavlm' def __init__( self , __a=32 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu" , __a=0.1 , __a=0.1 , __a=0.1 , __a=0.0 , __a=0.1 , __a=0.1 , __a=0.02 , __a=1e-5 , __a="group" , __a="gelu" , __a=(5_12, 5_12, 5_12, 5_12, 5_12, 5_12, 5_12) , __a=(5, 2, 2, 2, 2, 2, 2) , __a=(10, 3, 3, 3, 3, 2, 2) , __a=False , __a=1_28 , __a=16 , __a=3_20 , __a=8_00 , __a=False , __a=True , __a=0.05 , __a=10 , __a=2 , __a=0.0 , __a=10 , __a=3_20 , __a=2 , __a=0.1 , __a=1_00 , __a=2_56 , __a=2_56 , __a=0.1 , __a="mean" , __a=False , __a=False , __a=2_56 , __a=(5_12, 5_12, 5_12, 5_12, 15_00) , __a=(5, 3, 3, 1, 1) , __a=(1, 2, 3, 1, 1) , __a=5_12 , __a=80 , __a=0 , __a=1 , __a=2 , __a=False , __a=3 , __a=2 , __a=3 , __a=None , **__a , ) -> Union[str, Any]: '''simple docstring''' super().__init__(**__a , pad_token_id=__a , bos_token_id=__a , eos_token_id=__a) _UpperCamelCase = hidden_size _UpperCamelCase = feat_extract_norm _UpperCamelCase = feat_extract_activation _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = conv_bias _UpperCamelCase = num_buckets _UpperCamelCase = max_bucket_distance _UpperCamelCase = num_conv_pos_embeddings _UpperCamelCase = num_conv_pos_embedding_groups _UpperCamelCase = len(self.conv_dim) _UpperCamelCase = num_hidden_layers _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = feat_proj_dropout _UpperCamelCase = final_dropout _UpperCamelCase = layerdrop _UpperCamelCase = layer_norm_eps _UpperCamelCase = initializer_range _UpperCamelCase = num_ctc_classes _UpperCamelCase = vocab_size _UpperCamelCase = do_stable_layer_norm _UpperCamelCase = use_weighted_layer_sum _UpperCamelCase = 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 _UpperCamelCase = apply_spec_augment _UpperCamelCase = mask_time_prob _UpperCamelCase = mask_time_length _UpperCamelCase = mask_time_min_masks _UpperCamelCase = mask_feature_prob _UpperCamelCase = mask_feature_length # parameters for pretraining with codevector quantized representations _UpperCamelCase = num_codevectors_per_group _UpperCamelCase = num_codevector_groups _UpperCamelCase = contrastive_logits_temperature _UpperCamelCase = num_negatives _UpperCamelCase = codevector_dim _UpperCamelCase = proj_codevector_dim _UpperCamelCase = diversity_loss_weight # ctc loss _UpperCamelCase = ctc_loss_reduction _UpperCamelCase = ctc_zero_infinity # adapter _UpperCamelCase = add_adapter _UpperCamelCase = adapter_kernel_size _UpperCamelCase = adapter_stride _UpperCamelCase = num_adapter_layers _UpperCamelCase = output_hidden_size or hidden_size # SequenceClassification-specific parameter. Feel free to ignore for other classes. _UpperCamelCase = classifier_proj_size # XVector-specific parameters. Feel free to ignore for other classes. _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = xvector_output_dim @property def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return functools.reduce(operator.mul , self.conv_stride , 1)
19
1
"""simple docstring""" import unittest from transformers.testing_utils import CaptureStdout from transformers.tools.python_interpreter import evaluate def lowerCamelCase__ ( __snake_case ) -> Union[str, Any]: """simple docstring""" return x + 2 class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = '''x = 3''' _UpperCamelCase = {} _UpperCamelCase = evaluate(__a , {} , state=__a) assert result == 3 self.assertDictEqual(__a , {'''x''': 3}) _UpperCamelCase = '''x = y''' _UpperCamelCase = {'''y''': 5} _UpperCamelCase = evaluate(__a , {} , state=__a) # evaluate returns the value of the last assignment. assert result == 5 self.assertDictEqual(__a , {'''x''': 5, '''y''': 5}) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = '''y = add_two(x)''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {'''add_two''': add_two} , state=__a) assert result == 5 self.assertDictEqual(__a , {'''x''': 3, '''y''': 5}) # Won't work without the tool with CaptureStdout() as out: _UpperCamelCase = evaluate(__a , {} , state=__a) assert result is None assert "tried to execute add_two" in out.out def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = '''x = 3''' _UpperCamelCase = {} _UpperCamelCase = evaluate(__a , {} , state=__a) assert result == 3 self.assertDictEqual(__a , {'''x''': 3}) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = '''test_dict = {\'x\': x, \'y\': add_two(x)}''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {'''add_two''': add_two} , state=__a) self.assertDictEqual(__a , {'''x''': 3, '''y''': 5}) self.assertDictEqual(__a , {'''x''': 3, '''test_dict''': {'''x''': 3, '''y''': 5}}) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = '''x = 3\ny = 5''' _UpperCamelCase = {} _UpperCamelCase = evaluate(__a , {} , state=__a) # evaluate returns the value of the last assignment. assert result == 5 self.assertDictEqual(__a , {'''x''': 3, '''y''': 5}) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = '''text = f\'This is x: {x}.\'''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {} , state=__a) # evaluate returns the value of the last assignment. assert result == "This is x: 3." self.assertDictEqual(__a , {'''x''': 3, '''text''': '''This is x: 3.'''}) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = '''if x <= 3:\n y = 2\nelse:\n y = 5''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {} , state=__a) # evaluate returns the value of the last assignment. assert result == 2 self.assertDictEqual(__a , {'''x''': 3, '''y''': 2}) _UpperCamelCase = {'''x''': 8} _UpperCamelCase = evaluate(__a , {} , state=__a) # evaluate returns the value of the last assignment. assert result == 5 self.assertDictEqual(__a , {'''x''': 8, '''y''': 5}) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = '''test_list = [x, add_two(x)]''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {'''add_two''': add_two} , state=__a) self.assertListEqual(__a , [3, 5]) self.assertDictEqual(__a , {'''x''': 3, '''test_list''': [3, 5]}) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = '''y = x''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {} , state=__a) assert result == 3 self.assertDictEqual(__a , {'''x''': 3, '''y''': 3}) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = '''test_list = [x, add_two(x)]\ntest_list[1]''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {'''add_two''': add_two} , state=__a) assert result == 5 self.assertDictEqual(__a , {'''x''': 3, '''test_list''': [3, 5]}) _UpperCamelCase = '''test_dict = {\'x\': x, \'y\': add_two(x)}\ntest_dict[\'y\']''' _UpperCamelCase = {'''x''': 3} _UpperCamelCase = evaluate(__a , {'''add_two''': add_two} , state=__a) assert result == 5 self.assertDictEqual(__a , {'''x''': 3, '''test_dict''': {'''x''': 3, '''y''': 5}}) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = '''x = 0\nfor i in range(3):\n x = i''' _UpperCamelCase = {} _UpperCamelCase = evaluate(__a , {'''range''': range} , state=__a) assert result == 2 self.assertDictEqual(__a , {'''x''': 2, '''i''': 2})
19
"""simple docstring""" import datasets import faiss import numpy as np import streamlit as st import torch from elasticsearch import Elasticsearch from elia_utils import ( embed_questions_for_retrieval, make_qa_sas_model, qa_sas_generate, query_es_index, query_qa_dense_index, ) import transformers from transformers import AutoModel, AutoModelForSeqaSeqLM, AutoTokenizer _a = """bart""" _a = True @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Dict: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/retribert-base-uncased''' ) _UpperCamelCase = AutoModel.from_pretrained('''yjernite/retribert-base-uncased''' ).to('''cuda:0''' ) _UpperCamelCase = qar_model.eval() else: _UpperCamelCase , _UpperCamelCase = (None, None) if MODEL_TYPE == "bart": _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/bart_eli5''' ) _UpperCamelCase = AutoModelForSeqaSeqLM.from_pretrained('''yjernite/bart_eli5''' ).to('''cuda:0''' ) _UpperCamelCase = torch.load('''seq2seq_models/eli5_bart_model_blm_2.pth''' ) sas_model.load_state_dict(save_dict['''model'''] ) _UpperCamelCase = sas_model.eval() else: _UpperCamelCase , _UpperCamelCase = make_qa_sas_model( model_name='''t5-small''', from_file='''seq2seq_models/eli5_t5_model_1024_4.pth''', device='''cuda:0''' ) return (qar_tokenizer, qar_model, sas_tokenizer, sas_model) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = faiss.StandardGpuResources() _UpperCamelCase = datasets.load_dataset(path='''wiki_snippets''', name='''wiki40b_en_100_0''' )['''train'''] _UpperCamelCase = np.memmap( '''wiki40b_passages_reps_32_l-8_h-768_b-512-512.dat''', dtype='''float32''', mode='''r''', shape=(wikiaab_passages.num_rows, 1_28), ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) _UpperCamelCase = faiss.index_cpu_to_gpu(__snake_case, 1, __snake_case ) wikiaab_gpu_index_flat.add(__snake_case ) # TODO fix for larger GPU else: _UpperCamelCase , _UpperCamelCase = (None, None) _UpperCamelCase = Elasticsearch([{'''host''': '''localhost''', '''port''': '''9200'''}] ) return (wikiaab_passages, wikiaab_gpu_index_flat, es_client) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = datasets.load_dataset('''eli5''', name='''LFQA_reddit''' ) _UpperCamelCase = elia['''train_eli5'''] _UpperCamelCase = np.memmap( '''eli5_questions_reps.dat''', dtype='''float32''', mode='''r''', shape=(elia_train.num_rows, 1_28) ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) eli5_train_q_index.add(__snake_case ) return (elia_train, eli5_train_q_index) _a , _a , _a = load_indexes() _a , _a , _a , _a = load_models() _a , _a = load_train_data() def lowerCamelCase__ ( __snake_case, __snake_case=10 ) -> List[Any]: """simple docstring""" _UpperCamelCase = embed_questions_for_retrieval([question], __snake_case, __snake_case ) _UpperCamelCase , _UpperCamelCase = eli5_train_q_index.search(__snake_case, __snake_case ) _UpperCamelCase = [elia_train[int(__snake_case )] for i in I[0]] return nn_examples def lowerCamelCase__ ( __snake_case, __snake_case="wiki40b", __snake_case="dense", __snake_case=10 ) -> List[str]: """simple docstring""" if source == "none": _UpperCamelCase , _UpperCamelCase = (''' <P> '''.join(['''''' for _ in range(11 )] ).strip(), []) else: if method == "dense": _UpperCamelCase , _UpperCamelCase = query_qa_dense_index( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) else: _UpperCamelCase , _UpperCamelCase = query_es_index( __snake_case, __snake_case, index_name='''english_wiki40b_snippets_100w''', n_results=__snake_case, ) _UpperCamelCase = [ (res['''article_title'''], res['''section_title'''].strip(), res['''score'''], res['''passage_text''']) for res in hit_lst ] _UpperCamelCase = '''question: {} context: {}'''.format(__snake_case, __snake_case ) return question_doc, support_list @st.cache( hash_funcs={ torch.Tensor: (lambda __snake_case : None), transformers.models.bart.tokenization_bart.BartTokenizer: (lambda __snake_case : None), } ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=64, __snake_case=2_56, __snake_case=False, __snake_case=2, __snake_case=0.95, __snake_case=0.8 ) -> Dict: """simple docstring""" with torch.no_grad(): _UpperCamelCase = qa_sas_generate( __snake_case, __snake_case, __snake_case, num_answers=1, num_beams=__snake_case, min_len=__snake_case, max_len=__snake_case, do_sample=__snake_case, temp=__snake_case, top_p=__snake_case, top_k=__snake_case, max_input_length=10_24, device='''cuda:0''', )[0] return (answer, support_list) st.title("""Long Form Question Answering with ELI5""") # Start sidebar _a = """<img src='https://huggingface.co/front/assets/huggingface_logo.svg'>""" _a = """ <html> <head> <style> .img-container { padding-left: 90px; padding-right: 90px; padding-top: 50px; padding-bottom: 50px; background-color: #f0f3f9; } </style> </head> <body> <span class=\"img-container\"> <!-- Inline parent element --> %s </span> </body> </html> """ % ( header_html, ) st.sidebar.markdown( header_full, unsafe_allow_html=True, ) # Long Form QA with ELI5 and Wikipedia _a = """ This demo presents a model trained to [provide long-form answers to open-domain questions](https://yjernite.github.io/lfqa.html). First, a document retriever fetches a set of relevant Wikipedia passages given the question from the [Wiki40b](https://research.google/pubs/pub49029/) dataset, a pre-processed fixed snapshot of Wikipedia. """ st.sidebar.markdown(description, unsafe_allow_html=True) _a = [ """Answer the question""", """View the retrieved document only""", """View the most similar ELI5 question and answer""", """Show me everything, please!""", ] _a = st.sidebar.checkbox("""Demo options""") if demo_options: _a = st.sidebar.selectbox( """""", action_list, index=3, ) _a = action_list.index(action_st) _a = st.sidebar.selectbox( """""", ["""Show full text of passages""", """Show passage section titles"""], index=0, ) _a = show_type == """Show full text of passages""" else: _a = 3 _a = True _a = st.sidebar.checkbox("""Retrieval options""") if retrieval_options: _a = """ ### Information retriever options The **sparse** retriever uses ElasticSearch, while the **dense** retriever uses max-inner-product search between a question and passage embedding trained using the [ELI5](https://arxiv.org/abs/1907.09190) questions-answer pairs. The answer is then generated by sequence to sequence model which takes the question and retrieved document as input. """ st.sidebar.markdown(retriever_info) _a = st.sidebar.selectbox("""Which Wikipedia format should the model use?""", ["""wiki40b""", """none"""]) _a = st.sidebar.selectbox("""Which Wikipedia indexer should the model use?""", ["""dense""", """sparse""", """mixed"""]) else: _a = """wiki40b""" _a = """dense""" _a = """beam""" _a = 2 _a = 64 _a = 256 _a = None _a = None _a = st.sidebar.checkbox("""Generation options""") if generate_options: _a = """ ### Answer generation options The sequence-to-sequence model was initialized with [BART](https://huggingface.co/facebook/bart-large) weights and fine-tuned on the ELI5 QA pairs and retrieved documents. You can use the model for greedy decoding with **beam** search, or **sample** from the decoder's output probabilities. """ st.sidebar.markdown(generate_info) _a = st.sidebar.selectbox("""Would you like to use beam search or sample an answer?""", ["""beam""", """sampled"""]) _a = st.sidebar.slider( """Minimum generation length""", min_value=8, max_value=256, value=64, step=8, format=None, key=None ) _a = st.sidebar.slider( """Maximum generation length""", min_value=64, max_value=512, value=256, step=16, format=None, key=None ) if sampled == "beam": _a = st.sidebar.slider("""Beam size""", min_value=1, max_value=8, value=2, step=None, format=None, key=None) else: _a = st.sidebar.slider( """Nucleus sampling p""", min_value=0.1, max_value=1.0, value=0.95, step=0.01, format=None, key=None ) _a = st.sidebar.slider( """Temperature""", min_value=0.1, max_value=1.0, value=0.7, step=0.01, format=None, key=None ) _a = None # start main text _a = [ """<MY QUESTION>""", """How do people make chocolate?""", """Why do we get a fever when we are sick?""", """How can different animals perceive different colors?""", """What is natural language processing?""", """What's the best way to treat a sunburn?""", """What exactly are vitamins ?""", """How does nuclear energy provide electricity?""", """What's the difference between viruses and bacteria?""", """Why are flutes classified as woodwinds when most of them are made out of metal ?""", """Why do people like drinking coffee even though it tastes so bad?""", """What happens when wine ages? How does it make the wine taste better?""", """If an animal is an herbivore, where does it get the protein that it needs to survive if it only eats grass?""", """How can we set a date to the beginning or end of an artistic period? Doesn't the change happen gradually?""", """How does New Zealand have so many large bird predators?""", ] _a = st.selectbox( """What would you like to ask? ---- select <MY QUESTION> to enter a new query""", questions_list, index=1, ) if question_s == "<MY QUESTION>": _a = st.text_input("""Enter your question here:""", """""") else: _a = question_s if st.button("""Show me!"""): if action in [0, 1, 3]: if index_type == "mixed": _a , _a = make_support(question, source=wiki_source, method="""dense""", n_results=10) _a , _a = make_support(question, source=wiki_source, method="""sparse""", n_results=10) _a = [] for res_d, res_s in zip(support_list_dense, support_list_sparse): if tuple(res_d) not in support_list: support_list += [tuple(res_d)] if tuple(res_s) not in support_list: support_list += [tuple(res_s)] _a = support_list[:10] _a = """<P> """ + """ <P> """.join([res[-1] for res in support_list]) else: _a , _a = make_support(question, source=wiki_source, method=index_type, n_results=10) if action in [0, 3]: _a , _a = answer_question( question_doc, sas_model, sas_tokenizer, min_len=min_len, max_len=int(max_len), sampling=(sampled == """sampled"""), n_beams=n_beams, top_p=top_p, temp=temp, ) st.markdown("""### The model generated answer is:""") st.write(answer) if action in [0, 1, 3] and wiki_source != "none": st.markdown("""--- \n ### The model is drawing information from the following Wikipedia passages:""") for i, res in enumerate(support_list): _a = """https://en.wikipedia.org/wiki/{}""".format(res[0].replace(""" """, """_""")) _a = res[1].strip() if sec_titles == "": _a = """[{}]({})""".format(res[0], wiki_url) else: _a = sec_titles.split(""" & """) _a = """ & """.join( ["""[{}]({}#{})""".format(sec.strip(), wiki_url, sec.strip().replace(""" """, """_""")) for sec in sec_list] ) st.markdown( """{0:02d} - **Article**: {1:<18} <br> _Section_: {2}""".format(i + 1, res[0], sections), unsafe_allow_html=True, ) if show_passages: st.write( """> <span style=\"font-family:arial; font-size:10pt;\">""" + res[-1] + """</span>""", unsafe_allow_html=True ) if action in [2, 3]: _a = find_nearest_training(question) _a = nn_train_list[0] st.markdown( """--- \n ### The most similar question in the ELI5 training set was: \n\n {}""".format(train_exple["""title"""]) ) _a = [ """{}. {}""".format(i + 1, """ \n""".join([line.strip() for line in ans.split("""\n""") if line.strip() != """"""])) for i, (ans, sc) in enumerate(zip(train_exple["""answers"""]["""text"""], train_exple["""answers"""]["""score"""])) if i == 0 or sc > 2 ] st.markdown("""##### Its answers were: \n\n {}""".format("""\n""".join(answers_st))) _a = """ --- **Disclaimer** *The intent of this app is to provide some (hopefully entertaining) insights into the behavior of a current LFQA system. Evaluating biases of such a model and ensuring factual generations are still very much open research problems. Therefore, until some significant progress is achieved, we caution against using the generated answers for practical purposes.* """ st.sidebar.markdown(disclaimer, unsafe_allow_html=True)
19
1
"""simple docstring""" import warnings from ...utils import logging from .image_processing_deformable_detr import DeformableDetrImageProcessor _a = logging.get_logger(__name__) class _UpperCAmelCase( lowerCamelCase ): def __init__( self , *__a , **__a) -> None: '''simple docstring''' warnings.warn( '''The class DeformableDetrFeatureExtractor is deprecated and will be removed in version 5 of Transformers.''' ''' Please use DeformableDetrImageProcessor instead.''' , __a , ) super().__init__(*__a , **__a)
19
"""simple docstring""" import argparse import fairseq import torch from torch import nn from transformers import ( MBartaaTokenizer, MBartConfig, MBartForCausalLM, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() _a = logging.get_logger(__name__) _a = { """post_extract_proj""": """feature_projection.projection""", """encoder.pos_conv.0""": """encoder.pos_conv_embed.conv""", """self_attn.k_proj""": """encoder.layers.*.attention.k_proj""", """self_attn.v_proj""": """encoder.layers.*.attention.v_proj""", """self_attn.q_proj""": """encoder.layers.*.attention.q_proj""", """self_attn.out_proj""": """encoder.layers.*.attention.out_proj""", """self_attn_layer_norm""": """encoder.layers.*.layer_norm""", """fc1""": """encoder.layers.*.feed_forward.intermediate_dense""", """fc2""": """encoder.layers.*.feed_forward.output_dense""", """final_layer_norm""": """encoder.layers.*.final_layer_norm""", """encoder.layer_norm""": """encoder.layer_norm""", """w2v_model.layer_norm""": """feature_projection.layer_norm""", """quantizer.weight_proj""": """quantizer.weight_proj""", """quantizer.vars""": """quantizer.codevectors""", """project_q""": """project_q""", """final_proj""": """project_hid""", """w2v_encoder.proj""": """lm_head""", """mask_emb""": """masked_spec_embed""", } _a = [ """lm_head""", """quantizer.weight_proj""", """quantizer.codevectors""", """project_q""", """project_hid""", ] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" for attribute in key.split('''.''' ): _UpperCamelCase = getattr(__snake_case, __snake_case ) if weight_type is not None: _UpperCamelCase = getattr(__snake_case, __snake_case ).shape else: _UpperCamelCase = hf_pointer.shape assert hf_shape == value.shape, ( 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": _UpperCamelCase = value elif weight_type == "weight_g": _UpperCamelCase = value elif weight_type == "weight_v": _UpperCamelCase = value elif weight_type == "bias": _UpperCamelCase = value else: _UpperCamelCase = value logger.info(F'''{key + "." + weight_type if weight_type is not None else ""} was initialized from {full_name}.''' ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = [] _UpperCamelCase = fairseq_model.state_dict() _UpperCamelCase = hf_model.feature_extractor _UpperCamelCase = hf_model.adapter for name, value in fairseq_dict.items(): _UpperCamelCase = False if "conv_layers" in name: load_conv_layer( __snake_case, __snake_case, __snake_case, __snake_case, hf_model.config.feat_extract_norm == '''group''', ) _UpperCamelCase = True elif any(x in name for x in ['''adaptor''', '''w2v_encoder.proj.''', '''w2v_proj_ln.'''] ): load_adapter(__snake_case, __snake_case, __snake_case, __snake_case ) _UpperCamelCase = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('''w2v_model.''' )[-1] == name.split('''.''' )[0]: _UpperCamelCase = True if "*" in mapped_key: _UpperCamelCase = name.split(__snake_case )[0].split('''.''' )[-2] _UpperCamelCase = mapped_key.replace('''*''', __snake_case ) if "weight_g" in name: _UpperCamelCase = '''weight_g''' elif "weight_v" in name: _UpperCamelCase = '''weight_v''' elif "bias" in name: _UpperCamelCase = '''bias''' elif "weight" in name: _UpperCamelCase = '''weight''' else: _UpperCamelCase = None set_recursively(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) continue if not is_used: unused_weights.append(__snake_case ) logger.warning(F'''Unused weights: {unused_weights}''' ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = full_name.split('''conv_layers.''' )[-1] _UpperCamelCase = name.split('''.''' ) _UpperCamelCase = int(items[0] ) _UpperCamelCase = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _UpperCamelCase = 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: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = full_name.split('''adaptor.''' )[-1] _UpperCamelCase = name.split('''.''' ) if items[1].isdigit(): _UpperCamelCase = int(items[1] ) else: _UpperCamelCase = None if "adaptor" not in full_name: if "proj_ln" in full_name: # has to be layer norm if "bias" in name: assert ( value.shape == adapter.proj_layer_norm.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer norm bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj_layer_norm.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.weight.data.shape} was found.''' _UpperCamelCase = value else: # has to be projection layer if "bias" in name: assert ( value.shape == adapter.proj.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer weight was initialized from {full_name}.''' ) elif isinstance(__snake_case, __snake_case ): if "bias" in name: assert ( value.shape == adapter.layers[layer_id].conv.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) elif "weight" in name: assert ( value.shape == adapter.layers[layer_id].conv.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase , _UpperCamelCase = emb.weight.shape _UpperCamelCase = nn.Linear(__snake_case, __snake_case, bias=__snake_case ) _UpperCamelCase = emb.weight.data return lin_layer @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = WavaVecaConfig.from_pretrained( __snake_case, add_adapter=__snake_case, adapter_stride=__snake_case, adapter_kernel_size=__snake_case, use_auth_token=__snake_case, output_hidden_size=__snake_case, ) _UpperCamelCase = MBartConfig.from_pretrained(__snake_case ) # load model _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path], arg_overrides={ '''config_yaml''': config_yaml_path, '''data''': '''/'''.join(dict_path.split('''/''' )[:-1] ), '''w2v_path''': checkpoint_path, '''load_pretrained_decoder_from''': None, }, ) _UpperCamelCase = model[0].eval() # load feature extractor _UpperCamelCase = WavaVecaFeatureExtractor.from_pretrained(__snake_case, use_auth_token=__snake_case ) # set weights for wav2vec2 encoder _UpperCamelCase = WavaVecaModel(__snake_case ) recursively_load_weights_wavaveca(model.encoder, __snake_case ) # load decoder weights _UpperCamelCase = MBartForCausalLM(__snake_case ) _UpperCamelCase , _UpperCamelCase = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict(), strict=__snake_case ) logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) _UpperCamelCase = SpeechEncoderDecoderModel(encoder=__snake_case, decoder=__snake_case ) _UpperCamelCase = False _UpperCamelCase = MBartaaTokenizer(__snake_case ) tokenizer.save_pretrained(__snake_case ) _UpperCamelCase = hf_wavavec.config.to_dict() _UpperCamelCase = tokenizer.pad_token_id _UpperCamelCase = tokenizer.bos_token_id _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = '''mbart50''' _UpperCamelCase = '''wav2vec2''' _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = 25_00_04 _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = SpeechEncoderDecoderConfig.from_dict(__snake_case ) hf_wavavec.save_pretrained(__snake_case ) feature_extractor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model.""") parser.add_argument("""--checkpoint_path""", default=None, type=str, help="""Path to fairseq checkpoint""") parser.add_argument("""--dict_path""", default=None, type=str, help="""Path to dict of fine-tuned model""") parser.add_argument("""--config_yaml_path""", default=None, type=str, help="""Path to yaml file of fine-tuned model""") parser.add_argument( """--encoder_config_path""", default="""facebook/wav2vec2-xls-r-1b""", type=str, help="""Path to hf encoder wav2vec2 checkpoint config""", ) parser.add_argument( """--decoder_config_path""", default="""facebook/mbart-large-50-one-to-many-mmt""", type=str, help="""Path to hf decoder checkpoint config""", ) parser.add_argument("""--add_adapter""", default=True, type=bool, help="""whethere to add model adapter layers""") parser.add_argument("""--adapter_stride""", default=2, type=int, help="""stride of adapter layers""") parser.add_argument("""--adapter_kernel_size""", default=3, type=int, help="""kernel size of adapter layers""") parser.add_argument("""--encoder_output_dim""", default=1024, type=int, help="""encoder output dim""") parser.add_argument("""--start_token_id""", default=25_0004, type=int, help="""`decoder_start_token_id` of model config""") _a = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, args.config_yaml_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, add_adapter=args.add_adapter, adapter_kernel_size=args.adapter_kernel_size, adapter_stride=args.adapter_stride, decoder_start_token_id=args.start_token_id, encoder_output_dim=args.encoder_output_dim, )
19
1
"""simple docstring""" import datasets import faiss import numpy as np import streamlit as st import torch from elasticsearch import Elasticsearch from elia_utils import ( embed_questions_for_retrieval, make_qa_sas_model, qa_sas_generate, query_es_index, query_qa_dense_index, ) import transformers from transformers import AutoModel, AutoModelForSeqaSeqLM, AutoTokenizer _a = """bart""" _a = True @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Dict: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/retribert-base-uncased''' ) _UpperCamelCase = AutoModel.from_pretrained('''yjernite/retribert-base-uncased''' ).to('''cuda:0''' ) _UpperCamelCase = qar_model.eval() else: _UpperCamelCase , _UpperCamelCase = (None, None) if MODEL_TYPE == "bart": _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/bart_eli5''' ) _UpperCamelCase = AutoModelForSeqaSeqLM.from_pretrained('''yjernite/bart_eli5''' ).to('''cuda:0''' ) _UpperCamelCase = torch.load('''seq2seq_models/eli5_bart_model_blm_2.pth''' ) sas_model.load_state_dict(save_dict['''model'''] ) _UpperCamelCase = sas_model.eval() else: _UpperCamelCase , _UpperCamelCase = make_qa_sas_model( model_name='''t5-small''', from_file='''seq2seq_models/eli5_t5_model_1024_4.pth''', device='''cuda:0''' ) return (qar_tokenizer, qar_model, sas_tokenizer, sas_model) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = faiss.StandardGpuResources() _UpperCamelCase = datasets.load_dataset(path='''wiki_snippets''', name='''wiki40b_en_100_0''' )['''train'''] _UpperCamelCase = np.memmap( '''wiki40b_passages_reps_32_l-8_h-768_b-512-512.dat''', dtype='''float32''', mode='''r''', shape=(wikiaab_passages.num_rows, 1_28), ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) _UpperCamelCase = faiss.index_cpu_to_gpu(__snake_case, 1, __snake_case ) wikiaab_gpu_index_flat.add(__snake_case ) # TODO fix for larger GPU else: _UpperCamelCase , _UpperCamelCase = (None, None) _UpperCamelCase = Elasticsearch([{'''host''': '''localhost''', '''port''': '''9200'''}] ) return (wikiaab_passages, wikiaab_gpu_index_flat, es_client) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = datasets.load_dataset('''eli5''', name='''LFQA_reddit''' ) _UpperCamelCase = elia['''train_eli5'''] _UpperCamelCase = np.memmap( '''eli5_questions_reps.dat''', dtype='''float32''', mode='''r''', shape=(elia_train.num_rows, 1_28) ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) eli5_train_q_index.add(__snake_case ) return (elia_train, eli5_train_q_index) _a , _a , _a = load_indexes() _a , _a , _a , _a = load_models() _a , _a = load_train_data() def lowerCamelCase__ ( __snake_case, __snake_case=10 ) -> List[Any]: """simple docstring""" _UpperCamelCase = embed_questions_for_retrieval([question], __snake_case, __snake_case ) _UpperCamelCase , _UpperCamelCase = eli5_train_q_index.search(__snake_case, __snake_case ) _UpperCamelCase = [elia_train[int(__snake_case )] for i in I[0]] return nn_examples def lowerCamelCase__ ( __snake_case, __snake_case="wiki40b", __snake_case="dense", __snake_case=10 ) -> List[str]: """simple docstring""" if source == "none": _UpperCamelCase , _UpperCamelCase = (''' <P> '''.join(['''''' for _ in range(11 )] ).strip(), []) else: if method == "dense": _UpperCamelCase , _UpperCamelCase = query_qa_dense_index( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) else: _UpperCamelCase , _UpperCamelCase = query_es_index( __snake_case, __snake_case, index_name='''english_wiki40b_snippets_100w''', n_results=__snake_case, ) _UpperCamelCase = [ (res['''article_title'''], res['''section_title'''].strip(), res['''score'''], res['''passage_text''']) for res in hit_lst ] _UpperCamelCase = '''question: {} context: {}'''.format(__snake_case, __snake_case ) return question_doc, support_list @st.cache( hash_funcs={ torch.Tensor: (lambda __snake_case : None), transformers.models.bart.tokenization_bart.BartTokenizer: (lambda __snake_case : None), } ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=64, __snake_case=2_56, __snake_case=False, __snake_case=2, __snake_case=0.95, __snake_case=0.8 ) -> Dict: """simple docstring""" with torch.no_grad(): _UpperCamelCase = qa_sas_generate( __snake_case, __snake_case, __snake_case, num_answers=1, num_beams=__snake_case, min_len=__snake_case, max_len=__snake_case, do_sample=__snake_case, temp=__snake_case, top_p=__snake_case, top_k=__snake_case, max_input_length=10_24, device='''cuda:0''', )[0] return (answer, support_list) st.title("""Long Form Question Answering with ELI5""") # Start sidebar _a = """<img src='https://huggingface.co/front/assets/huggingface_logo.svg'>""" _a = """ <html> <head> <style> .img-container { padding-left: 90px; padding-right: 90px; padding-top: 50px; padding-bottom: 50px; background-color: #f0f3f9; } </style> </head> <body> <span class=\"img-container\"> <!-- Inline parent element --> %s </span> </body> </html> """ % ( header_html, ) st.sidebar.markdown( header_full, unsafe_allow_html=True, ) # Long Form QA with ELI5 and Wikipedia _a = """ This demo presents a model trained to [provide long-form answers to open-domain questions](https://yjernite.github.io/lfqa.html). First, a document retriever fetches a set of relevant Wikipedia passages given the question from the [Wiki40b](https://research.google/pubs/pub49029/) dataset, a pre-processed fixed snapshot of Wikipedia. """ st.sidebar.markdown(description, unsafe_allow_html=True) _a = [ """Answer the question""", """View the retrieved document only""", """View the most similar ELI5 question and answer""", """Show me everything, please!""", ] _a = st.sidebar.checkbox("""Demo options""") if demo_options: _a = st.sidebar.selectbox( """""", action_list, index=3, ) _a = action_list.index(action_st) _a = st.sidebar.selectbox( """""", ["""Show full text of passages""", """Show passage section titles"""], index=0, ) _a = show_type == """Show full text of passages""" else: _a = 3 _a = True _a = st.sidebar.checkbox("""Retrieval options""") if retrieval_options: _a = """ ### Information retriever options The **sparse** retriever uses ElasticSearch, while the **dense** retriever uses max-inner-product search between a question and passage embedding trained using the [ELI5](https://arxiv.org/abs/1907.09190) questions-answer pairs. The answer is then generated by sequence to sequence model which takes the question and retrieved document as input. """ st.sidebar.markdown(retriever_info) _a = st.sidebar.selectbox("""Which Wikipedia format should the model use?""", ["""wiki40b""", """none"""]) _a = st.sidebar.selectbox("""Which Wikipedia indexer should the model use?""", ["""dense""", """sparse""", """mixed"""]) else: _a = """wiki40b""" _a = """dense""" _a = """beam""" _a = 2 _a = 64 _a = 256 _a = None _a = None _a = st.sidebar.checkbox("""Generation options""") if generate_options: _a = """ ### Answer generation options The sequence-to-sequence model was initialized with [BART](https://huggingface.co/facebook/bart-large) weights and fine-tuned on the ELI5 QA pairs and retrieved documents. You can use the model for greedy decoding with **beam** search, or **sample** from the decoder's output probabilities. """ st.sidebar.markdown(generate_info) _a = st.sidebar.selectbox("""Would you like to use beam search or sample an answer?""", ["""beam""", """sampled"""]) _a = st.sidebar.slider( """Minimum generation length""", min_value=8, max_value=256, value=64, step=8, format=None, key=None ) _a = st.sidebar.slider( """Maximum generation length""", min_value=64, max_value=512, value=256, step=16, format=None, key=None ) if sampled == "beam": _a = st.sidebar.slider("""Beam size""", min_value=1, max_value=8, value=2, step=None, format=None, key=None) else: _a = st.sidebar.slider( """Nucleus sampling p""", min_value=0.1, max_value=1.0, value=0.95, step=0.01, format=None, key=None ) _a = st.sidebar.slider( """Temperature""", min_value=0.1, max_value=1.0, value=0.7, step=0.01, format=None, key=None ) _a = None # start main text _a = [ """<MY QUESTION>""", """How do people make chocolate?""", """Why do we get a fever when we are sick?""", """How can different animals perceive different colors?""", """What is natural language processing?""", """What's the best way to treat a sunburn?""", """What exactly are vitamins ?""", """How does nuclear energy provide electricity?""", """What's the difference between viruses and bacteria?""", """Why are flutes classified as woodwinds when most of them are made out of metal ?""", """Why do people like drinking coffee even though it tastes so bad?""", """What happens when wine ages? How does it make the wine taste better?""", """If an animal is an herbivore, where does it get the protein that it needs to survive if it only eats grass?""", """How can we set a date to the beginning or end of an artistic period? Doesn't the change happen gradually?""", """How does New Zealand have so many large bird predators?""", ] _a = st.selectbox( """What would you like to ask? ---- select <MY QUESTION> to enter a new query""", questions_list, index=1, ) if question_s == "<MY QUESTION>": _a = st.text_input("""Enter your question here:""", """""") else: _a = question_s if st.button("""Show me!"""): if action in [0, 1, 3]: if index_type == "mixed": _a , _a = make_support(question, source=wiki_source, method="""dense""", n_results=10) _a , _a = make_support(question, source=wiki_source, method="""sparse""", n_results=10) _a = [] for res_d, res_s in zip(support_list_dense, support_list_sparse): if tuple(res_d) not in support_list: support_list += [tuple(res_d)] if tuple(res_s) not in support_list: support_list += [tuple(res_s)] _a = support_list[:10] _a = """<P> """ + """ <P> """.join([res[-1] for res in support_list]) else: _a , _a = make_support(question, source=wiki_source, method=index_type, n_results=10) if action in [0, 3]: _a , _a = answer_question( question_doc, sas_model, sas_tokenizer, min_len=min_len, max_len=int(max_len), sampling=(sampled == """sampled"""), n_beams=n_beams, top_p=top_p, temp=temp, ) st.markdown("""### The model generated answer is:""") st.write(answer) if action in [0, 1, 3] and wiki_source != "none": st.markdown("""--- \n ### The model is drawing information from the following Wikipedia passages:""") for i, res in enumerate(support_list): _a = """https://en.wikipedia.org/wiki/{}""".format(res[0].replace(""" """, """_""")) _a = res[1].strip() if sec_titles == "": _a = """[{}]({})""".format(res[0], wiki_url) else: _a = sec_titles.split(""" & """) _a = """ & """.join( ["""[{}]({}#{})""".format(sec.strip(), wiki_url, sec.strip().replace(""" """, """_""")) for sec in sec_list] ) st.markdown( """{0:02d} - **Article**: {1:<18} <br> _Section_: {2}""".format(i + 1, res[0], sections), unsafe_allow_html=True, ) if show_passages: st.write( """> <span style=\"font-family:arial; font-size:10pt;\">""" + res[-1] + """</span>""", unsafe_allow_html=True ) if action in [2, 3]: _a = find_nearest_training(question) _a = nn_train_list[0] st.markdown( """--- \n ### The most similar question in the ELI5 training set was: \n\n {}""".format(train_exple["""title"""]) ) _a = [ """{}. {}""".format(i + 1, """ \n""".join([line.strip() for line in ans.split("""\n""") if line.strip() != """"""])) for i, (ans, sc) in enumerate(zip(train_exple["""answers"""]["""text"""], train_exple["""answers"""]["""score"""])) if i == 0 or sc > 2 ] st.markdown("""##### Its answers were: \n\n {}""".format("""\n""".join(answers_st))) _a = """ --- **Disclaimer** *The intent of this app is to provide some (hopefully entertaining) insights into the behavior of a current LFQA system. Evaluating biases of such a model and ensuring factual generations are still very much open research problems. Therefore, until some significant progress is achieved, we caution against using the generated answers for practical purposes.* """ st.sidebar.markdown(disclaimer, unsafe_allow_html=True)
19
"""simple docstring""" import fire from utils import calculate_rouge, save_json def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case=None, **__snake_case ) -> Optional[int]: """simple docstring""" _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()] _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()][: len(__snake_case )] _UpperCamelCase = calculate_rouge(__snake_case, __snake_case, **__snake_case ) if save_path is not None: save_json(__snake_case, __snake_case, indent=__snake_case ) return metrics # these print nicely if __name__ == "__main__": fire.Fire(calculate_rouge_path)
19
1
"""simple docstring""" from __future__ import annotations def lowerCamelCase__ ( __snake_case ) -> None: """simple docstring""" create_state_space_tree(__snake_case, [], 0, [0 for i in range(len(__snake_case ) )] ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, ) -> None: """simple docstring""" if index == len(__snake_case ): print(__snake_case ) return for i in range(len(__snake_case ) ): if not index_used[i]: current_sequence.append(sequence[i] ) _UpperCamelCase = True create_state_space_tree(__snake_case, __snake_case, index + 1, __snake_case ) current_sequence.pop() _UpperCamelCase = False _a = [3, 1, 2, 4] generate_all_permutations(sequence) _a = ["A", "B", "C"] generate_all_permutations(sequence_a)
19
"""simple docstring""" import warnings from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'ViTImageProcessor' lowercase__ = ('CLIPTokenizer', 'CLIPTokenizerFast') def __init__( self , __a=None , __a=None , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) def __call__( self , __a=None , __a=None , __a=None , __a=None , **__a) -> Tuple: '''simple docstring''' if text is None and visual_prompt is None and images is None: raise ValueError('''You have to specify either text, visual prompt or images.''') if text is not None and visual_prompt is not None: raise ValueError('''You have to specify exactly one type of prompt. Either text or visual prompt.''') if text is not None: _UpperCamelCase = self.tokenizer(__a , return_tensors=__a , **__a) if visual_prompt is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if images is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if visual_prompt is not None and images is not None: _UpperCamelCase = { '''pixel_values''': image_features.pixel_values, '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding elif text is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif text is not None: return encoding elif visual_prompt is not None: _UpperCamelCase = { '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding else: return BatchEncoding(data=dict(**__a) , tensor_type=__a) def UpperCAmelCase ( self , *__a , **__a) -> Any: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> List[str]: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
1
"""simple docstring""" from __future__ import annotations from functools import lru_cache from math import ceil _a = 100 _a = set(range(3, NUM_PRIMES, 2)) primes.add(2) _a = 42 for prime in range(3, ceil(NUM_PRIMES**0.5), 2): if prime not in primes: continue primes.difference_update(set(range(prime * prime, NUM_PRIMES, prime))) @lru_cache(maxsize=1_00 ) def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" if number_to_partition < 0: return set() elif number_to_partition == 0: return {1} _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = 42 for prime in primes: if prime > number_to_partition: continue for sub in partition(number_to_partition - prime ): ret.add(sub * prime ) return ret def lowerCamelCase__ ( __snake_case = 50_00 ) -> int | None: """simple docstring""" for number_to_partition in range(1, __snake_case ): if len(partition(__snake_case ) ) > number_unique_partitions: return number_to_partition return None if __name__ == "__main__": print(F"""{solution() = }""")
19
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=32 , __a=3 , __a=4 , __a=[10, 20, 30, 40] , __a=[2, 2, 3, 2] , __a=True , __a=True , __a=37 , __a="gelu" , __a=10 , __a=0.02 , __a=["stage2", "stage3", "stage4"] , __a=3 , __a=None , ) -> Optional[Any]: '''simple docstring''' _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 = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = out_features _UpperCamelCase = num_labels _UpperCamelCase = scope _UpperCamelCase = num_stages def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Any: '''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) -> Optional[int]: '''simple docstring''' return UperNetConfig( backbone_config=self.get_backbone_config() , hidden_size=5_12 , pool_scales=[1, 2, 3, 6] , use_auxiliary_head=__a , auxiliary_loss_weight=0.4 , auxiliary_in_channels=40 , auxiliary_channels=2_56 , auxiliary_num_convs=1 , auxiliary_concat_input=__a , loss_ignore_index=2_55 , num_labels=self.num_labels , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = UperNetForSemanticSegmentation(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual( result.logits.shape , (self.batch_size, self.num_labels, self.image_size, self.image_size)) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (UperNetForSemanticSegmentation,) if is_torch_available() else () lowercase__ = {'image-segmentation': UperNetForSemanticSegmentation} if is_torch_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = UperNetModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , 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) -> List[Any]: '''simple docstring''' return def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__a) @unittest.skip(reason='''UperNet does not use inputs_embeds''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not support input and output embeddings''') def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> int: '''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) -> Union[str, 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) -> List[Any]: '''simple docstring''' def check_hidden_states_output(__a , __a , __a): _UpperCamelCase = model_class(__a) model.to(__a) model.eval() with torch.no_grad(): _UpperCamelCase = model(**self._prepare_for_class(__a , __a)) _UpperCamelCase = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states _UpperCamelCase = self.model_tester.num_stages self.assertEqual(len(__a) , 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 = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) _UpperCamelCase = _config_zero_init(configs_no_init.backbone_config) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) 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) -> Optional[int]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''', repo_type='''dataset''', filename='''ADE_val_00000001.jpg''' ) _UpperCamelCase = Image.open(__snake_case ).convert('''RGB''' ) return image @require_torch @require_vision @slow class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4))
19
1
"""simple docstring""" import hashlib import unittest from typing import Dict import numpy as np from transformers import ( MODEL_FOR_MASK_GENERATION_MAPPING, TF_MODEL_FOR_MASK_GENERATION_MAPPING, is_vision_available, pipeline, ) from transformers.pipelines import MaskGenerationPipeline from transformers.testing_utils import ( is_pipeline_test, nested_simplify, require_tf, require_torch, require_vision, slow, ) if is_vision_available(): from PIL import Image else: class _UpperCAmelCase: @staticmethod def UpperCAmelCase ( *__a , **__a) -> int: '''simple docstring''' pass def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase = hashlib.mda(image.tobytes() ) return m.hexdigest()[:10] def lowerCamelCase__ ( __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = np.array(__snake_case ) _UpperCamelCase = npimg.shape return {"hash": hashimage(__snake_case ), "shape": shape} @is_pipeline_test @require_vision @require_torch class _UpperCAmelCase( unittest.TestCase ): lowercase__ = dict( (list(MODEL_FOR_MASK_GENERATION_MAPPING.items() ) if MODEL_FOR_MASK_GENERATION_MAPPING else []) ) lowercase__ = dict( (list(TF_MODEL_FOR_MASK_GENERATION_MAPPING.items() ) if TF_MODEL_FOR_MASK_GENERATION_MAPPING else []) ) def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = MaskGenerationPipeline(model=__a , image_processor=__a) return image_segmenter, [ "./tests/fixtures/tests_samples/COCO/000000039769.png", "./tests/fixtures/tests_samples/COCO/000000039769.png", ] def UpperCAmelCase ( self , __a , __a) -> Optional[int]: '''simple docstring''' pass @require_tf @unittest.skip('''Image segmentation not implemented in TF''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @slow @require_torch def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = pipeline('''mask-generation''' , model='''facebook/sam-vit-huge''') _UpperCamelCase = image_segmenter('''http://images.cocodataset.org/val2017/000000039769.jpg''' , points_per_batch=2_56) # Shortening by hashing _UpperCamelCase = [] for i, o in enumerate(outputs['''masks''']): new_outupt += [{"mask": mask_to_test_readable(__a), "scores": outputs["scores"][i]}] # fmt: off self.assertEqual( nested_simplify(__a , decimals=4) , [ {'''mask''': {'''hash''': '''115ad19f5f''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0444}, {'''mask''': {'''hash''': '''6affa964c6''', '''shape''': (4_80, 6_40)}, '''scores''': 1.021}, {'''mask''': {'''hash''': '''dfe28a0388''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0167}, {'''mask''': {'''hash''': '''c0a5f4a318''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0132}, {'''mask''': {'''hash''': '''fe8065c197''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0053}, {'''mask''': {'''hash''': '''e2d0b7a0b7''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9967}, {'''mask''': {'''hash''': '''453c7844bd''', '''shape''': (4_80, 6_40)}, '''scores''': 0.993}, {'''mask''': {'''hash''': '''3d44f2926d''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9909}, {'''mask''': {'''hash''': '''64033ddc3f''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9879}, {'''mask''': {'''hash''': '''801064ff79''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9834}, {'''mask''': {'''hash''': '''6172f276ef''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9716}, {'''mask''': {'''hash''': '''b49e60e084''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9612}, {'''mask''': {'''hash''': '''a811e775fd''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9599}, {'''mask''': {'''hash''': '''a6a8ebcf4b''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9552}, {'''mask''': {'''hash''': '''9d8257e080''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9532}, {'''mask''': {'''hash''': '''32de6454a8''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9516}, {'''mask''': {'''hash''': '''af3d4af2c8''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9499}, {'''mask''': {'''hash''': '''3c6db475fb''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9483}, {'''mask''': {'''hash''': '''c290813fb9''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9464}, {'''mask''': {'''hash''': '''b6f0b8f606''', '''shape''': (4_80, 6_40)}, '''scores''': 0.943}, {'''mask''': {'''hash''': '''92ce16bfdf''', '''shape''': (4_80, 6_40)}, '''scores''': 0.943}, {'''mask''': {'''hash''': '''c749b25868''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9408}, {'''mask''': {'''hash''': '''efb6cab859''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9335}, {'''mask''': {'''hash''': '''1ff2eafb30''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9326}, {'''mask''': {'''hash''': '''788b798e24''', '''shape''': (4_80, 6_40)}, '''scores''': 0.9262}, {'''mask''': {'''hash''': '''abea804f0e''', '''shape''': (4_80, 6_40)}, '''scores''': 0.8999}, {'''mask''': {'''hash''': '''7b9e8ddb73''', '''shape''': (4_80, 6_40)}, '''scores''': 0.8986}, {'''mask''': {'''hash''': '''cd24047c8a''', '''shape''': (4_80, 6_40)}, '''scores''': 0.8984}, {'''mask''': {'''hash''': '''6943e6bcbd''', '''shape''': (4_80, 6_40)}, '''scores''': 0.8873}, {'''mask''': {'''hash''': '''b5f47c9191''', '''shape''': (4_80, 6_40)}, '''scores''': 0.8871} ] , ) # fmt: on @require_torch @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = '''facebook/sam-vit-huge''' _UpperCamelCase = pipeline('''mask-generation''' , model=__a) _UpperCamelCase = image_segmenter( '''http://images.cocodataset.org/val2017/000000039769.jpg''' , pred_iou_thresh=1 , points_per_batch=2_56) # Shortening by hashing _UpperCamelCase = [] for i, o in enumerate(outputs['''masks''']): new_outupt += [{"mask": mask_to_test_readable(__a), "scores": outputs["scores"][i]}] self.assertEqual( nested_simplify(__a , decimals=4) , [ {'''mask''': {'''hash''': '''115ad19f5f''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0444}, {'''mask''': {'''hash''': '''6affa964c6''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0210}, {'''mask''': {'''hash''': '''dfe28a0388''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0167}, {'''mask''': {'''hash''': '''c0a5f4a318''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0132}, {'''mask''': {'''hash''': '''fe8065c197''', '''shape''': (4_80, 6_40)}, '''scores''': 1.0053}, ] , )
19
"""simple docstring""" import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DDPMScheduler,) def UpperCAmelCase ( self , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 10_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**__a) return config def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for timesteps in [1, 5, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> int: '''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=__a , beta_end=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for clip_sample in [True, False]: self.check_over_configs(clip_sample=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.check_over_configs(thresholding=__a) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=__a , prediction_type=__a , sample_max_value=__a , ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for t in [0, 5_00, 9_99]: self.check_over_forward(time_step=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) assert torch.sum(torch.abs(scheduler._get_variance(0) - 0.0)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_87) - 0.0_0979)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_99) - 0.02)) < 1e-5 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 258.9606) < 1e-2 assert abs(result_mean.item() - 0.3372) < 1e-3 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 202.0296) < 1e-2 assert abs(result_mean.item() - 0.2631) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] scheduler.set_timesteps(timesteps=__a) _UpperCamelCase = scheduler.timesteps for i, timestep in enumerate(__a): if i == len(__a) - 1: _UpperCamelCase = -1 else: _UpperCamelCase = timesteps[i + 1] _UpperCamelCase = scheduler.previous_timestep(__a) _UpperCamelCase = prev_t.item() self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 51, 0] with self.assertRaises(__a , msg='''`custom_timesteps` must be in descending order.'''): scheduler.set_timesteps(timesteps=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] _UpperCamelCase = len(__a) with self.assertRaises(__a , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.'''): scheduler.set_timesteps(num_inference_steps=__a , timesteps=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [scheduler.config.num_train_timesteps] with self.assertRaises( __a , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=__a)
19
1
"""simple docstring""" import math import flax.linen as nn import jax.numpy as jnp def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case = 1, __snake_case = 1, __snake_case = 1.0e4, __snake_case = False, __snake_case = 1.0, ) -> jnp.ndarray: """simple docstring""" assert timesteps.ndim == 1, "Timesteps should be a 1d-array" assert embedding_dim % 2 == 0, F'''Embedding dimension {embedding_dim} should be even''' _UpperCamelCase = float(embedding_dim // 2 ) _UpperCamelCase = math.log(max_timescale / min_timescale ) / (num_timescales - freq_shift) _UpperCamelCase = min_timescale * jnp.exp(jnp.arange(__snake_case, dtype=jnp.floataa ) * -log_timescale_increment ) _UpperCamelCase = jnp.expand_dims(__snake_case, 1 ) * jnp.expand_dims(__snake_case, 0 ) # scale embeddings _UpperCamelCase = scale * emb if flip_sin_to_cos: _UpperCamelCase = jnp.concatenate([jnp.cos(__snake_case ), jnp.sin(__snake_case )], axis=1 ) else: _UpperCamelCase = jnp.concatenate([jnp.sin(__snake_case ), jnp.cos(__snake_case )], axis=1 ) _UpperCamelCase = jnp.reshape(__snake_case, [jnp.shape(__snake_case )[0], embedding_dim] ) return signal class _UpperCAmelCase( nn.Module ): lowercase__ = 32 lowercase__ = jnp.floataa @nn.compact def __call__( self , __a) -> Any: '''simple docstring''' _UpperCamelCase = nn.Dense(self.time_embed_dim , dtype=self.dtype , name='''linear_1''')(__a) _UpperCamelCase = nn.silu(__a) _UpperCamelCase = nn.Dense(self.time_embed_dim , dtype=self.dtype , name='''linear_2''')(__a) return temb class _UpperCAmelCase( nn.Module ): lowercase__ = 32 lowercase__ = False lowercase__ = 1 @nn.compact def __call__( self , __a) -> Optional[Any]: '''simple docstring''' return get_sinusoidal_embeddings( __a , embedding_dim=self.dim , flip_sin_to_cos=self.flip_sin_to_cos , freq_shift=self.freq_shift)
19
"""simple docstring""" from __future__ import annotations from functools import lru_cache from math import ceil _a = 100 _a = set(range(3, NUM_PRIMES, 2)) primes.add(2) _a = 42 for prime in range(3, ceil(NUM_PRIMES**0.5), 2): if prime not in primes: continue primes.difference_update(set(range(prime * prime, NUM_PRIMES, prime))) @lru_cache(maxsize=1_00 ) def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" if number_to_partition < 0: return set() elif number_to_partition == 0: return {1} _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = 42 for prime in primes: if prime > number_to_partition: continue for sub in partition(number_to_partition - prime ): ret.add(sub * prime ) return ret def lowerCamelCase__ ( __snake_case = 50_00 ) -> int | None: """simple docstring""" for number_to_partition in range(1, __snake_case ): if len(partition(__snake_case ) ) > number_unique_partitions: return number_to_partition return None if __name__ == "__main__": print(F"""{solution() = }""")
19
1
"""simple docstring""" _a = 8.314_4598 def lowerCamelCase__ ( __snake_case, __snake_case ) -> float: """simple docstring""" if temperature < 0: raise Exception('''Temperature cannot be less than 0 K''' ) if molar_mass <= 0: raise Exception('''Molar mass cannot be less than or equal to 0 kg/mol''' ) else: return (3 * UNIVERSAL_GAS_CONSTANT * temperature / molar_mass) ** 0.5 if __name__ == "__main__": import doctest # run doctest doctest.testmod() # example _a = 300 _a = 28 _a = rms_speed_of_molecule(temperature, molar_mass) print(F"""Vrms of Nitrogen gas at 300 K is {vrms} m/s""")
19
"""simple docstring""" from collections.abc import Callable import numpy as np def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> np.array: """simple docstring""" _UpperCamelCase = int(np.ceil((x_end - xa) / step_size ) ) _UpperCamelCase = np.zeros((n + 1,) ) _UpperCamelCase = ya _UpperCamelCase = xa for k in range(__snake_case ): _UpperCamelCase = y[k] + step_size * ode_func(__snake_case, y[k] ) _UpperCamelCase = y[k] + ( (step_size / 2) * (ode_func(__snake_case, y[k] ) + ode_func(x + step_size, __snake_case )) ) x += step_size return y if __name__ == "__main__": import doctest doctest.testmod()
19
1
"""simple docstring""" from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_tf_available, is_tokenizers_available, is_torch_available, ) _a = { """configuration_longformer""": [ """LONGFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP""", """LongformerConfig""", """LongformerOnnxConfig""", ], """tokenization_longformer""": ["""LongformerTokenizer"""], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = ["""LongformerTokenizerFast"""] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = [ """LONGFORMER_PRETRAINED_MODEL_ARCHIVE_LIST""", """LongformerForMaskedLM""", """LongformerForMultipleChoice""", """LongformerForQuestionAnswering""", """LongformerForSequenceClassification""", """LongformerForTokenClassification""", """LongformerModel""", """LongformerPreTrainedModel""", """LongformerSelfAttention""", ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = [ """TF_LONGFORMER_PRETRAINED_MODEL_ARCHIVE_LIST""", """TFLongformerForMaskedLM""", """TFLongformerForMultipleChoice""", """TFLongformerForQuestionAnswering""", """TFLongformerForSequenceClassification""", """TFLongformerForTokenClassification""", """TFLongformerModel""", """TFLongformerPreTrainedModel""", """TFLongformerSelfAttention""", ] if TYPE_CHECKING: from .configuration_longformer import ( LONGFORMER_PRETRAINED_CONFIG_ARCHIVE_MAP, LongformerConfig, LongformerOnnxConfig, ) from .tokenization_longformer import LongformerTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_longformer_fast import LongformerTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_longformer import ( LONGFORMER_PRETRAINED_MODEL_ARCHIVE_LIST, LongformerForMaskedLM, LongformerForMultipleChoice, LongformerForQuestionAnswering, LongformerForSequenceClassification, LongformerForTokenClassification, LongformerModel, LongformerPreTrainedModel, LongformerSelfAttention, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_longformer import ( TF_LONGFORMER_PRETRAINED_MODEL_ARCHIVE_LIST, TFLongformerForMaskedLM, TFLongformerForMultipleChoice, TFLongformerForQuestionAnswering, TFLongformerForSequenceClassification, TFLongformerForTokenClassification, TFLongformerModel, TFLongformerPreTrainedModel, TFLongformerSelfAttention, ) else: import sys _a = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
19
"""simple docstring""" import argparse import torch from transformers import BertForMaskedLM if __name__ == "__main__": _a = argparse.ArgumentParser( description=( """Extraction some layers of the full BertForMaskedLM or RObertaForMaskedLM for Transfer Learned""" """ Distillation""" ) ) parser.add_argument("""--model_type""", default="""bert""", choices=["""bert"""]) parser.add_argument("""--model_name""", default="""bert-base-uncased""", type=str) parser.add_argument("""--dump_checkpoint""", default="""serialization_dir/tf_bert-base-uncased_0247911.pth""", type=str) parser.add_argument("""--vocab_transform""", action="""store_true""") _a = parser.parse_args() if args.model_type == "bert": _a = BertForMaskedLM.from_pretrained(args.model_name) _a = """bert""" else: raise ValueError("""args.model_type should be \"bert\".""") _a = model.state_dict() _a = {} for w in ["word_embeddings", "position_embeddings"]: _a = state_dict[F"""{prefix}.embeddings.{w}.weight"""] for w in ["weight", "bias"]: _a = state_dict[F"""{prefix}.embeddings.LayerNorm.{w}"""] _a = 0 for teacher_idx in [0, 2, 4, 7, 9, 11]: for w in ["weight", "bias"]: _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.query.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.key.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.value.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.LayerNorm.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.intermediate.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.LayerNorm.{w}""" ] std_idx += 1 _a = state_dict["""cls.predictions.decoder.weight"""] _a = state_dict["""cls.predictions.bias"""] if args.vocab_transform: for w in ["weight", "bias"]: _a = state_dict[F"""cls.predictions.transform.dense.{w}"""] _a = state_dict[F"""cls.predictions.transform.LayerNorm.{w}"""] print(F"""N layers selected for distillation: {std_idx}""") print(F"""Number of params transferred for distillation: {len(compressed_sd.keys())}""") print(F"""Save transferred checkpoint to {args.dump_checkpoint}.""") torch.save(compressed_sd, args.dump_checkpoint)
19
1
"""simple docstring""" from typing import List, Optional, Tuple, Union import torch from ...utils import logging, randn_tensor from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline _a = logging.get_logger(__name__) # pylint: disable=invalid-name class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a , __a) -> str: '''simple docstring''' super().__init__() self.register_modules(unet=__a , scheduler=__a) @torch.no_grad() def __call__( self , __a = 1 , __a = 1_00 , __a = None , __a = None , __a = True , ) -> Union[AudioPipelineOutput, Tuple]: '''simple docstring''' if audio_length_in_s is None: _UpperCamelCase = self.unet.config.sample_size / self.unet.config.sample_rate _UpperCamelCase = audio_length_in_s * self.unet.config.sample_rate _UpperCamelCase = 2 ** len(self.unet.up_blocks) if sample_size < 3 * down_scale_factor: raise ValueError( F'''{audio_length_in_s} is too small. Make sure it\'s bigger or equal to''' F''' {3 * down_scale_factor / self.unet.config.sample_rate}.''') _UpperCamelCase = int(__a) if sample_size % down_scale_factor != 0: _UpperCamelCase = ( (audio_length_in_s * self.unet.config.sample_rate) // down_scale_factor + 1 ) * down_scale_factor logger.info( F'''{audio_length_in_s} is increased to {sample_size / self.unet.config.sample_rate} so that it can be handled''' F''' by the model. It will be cut to {original_sample_size / self.unet.config.sample_rate} after the denoising''' ''' process.''') _UpperCamelCase = int(__a) _UpperCamelCase = next(iter(self.unet.parameters())).dtype _UpperCamelCase = (batch_size, self.unet.config.in_channels, sample_size) if isinstance(__a , __a) and len(__a) != batch_size: raise ValueError( F'''You have passed a list of generators of length {len(__a)}, but requested an effective batch''' F''' size of {batch_size}. Make sure the batch size matches the length of the generators.''') _UpperCamelCase = randn_tensor(__a , generator=__a , device=self.device , dtype=__a) # set step values self.scheduler.set_timesteps(__a , device=audio.device) _UpperCamelCase = self.scheduler.timesteps.to(__a) for t in self.progress_bar(self.scheduler.timesteps): # 1. predict noise model_output _UpperCamelCase = self.unet(__a , __a).sample # 2. compute previous image: x_t -> t_t-1 _UpperCamelCase = self.scheduler.step(__a , __a , __a).prev_sample _UpperCamelCase = audio.clamp(-1 , 1).float().cpu().numpy() _UpperCamelCase = audio[:, :, :original_sample_size] if not return_dict: return (audio,) return AudioPipelineOutput(audios=__a)
19
"""simple docstring""" import unittest from transformers import PegasusConfig, PegasusTokenizer, is_flax_available from transformers.testing_utils import require_flax, slow from ...test_configuration_common import ConfigTester from ...test_modeling_flax_common import FlaxModelTesterMixin, ids_tensor if is_flax_available(): import os # The slow tests are often failing with OOM error on GPU # This makes JAX allocate exactly what is needed on demand, and deallocate memory that is no longer needed # but will be slower as stated here https://jax.readthedocs.io/en/latest/gpu_memory_allocation.html _a = """platform""" import jax import jax.numpy as jnp import numpy as np from transformers import FlaxPegasusForConditionalGeneration, FlaxPegasusModel @require_flax class _UpperCAmelCase: lowercase__ = PegasusConfig lowercase__ = {} lowercase__ = 'gelu' def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=False , __a=99 , __a=32 , __a=5 , __a=4 , __a=37 , __a=0.1 , __a=0.1 , __a=20 , __a=2 , __a=1 , __a=0 , ) -> int: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = eos_token_id _UpperCamelCase = pad_token_id _UpperCamelCase = bos_token_id def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size).clip(3 , self.vocab_size) _UpperCamelCase = np.expand_dims(np.array([self.eos_token_id] * self.batch_size) , 1) _UpperCamelCase = np.concatenate([input_ids, eos_tensor] , axis=1) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_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_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) _UpperCamelCase = prepare_pegasus_inputs_dict(__a , __a , __a) return config, inputs_dict def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.ones((decoder_input_ids.shape[0], max_decoder_length) , dtype='''i4''') _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , decoder_attention_mask=__a , past_key_values=outputs_cache.past_key_values , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = jnp.concatenate( [ decoder_attention_mask, jnp.zeros((decoder_attention_mask.shape[0], max_decoder_length - decoder_attention_mask.shape[1])), ] , axis=-1 , ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , past_key_values=outputs_cache.past_key_values , decoder_attention_mask=__a , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a , decoder_attention_mask=__a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=None, __snake_case=None, ) -> Union[str, Any]: """simple docstring""" if attention_mask is None: _UpperCamelCase = np.not_equal(__snake_case, config.pad_token_id ).astype(np.inta ) if decoder_attention_mask is None: _UpperCamelCase = np.concatenate( [ np.ones(decoder_input_ids[:, :1].shape, dtype=np.inta ), np.not_equal(decoder_input_ids[:, 1:], config.pad_token_id ).astype(np.inta ), ], axis=-1, ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, } @require_flax class _UpperCAmelCase( lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( FlaxPegasusForConditionalGeneration, FlaxPegasusModel, ) if is_flax_available() else () ) lowercase__ = (FlaxPegasusForConditionalGeneration,) if is_flax_available() else () lowercase__ = True lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = FlaxPegasusModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward_with_attn_mask(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = self._prepare_for_class(__a , __a) _UpperCamelCase = model_class(__a) @jax.jit def encode_jitted(__a , __a=None , **__a): return model.encode(input_ids=__a , attention_mask=__a) with self.subTest('''JIT Enabled'''): _UpperCamelCase = encode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = encode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = model_class(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids'''] , inputs_dict['''attention_mask''']) _UpperCamelCase = { '''decoder_input_ids''': inputs_dict['''decoder_input_ids'''], '''decoder_attention_mask''': inputs_dict['''decoder_attention_mask'''], '''encoder_outputs''': encoder_outputs, } @jax.jit def decode_jitted(__a , __a , __a): return model.decode( decoder_input_ids=__a , decoder_attention_mask=__a , encoder_outputs=__a , ) with self.subTest('''JIT Enabled'''): _UpperCamelCase = decode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = decode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) @slow def UpperCAmelCase ( self) -> int: '''simple docstring''' for model_class_name in self.all_model_classes: _UpperCamelCase = model_class_name.from_pretrained('''google/pegasus-large''' , from_pt=__a) _UpperCamelCase = np.ones((1, 1)) _UpperCamelCase = model(__a) self.assertIsNotNone(__a) @slow def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = FlaxPegasusForConditionalGeneration.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = PegasusTokenizer.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = [ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] _UpperCamelCase = [ '''California\'s largest electricity provider has turned off power to hundreds of thousands of customers.''', '''Pop group N-Dubz have revealed they were surprised to get four nominations for this year\'s Mobo Awards.''', ] _UpperCamelCase = tokenizer(__a , return_tensors='''np''' , truncation=__a , max_length=5_12 , padding=__a) _UpperCamelCase = model.generate(**__a , num_beams=2).sequences _UpperCamelCase = tokenizer.batch_decode(__a , skip_special_tokens=__a) assert tgt_text == decoded
19
1
"""simple docstring""" import os from huggingface_hub.constants import HUGGINGFACE_HUB_CACHE, hf_cache_home _a = HUGGINGFACE_HUB_CACHE _a = """config.json""" _a = """diffusion_pytorch_model.bin""" _a = """diffusion_flax_model.msgpack""" _a = """model.onnx""" _a = """diffusion_pytorch_model.safetensors""" _a = """weights.pb""" _a = """https://huggingface.co""" _a = default_cache_path _a = """diffusers_modules""" _a = os.getenv("""HF_MODULES_CACHE""", os.path.join(hf_cache_home, """modules""")) _a = ["""fp16""", """non-ema"""] _a = """.self_attn"""
19
"""simple docstring""" from __future__ import annotations import unittest from transformers import 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 numpy import tensorflow as tf from transformers import ( TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST, BertConfig, DPRConfig, TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a=None , __a=0 , ) -> Any: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_mask _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = scope _UpperCamelCase = projection_dim def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: # follow test_modeling_tf_ctrl.py _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = BertConfig( 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=__a , initializer_range=self.initializer_range , ) _UpperCamelCase = DPRConfig(projection_dim=self.projection_dim , **config.to_dict()) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = TFDPRContextEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Dict: '''simple docstring''' _UpperCamelCase = TFDPRReader(config=__a) _UpperCamelCase = model(__a , attention_mask=__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)) self.parent.assertEqual(result.relevance_logits.shape , (self.batch_size,)) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) if is_tf_available() else () ) lowercase__ = {'feature-extraction': TFDPRQuestionEncoder} if is_tf_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_context_encoder(*__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_question_encoder(*__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_reader(*__a) @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRReader.from_pretrained(__a) self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained('''facebook/dpr-question_encoder-single-nq-base''') _UpperCamelCase = tf.constant( [[1_01, 75_92, 10_10, 20_03, 20_26, 38_99, 1_01_40, 10_29, 1_02]]) # [CLS] hello, is my dog cute? [SEP] _UpperCamelCase = model(__a)[0] # embedding shape = (1, 768) # compare the actual values for a slice. _UpperCamelCase = tf.constant( [ [ 0.0323_6253, 0.1275_3335, 0.1681_8509, 0.0027_9786, 0.389_6933, 0.2426_4945, 0.217_8971, -0.0233_5227, -0.0848_1959, -0.1432_4117, ] ]) self.assertTrue(numpy.allclose(output[:, :10].numpy() , expected_slice.numpy() , atol=1e-4))
19
1
"""simple docstring""" from functools import lru_cache @lru_cache def lowerCamelCase__ ( __snake_case ) -> int: """simple docstring""" if num < 0: raise ValueError('''Number should not be negative.''' ) return 1 if num in (0, 1) else num * factorial(num - 1 ) if __name__ == "__main__": import doctest doctest.testmod()
19
"""simple docstring""" import argparse import json from typing import List from ltp import LTP from transformers.models.bert.tokenization_bert import BertTokenizer def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if ( (cp >= 0x4E00 and cp <= 0x9FFF) or (cp >= 0x3400 and cp <= 0x4DBF) # or (cp >= 0x2_0000 and cp <= 0x2_A6DF) # or (cp >= 0x2_A700 and cp <= 0x2_B73F) # or (cp >= 0x2_B740 and cp <= 0x2_B81F) # or (cp >= 0x2_B820 and cp <= 0x2_CEAF) # or (cp >= 0xF900 and cp <= 0xFAFF) or (cp >= 0x2_F800 and cp <= 0x2_FA1F) # ): # return True return False def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" for char in word: _UpperCamelCase = ord(__snake_case ) if not _is_chinese_char(__snake_case ): return 0 return 1 def lowerCamelCase__ ( __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = set() for token in tokens: _UpperCamelCase = len(__snake_case ) > 1 and is_chinese(__snake_case ) if chinese_word: word_set.add(__snake_case ) _UpperCamelCase = list(__snake_case ) return word_list def lowerCamelCase__ ( __snake_case, __snake_case ) -> int: """simple docstring""" if not chinese_word_set: return bert_tokens _UpperCamelCase = max([len(__snake_case ) for w in chinese_word_set] ) _UpperCamelCase = bert_tokens _UpperCamelCase , _UpperCamelCase = 0, len(__snake_case ) while start < end: _UpperCamelCase = True if is_chinese(bert_word[start] ): _UpperCamelCase = min(end - start, __snake_case ) for i in range(__snake_case, 1, -1 ): _UpperCamelCase = ''''''.join(bert_word[start : start + i] ) if whole_word in chinese_word_set: for j in range(start + 1, start + i ): _UpperCamelCase = '''##''' + bert_word[j] _UpperCamelCase = start + i _UpperCamelCase = False break if single_word: start += 1 return bert_word def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = ltp_tokenizer.pipeline(lines[i : i + 1_00], tasks=['''cws'''] ).cws _UpperCamelCase = [get_chinese_word(__snake_case ) for r in res] ltp_res.extend(__snake_case ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = bert_tokenizer(lines[i : i + 1_00], add_special_tokens=__snake_case, truncation=__snake_case, max_length=5_12 ) bert_res.extend(res['''input_ids'''] ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for input_ids, chinese_word in zip(__snake_case, __snake_case ): _UpperCamelCase = [] for id in input_ids: _UpperCamelCase = bert_tokenizer._convert_id_to_token(__snake_case ) input_tokens.append(__snake_case ) _UpperCamelCase = add_sub_symbol(__snake_case, __snake_case ) _UpperCamelCase = [] # We only save pos of chinese subwords start with ##, which mean is part of a whole word. for i, token in enumerate(__snake_case ): if token[:2] == "##": _UpperCamelCase = token[2:] # save chinese tokens' pos if len(__snake_case ) == 1 and _is_chinese_char(ord(__snake_case ) ): ref_id.append(__snake_case ) ref_ids.append(__snake_case ) assert len(__snake_case ) == len(__snake_case ) return ref_ids def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" with open(args.file_name, '''r''', encoding='''utf-8''' ) as f: _UpperCamelCase = f.readlines() _UpperCamelCase = [line.strip() for line in data if len(__snake_case ) > 0 and not line.isspace()] # avoid delimiter like '\u2029' _UpperCamelCase = LTP(args.ltp ) # faster in GPU device _UpperCamelCase = BertTokenizer.from_pretrained(args.bert ) _UpperCamelCase = prepare_ref(__snake_case, __snake_case, __snake_case ) with open(args.save_path, '''w''', encoding='''utf-8''' ) as f: _UpperCamelCase = [json.dumps(__snake_case ) + '''\n''' for ref in ref_ids] f.writelines(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser(description="""prepare_chinese_ref""") parser.add_argument( """--file_name""", required=False, type=str, default="""./resources/chinese-demo.txt""", help="""file need process, same as training data in lm""", ) parser.add_argument( """--ltp""", required=False, type=str, default="""./resources/ltp""", help="""resources for LTP tokenizer, usually a path""", ) parser.add_argument( """--bert""", required=False, type=str, default="""./resources/robert""", help="""resources for Bert tokenizer""", ) parser.add_argument( """--save_path""", required=False, type=str, default="""./resources/ref.txt""", help="""path to save res""", ) _a = parser.parse_args() main(args)
19
1
"""simple docstring""" from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """google/vivit-b-16x2-kinetics400""": ( """https://huggingface.co/google/vivit-b-16x2-kinetics400/resolve/main/config.json""" ), # See all Vivit models at https://huggingface.co/models?filter=vivit } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'vivit' def __init__( self , __a=2_24 , __a=32 , __a=[2, 16, 16] , __a=3 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu_fast" , __a=0.0 , __a=0.0 , __a=0.02 , __a=1e-06 , __a=True , **__a , ) -> int: '''simple docstring''' _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = initializer_range _UpperCamelCase = layer_norm_eps _UpperCamelCase = image_size _UpperCamelCase = num_frames _UpperCamelCase = tubelet_size _UpperCamelCase = num_channels _UpperCamelCase = qkv_bias super().__init__(**__a)
19
"""simple docstring""" import heapq def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" _UpperCamelCase = [] # for each node and his adjacency list add them and the rank of the node to queue # using heapq module the queue will be filled like a Priority Queue # heapq works with a min priority queue, so I used -1*len(v) to build it for key, value in graph.items(): # O(log(n)) heapq.heappush(__snake_case, [-1 * len(__snake_case ), (key, value)] ) # chosen_vertices = set of chosen vertices _UpperCamelCase = set() # while queue isn't empty and there are still edges # (queue[0][0] is the rank of the node with max rank) while queue and queue[0][0] != 0: # extract vertex with max rank from queue and add it to chosen_vertices _UpperCamelCase = heapq.heappop(__snake_case )[1][0] chosen_vertices.add(__snake_case ) # Remove all arcs adjacent to argmax for elem in queue: # if v haven't adjacent node, skip if elem[0] == 0: continue # if argmax is reachable from elem # remove argmax from elem's adjacent list and update his rank if argmax in elem[1][1]: _UpperCamelCase = elem[1][1].index(__snake_case ) del elem[1][1][index] elem[0] += 1 # re-order the queue heapq.heapify(__snake_case ) return chosen_vertices if __name__ == "__main__": import doctest doctest.testmod() _a = {0: [1, 3], 1: [0, 3], 2: [0, 3, 4], 3: [0, 1, 2], 4: [2, 3]} print(F"""Minimum vertex cover:\n{greedy_min_vertex_cover(graph)}""")
19
1
"""simple docstring""" import logging from pathlib import Path import numpy as np import pytorch_lightning as pl import torch from pytorch_lightning.callbacks import EarlyStopping, ModelCheckpoint from pytorch_lightning.utilities import rank_zero_only from utils_rag import save_json def lowerCamelCase__ ( __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = filter(lambda __snake_case : p.requires_grad, model.parameters() ) _UpperCamelCase = sum([np.prod(p.size() ) for p in model_parameters] ) return params _a = logging.getLogger(__name__) def lowerCamelCase__ ( __snake_case, __snake_case ) -> Union[str, Any]: """simple docstring""" if metric == "rouge2": _UpperCamelCase = '''{val_avg_rouge2:.4f}-{step_count}''' elif metric == "bleu": _UpperCamelCase = '''{val_avg_bleu:.4f}-{step_count}''' elif metric == "em": _UpperCamelCase = '''{val_avg_em:.4f}-{step_count}''' elif metric == "loss": _UpperCamelCase = '''{val_avg_loss:.4f}-{step_count}''' else: raise NotImplementedError( F'''seq2seq callbacks only support rouge2 and bleu, got {metric}, You can make your own by adding to this''' ''' function.''' ) _UpperCamelCase = ModelCheckpoint( dirpath=__snake_case, filename=__snake_case, monitor=F'''val_{metric}''', mode='''max''', save_top_k=1, every_n_epochs=1, ) return checkpoint_callback def lowerCamelCase__ ( __snake_case, __snake_case ) -> Any: """simple docstring""" return EarlyStopping( monitor=F'''val_{metric}''', mode='''min''' if '''loss''' in metric else '''max''', patience=__snake_case, verbose=__snake_case, ) class _UpperCAmelCase( pl.Callback ): def UpperCAmelCase ( self , __a , __a) -> Any: '''simple docstring''' _UpperCamelCase = {F'''lr_group_{i}''': param['''lr'''] for i, param in enumerate(pl_module.trainer.optimizers[0].param_groups)} pl_module.logger.log_metrics(__a) @rank_zero_only def UpperCAmelCase ( self , __a , __a , __a , __a=True) -> None: '''simple docstring''' logger.info(F'''***** {type_path} results at step {trainer.global_step:05d} *****''') _UpperCamelCase = trainer.callback_metrics trainer.logger.log_metrics({k: v for k, v in metrics.items() if k not in ['''log''', '''progress_bar''', '''preds''']}) # Log results _UpperCamelCase = Path(pl_module.hparams.output_dir) if type_path == "test": _UpperCamelCase = od / '''test_results.txt''' _UpperCamelCase = od / '''test_generations.txt''' else: # this never gets hit. I prefer not to save intermediate generations, and results are in metrics.json # If people want this it will be easy enough to add back. _UpperCamelCase = od / F'''{type_path}_results/{trainer.global_step:05d}.txt''' _UpperCamelCase = od / F'''{type_path}_generations/{trainer.global_step:05d}.txt''' results_file.parent.mkdir(exist_ok=__a) generations_file.parent.mkdir(exist_ok=__a) with open(__a , '''a+''') as writer: for key in sorted(__a): if key in ["log", "progress_bar", "preds"]: continue _UpperCamelCase = metrics[key] if isinstance(__a , torch.Tensor): _UpperCamelCase = val.item() _UpperCamelCase = F'''{key}: {val:.6f}\n''' writer.write(__a) if not save_generations: return if "preds" in metrics: _UpperCamelCase = '''\n'''.join(metrics['''preds''']) generations_file.open('''w+''').write(__a) @rank_zero_only def UpperCAmelCase ( self , __a , __a) -> str: '''simple docstring''' try: _UpperCamelCase = pl_module.model.model.num_parameters() except AttributeError: _UpperCamelCase = pl_module.model.num_parameters() _UpperCamelCase = count_trainable_parameters(__a) # mp stands for million parameters trainer.logger.log_metrics({'''n_params''': npars, '''mp''': npars / 1e6, '''grad_mp''': n_trainable_pars / 1e6}) @rank_zero_only def UpperCAmelCase ( self , __a , __a) -> Tuple: '''simple docstring''' save_json(pl_module.metrics , pl_module.metrics_save_path) return self._write_logs(__a , __a , '''test''') @rank_zero_only def UpperCAmelCase ( self , __a , __a) -> Tuple: '''simple docstring''' save_json(pl_module.metrics , pl_module.metrics_save_path) # Uncommenting this will save val generations # return self._write_logs(trainer, pl_module, "valid")
19
"""simple docstring""" from datasets.utils.patching import _PatchedModuleObj, patch_submodule from . import _test_patching def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" import os as original_os from os import path as original_path from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join _UpperCamelCase = '''__test_patch_submodule_mock__''' with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): # Every way to access os.path.join must be patched, and the rest must stay untouched # check os.path.join assert isinstance(_test_patching.os, _PatchedModuleObj ) assert isinstance(_test_patching.os.path, _PatchedModuleObj ) assert _test_patching.os.path.join is mock # check path.join assert isinstance(_test_patching.path, _PatchedModuleObj ) assert _test_patching.path.join is mock # check join assert _test_patching.join is mock # check that the other attributes are untouched assert _test_patching.os.rename is original_rename assert _test_patching.path.dirname is original_dirname assert _test_patching.os.path.dirname is original_dirname # Even renamed modules or objects must be patched # check renamed_os.path.join assert isinstance(_test_patching.renamed_os, _PatchedModuleObj ) assert isinstance(_test_patching.renamed_os.path, _PatchedModuleObj ) assert _test_patching.renamed_os.path.join is mock # check renamed_path.join assert isinstance(_test_patching.renamed_path, _PatchedModuleObj ) assert _test_patching.renamed_path.join is mock # check renamed_join assert _test_patching.renamed_join is mock # check that the other attributes are untouched assert _test_patching.renamed_os.rename is original_rename assert _test_patching.renamed_path.dirname is original_dirname assert _test_patching.renamed_os.path.dirname is original_dirname # check that everthing is back to normal when the patch is over assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" assert _test_patching.open is open _UpperCamelCase = '''__test_patch_submodule_builtin_mock__''' # _test_patching has "open" in its globals assert _test_patching.open is open with patch_submodule(_test_patching, '''open''', __snake_case ): assert _test_patching.open is mock # check that everthing is back to normal when the patch is over assert _test_patching.open is open def lowerCamelCase__ ( ) -> Union[str, Any]: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_mock__''' with patch_submodule(_test_patching, '''pandas.read_csv''', __snake_case ): pass def lowerCamelCase__ ( ) -> Dict: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_builtin_mock__''' # _test_patching doesn't have "len" in its globals assert getattr(_test_patching, '''len''', __snake_case ) is None with patch_submodule(_test_patching, '''len''', __snake_case ): assert _test_patching.len is mock assert _test_patching.len is len def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_start_and_stop_mock__''' _UpperCamelCase = patch_submodule(_test_patching, '''open''', __snake_case ) assert _test_patching.open is open patch.start() assert _test_patching.open is mock patch.stop() assert _test_patching.open is open def lowerCamelCase__ ( ) -> Optional[int]: """simple docstring""" from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join _UpperCamelCase = '''__test_patch_submodule_successive_join__''' _UpperCamelCase = '''__test_patch_submodule_successive_dirname__''' _UpperCamelCase = '''__test_patch_submodule_successive_rename__''' assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename # try another order with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename def lowerCamelCase__ ( ) -> str: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_doesnt_exist_mock__''' with patch_submodule(_test_patching, '''__module_that_doesn_exist__.__attribute_that_doesn_exist__''', __snake_case ): pass with patch_submodule(_test_patching, '''os.__attribute_that_doesn_exist__''', __snake_case ): pass
19
1
"""simple docstring""" import re from filelock import FileLock try: import nltk _a = True except (ImportError, ModuleNotFoundError): _a = False if NLTK_AVAILABLE: with FileLock(""".lock""") as lock: nltk.download("""punkt""", quiet=True) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" re.sub('''<n>''', '''''', __snake_case ) # remove pegasus newline char assert NLTK_AVAILABLE, "nltk must be installed to separate newlines between sentences. (pip install nltk)" return "\n".join(nltk.sent_tokenize(__snake_case ) )
19
"""simple docstring""" import argparse import json from collections import OrderedDict from pathlib import Path import requests import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import PoolFormerConfig, PoolFormerForImageClassification, PoolFormerImageProcessor from transformers.utils import logging logging.set_verbosity_info() _a = logging.get_logger(__name__) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = original_name.split('''.''' )[0] _UpperCamelCase = key.split('''.''' ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 2] ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 1] ) _UpperCamelCase = orig_block_num - offset _UpperCamelCase = key.replace(F'''{orig_block_num}.{layer_num}.{original_name}''', F'''block.{new_block_num}.{layer_num}.{new_name}''' ) return key def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase = OrderedDict() _UpperCamelCase , _UpperCamelCase = 0, 0 for key, value in state_dict.items(): if key.startswith('''network''' ): _UpperCamelCase = key.replace('''network''', '''poolformer.encoder''' ) if "proj" in key: # Works for the first embedding as well as the internal embedding layers if key.endswith('''bias''' ) and "patch_embed" not in key: patch_emb_offset += 1 _UpperCamelCase = key[: key.find('''proj''' )] _UpperCamelCase = key.replace(__snake_case, F'''patch_embeddings.{total_embed_found}.''' ) _UpperCamelCase = key.replace('''proj''', '''projection''' ) if key.endswith('''bias''' ): total_embed_found += 1 if "patch_embeddings" in key: _UpperCamelCase = '''poolformer.encoder.''' + key if "mlp.fc1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc1''', '''output.conv1''' ) if "mlp.fc2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc2''', '''output.conv2''' ) if "norm1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm1''', '''before_norm''' ) if "norm2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm2''', '''after_norm''' ) if "layer_scale_1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_1''', '''layer_scale_1''' ) if "layer_scale_2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_2''', '''layer_scale_2''' ) if "head" in key: _UpperCamelCase = key.replace('''head''', '''classifier''' ) _UpperCamelCase = value return new_state_dict def lowerCamelCase__ ( ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = '''http://images.cocodataset.org/val2017/000000039769.jpg''' _UpperCamelCase = Image.open(requests.get(__snake_case, stream=__snake_case ).raw ) return image @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" _UpperCamelCase = PoolFormerConfig() # set attributes based on model_name _UpperCamelCase = '''huggingface/label-files''' _UpperCamelCase = model_name[-3:] _UpperCamelCase = 10_00 _UpperCamelCase = '''imagenet-1k-id2label.json''' _UpperCamelCase = (1, 10_00) # set config attributes _UpperCamelCase = json.load(open(hf_hub_download(__snake_case, __snake_case, repo_type='''dataset''' ), '''r''' ) ) _UpperCamelCase = {int(__snake_case ): v for k, v in idalabel.items()} _UpperCamelCase = idalabel _UpperCamelCase = {v: k for k, v in idalabel.items()} if size == "s12": _UpperCamelCase = [2, 2, 6, 2] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s24": _UpperCamelCase = [4, 4, 12, 4] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.9 elif size == "m36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 elif size == "m48": _UpperCamelCase = [8, 8, 24, 8] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 else: raise ValueError(F'''Size {size} not supported''' ) # load image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) # Prepare image _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__snake_case, return_tensors='''pt''' ).pixel_values logger.info(F'''Converting model {model_name}...''' ) # load original state dict _UpperCamelCase = torch.load(__snake_case, map_location=torch.device('''cpu''' ) ) # rename keys _UpperCamelCase = rename_keys(__snake_case ) # create HuggingFace model and load state dict _UpperCamelCase = PoolFormerForImageClassification(__snake_case ) model.load_state_dict(__snake_case ) model.eval() # Define image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) _UpperCamelCase = image_processor(images=prepare_img(), return_tensors='''pt''' ).pixel_values # forward pass _UpperCamelCase = model(__snake_case ) _UpperCamelCase = outputs.logits # define expected logit slices for different models if size == "s12": _UpperCamelCase = torch.tensor([-0.3045, -0.6758, -0.4869] ) elif size == "s24": _UpperCamelCase = torch.tensor([0.4402, -0.1374, -0.8045] ) elif size == "s36": _UpperCamelCase = torch.tensor([-0.6080, -0.5133, -0.5898] ) elif size == "m36": _UpperCamelCase = torch.tensor([0.3952, 0.2263, -1.2668] ) elif size == "m48": _UpperCamelCase = torch.tensor([0.1167, -0.0656, -0.3423] ) else: raise ValueError(F'''Size {size} not supported''' ) # verify logits assert logits.shape == expected_shape assert torch.allclose(logits[0, :3], __snake_case, atol=1e-2 ) # finally, save model and image processor logger.info(F'''Saving PyTorch model and image processor to {pytorch_dump_folder_path}...''' ) Path(__snake_case ).mkdir(exist_ok=__snake_case ) model.save_pretrained(__snake_case ) print(F'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument( """--model_name""", default="""poolformer_s12""", type=str, help="""Name of the model you'd like to convert.""", ) parser.add_argument( """--checkpoint_path""", default=None, type=str, help="""Path to the original PyTorch checkpoint (.pth file).""" ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the folder to output PyTorch model.""" ) _a = parser.parse_args() convert_poolformer_checkpoint(args.model_name, args.checkpoint_path, args.pytorch_dump_folder_path)
19
1
"""simple docstring""" from typing import Dict, List from nltk.translate import gleu_score import datasets from datasets import MetricInfo _a = """\ @misc{wu2016googles, title={Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation}, author={Yonghui Wu and Mike Schuster and Zhifeng Chen and Quoc V. Le and Mohammad Norouzi and Wolfgang Macherey and Maxim Krikun and Yuan Cao and Qin Gao and Klaus Macherey and Jeff Klingner and Apurva Shah and Melvin Johnson and Xiaobing Liu and Łukasz Kaiser and Stephan Gouws and Yoshikiyo Kato and Taku Kudo and Hideto Kazawa and Keith Stevens and George Kurian and Nishant Patil and Wei Wang and Cliff Young and Jason Smith and Jason Riesa and Alex Rudnick and Oriol Vinyals and Greg Corrado and Macduff Hughes and Jeffrey Dean}, year={2016}, eprint={1609.08144}, archivePrefix={arXiv}, primaryClass={cs.CL} } """ _a = """\ The BLEU score has some undesirable properties when used for single sentences, as it was designed to be a corpus measure. We therefore use a slightly different score for our RL experiments which we call the 'GLEU score'. For the GLEU score, we record all sub-sequences of 1, 2, 3 or 4 tokens in output and target sequence (n-grams). We then compute a recall, which is the ratio of the number of matching n-grams to the number of total n-grams in the target (ground truth) sequence, and a precision, which is the ratio of the number of matching n-grams to the number of total n-grams in the generated output sequence. Then GLEU score is simply the minimum of recall and precision. This GLEU score's range is always between 0 (no matches) and 1 (all match) and it is symmetrical when switching output and target. According to our experiments, GLEU score correlates quite well with the BLEU metric on a corpus level but does not have its drawbacks for our per sentence reward objective. """ _a = """\ Computes corpus-level Google BLEU (GLEU) score of translated segments against one or more references. Instead of averaging the sentence level GLEU scores (i.e. macro-average precision), Wu et al. (2016) sum up the matching tokens and the max of hypothesis and reference tokens for each sentence, then compute using the aggregate values. Args: predictions (list of str): list of translations to score. Each translation should be tokenized into a list of tokens. references (list of list of str): list of lists of references for each translation. Each reference should be tokenized into a list of tokens. min_len (int): The minimum order of n-gram this function should extract. Defaults to 1. max_len (int): The maximum order of n-gram this function should extract. Defaults to 4. Returns: 'google_bleu': google_bleu score Examples: Example 1: >>> hyp1 = ['It', 'is', 'a', 'guide', 'to', 'action', 'which', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'always', ... 'disobeys', 'the', 'commands', 'of', 'the', 'cat'] >>> ref1a = ['It', 'is', 'the', 'guiding', 'principle', 'which', ... 'guarantees', 'the', 'rubber', 'duck', 'forces', 'never', ... 'being', 'under', 'the', 'command', 'of', 'the', 'cat'] >>> hyp2 = ['he', 'read', 'the', 'book', 'because', 'he', 'was', ... 'interested', 'in', 'world', 'history'] >>> ref2a = ['he', 'was', 'interested', 'in', 'world', 'history', ... 'because', 'he', 'read', 'the', 'book'] >>> list_of_references = [[ref1a], [ref2a]] >>> hypotheses = [hyp1, hyp2] >>> google_bleu = datasets.load_metric(\"google_bleu\") >>> results = google_bleu.compute(predictions=hypotheses, references=list_of_references) >>> print(round(results[\"google_bleu\"], 2)) 0.44 Example 2: >>> hyp1 = ['It', 'is', 'a', 'guide', 'to', 'action', 'which', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'always', ... 'disobeys', 'the', 'commands', 'of', 'the', 'cat'] >>> ref1a = ['It', 'is', 'the', 'guiding', 'principle', 'which', ... 'guarantees', 'the', 'rubber', 'duck', 'forces', 'never', ... 'being', 'under', 'the', 'command', 'of', 'the', 'cat'] >>> ref1b = ['It', 'is', 'a', 'guide', 'to', 'action', 'that', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'will', 'never', ... 'heed', 'the', 'cat', 'commands'] >>> ref1c = ['It', 'is', 'the', 'practical', 'guide', 'for', 'the', ... 'rubber', 'duck', 'army', 'never', 'to', 'heed', 'the', 'directions', ... 'of', 'the', 'cat'] >>> hyp2 = ['he', 'read', 'the', 'book', 'because', 'he', 'was', ... 'interested', 'in', 'world', 'history'] >>> ref2a = ['he', 'was', 'interested', 'in', 'world', 'history', ... 'because', 'he', 'read', 'the', 'book'] >>> list_of_references = [[ref1a, ref1b, ref1c], [ref2a]] >>> hypotheses = [hyp1, hyp2] >>> google_bleu = datasets.load_metric(\"google_bleu\") >>> results = google_bleu.compute(predictions=hypotheses, references=list_of_references) >>> print(round(results[\"google_bleu\"], 2)) 0.61 Example 3: >>> hyp1 = ['It', 'is', 'a', 'guide', 'to', 'action', 'which', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'always', ... 'disobeys', 'the', 'commands', 'of', 'the', 'cat'] >>> ref1a = ['It', 'is', 'the', 'guiding', 'principle', 'which', ... 'guarantees', 'the', 'rubber', 'duck', 'forces', 'never', ... 'being', 'under', 'the', 'command', 'of', 'the', 'cat'] >>> ref1b = ['It', 'is', 'a', 'guide', 'to', 'action', 'that', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'will', 'never', ... 'heed', 'the', 'cat', 'commands'] >>> ref1c = ['It', 'is', 'the', 'practical', 'guide', 'for', 'the', ... 'rubber', 'duck', 'army', 'never', 'to', 'heed', 'the', 'directions', ... 'of', 'the', 'cat'] >>> hyp2 = ['he', 'read', 'the', 'book', 'because', 'he', 'was', ... 'interested', 'in', 'world', 'history'] >>> ref2a = ['he', 'was', 'interested', 'in', 'world', 'history', ... 'because', 'he', 'read', 'the', 'book'] >>> list_of_references = [[ref1a, ref1b, ref1c], [ref2a]] >>> hypotheses = [hyp1, hyp2] >>> google_bleu = datasets.load_metric(\"google_bleu\") >>> results = google_bleu.compute(predictions=hypotheses, references=list_of_references, min_len=2) >>> print(round(results[\"google_bleu\"], 2)) 0.53 Example 4: >>> hyp1 = ['It', 'is', 'a', 'guide', 'to', 'action', 'which', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'always', ... 'disobeys', 'the', 'commands', 'of', 'the', 'cat'] >>> ref1a = ['It', 'is', 'the', 'guiding', 'principle', 'which', ... 'guarantees', 'the', 'rubber', 'duck', 'forces', 'never', ... 'being', 'under', 'the', 'command', 'of', 'the', 'cat'] >>> ref1b = ['It', 'is', 'a', 'guide', 'to', 'action', 'that', ... 'ensures', 'that', 'the', 'rubber', 'duck', 'will', 'never', ... 'heed', 'the', 'cat', 'commands'] >>> ref1c = ['It', 'is', 'the', 'practical', 'guide', 'for', 'the', ... 'rubber', 'duck', 'army', 'never', 'to', 'heed', 'the', 'directions', ... 'of', 'the', 'cat'] >>> hyp2 = ['he', 'read', 'the', 'book', 'because', 'he', 'was', ... 'interested', 'in', 'world', 'history'] >>> ref2a = ['he', 'was', 'interested', 'in', 'world', 'history', ... 'because', 'he', 'read', 'the', 'book'] >>> list_of_references = [[ref1a, ref1b, ref1c], [ref2a]] >>> hypotheses = [hyp1, hyp2] >>> google_bleu = datasets.load_metric(\"google_bleu\") >>> results = google_bleu.compute(predictions=hypotheses,references=list_of_references, min_len=2, max_len=6) >>> print(round(results[\"google_bleu\"], 2)) 0.4 """ @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class _UpperCAmelCase( datasets.Metric ): def UpperCAmelCase ( self) -> MetricInfo: '''simple docstring''' return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { '''predictions''': datasets.Sequence(datasets.Value('''string''' , id='''token''') , id='''sequence'''), '''references''': datasets.Sequence( datasets.Sequence(datasets.Value('''string''' , id='''token''') , id='''sequence''') , id='''references'''), }) , ) def UpperCAmelCase ( self , __a , __a , __a = 1 , __a = 4 , ) -> Dict[str, float]: '''simple docstring''' return { "google_bleu": gleu_score.corpus_gleu( list_of_references=__a , hypotheses=__a , min_len=__a , max_len=__a) }
19
"""simple docstring""" import torch from diffusers import DPMSolverSDEScheduler from diffusers.utils import torch_device from diffusers.utils.testing_utils import require_torchsde from .test_schedulers import SchedulerCommonTest @require_torchsde class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DPMSolverSDEScheduler,) lowercase__ = 10 def UpperCAmelCase ( self , **__a) -> int: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 11_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''noise_sampler_seed''': 0, } config.update(**__a) return config def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' for timesteps in [10, 50, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for beta_start, beta_end in zip([0.0_0001, 0.0001, 0.001] , [0.0002, 0.002, 0.02]): self.check_over_configs(beta_start=__a , beta_end=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for schedule in ["linear", "scaled_linear"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> str: '''simple docstring''' for prediction_type in ["epsilon", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.47_8210_4492_1875) < 1e-2 assert abs(result_mean.item() - 0.2178_7059_6456_5277) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3521_1181_6406) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9068_9229_9652) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 124.77_1492_0043_9453) < 1e-2 assert abs(result_mean.item() - 0.1_6226_2890_1481_6284) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 128.1_6633_6059_5703) < 1e-2 assert abs(result_mean.item() - 0.1_6688_3260_0116_7297) < 1e-3 else: assert abs(result_sum.item() - 119.8_4875_4882_8125) < 1e-2 assert abs(result_mean.item() - 0.1560_5306_6253_6621) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.46_9573_9746_0938) < 1e-2 assert abs(result_mean.item() - 0.2_1805_9346_0798_2635) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3536_3769_5312) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9083_8241_5771) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a , use_karras_sigmas=__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 176.66_9741_3574_2188) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 177.63_6535_6445_3125) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 else: assert abs(result_sum.item() - 170.3_1352_2338_8672) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2
19
1
"""simple docstring""" import argparse import fairseq import torch from torch import nn from transformers import ( MBartaaTokenizer, MBartConfig, MBartForCausalLM, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() _a = logging.get_logger(__name__) _a = { """post_extract_proj""": """feature_projection.projection""", """encoder.pos_conv.0""": """encoder.pos_conv_embed.conv""", """self_attn.k_proj""": """encoder.layers.*.attention.k_proj""", """self_attn.v_proj""": """encoder.layers.*.attention.v_proj""", """self_attn.q_proj""": """encoder.layers.*.attention.q_proj""", """self_attn.out_proj""": """encoder.layers.*.attention.out_proj""", """self_attn_layer_norm""": """encoder.layers.*.layer_norm""", """fc1""": """encoder.layers.*.feed_forward.intermediate_dense""", """fc2""": """encoder.layers.*.feed_forward.output_dense""", """final_layer_norm""": """encoder.layers.*.final_layer_norm""", """encoder.layer_norm""": """encoder.layer_norm""", """w2v_model.layer_norm""": """feature_projection.layer_norm""", """quantizer.weight_proj""": """quantizer.weight_proj""", """quantizer.vars""": """quantizer.codevectors""", """project_q""": """project_q""", """final_proj""": """project_hid""", """w2v_encoder.proj""": """lm_head""", """mask_emb""": """masked_spec_embed""", } _a = [ """lm_head""", """quantizer.weight_proj""", """quantizer.codevectors""", """project_q""", """project_hid""", ] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" for attribute in key.split('''.''' ): _UpperCamelCase = getattr(__snake_case, __snake_case ) if weight_type is not None: _UpperCamelCase = getattr(__snake_case, __snake_case ).shape else: _UpperCamelCase = hf_pointer.shape assert hf_shape == value.shape, ( 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": _UpperCamelCase = value elif weight_type == "weight_g": _UpperCamelCase = value elif weight_type == "weight_v": _UpperCamelCase = value elif weight_type == "bias": _UpperCamelCase = value else: _UpperCamelCase = value logger.info(F'''{key + "." + weight_type if weight_type is not None else ""} was initialized from {full_name}.''' ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = [] _UpperCamelCase = fairseq_model.state_dict() _UpperCamelCase = hf_model.feature_extractor _UpperCamelCase = hf_model.adapter for name, value in fairseq_dict.items(): _UpperCamelCase = False if "conv_layers" in name: load_conv_layer( __snake_case, __snake_case, __snake_case, __snake_case, hf_model.config.feat_extract_norm == '''group''', ) _UpperCamelCase = True elif any(x in name for x in ['''adaptor''', '''w2v_encoder.proj.''', '''w2v_proj_ln.'''] ): load_adapter(__snake_case, __snake_case, __snake_case, __snake_case ) _UpperCamelCase = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('''w2v_model.''' )[-1] == name.split('''.''' )[0]: _UpperCamelCase = True if "*" in mapped_key: _UpperCamelCase = name.split(__snake_case )[0].split('''.''' )[-2] _UpperCamelCase = mapped_key.replace('''*''', __snake_case ) if "weight_g" in name: _UpperCamelCase = '''weight_g''' elif "weight_v" in name: _UpperCamelCase = '''weight_v''' elif "bias" in name: _UpperCamelCase = '''bias''' elif "weight" in name: _UpperCamelCase = '''weight''' else: _UpperCamelCase = None set_recursively(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) continue if not is_used: unused_weights.append(__snake_case ) logger.warning(F'''Unused weights: {unused_weights}''' ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = full_name.split('''conv_layers.''' )[-1] _UpperCamelCase = name.split('''.''' ) _UpperCamelCase = int(items[0] ) _UpperCamelCase = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _UpperCamelCase = 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: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = full_name.split('''adaptor.''' )[-1] _UpperCamelCase = name.split('''.''' ) if items[1].isdigit(): _UpperCamelCase = int(items[1] ) else: _UpperCamelCase = None if "adaptor" not in full_name: if "proj_ln" in full_name: # has to be layer norm if "bias" in name: assert ( value.shape == adapter.proj_layer_norm.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer norm bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj_layer_norm.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.weight.data.shape} was found.''' _UpperCamelCase = value else: # has to be projection layer if "bias" in name: assert ( value.shape == adapter.proj.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer weight was initialized from {full_name}.''' ) elif isinstance(__snake_case, __snake_case ): if "bias" in name: assert ( value.shape == adapter.layers[layer_id].conv.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) elif "weight" in name: assert ( value.shape == adapter.layers[layer_id].conv.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase , _UpperCamelCase = emb.weight.shape _UpperCamelCase = nn.Linear(__snake_case, __snake_case, bias=__snake_case ) _UpperCamelCase = emb.weight.data return lin_layer @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = WavaVecaConfig.from_pretrained( __snake_case, add_adapter=__snake_case, adapter_stride=__snake_case, adapter_kernel_size=__snake_case, use_auth_token=__snake_case, output_hidden_size=__snake_case, ) _UpperCamelCase = MBartConfig.from_pretrained(__snake_case ) # load model _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path], arg_overrides={ '''config_yaml''': config_yaml_path, '''data''': '''/'''.join(dict_path.split('''/''' )[:-1] ), '''w2v_path''': checkpoint_path, '''load_pretrained_decoder_from''': None, }, ) _UpperCamelCase = model[0].eval() # load feature extractor _UpperCamelCase = WavaVecaFeatureExtractor.from_pretrained(__snake_case, use_auth_token=__snake_case ) # set weights for wav2vec2 encoder _UpperCamelCase = WavaVecaModel(__snake_case ) recursively_load_weights_wavaveca(model.encoder, __snake_case ) # load decoder weights _UpperCamelCase = MBartForCausalLM(__snake_case ) _UpperCamelCase , _UpperCamelCase = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict(), strict=__snake_case ) logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) _UpperCamelCase = SpeechEncoderDecoderModel(encoder=__snake_case, decoder=__snake_case ) _UpperCamelCase = False _UpperCamelCase = MBartaaTokenizer(__snake_case ) tokenizer.save_pretrained(__snake_case ) _UpperCamelCase = hf_wavavec.config.to_dict() _UpperCamelCase = tokenizer.pad_token_id _UpperCamelCase = tokenizer.bos_token_id _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = '''mbart50''' _UpperCamelCase = '''wav2vec2''' _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = 25_00_04 _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = SpeechEncoderDecoderConfig.from_dict(__snake_case ) hf_wavavec.save_pretrained(__snake_case ) feature_extractor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model.""") parser.add_argument("""--checkpoint_path""", default=None, type=str, help="""Path to fairseq checkpoint""") parser.add_argument("""--dict_path""", default=None, type=str, help="""Path to dict of fine-tuned model""") parser.add_argument("""--config_yaml_path""", default=None, type=str, help="""Path to yaml file of fine-tuned model""") parser.add_argument( """--encoder_config_path""", default="""facebook/wav2vec2-xls-r-1b""", type=str, help="""Path to hf encoder wav2vec2 checkpoint config""", ) parser.add_argument( """--decoder_config_path""", default="""facebook/mbart-large-50-one-to-many-mmt""", type=str, help="""Path to hf decoder checkpoint config""", ) parser.add_argument("""--add_adapter""", default=True, type=bool, help="""whethere to add model adapter layers""") parser.add_argument("""--adapter_stride""", default=2, type=int, help="""stride of adapter layers""") parser.add_argument("""--adapter_kernel_size""", default=3, type=int, help="""kernel size of adapter layers""") parser.add_argument("""--encoder_output_dim""", default=1024, type=int, help="""encoder output dim""") parser.add_argument("""--start_token_id""", default=25_0004, type=int, help="""`decoder_start_token_id` of model config""") _a = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, args.config_yaml_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, add_adapter=args.add_adapter, adapter_kernel_size=args.adapter_kernel_size, adapter_stride=args.adapter_stride, decoder_start_token_id=args.start_token_id, encoder_output_dim=args.encoder_output_dim, )
19
"""simple docstring""" 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, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, ChannelDimension, ImageInput, PILImageResampling, is_batched, to_numpy_array, valid_images, ) from ...utils import TensorType, logging _a = logging.get_logger(__name__) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['pixel_values'] def __init__( self , __a = True , __a = None , __a = PILImageResampling.BICUBIC , __a = True , __a = True , __a = 1 / 2_55 , __a = None , __a = True , __a = None , __a = None , **__a , ) -> None: '''simple docstring''' super().__init__(**__a) _UpperCamelCase = size if size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a) _UpperCamelCase = crop_size if crop_size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a , default_to_square=__a , param_name='''crop_size''') _UpperCamelCase = do_resize _UpperCamelCase = do_rescale _UpperCamelCase = do_normalize _UpperCamelCase = do_center_crop _UpperCamelCase = crop_size _UpperCamelCase = size _UpperCamelCase = resample _UpperCamelCase = rescale_factor _UpperCamelCase = image_mean if image_mean is not None else IMAGENET_DEFAULT_MEAN _UpperCamelCase = image_std if image_std is not None else IMAGENET_DEFAULT_STD def UpperCAmelCase ( self , __a , __a , __a = PILImageResampling.BILINEAR , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) if "shortest_edge" in size: _UpperCamelCase = get_resize_output_image_size(__a , size=size['''shortest_edge'''] , default_to_square=__a) # size = get_resize_output_image_size(image, size["shortest_edge"], size["longest_edge"]) elif "height" in size and "width" in size: _UpperCamelCase = (size['''height'''], size['''width''']) else: raise ValueError(F'''Size must contain \'height\' and \'width\' keys or \'shortest_edge\' key. Got {size.keys()}''') return resize(__a , size=__a , resample=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) 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(__a , size=(size['''height'''], size['''width''']) , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a) -> np.ndarray: '''simple docstring''' return rescale(__a , scale=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' return normalize(__a , mean=__a , std=__a , data_format=__a , **__a) def UpperCAmelCase ( 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 , **__a , ) -> BatchFeature: '''simple docstring''' _UpperCamelCase = do_resize if do_resize is not None else self.do_resize _UpperCamelCase = do_rescale if do_rescale is not None else self.do_rescale _UpperCamelCase = do_normalize if do_normalize is not None else self.do_normalize _UpperCamelCase = do_center_crop if do_center_crop is not None else self.do_center_crop _UpperCamelCase = crop_size if crop_size is not None else self.crop_size _UpperCamelCase = get_size_dict(__a , param_name='''crop_size''' , default_to_square=__a) _UpperCamelCase = resample if resample is not None else self.resample _UpperCamelCase = rescale_factor if rescale_factor is not None else self.rescale_factor _UpperCamelCase = image_mean if image_mean is not None else self.image_mean _UpperCamelCase = image_std if image_std is not None else self.image_std _UpperCamelCase = size if size is not None else self.size _UpperCamelCase = get_size_dict(__a) if not is_batched(__a): _UpperCamelCase = [images] 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_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.''') # All transformations expect numpy arrays. _UpperCamelCase = [to_numpy_array(__a) for image in images] if do_resize: _UpperCamelCase = [self.resize(image=__a , size=__a , resample=__a) for image in images] if do_center_crop: _UpperCamelCase = [self.center_crop(image=__a , size=__a) for image in images] if do_rescale: _UpperCamelCase = [self.rescale(image=__a , scale=__a) for image in images] if do_normalize: _UpperCamelCase = [self.normalize(image=__a , mean=__a , std=__a) for image in images] _UpperCamelCase = [to_channel_dimension_format(__a , __a) for image in images] _UpperCamelCase = {'''pixel_values''': images} return BatchFeature(data=__a , tensor_type=__a)
19
1
"""simple docstring""" from timeit import timeit _a = { """MALAYALAM""": True, """String""": False, """rotor""": True, """level""": True, """A""": True, """BB""": True, """ABC""": False, """amanaplanacanalpanama""": True, # "a man a plan a canal panama" } # Ensure our test data is valid assert all((key == key[::-1]) is value for key, value in test_data.items()) def lowerCamelCase__ ( __snake_case ) -> bool: """simple docstring""" _UpperCamelCase = 0 _UpperCamelCase = len(__snake_case ) - 1 while start_i < end_i: if s[start_i] == s[end_i]: start_i += 1 end_i -= 1 else: return False return True def lowerCamelCase__ ( __snake_case ) -> bool: """simple docstring""" _UpperCamelCase = len(__snake_case ) // 2 _UpperCamelCase = len(__snake_case ) # We need to traverse till half of the length of string # as we can get access of the i'th last element from # i'th index. # eg: [0,1,2,3,4,5] => 4th index can be accessed # with the help of 1st index (i==n-i-1) # where n is length of string return all(s[i] == s[n - i - 1] for i in range(__snake_case ) ) def lowerCamelCase__ ( __snake_case ) -> bool: """simple docstring""" if len(__snake_case ) <= 2: return True if s[0] == s[len(__snake_case ) - 1]: return is_palindrome_recursive(s[1:-1] ) else: return False def lowerCamelCase__ ( __snake_case ) -> bool: """simple docstring""" return s == s[::-1] def lowerCamelCase__ ( __snake_case ) -> None: """simple docstring""" _UpperCamelCase = F'''all({name}(key) is value for key, value in test_data.items())''' _UpperCamelCase = F'''from __main__ import test_data, {name}''' _UpperCamelCase = 50_00_00 _UpperCamelCase = timeit(stmt=__snake_case, setup=__snake_case, number=__snake_case ) print(F'''{name:<35} finished {number:,} runs in {result:.5f} seconds''' ) if __name__ == "__main__": for key, value in test_data.items(): assert is_palindrome(key) is is_palindrome_recursive(key) assert is_palindrome(key) is is_palindrome_slice(key) print(F"""{key:21} {value}""") print("""a man a plan a canal panama""") # finished 500,000 runs in 0.46793 seconds benchmark_function("""is_palindrome_slice""") # finished 500,000 runs in 0.85234 seconds benchmark_function("""is_palindrome""") # finished 500,000 runs in 1.32028 seconds benchmark_function("""is_palindrome_recursive""") # finished 500,000 runs in 2.08679 seconds benchmark_function("""is_palindrome_traversal""")
19
"""simple docstring""" # Imports import numpy as np class _UpperCAmelCase: def __init__( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) def UpperCAmelCase ( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' if red is not None: _UpperCamelCase = red if green is not None: _UpperCamelCase = green if blue is not None: _UpperCamelCase = blue if red_edge is not None: _UpperCamelCase = red_edge if nir is not None: _UpperCamelCase = nir return True def UpperCAmelCase ( self , __a="" , __a=None , __a=None , __a=None , __a=None , __a=None) -> List[str]: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) _UpperCamelCase = { '''ARVI2''': self.arvaa, '''CCCI''': self.ccci, '''CVI''': self.cvi, '''GLI''': self.gli, '''NDVI''': self.ndvi, '''BNDVI''': self.bndvi, '''redEdgeNDVI''': self.red_edge_ndvi, '''GNDVI''': self.gndvi, '''GBNDVI''': self.gbndvi, '''GRNDVI''': self.grndvi, '''RBNDVI''': self.rbndvi, '''PNDVI''': self.pndvi, '''ATSAVI''': self.atsavi, '''BWDRVI''': self.bwdrvi, '''CIgreen''': self.ci_green, '''CIrededge''': self.ci_rededge, '''CI''': self.ci, '''CTVI''': self.ctvi, '''GDVI''': self.gdvi, '''EVI''': self.evi, '''GEMI''': self.gemi, '''GOSAVI''': self.gosavi, '''GSAVI''': self.gsavi, '''Hue''': self.hue, '''IVI''': self.ivi, '''IPVI''': self.ipvi, '''I''': self.i, '''RVI''': self.rvi, '''MRVI''': self.mrvi, '''MSAVI''': self.m_savi, '''NormG''': self.norm_g, '''NormNIR''': self.norm_nir, '''NormR''': self.norm_r, '''NGRDI''': self.ngrdi, '''RI''': self.ri, '''S''': self.s, '''IF''': self._if, '''DVI''': self.dvi, '''TVI''': self.tvi, '''NDRE''': self.ndre, } try: return funcs[index]() except KeyError: print('''Index not in the list!''') return False def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return -0.18 + (1.17 * ((self.nir - self.red) / (self.nir + self.red))) def UpperCAmelCase ( self) -> Any: '''simple docstring''' return ((self.nir - self.redEdge) / (self.nir + self.redEdge)) / ( (self.nir - self.red) / (self.nir + self.red) ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir * (self.red / (self.green**2)) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.green - self.red - self.blue) / ( 2 * self.green + self.red + self.blue ) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - self.red) / (self.nir + self.red) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (self.nir - self.blue) / (self.nir + self.blue) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.redEdge - self.red) / (self.redEdge + self.red) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir - (self.green + self.blue)) / ( self.nir + (self.green + self.blue) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.nir - (self.green + self.red)) / ( self.nir + (self.green + self.red) ) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir - (self.blue + self.red)) / (self.nir + (self.blue + self.red)) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - (self.green + self.red + self.blue)) / ( self.nir + (self.green + self.red + self.blue) ) def UpperCAmelCase ( self , __a=0.08 , __a=1.22 , __a=0.03) -> Optional[Any]: '''simple docstring''' return a * ( (self.nir - a * self.red - b) / (a * self.nir + self.red - a * b + x * (1 + a**2)) ) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (0.1 * self.nir - self.blue) / (0.1 * self.nir + self.blue) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir / self.green) - 1 def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir / self.redEdge) - 1 def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.red - self.blue) / self.red def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.ndvi() return ((ndvi + 0.5) / (abs(ndvi + 0.5))) * (abs(ndvi + 0.5) ** (1 / 2)) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir - self.green def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return 2.5 * ( (self.nir - self.red) / (self.nir + 6 * self.red - 7.5 * self.blue + 1) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = (2 * (self.nir**2 - self.red**2) + 1.5 * self.nir + 0.5 * self.red) / ( self.nir + self.red + 0.5 ) return n * (1 - 0.25 * n) - (self.red - 0.125) / (1 - self.red) def UpperCAmelCase ( self , __a=0.16) -> Optional[Any]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green + y) def UpperCAmelCase ( self , __a=0.5) -> Dict: '''simple docstring''' return ((self.nir - self.green) / (self.nir + self.green + n)) * (1 + n) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return np.arctan( ((2 * self.red - self.green - self.blue) / 30.5) * (self.green - self.blue)) def UpperCAmelCase ( self , __a=None , __a=None) -> Any: '''simple docstring''' return (self.nir - b) / (a * self.red) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir / ((self.nir + self.red) / 2)) * (self.ndvi() + 1) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.red + self.green + self.blue) / 30.5 def UpperCAmelCase ( self) -> Any: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.rvi() - 1) / (self.rvi() + 1) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return ( (2 * self.nir + 1) - ((2 * self.nir + 1) ** 2 - 8 * (self.nir - self.red)) ** (1 / 2) ) / 2 def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.green / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> str: '''simple docstring''' return self.nir / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.red / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.green - self.red) / (self.green + self.red) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (self.red - self.green) / (self.red + self.green) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = np.max([np.max(self.red), np.max(self.green), np.max(self.blue)]) _UpperCamelCase = np.min([np.min(self.red), np.min(self.green), np.min(self.blue)]) return (max_value - min_value) / max_value def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.red - self.green - self.blue) / (self.green - self.blue) def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Any: '''simple docstring''' return (self.ndvi() + 0.5) ** (1 / 2) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.nir - self.redEdge) / (self.nir + self.redEdge)
19
1
"""simple docstring""" 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() _a = logging.get_logger(__name__) _a = """Hello, World!""" _a = """en_XX""" def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> str: """simple docstring""" _UpperCamelCase = Path('''data_bin''' ) _UpperCamelCase = FairseqXmodModel.from_pretrained( model_name_or_path=str(Path(__snake_case ).parent ), checkpoint_file=Path(__snake_case ).name, _name='''xmod_base''', arch='''xmod_base''', task='''multilingual_masked_lm''', data_name_or_path=str(__snake_case ), bpe='''sentencepiece''', sentencepiece_model=str(Path(__snake_case ).parent / '''sentencepiece.bpe.model''' ), src_dict=str(data_dir / '''dict.txt''' ), ) xmod.eval() # disable dropout print(__snake_case ) _UpperCamelCase = xmod.model.encoder.sentence_encoder _UpperCamelCase = 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: _UpperCamelCase = xmod.model.classification_heads['''mnli'''].out_proj.weight.shape[0] print('''Our X-MOD config:''', __snake_case ) _UpperCamelCase = XmodForSequenceClassification(__snake_case ) if classification_head else XmodForMaskedLM(__snake_case ) model.eval() # Now let's copy all the weights. # Embeddings _UpperCamelCase = xmod_sent_encoder.embed_tokens.weight _UpperCamelCase = xmod_sent_encoder.embed_positions.weight _UpperCamelCase = torch.zeros_like( model.roberta.embeddings.token_type_embeddings.weight ) # just zero them out b/c xmod doesn't use them. _UpperCamelCase = xmod_sent_encoder.layernorm_embedding.weight _UpperCamelCase = xmod_sent_encoder.layernorm_embedding.bias for i in range(config.num_hidden_layers ): # Encoder: start of layer _UpperCamelCase = model.roberta.encoder.layer[i] _UpperCamelCase = xmod_sent_encoder.layers[i] # self attention _UpperCamelCase = 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.''' ) _UpperCamelCase = xmod_layer.self_attn.q_proj.weight _UpperCamelCase = xmod_layer.self_attn.q_proj.bias _UpperCamelCase = xmod_layer.self_attn.k_proj.weight _UpperCamelCase = xmod_layer.self_attn.k_proj.bias _UpperCamelCase = xmod_layer.self_attn.v_proj.weight _UpperCamelCase = xmod_layer.self_attn.v_proj.bias # self-attention output _UpperCamelCase = 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.''' ) _UpperCamelCase = xmod_layer.self_attn.out_proj.weight _UpperCamelCase = xmod_layer.self_attn.out_proj.bias _UpperCamelCase = xmod_layer.self_attn_layer_norm.weight _UpperCamelCase = xmod_layer.self_attn_layer_norm.bias # intermediate _UpperCamelCase = layer.intermediate if intermediate.dense.weight.shape != xmod_layer.fca.weight.shape: raise AssertionError('''Dimensions of intermediate weights do not match.''' ) _UpperCamelCase = xmod_layer.fca.weight _UpperCamelCase = xmod_layer.fca.bias # output _UpperCamelCase = layer.output if bert_output.dense.weight.shape != xmod_layer.fca.weight.shape: raise AssertionError('''Dimensions of feed-forward weights do not match.''' ) _UpperCamelCase = xmod_layer.fca.weight _UpperCamelCase = xmod_layer.fca.bias _UpperCamelCase = xmod_layer.final_layer_norm.weight _UpperCamelCase = xmod_layer.final_layer_norm.bias if bert_output.adapter_layer_norm is not None: _UpperCamelCase = xmod_layer.adapter_layer_norm.weight _UpperCamelCase = 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(): _UpperCamelCase = bert_output.adapter_modules[lang_code] _UpperCamelCase = xmod_layer.adapter_modules[lang_code] _UpperCamelCase = from_adapter.fca.weight _UpperCamelCase = from_adapter.fca.bias _UpperCamelCase = from_adapter.fca.weight _UpperCamelCase = from_adapter.fca.bias # end of layer if xmod_sent_encoder.layer_norm is not None: _UpperCamelCase = xmod_sent_encoder.layer_norm.weight _UpperCamelCase = xmod_sent_encoder.layer_norm.bias if classification_head: _UpperCamelCase = xmod.model.classification_heads['''mnli'''].dense.weight _UpperCamelCase = xmod.model.classification_heads['''mnli'''].dense.bias _UpperCamelCase = xmod.model.classification_heads['''mnli'''].out_proj.weight _UpperCamelCase = xmod.model.classification_heads['''mnli'''].out_proj.bias else: # LM Head _UpperCamelCase = xmod.model.encoder.lm_head.dense.weight _UpperCamelCase = xmod.model.encoder.lm_head.dense.bias _UpperCamelCase = xmod.model.encoder.lm_head.layer_norm.weight _UpperCamelCase = xmod.model.encoder.lm_head.layer_norm.bias _UpperCamelCase = xmod.model.encoder.lm_head.weight _UpperCamelCase = xmod.model.encoder.lm_head.bias # Let's check that we get the same results. _UpperCamelCase = xmod.encode(__snake_case ).unsqueeze(0 ) # batch of size 1 model.roberta.set_default_language(__snake_case ) _UpperCamelCase = model(__snake_case )[0] if classification_head: _UpperCamelCase = xmod.model.classification_heads['''mnli'''](xmod.extract_features(__snake_case ) ) else: _UpperCamelCase = xmod.model(__snake_case, lang_id=[SAMPLE_LANGUAGE] )[0] print(our_output.shape, their_output.shape ) _UpperCamelCase = torch.max(torch.abs(our_output - their_output ) ).item() print(F'''max_absolute_diff = {max_absolute_diff}''' ) # ~ 1e-7 _UpperCamelCase = torch.allclose(__snake_case, __snake_case, atol=1e-3 ) print('''Do both models output the same tensors?''', '''🔥''' if success else '''💩''' ) if not success: raise Exception('''Something went wRoNg''' ) Path(__snake_case ).mkdir(parents=__snake_case, exist_ok=__snake_case ) print(F'''Saving model to {pytorch_dump_folder_path}''' ) model.save_pretrained(__snake_case ) if __name__ == "__main__": _a = 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.""" ) _a = parser.parse_args() convert_xmod_checkpoint_to_pytorch( args.xmod_checkpoint_path, args.pytorch_dump_folder_path, args.classification_head )
19
"""simple docstring""" import inspect import unittest from transformers import ViTHybridConfig from transformers.testing_utils import require_accelerate, 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, _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 ViTHybridForImageClassification, ViTHybridImageProcessor, ViTHybridModel from transformers.models.vit_hybrid.modeling_vit_hybrid import VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=64 , __a=2 , __a=3 , __a=True , __a=True , __a=32 , __a=5 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=10 , __a=0.02 , __a=[1, 16, 4, 4] , __a=None , ) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = image_size _UpperCamelCase = patch_size _UpperCamelCase = num_channels _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = scope _UpperCamelCase = backbone_featmap_shape # in ViT hybrid, the seq length equals the number of patches + 1 (we add 1 for the [CLS] token) # the number of patches is based on the feature map of the backbone, which by default uses an output stride # of 32, which means that the feature map has a spatial resolution of 1/32 of the input image size _UpperCamelCase = (self.image_size // 32) ** 2 _UpperCamelCase = num_patches + 1 def UpperCAmelCase ( self) -> int: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = { '''global_padding''': '''same''', '''layer_type''': '''bottleneck''', '''depths''': [3, 4, 9], '''out_features''': ['''stage1''', '''stage2''', '''stage3'''], '''embedding_dynamic_padding''': True, '''hidden_sizes''': [4, 8, 16, 32], '''num_groups''': 2, } return ViTHybridConfig( 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 , 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 , backbone_featmap_shape=self.backbone_featmap_shape , backbone_config=__a , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModel(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.type_sequence_label_size _UpperCamelCase = ViTHybridForImageClassification(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , labels=__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (ViTHybridModel, ViTHybridForImageClassification) if is_torch_available() else () lowercase__ = ( {'feature-extraction': ViTHybridModel, 'image-classification': ViTHybridForImageClassification} if is_torch_available() else {} ) lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , hidden_size=37) def UpperCAmelCase ( self) -> Any: '''simple docstring''' self.config_tester.run_common_tests() @unittest.skip(reason='''ViT does not use inputs_embeds''') def UpperCAmelCase ( self) -> Dict: '''simple docstring''' pass def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) self.assertIsInstance(model.get_input_embeddings() , (nn.Module)) _UpperCamelCase = model.get_output_embeddings() self.assertTrue(x is None or isinstance(__a , nn.Linear)) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) # Skip the check for the backbone for name, module in model.named_modules(): if module.__class__.__name__ == "ViTHybridPatchEmbeddings": _UpperCamelCase = [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''' , ) @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = ViTHybridModel.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) return image @require_torch @require_vision class _UpperCAmelCase( unittest.TestCase ): @cached_property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return ( ViTHybridImageProcessor.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]) if is_vision_available() else None ) @slow def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = ViTHybridForImageClassification.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]).to( __a) _UpperCamelCase = self.default_image_processor _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''').to(__a) # forward pass with torch.no_grad(): _UpperCamelCase = model(**__a) # verify the logits _UpperCamelCase = torch.Size((1, 10_00)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor([-1.9090, -0.4993, -0.2389]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, :3] , __a , atol=1e-4)) @slow @require_accelerate def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = ViTHybridImageProcessor.from_pretrained('''google/vit-hybrid-base-bit-384''') _UpperCamelCase = ViTHybridForImageClassification.from_pretrained('''google/vit-hybrid-base-bit-384''' , device_map='''auto''') _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''') _UpperCamelCase = model(**__a) _UpperCamelCase = outputs.logits # model predicts one of the 1000 ImageNet classes _UpperCamelCase = logits.argmax(-1).item() self.assertTrue(model.config.idalabel[predicted_class_idx] , '''tabby, tabby cat''')
19
1
"""simple docstring""" from transformers import HfArgumentParser, TensorFlowBenchmark, TensorFlowBenchmarkArguments def lowerCamelCase__ ( ) -> Dict: """simple docstring""" _UpperCamelCase = HfArgumentParser(__snake_case ) _UpperCamelCase = parser.parse_args_into_dataclasses()[0] _UpperCamelCase = TensorFlowBenchmark(args=__snake_case ) try: _UpperCamelCase = parser.parse_args_into_dataclasses()[0] except ValueError as e: _UpperCamelCase = '''Arg --no_{0} is no longer used, please use --no-{0} instead.''' _UpperCamelCase = ''' '''.join(str(__snake_case ).split(''' ''' )[:-1] ) _UpperCamelCase = '''''' _UpperCamelCase = eval(str(__snake_case ).split(''' ''' )[-1] ) _UpperCamelCase = [] for arg in depreciated_args: # arg[2:] removes '--' if arg[2:] in TensorFlowBenchmark.deprecated_args: # arg[5:] removes '--no_' full_error_msg += arg_error_msg.format(arg[5:] ) else: wrong_args.append(__snake_case ) if len(__snake_case ) > 0: _UpperCamelCase = full_error_msg + begin_error_msg + str(__snake_case ) raise ValueError(__snake_case ) benchmark.run() if __name__ == "__main__": main()
19
"""simple docstring""" from math import acos, sin from typing import List, Tuple, Union import numpy as np import torch from PIL import Image from ...models import AutoencoderKL, UNetaDConditionModel from ...schedulers import DDIMScheduler, DDPMScheduler from ...utils import randn_tensor from ..pipeline_utils import AudioPipelineOutput, BaseOutput, DiffusionPipeline, ImagePipelineOutput from .mel import Mel class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['vqvae'] def __init__( self , __a , __a , __a , __a , ) -> List[str]: '''simple docstring''' super().__init__() self.register_modules(unet=__a , scheduler=__a , mel=__a , vqvae=__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' return 50 if isinstance(self.scheduler , __a) else 10_00 @torch.no_grad() def __call__( self , __a = 1 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = 0 , __a = None , __a = None , __a=True , ) -> Union[ Union[AudioPipelineOutput, ImagePipelineOutput], Tuple[List[Image.Image], Tuple[int, List[np.ndarray]]], ]: '''simple docstring''' _UpperCamelCase = steps or self.get_default_steps() self.scheduler.set_timesteps(__a) _UpperCamelCase = step_generator or generator # For backwards compatibility if type(self.unet.config.sample_size) == int: _UpperCamelCase = (self.unet.config.sample_size, self.unet.config.sample_size) if noise is None: _UpperCamelCase = randn_tensor( ( batch_size, self.unet.config.in_channels, self.unet.config.sample_size[0], self.unet.config.sample_size[1], ) , generator=__a , device=self.device , ) _UpperCamelCase = noise _UpperCamelCase = None if audio_file is not None or raw_audio is not None: self.mel.load_audio(__a , __a) _UpperCamelCase = self.mel.audio_slice_to_image(__a) _UpperCamelCase = np.frombuffer(input_image.tobytes() , dtype='''uint8''').reshape( (input_image.height, input_image.width)) _UpperCamelCase = (input_image / 2_55) * 2 - 1 _UpperCamelCase = torch.tensor(input_image[np.newaxis, :, :] , dtype=torch.float).to(self.device) if self.vqvae is not None: _UpperCamelCase = self.vqvae.encode(torch.unsqueeze(__a , 0)).latent_dist.sample( generator=__a)[0] _UpperCamelCase = self.vqvae.config.scaling_factor * input_images if start_step > 0: _UpperCamelCase = self.scheduler.add_noise(__a , __a , self.scheduler.timesteps[start_step - 1]) _UpperCamelCase = ( self.unet.config.sample_size[1] * self.mel.get_sample_rate() / self.mel.x_res / self.mel.hop_length ) _UpperCamelCase = int(mask_start_secs * pixels_per_second) _UpperCamelCase = int(mask_end_secs * pixels_per_second) _UpperCamelCase = self.scheduler.add_noise(__a , __a , torch.tensor(self.scheduler.timesteps[start_step:])) for step, t in enumerate(self.progress_bar(self.scheduler.timesteps[start_step:])): if isinstance(self.unet , __a): _UpperCamelCase = self.unet(__a , __a , __a)['''sample'''] else: _UpperCamelCase = self.unet(__a , __a)['''sample'''] if isinstance(self.scheduler , __a): _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , eta=__a , generator=__a , )['''prev_sample'''] else: _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , generator=__a , )['''prev_sample'''] if mask is not None: if mask_start > 0: _UpperCamelCase = mask[:, step, :, :mask_start] if mask_end > 0: _UpperCamelCase = mask[:, step, :, -mask_end:] if self.vqvae is not None: # 0.18215 was scaling factor used in training to ensure unit variance _UpperCamelCase = 1 / self.vqvae.config.scaling_factor * images _UpperCamelCase = self.vqvae.decode(__a)['''sample'''] _UpperCamelCase = (images / 2 + 0.5).clamp(0 , 1) _UpperCamelCase = images.cpu().permute(0 , 2 , 3 , 1).numpy() _UpperCamelCase = (images * 2_55).round().astype('''uint8''') _UpperCamelCase = list( (Image.fromarray(_[:, :, 0]) for _ in images) if images.shape[3] == 1 else (Image.fromarray(__a , mode='''RGB''').convert('''L''') for _ in images)) _UpperCamelCase = [self.mel.image_to_audio(__a) for _ in images] if not return_dict: return images, (self.mel.get_sample_rate(), audios) return BaseOutput(**AudioPipelineOutput(np.array(__a)[:, np.newaxis, :]) , **ImagePipelineOutput(__a)) @torch.no_grad() def UpperCAmelCase ( self , __a , __a = 50) -> np.ndarray: '''simple docstring''' assert isinstance(self.scheduler , __a) self.scheduler.set_timesteps(__a) _UpperCamelCase = np.array( [np.frombuffer(image.tobytes() , dtype='''uint8''').reshape((1, image.height, image.width)) for image in images]) _UpperCamelCase = (sample / 2_55) * 2 - 1 _UpperCamelCase = torch.Tensor(__a).to(self.device) for t in self.progress_bar(torch.flip(self.scheduler.timesteps , (0,))): _UpperCamelCase = t - self.scheduler.config.num_train_timesteps // self.scheduler.num_inference_steps _UpperCamelCase = self.scheduler.alphas_cumprod[t] _UpperCamelCase = ( self.scheduler.alphas_cumprod[prev_timestep] if prev_timestep >= 0 else self.scheduler.final_alpha_cumprod ) _UpperCamelCase = 1 - alpha_prod_t _UpperCamelCase = self.unet(__a , __a)['''sample'''] _UpperCamelCase = (1 - alpha_prod_t_prev) ** 0.5 * model_output _UpperCamelCase = (sample - pred_sample_direction) * alpha_prod_t_prev ** (-0.5) _UpperCamelCase = sample * alpha_prod_t ** 0.5 + beta_prod_t ** 0.5 * model_output return sample @staticmethod def UpperCAmelCase ( __a , __a , __a) -> torch.Tensor: '''simple docstring''' _UpperCamelCase = acos(torch.dot(torch.flatten(__a) , torch.flatten(__a)) / torch.norm(__a) / torch.norm(__a)) return sin((1 - alpha) * theta) * xa / sin(__a) + sin(alpha * theta) * xa / sin(__a)
19
1
"""simple docstring""" import warnings from ...utils import logging from .image_processing_deit import DeiTImageProcessor _a = logging.get_logger(__name__) class _UpperCAmelCase( lowerCamelCase ): def __init__( self , *__a , **__a) -> None: '''simple docstring''' warnings.warn( '''The class DeiTFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please''' ''' use DeiTImageProcessor instead.''' , __a , ) super().__init__(*__a , **__a)
19
"""simple docstring""" import copy from collections import OrderedDict from typing import Dict, Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging from ..auto import CONFIG_MAPPING _a = logging.get_logger(__name__) _a = { """facebook/detr-resnet-50""": """https://huggingface.co/facebook/detr-resnet-50/resolve/main/config.json""", # See all DETR models at https://huggingface.co/models?filter=detr } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'detr' lowercase__ = ['past_key_values'] lowercase__ = { 'hidden_size': 'd_model', 'num_attention_heads': 'encoder_attention_heads', } def __init__( self , __a=True , __a=None , __a=3 , __a=1_00 , __a=6 , __a=20_48 , __a=8 , __a=6 , __a=20_48 , __a=8 , __a=0.0 , __a=0.0 , __a=True , __a="relu" , __a=2_56 , __a=0.1 , __a=0.0 , __a=0.0 , __a=0.02 , __a=1.0 , __a=False , __a="sine" , __a="resnet50" , __a=True , __a=False , __a=1 , __a=5 , __a=2 , __a=1 , __a=1 , __a=5 , __a=2 , __a=0.1 , **__a , ) -> int: '''simple docstring''' if backbone_config is not None and use_timm_backbone: raise ValueError('''You can\'t specify both `backbone_config` and `use_timm_backbone`.''') if not use_timm_backbone: if backbone_config is None: logger.info('''`backbone_config` is `None`. Initializing the config with the default `ResNet` backbone.''') _UpperCamelCase = CONFIG_MAPPING['''resnet'''](out_features=['''stage4''']) elif isinstance(__a , __a): _UpperCamelCase = backbone_config.get('''model_type''') _UpperCamelCase = CONFIG_MAPPING[backbone_model_type] _UpperCamelCase = config_class.from_dict(__a) # set timm attributes to None _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = None, None, None _UpperCamelCase = use_timm_backbone _UpperCamelCase = backbone_config _UpperCamelCase = num_channels _UpperCamelCase = num_queries _UpperCamelCase = d_model _UpperCamelCase = encoder_ffn_dim _UpperCamelCase = encoder_layers _UpperCamelCase = encoder_attention_heads _UpperCamelCase = decoder_ffn_dim _UpperCamelCase = decoder_layers _UpperCamelCase = decoder_attention_heads _UpperCamelCase = dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = activation_function _UpperCamelCase = init_std _UpperCamelCase = init_xavier_std _UpperCamelCase = encoder_layerdrop _UpperCamelCase = decoder_layerdrop _UpperCamelCase = encoder_layers _UpperCamelCase = auxiliary_loss _UpperCamelCase = position_embedding_type _UpperCamelCase = backbone _UpperCamelCase = use_pretrained_backbone _UpperCamelCase = dilation # Hungarian matcher _UpperCamelCase = class_cost _UpperCamelCase = bbox_cost _UpperCamelCase = giou_cost # Loss coefficients _UpperCamelCase = mask_loss_coefficient _UpperCamelCase = dice_loss_coefficient _UpperCamelCase = bbox_loss_coefficient _UpperCamelCase = giou_loss_coefficient _UpperCamelCase = eos_coefficient super().__init__(is_encoder_decoder=__a , **__a) @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.encoder_attention_heads @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.d_model @classmethod def UpperCAmelCase ( cls , __a , **__a) -> int: '''simple docstring''' return cls(backbone_config=__a , **__a) def UpperCAmelCase ( self) -> Dict[str, any]: '''simple docstring''' _UpperCamelCase = copy.deepcopy(self.__dict__) if output["backbone_config"] is not None: _UpperCamelCase = self.backbone_config.to_dict() _UpperCamelCase = self.__class__.model_type return output class _UpperCAmelCase( lowerCamelCase ): lowercase__ = version.parse('1.11' ) @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''pixel_values''', {0: '''batch''', 1: '''num_channels''', 2: '''height''', 3: '''width'''}), ('''pixel_mask''', {0: '''batch'''}), ]) @property def UpperCAmelCase ( self) -> float: '''simple docstring''' return 1e-5 @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return 12
19
1
"""simple docstring""" def lowerCamelCase__ ( __snake_case, __snake_case ) -> int: """simple docstring""" return int((input_a, input_a).count(0 ) != 0 ) def lowerCamelCase__ ( ) -> None: """simple docstring""" assert nand_gate(0, 0 ) == 1 assert nand_gate(0, 1 ) == 1 assert nand_gate(1, 0 ) == 1 assert nand_gate(1, 1 ) == 0 if __name__ == "__main__": print(nand_gate(0, 0)) print(nand_gate(0, 1)) print(nand_gate(1, 0)) print(nand_gate(1, 1))
19
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """microsoft/wavlm-base""": """https://huggingface.co/microsoft/wavlm-base/resolve/main/config.json""", # See all WavLM models at https://huggingface.co/models?filter=wavlm } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'wavlm' def __init__( self , __a=32 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu" , __a=0.1 , __a=0.1 , __a=0.1 , __a=0.0 , __a=0.1 , __a=0.1 , __a=0.02 , __a=1e-5 , __a="group" , __a="gelu" , __a=(5_12, 5_12, 5_12, 5_12, 5_12, 5_12, 5_12) , __a=(5, 2, 2, 2, 2, 2, 2) , __a=(10, 3, 3, 3, 3, 2, 2) , __a=False , __a=1_28 , __a=16 , __a=3_20 , __a=8_00 , __a=False , __a=True , __a=0.05 , __a=10 , __a=2 , __a=0.0 , __a=10 , __a=3_20 , __a=2 , __a=0.1 , __a=1_00 , __a=2_56 , __a=2_56 , __a=0.1 , __a="mean" , __a=False , __a=False , __a=2_56 , __a=(5_12, 5_12, 5_12, 5_12, 15_00) , __a=(5, 3, 3, 1, 1) , __a=(1, 2, 3, 1, 1) , __a=5_12 , __a=80 , __a=0 , __a=1 , __a=2 , __a=False , __a=3 , __a=2 , __a=3 , __a=None , **__a , ) -> Union[str, Any]: '''simple docstring''' super().__init__(**__a , pad_token_id=__a , bos_token_id=__a , eos_token_id=__a) _UpperCamelCase = hidden_size _UpperCamelCase = feat_extract_norm _UpperCamelCase = feat_extract_activation _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = conv_bias _UpperCamelCase = num_buckets _UpperCamelCase = max_bucket_distance _UpperCamelCase = num_conv_pos_embeddings _UpperCamelCase = num_conv_pos_embedding_groups _UpperCamelCase = len(self.conv_dim) _UpperCamelCase = num_hidden_layers _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = feat_proj_dropout _UpperCamelCase = final_dropout _UpperCamelCase = layerdrop _UpperCamelCase = layer_norm_eps _UpperCamelCase = initializer_range _UpperCamelCase = num_ctc_classes _UpperCamelCase = vocab_size _UpperCamelCase = do_stable_layer_norm _UpperCamelCase = use_weighted_layer_sum _UpperCamelCase = 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 _UpperCamelCase = apply_spec_augment _UpperCamelCase = mask_time_prob _UpperCamelCase = mask_time_length _UpperCamelCase = mask_time_min_masks _UpperCamelCase = mask_feature_prob _UpperCamelCase = mask_feature_length # parameters for pretraining with codevector quantized representations _UpperCamelCase = num_codevectors_per_group _UpperCamelCase = num_codevector_groups _UpperCamelCase = contrastive_logits_temperature _UpperCamelCase = num_negatives _UpperCamelCase = codevector_dim _UpperCamelCase = proj_codevector_dim _UpperCamelCase = diversity_loss_weight # ctc loss _UpperCamelCase = ctc_loss_reduction _UpperCamelCase = ctc_zero_infinity # adapter _UpperCamelCase = add_adapter _UpperCamelCase = adapter_kernel_size _UpperCamelCase = adapter_stride _UpperCamelCase = num_adapter_layers _UpperCamelCase = output_hidden_size or hidden_size # SequenceClassification-specific parameter. Feel free to ignore for other classes. _UpperCamelCase = classifier_proj_size # XVector-specific parameters. Feel free to ignore for other classes. _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = xvector_output_dim @property def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return functools.reduce(operator.mul , self.conv_stride , 1)
19
1
"""simple docstring""" from pathlib import PurePosixPath from typing import Optional import fsspec from fsspec import AbstractFileSystem from huggingface_hub.hf_api import DatasetInfo from ..utils.file_utils import get_authentication_headers_for_url from ..utils.hub import hf_hub_url class _UpperCAmelCase( lowerCamelCase ): lowercase__ = '' lowercase__ = 'hf-legacy' # "hf://"" is reserved for hffs def __init__( self , __a = None , __a = None , **__a , ) -> int: '''simple docstring''' super().__init__(self , **__a) _UpperCamelCase = repo_info _UpperCamelCase = token _UpperCamelCase = None def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' if self.dir_cache is None: _UpperCamelCase = {} for hf_file in self.repo_info.siblings: # TODO(QL): add sizes _UpperCamelCase = { '''name''': hf_file.rfilename, '''size''': None, '''type''': '''file''', } self.dir_cache.update( { str(__a): {'''name''': str(__a), '''size''': None, '''type''': '''directory'''} for d in list(PurePosixPath(hf_file.rfilename).parents)[:-1] }) def UpperCAmelCase ( self , __a , __a = "rb" , **__a , ) -> List[str]: '''simple docstring''' if not isinstance(self.repo_info , __a): raise NotImplementedError(F'''Open is only implemented for dataset repositories, but got {self.repo_info}''') _UpperCamelCase = hf_hub_url(self.repo_info.id , __a , revision=self.repo_info.sha) return fsspec.open( __a , mode=__a , headers=get_authentication_headers_for_url(__a , use_auth_token=self.token) , client_kwargs={'''trust_env''': True} , ).open() def UpperCAmelCase ( self , __a , **__a) -> Dict: '''simple docstring''' self._get_dirs() _UpperCamelCase = self._strip_protocol(__a) if path in self.dir_cache: return self.dir_cache[path] else: raise FileNotFoundError(__a) def UpperCAmelCase ( self , __a , __a=False , **__a) -> str: '''simple docstring''' self._get_dirs() _UpperCamelCase = PurePosixPath(path.strip('''/''')) _UpperCamelCase = {} for p, f in self.dir_cache.items(): _UpperCamelCase = PurePosixPath(p.strip('''/''')) _UpperCamelCase = p.parent if root == path: _UpperCamelCase = f _UpperCamelCase = list(paths.values()) if detail: return out else: return sorted(f['''name'''] for f in out)
19
"""simple docstring""" import datasets import faiss import numpy as np import streamlit as st import torch from elasticsearch import Elasticsearch from elia_utils import ( embed_questions_for_retrieval, make_qa_sas_model, qa_sas_generate, query_es_index, query_qa_dense_index, ) import transformers from transformers import AutoModel, AutoModelForSeqaSeqLM, AutoTokenizer _a = """bart""" _a = True @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Dict: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/retribert-base-uncased''' ) _UpperCamelCase = AutoModel.from_pretrained('''yjernite/retribert-base-uncased''' ).to('''cuda:0''' ) _UpperCamelCase = qar_model.eval() else: _UpperCamelCase , _UpperCamelCase = (None, None) if MODEL_TYPE == "bart": _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/bart_eli5''' ) _UpperCamelCase = AutoModelForSeqaSeqLM.from_pretrained('''yjernite/bart_eli5''' ).to('''cuda:0''' ) _UpperCamelCase = torch.load('''seq2seq_models/eli5_bart_model_blm_2.pth''' ) sas_model.load_state_dict(save_dict['''model'''] ) _UpperCamelCase = sas_model.eval() else: _UpperCamelCase , _UpperCamelCase = make_qa_sas_model( model_name='''t5-small''', from_file='''seq2seq_models/eli5_t5_model_1024_4.pth''', device='''cuda:0''' ) return (qar_tokenizer, qar_model, sas_tokenizer, sas_model) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = faiss.StandardGpuResources() _UpperCamelCase = datasets.load_dataset(path='''wiki_snippets''', name='''wiki40b_en_100_0''' )['''train'''] _UpperCamelCase = np.memmap( '''wiki40b_passages_reps_32_l-8_h-768_b-512-512.dat''', dtype='''float32''', mode='''r''', shape=(wikiaab_passages.num_rows, 1_28), ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) _UpperCamelCase = faiss.index_cpu_to_gpu(__snake_case, 1, __snake_case ) wikiaab_gpu_index_flat.add(__snake_case ) # TODO fix for larger GPU else: _UpperCamelCase , _UpperCamelCase = (None, None) _UpperCamelCase = Elasticsearch([{'''host''': '''localhost''', '''port''': '''9200'''}] ) return (wikiaab_passages, wikiaab_gpu_index_flat, es_client) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = datasets.load_dataset('''eli5''', name='''LFQA_reddit''' ) _UpperCamelCase = elia['''train_eli5'''] _UpperCamelCase = np.memmap( '''eli5_questions_reps.dat''', dtype='''float32''', mode='''r''', shape=(elia_train.num_rows, 1_28) ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) eli5_train_q_index.add(__snake_case ) return (elia_train, eli5_train_q_index) _a , _a , _a = load_indexes() _a , _a , _a , _a = load_models() _a , _a = load_train_data() def lowerCamelCase__ ( __snake_case, __snake_case=10 ) -> List[Any]: """simple docstring""" _UpperCamelCase = embed_questions_for_retrieval([question], __snake_case, __snake_case ) _UpperCamelCase , _UpperCamelCase = eli5_train_q_index.search(__snake_case, __snake_case ) _UpperCamelCase = [elia_train[int(__snake_case )] for i in I[0]] return nn_examples def lowerCamelCase__ ( __snake_case, __snake_case="wiki40b", __snake_case="dense", __snake_case=10 ) -> List[str]: """simple docstring""" if source == "none": _UpperCamelCase , _UpperCamelCase = (''' <P> '''.join(['''''' for _ in range(11 )] ).strip(), []) else: if method == "dense": _UpperCamelCase , _UpperCamelCase = query_qa_dense_index( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) else: _UpperCamelCase , _UpperCamelCase = query_es_index( __snake_case, __snake_case, index_name='''english_wiki40b_snippets_100w''', n_results=__snake_case, ) _UpperCamelCase = [ (res['''article_title'''], res['''section_title'''].strip(), res['''score'''], res['''passage_text''']) for res in hit_lst ] _UpperCamelCase = '''question: {} context: {}'''.format(__snake_case, __snake_case ) return question_doc, support_list @st.cache( hash_funcs={ torch.Tensor: (lambda __snake_case : None), transformers.models.bart.tokenization_bart.BartTokenizer: (lambda __snake_case : None), } ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=64, __snake_case=2_56, __snake_case=False, __snake_case=2, __snake_case=0.95, __snake_case=0.8 ) -> Dict: """simple docstring""" with torch.no_grad(): _UpperCamelCase = qa_sas_generate( __snake_case, __snake_case, __snake_case, num_answers=1, num_beams=__snake_case, min_len=__snake_case, max_len=__snake_case, do_sample=__snake_case, temp=__snake_case, top_p=__snake_case, top_k=__snake_case, max_input_length=10_24, device='''cuda:0''', )[0] return (answer, support_list) st.title("""Long Form Question Answering with ELI5""") # Start sidebar _a = """<img src='https://huggingface.co/front/assets/huggingface_logo.svg'>""" _a = """ <html> <head> <style> .img-container { padding-left: 90px; padding-right: 90px; padding-top: 50px; padding-bottom: 50px; background-color: #f0f3f9; } </style> </head> <body> <span class=\"img-container\"> <!-- Inline parent element --> %s </span> </body> </html> """ % ( header_html, ) st.sidebar.markdown( header_full, unsafe_allow_html=True, ) # Long Form QA with ELI5 and Wikipedia _a = """ This demo presents a model trained to [provide long-form answers to open-domain questions](https://yjernite.github.io/lfqa.html). First, a document retriever fetches a set of relevant Wikipedia passages given the question from the [Wiki40b](https://research.google/pubs/pub49029/) dataset, a pre-processed fixed snapshot of Wikipedia. """ st.sidebar.markdown(description, unsafe_allow_html=True) _a = [ """Answer the question""", """View the retrieved document only""", """View the most similar ELI5 question and answer""", """Show me everything, please!""", ] _a = st.sidebar.checkbox("""Demo options""") if demo_options: _a = st.sidebar.selectbox( """""", action_list, index=3, ) _a = action_list.index(action_st) _a = st.sidebar.selectbox( """""", ["""Show full text of passages""", """Show passage section titles"""], index=0, ) _a = show_type == """Show full text of passages""" else: _a = 3 _a = True _a = st.sidebar.checkbox("""Retrieval options""") if retrieval_options: _a = """ ### Information retriever options The **sparse** retriever uses ElasticSearch, while the **dense** retriever uses max-inner-product search between a question and passage embedding trained using the [ELI5](https://arxiv.org/abs/1907.09190) questions-answer pairs. The answer is then generated by sequence to sequence model which takes the question and retrieved document as input. """ st.sidebar.markdown(retriever_info) _a = st.sidebar.selectbox("""Which Wikipedia format should the model use?""", ["""wiki40b""", """none"""]) _a = st.sidebar.selectbox("""Which Wikipedia indexer should the model use?""", ["""dense""", """sparse""", """mixed"""]) else: _a = """wiki40b""" _a = """dense""" _a = """beam""" _a = 2 _a = 64 _a = 256 _a = None _a = None _a = st.sidebar.checkbox("""Generation options""") if generate_options: _a = """ ### Answer generation options The sequence-to-sequence model was initialized with [BART](https://huggingface.co/facebook/bart-large) weights and fine-tuned on the ELI5 QA pairs and retrieved documents. You can use the model for greedy decoding with **beam** search, or **sample** from the decoder's output probabilities. """ st.sidebar.markdown(generate_info) _a = st.sidebar.selectbox("""Would you like to use beam search or sample an answer?""", ["""beam""", """sampled"""]) _a = st.sidebar.slider( """Minimum generation length""", min_value=8, max_value=256, value=64, step=8, format=None, key=None ) _a = st.sidebar.slider( """Maximum generation length""", min_value=64, max_value=512, value=256, step=16, format=None, key=None ) if sampled == "beam": _a = st.sidebar.slider("""Beam size""", min_value=1, max_value=8, value=2, step=None, format=None, key=None) else: _a = st.sidebar.slider( """Nucleus sampling p""", min_value=0.1, max_value=1.0, value=0.95, step=0.01, format=None, key=None ) _a = st.sidebar.slider( """Temperature""", min_value=0.1, max_value=1.0, value=0.7, step=0.01, format=None, key=None ) _a = None # start main text _a = [ """<MY QUESTION>""", """How do people make chocolate?""", """Why do we get a fever when we are sick?""", """How can different animals perceive different colors?""", """What is natural language processing?""", """What's the best way to treat a sunburn?""", """What exactly are vitamins ?""", """How does nuclear energy provide electricity?""", """What's the difference between viruses and bacteria?""", """Why are flutes classified as woodwinds when most of them are made out of metal ?""", """Why do people like drinking coffee even though it tastes so bad?""", """What happens when wine ages? How does it make the wine taste better?""", """If an animal is an herbivore, where does it get the protein that it needs to survive if it only eats grass?""", """How can we set a date to the beginning or end of an artistic period? Doesn't the change happen gradually?""", """How does New Zealand have so many large bird predators?""", ] _a = st.selectbox( """What would you like to ask? ---- select <MY QUESTION> to enter a new query""", questions_list, index=1, ) if question_s == "<MY QUESTION>": _a = st.text_input("""Enter your question here:""", """""") else: _a = question_s if st.button("""Show me!"""): if action in [0, 1, 3]: if index_type == "mixed": _a , _a = make_support(question, source=wiki_source, method="""dense""", n_results=10) _a , _a = make_support(question, source=wiki_source, method="""sparse""", n_results=10) _a = [] for res_d, res_s in zip(support_list_dense, support_list_sparse): if tuple(res_d) not in support_list: support_list += [tuple(res_d)] if tuple(res_s) not in support_list: support_list += [tuple(res_s)] _a = support_list[:10] _a = """<P> """ + """ <P> """.join([res[-1] for res in support_list]) else: _a , _a = make_support(question, source=wiki_source, method=index_type, n_results=10) if action in [0, 3]: _a , _a = answer_question( question_doc, sas_model, sas_tokenizer, min_len=min_len, max_len=int(max_len), sampling=(sampled == """sampled"""), n_beams=n_beams, top_p=top_p, temp=temp, ) st.markdown("""### The model generated answer is:""") st.write(answer) if action in [0, 1, 3] and wiki_source != "none": st.markdown("""--- \n ### The model is drawing information from the following Wikipedia passages:""") for i, res in enumerate(support_list): _a = """https://en.wikipedia.org/wiki/{}""".format(res[0].replace(""" """, """_""")) _a = res[1].strip() if sec_titles == "": _a = """[{}]({})""".format(res[0], wiki_url) else: _a = sec_titles.split(""" & """) _a = """ & """.join( ["""[{}]({}#{})""".format(sec.strip(), wiki_url, sec.strip().replace(""" """, """_""")) for sec in sec_list] ) st.markdown( """{0:02d} - **Article**: {1:<18} <br> _Section_: {2}""".format(i + 1, res[0], sections), unsafe_allow_html=True, ) if show_passages: st.write( """> <span style=\"font-family:arial; font-size:10pt;\">""" + res[-1] + """</span>""", unsafe_allow_html=True ) if action in [2, 3]: _a = find_nearest_training(question) _a = nn_train_list[0] st.markdown( """--- \n ### The most similar question in the ELI5 training set was: \n\n {}""".format(train_exple["""title"""]) ) _a = [ """{}. {}""".format(i + 1, """ \n""".join([line.strip() for line in ans.split("""\n""") if line.strip() != """"""])) for i, (ans, sc) in enumerate(zip(train_exple["""answers"""]["""text"""], train_exple["""answers"""]["""score"""])) if i == 0 or sc > 2 ] st.markdown("""##### Its answers were: \n\n {}""".format("""\n""".join(answers_st))) _a = """ --- **Disclaimer** *The intent of this app is to provide some (hopefully entertaining) insights into the behavior of a current LFQA system. Evaluating biases of such a model and ensuring factual generations are still very much open research problems. Therefore, until some significant progress is achieved, we caution against using the generated answers for practical purposes.* """ st.sidebar.markdown(disclaimer, unsafe_allow_html=True)
19
1
"""simple docstring""" import re import warnings from contextlib import contextmanager from ...processing_utils import ProcessorMixin class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'AutoImageProcessor' lowercase__ = 'AutoTokenizer' def __init__( self , __a=None , __a=None , **__a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) _UpperCamelCase = self.image_processor _UpperCamelCase = False def __call__( self , *__a , **__a) -> Optional[int]: '''simple docstring''' # For backward compatibility if self._in_target_context_manager: return self.current_processor(*__a , **__a) _UpperCamelCase = kwargs.pop('''images''' , __a) _UpperCamelCase = kwargs.pop('''text''' , __a) if len(__a) > 0: _UpperCamelCase = args[0] _UpperCamelCase = args[1:] if images is None and text is None: raise ValueError('''You need to specify either an `images` or `text` input to process.''') if images is not None: _UpperCamelCase = self.image_processor(__a , *__a , **__a) if text is not None: _UpperCamelCase = self.tokenizer(__a , **__a) if text is None: return inputs elif images is None: return encodings else: _UpperCamelCase = encodings['''input_ids'''] return inputs def UpperCAmelCase ( self , *__a , **__a) -> List[Any]: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> List[str]: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @contextmanager def UpperCAmelCase ( self) -> Any: '''simple docstring''' warnings.warn( '''`as_target_processor` is deprecated and will be removed in v5 of Transformers. You can process your ''' '''labels by using the argument `text` of the regular `__call__` method (either in the same call as ''' '''your images inputs, or in a separate call.''') _UpperCamelCase = True _UpperCamelCase = self.tokenizer yield _UpperCamelCase = self.image_processor _UpperCamelCase = False def UpperCAmelCase ( self , __a , __a=False , __a=None) -> Any: '''simple docstring''' if added_vocab is None: _UpperCamelCase = self.tokenizer.get_added_vocab() _UpperCamelCase = {} while tokens: _UpperCamelCase = re.search(R'''<s_(.*?)>''' , __a , re.IGNORECASE) if start_token is None: break _UpperCamelCase = start_token.group(1) _UpperCamelCase = re.search(RF'''</s_{key}>''' , __a , re.IGNORECASE) _UpperCamelCase = start_token.group() if end_token is None: _UpperCamelCase = tokens.replace(__a , '''''') else: _UpperCamelCase = end_token.group() _UpperCamelCase = re.escape(__a) _UpperCamelCase = re.escape(__a) _UpperCamelCase = re.search(F'''{start_token_escaped}(.*?){end_token_escaped}''' , __a , re.IGNORECASE) if content is not None: _UpperCamelCase = content.group(1).strip() if r"<s_" in content and r"</s_" in content: # non-leaf node _UpperCamelCase = self.tokenajson(__a , is_inner_value=__a , added_vocab=__a) if value: if len(__a) == 1: _UpperCamelCase = value[0] _UpperCamelCase = value else: # leaf nodes _UpperCamelCase = [] for leaf in content.split(R'''<sep/>'''): _UpperCamelCase = leaf.strip() if leaf in added_vocab and leaf[0] == "<" and leaf[-2:] == "/>": _UpperCamelCase = leaf[1:-2] # for categorical special tokens output[key].append(__a) if len(output[key]) == 1: _UpperCamelCase = output[key][0] _UpperCamelCase = tokens[tokens.find(__a) + len(__a) :].strip() if tokens[:6] == r"<sep/>": # non-leaf nodes return [output] + self.tokenajson(tokens[6:] , is_inner_value=__a , added_vocab=__a) if len(__a): return [output] if is_inner_value else output else: return [] if is_inner_value else {"text_sequence": tokens} @property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
"""simple docstring""" import argparse import fairseq import torch from torch import nn from transformers import ( MBartaaTokenizer, MBartConfig, MBartForCausalLM, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() _a = logging.get_logger(__name__) _a = { """post_extract_proj""": """feature_projection.projection""", """encoder.pos_conv.0""": """encoder.pos_conv_embed.conv""", """self_attn.k_proj""": """encoder.layers.*.attention.k_proj""", """self_attn.v_proj""": """encoder.layers.*.attention.v_proj""", """self_attn.q_proj""": """encoder.layers.*.attention.q_proj""", """self_attn.out_proj""": """encoder.layers.*.attention.out_proj""", """self_attn_layer_norm""": """encoder.layers.*.layer_norm""", """fc1""": """encoder.layers.*.feed_forward.intermediate_dense""", """fc2""": """encoder.layers.*.feed_forward.output_dense""", """final_layer_norm""": """encoder.layers.*.final_layer_norm""", """encoder.layer_norm""": """encoder.layer_norm""", """w2v_model.layer_norm""": """feature_projection.layer_norm""", """quantizer.weight_proj""": """quantizer.weight_proj""", """quantizer.vars""": """quantizer.codevectors""", """project_q""": """project_q""", """final_proj""": """project_hid""", """w2v_encoder.proj""": """lm_head""", """mask_emb""": """masked_spec_embed""", } _a = [ """lm_head""", """quantizer.weight_proj""", """quantizer.codevectors""", """project_q""", """project_hid""", ] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" for attribute in key.split('''.''' ): _UpperCamelCase = getattr(__snake_case, __snake_case ) if weight_type is not None: _UpperCamelCase = getattr(__snake_case, __snake_case ).shape else: _UpperCamelCase = hf_pointer.shape assert hf_shape == value.shape, ( 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": _UpperCamelCase = value elif weight_type == "weight_g": _UpperCamelCase = value elif weight_type == "weight_v": _UpperCamelCase = value elif weight_type == "bias": _UpperCamelCase = value else: _UpperCamelCase = value logger.info(F'''{key + "." + weight_type if weight_type is not None else ""} was initialized from {full_name}.''' ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = [] _UpperCamelCase = fairseq_model.state_dict() _UpperCamelCase = hf_model.feature_extractor _UpperCamelCase = hf_model.adapter for name, value in fairseq_dict.items(): _UpperCamelCase = False if "conv_layers" in name: load_conv_layer( __snake_case, __snake_case, __snake_case, __snake_case, hf_model.config.feat_extract_norm == '''group''', ) _UpperCamelCase = True elif any(x in name for x in ['''adaptor''', '''w2v_encoder.proj.''', '''w2v_proj_ln.'''] ): load_adapter(__snake_case, __snake_case, __snake_case, __snake_case ) _UpperCamelCase = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('''w2v_model.''' )[-1] == name.split('''.''' )[0]: _UpperCamelCase = True if "*" in mapped_key: _UpperCamelCase = name.split(__snake_case )[0].split('''.''' )[-2] _UpperCamelCase = mapped_key.replace('''*''', __snake_case ) if "weight_g" in name: _UpperCamelCase = '''weight_g''' elif "weight_v" in name: _UpperCamelCase = '''weight_v''' elif "bias" in name: _UpperCamelCase = '''bias''' elif "weight" in name: _UpperCamelCase = '''weight''' else: _UpperCamelCase = None set_recursively(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) continue if not is_used: unused_weights.append(__snake_case ) logger.warning(F'''Unused weights: {unused_weights}''' ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = full_name.split('''conv_layers.''' )[-1] _UpperCamelCase = name.split('''.''' ) _UpperCamelCase = int(items[0] ) _UpperCamelCase = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _UpperCamelCase = 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: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = full_name.split('''adaptor.''' )[-1] _UpperCamelCase = name.split('''.''' ) if items[1].isdigit(): _UpperCamelCase = int(items[1] ) else: _UpperCamelCase = None if "adaptor" not in full_name: if "proj_ln" in full_name: # has to be layer norm if "bias" in name: assert ( value.shape == adapter.proj_layer_norm.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer norm bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj_layer_norm.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.weight.data.shape} was found.''' _UpperCamelCase = value else: # has to be projection layer if "bias" in name: assert ( value.shape == adapter.proj.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer weight was initialized from {full_name}.''' ) elif isinstance(__snake_case, __snake_case ): if "bias" in name: assert ( value.shape == adapter.layers[layer_id].conv.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) elif "weight" in name: assert ( value.shape == adapter.layers[layer_id].conv.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase , _UpperCamelCase = emb.weight.shape _UpperCamelCase = nn.Linear(__snake_case, __snake_case, bias=__snake_case ) _UpperCamelCase = emb.weight.data return lin_layer @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = WavaVecaConfig.from_pretrained( __snake_case, add_adapter=__snake_case, adapter_stride=__snake_case, adapter_kernel_size=__snake_case, use_auth_token=__snake_case, output_hidden_size=__snake_case, ) _UpperCamelCase = MBartConfig.from_pretrained(__snake_case ) # load model _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path], arg_overrides={ '''config_yaml''': config_yaml_path, '''data''': '''/'''.join(dict_path.split('''/''' )[:-1] ), '''w2v_path''': checkpoint_path, '''load_pretrained_decoder_from''': None, }, ) _UpperCamelCase = model[0].eval() # load feature extractor _UpperCamelCase = WavaVecaFeatureExtractor.from_pretrained(__snake_case, use_auth_token=__snake_case ) # set weights for wav2vec2 encoder _UpperCamelCase = WavaVecaModel(__snake_case ) recursively_load_weights_wavaveca(model.encoder, __snake_case ) # load decoder weights _UpperCamelCase = MBartForCausalLM(__snake_case ) _UpperCamelCase , _UpperCamelCase = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict(), strict=__snake_case ) logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) _UpperCamelCase = SpeechEncoderDecoderModel(encoder=__snake_case, decoder=__snake_case ) _UpperCamelCase = False _UpperCamelCase = MBartaaTokenizer(__snake_case ) tokenizer.save_pretrained(__snake_case ) _UpperCamelCase = hf_wavavec.config.to_dict() _UpperCamelCase = tokenizer.pad_token_id _UpperCamelCase = tokenizer.bos_token_id _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = '''mbart50''' _UpperCamelCase = '''wav2vec2''' _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = 25_00_04 _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = SpeechEncoderDecoderConfig.from_dict(__snake_case ) hf_wavavec.save_pretrained(__snake_case ) feature_extractor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model.""") parser.add_argument("""--checkpoint_path""", default=None, type=str, help="""Path to fairseq checkpoint""") parser.add_argument("""--dict_path""", default=None, type=str, help="""Path to dict of fine-tuned model""") parser.add_argument("""--config_yaml_path""", default=None, type=str, help="""Path to yaml file of fine-tuned model""") parser.add_argument( """--encoder_config_path""", default="""facebook/wav2vec2-xls-r-1b""", type=str, help="""Path to hf encoder wav2vec2 checkpoint config""", ) parser.add_argument( """--decoder_config_path""", default="""facebook/mbart-large-50-one-to-many-mmt""", type=str, help="""Path to hf decoder checkpoint config""", ) parser.add_argument("""--add_adapter""", default=True, type=bool, help="""whethere to add model adapter layers""") parser.add_argument("""--adapter_stride""", default=2, type=int, help="""stride of adapter layers""") parser.add_argument("""--adapter_kernel_size""", default=3, type=int, help="""kernel size of adapter layers""") parser.add_argument("""--encoder_output_dim""", default=1024, type=int, help="""encoder output dim""") parser.add_argument("""--start_token_id""", default=25_0004, type=int, help="""`decoder_start_token_id` of model config""") _a = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, args.config_yaml_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, add_adapter=args.add_adapter, adapter_kernel_size=args.adapter_kernel_size, adapter_stride=args.adapter_stride, decoder_start_token_id=args.start_token_id, encoder_output_dim=args.encoder_output_dim, )
19
1
"""simple docstring""" import datasets from .nmt_bleu import compute_bleu # From: https://github.com/tensorflow/nmt/blob/master/nmt/scripts/bleu.py _a = """\ @INPROCEEDINGS{Papineni02bleu:a, author = {Kishore Papineni and Salim Roukos and Todd Ward and Wei-jing Zhu}, title = {BLEU: a Method for Automatic Evaluation of Machine Translation}, booktitle = {}, year = {2002}, pages = {311--318} } @inproceedings{lin-och-2004-orange, title = \"{ORANGE}: a Method for Evaluating Automatic Evaluation Metrics for Machine Translation\", author = \"Lin, Chin-Yew and Och, Franz Josef\", booktitle = \"{COLING} 2004: Proceedings of the 20th International Conference on Computational Linguistics\", month = \"aug 23{--}aug 27\", year = \"2004\", address = \"Geneva, Switzerland\", publisher = \"COLING\", url = \"https://www.aclweb.org/anthology/C04-1072\", pages = \"501--507\", } """ _a = """\ BLEU (bilingual evaluation understudy) is an algorithm for evaluating the quality of text which has been machine-translated from one natural language to another. Quality is considered to be the correspondence between a machine's output and that of a human: \"the closer a machine translation is to a professional human translation, the better it is\" – this is the central idea behind BLEU. BLEU was one of the first metrics to claim a high correlation with human judgements of quality, and remains one of the most popular automated and inexpensive metrics. Scores are calculated for individual translated segments—generally sentences—by comparing them with a set of good quality reference translations. Those scores are then averaged over the whole corpus to reach an estimate of the translation's overall quality. Intelligibility or grammatical correctness are not taken into account[citation needed]. BLEU's output is always a number between 0 and 1. This value indicates how similar the candidate text is to the reference texts, with values closer to 1 representing more similar texts. Few human translations will attain a score of 1, since this would indicate that the candidate is identical to one of the reference translations. For this reason, it is not necessary to attain a score of 1. Because there are more opportunities to match, adding additional reference translations will increase the BLEU score. """ _a = """ Computes BLEU score of translated segments against one or more references. Args: predictions: list of translations to score. Each translation should be tokenized into a list of tokens. references: list of lists of references for each translation. Each reference should be tokenized into a list of tokens. max_order: Maximum n-gram order to use when computing BLEU score. smooth: Whether or not to apply Lin et al. 2004 smoothing. Returns: 'bleu': bleu score, 'precisions': geometric mean of n-gram precisions, 'brevity_penalty': brevity penalty, 'length_ratio': ratio of lengths, 'translation_length': translation_length, 'reference_length': reference_length Examples: >>> predictions = [ ... [\"hello\", \"there\", \"general\", \"kenobi\"], # tokenized prediction of the first sample ... [\"foo\", \"bar\", \"foobar\"] # tokenized prediction of the second sample ... ] >>> references = [ ... [[\"hello\", \"there\", \"general\", \"kenobi\"], [\"hello\", \"there\", \"!\"]], # tokenized references for the first sample (2 references) ... [[\"foo\", \"bar\", \"foobar\"]] # tokenized references for the second sample (1 reference) ... ] >>> bleu = datasets.load_metric(\"bleu\") >>> results = bleu.compute(predictions=predictions, references=references) >>> print(results[\"bleu\"]) 1.0 """ @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class _UpperCAmelCase( datasets.Metric ): def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { '''predictions''': datasets.Sequence(datasets.Value('''string''' , id='''token''') , id='''sequence'''), '''references''': datasets.Sequence( datasets.Sequence(datasets.Value('''string''' , id='''token''') , id='''sequence''') , id='''references'''), }) , codebase_urls=['''https://github.com/tensorflow/nmt/blob/master/nmt/scripts/bleu.py'''] , reference_urls=[ '''https://en.wikipedia.org/wiki/BLEU''', '''https://towardsdatascience.com/evaluating-text-output-in-nlp-bleu-at-your-own-risk-e8609665a213''', ] , ) def UpperCAmelCase ( self , __a , __a , __a=4 , __a=False) -> Dict: '''simple docstring''' _UpperCamelCase = compute_bleu( reference_corpus=__a , translation_corpus=__a , max_order=__a , smooth=__a) ((_UpperCamelCase) , (_UpperCamelCase) , (_UpperCamelCase) , (_UpperCamelCase) , (_UpperCamelCase) , (_UpperCamelCase)) = score return { "bleu": bleu, "precisions": precisions, "brevity_penalty": bp, "length_ratio": ratio, "translation_length": translation_length, "reference_length": reference_length, }
19
"""simple docstring""" import fire from utils import calculate_rouge, save_json def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case=None, **__snake_case ) -> Optional[int]: """simple docstring""" _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()] _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()][: len(__snake_case )] _UpperCamelCase = calculate_rouge(__snake_case, __snake_case, **__snake_case ) if save_path is not None: save_json(__snake_case, __snake_case, indent=__snake_case ) return metrics # these print nicely if __name__ == "__main__": fire.Fire(calculate_rouge_path)
19
1
"""simple docstring""" import math def lowerCamelCase__ ( __snake_case ) -> bool: """simple docstring""" _UpperCamelCase = math.loga(math.sqrt(4 * positive_integer + 1 ) / 2 + 1 / 2 ) return exponent == int(__snake_case ) def lowerCamelCase__ ( __snake_case = 1 / 1_23_45 ) -> int: """simple docstring""" _UpperCamelCase = 0 _UpperCamelCase = 0 _UpperCamelCase = 3 while True: _UpperCamelCase = (integer**2 - 1) / 4 # if candidate is an integer, then there is a partition for k if partition_candidate == int(__snake_case ): _UpperCamelCase = int(__snake_case ) total_partitions += 1 if check_partition_perfect(__snake_case ): perfect_partitions += 1 if perfect_partitions > 0: if perfect_partitions / total_partitions < max_proportion: return int(__snake_case ) integer += 1 if __name__ == "__main__": print(F"""{solution() = }""")
19
"""simple docstring""" import warnings from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'ViTImageProcessor' lowercase__ = ('CLIPTokenizer', 'CLIPTokenizerFast') def __init__( self , __a=None , __a=None , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) def __call__( self , __a=None , __a=None , __a=None , __a=None , **__a) -> Tuple: '''simple docstring''' if text is None and visual_prompt is None and images is None: raise ValueError('''You have to specify either text, visual prompt or images.''') if text is not None and visual_prompt is not None: raise ValueError('''You have to specify exactly one type of prompt. Either text or visual prompt.''') if text is not None: _UpperCamelCase = self.tokenizer(__a , return_tensors=__a , **__a) if visual_prompt is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if images is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if visual_prompt is not None and images is not None: _UpperCamelCase = { '''pixel_values''': image_features.pixel_values, '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding elif text is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif text is not None: return encoding elif visual_prompt is not None: _UpperCamelCase = { '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding else: return BatchEncoding(data=dict(**__a) , tensor_type=__a) def UpperCAmelCase ( self , *__a , **__a) -> Any: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> List[str]: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
1
"""simple docstring""" 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, 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 TensorType, is_vision_available, logging if is_vision_available(): import PIL _a = logging.get_logger(__name__) def lowerCamelCase__ ( __snake_case ) -> List[List[ImageInput]]: """simple docstring""" if isinstance(__snake_case, (list, tuple) ) and isinstance(videos[0], (list, tuple) ) and is_valid_image(videos[0][0] ): return videos elif isinstance(__snake_case, (list, tuple) ) and is_valid_image(videos[0] ): return [videos] elif is_valid_image(__snake_case ): return [[videos]] raise ValueError(F'''Could not make batched video from {videos}''' ) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['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 = None , __a = None , **__a , ) -> None: '''simple docstring''' super().__init__(**__a) _UpperCamelCase = size if size is not None else {'''shortest_edge''': 2_24} _UpperCamelCase = get_size_dict(__a , default_to_square=__a) _UpperCamelCase = crop_size if crop_size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a , param_name='''crop_size''') _UpperCamelCase = do_resize _UpperCamelCase = size _UpperCamelCase = do_center_crop _UpperCamelCase = crop_size _UpperCamelCase = resample _UpperCamelCase = do_rescale _UpperCamelCase = rescale_factor _UpperCamelCase = do_normalize _UpperCamelCase = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN _UpperCamelCase = image_std if image_std is not None else IMAGENET_STANDARD_STD def UpperCAmelCase ( self , __a , __a , __a = PILImageResampling.BILINEAR , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a , default_to_square=__a) if "shortest_edge" in size: _UpperCamelCase = get_resize_output_image_size(__a , size['''shortest_edge'''] , default_to_square=__a) elif "height" in size and "width" in size: _UpperCamelCase = (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 UpperCAmelCase ( self , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = 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 UpperCAmelCase ( self , __a , __a , __a = None , **__a , ) -> Dict: '''simple docstring''' return rescale(__a , scale=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' return normalize(__a , mean=__a , std=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = None , __a = ChannelDimension.FIRST , ) -> np.ndarray: '''simple docstring''' 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.''') # All transformations expect numpy arrays. _UpperCamelCase = to_numpy_array(__a) if do_resize: _UpperCamelCase = self.resize(image=__a , size=__a , resample=__a) if do_center_crop: _UpperCamelCase = self.center_crop(__a , size=__a) if do_rescale: _UpperCamelCase = self.rescale(image=__a , scale=__a) if do_normalize: _UpperCamelCase = self.normalize(image=__a , mean=__a , std=__a) _UpperCamelCase = to_channel_dimension_format(__a , __a) return image def UpperCAmelCase ( 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 , **__a , ) -> PIL.Image.Image: '''simple docstring''' _UpperCamelCase = do_resize if do_resize is not None else self.do_resize _UpperCamelCase = resample if resample is not None else self.resample _UpperCamelCase = do_center_crop if do_center_crop is not None else self.do_center_crop _UpperCamelCase = do_rescale if do_rescale is not None else self.do_rescale _UpperCamelCase = rescale_factor if rescale_factor is not None else self.rescale_factor _UpperCamelCase = do_normalize if do_normalize is not None else self.do_normalize _UpperCamelCase = image_mean if image_mean is not None else self.image_mean _UpperCamelCase = image_std if image_std is not None else self.image_std _UpperCamelCase = size if size is not None else self.size _UpperCamelCase = get_size_dict(__a , default_to_square=__a) _UpperCamelCase = crop_size if crop_size is not None else self.crop_size _UpperCamelCase = 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.''') _UpperCamelCase = make_batched(__a) _UpperCamelCase = [ [ 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 , do_normalize=__a , image_mean=__a , image_std=__a , data_format=__a , ) for img in video ] for video in videos ] _UpperCamelCase = {'''pixel_values''': videos} return BatchFeature(data=__a , tensor_type=__a)
19
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=32 , __a=3 , __a=4 , __a=[10, 20, 30, 40] , __a=[2, 2, 3, 2] , __a=True , __a=True , __a=37 , __a="gelu" , __a=10 , __a=0.02 , __a=["stage2", "stage3", "stage4"] , __a=3 , __a=None , ) -> Optional[Any]: '''simple docstring''' _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 = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = out_features _UpperCamelCase = num_labels _UpperCamelCase = scope _UpperCamelCase = num_stages def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Any: '''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) -> Optional[int]: '''simple docstring''' return UperNetConfig( backbone_config=self.get_backbone_config() , hidden_size=5_12 , pool_scales=[1, 2, 3, 6] , use_auxiliary_head=__a , auxiliary_loss_weight=0.4 , auxiliary_in_channels=40 , auxiliary_channels=2_56 , auxiliary_num_convs=1 , auxiliary_concat_input=__a , loss_ignore_index=2_55 , num_labels=self.num_labels , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = UperNetForSemanticSegmentation(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual( result.logits.shape , (self.batch_size, self.num_labels, self.image_size, self.image_size)) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (UperNetForSemanticSegmentation,) if is_torch_available() else () lowercase__ = {'image-segmentation': UperNetForSemanticSegmentation} if is_torch_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = UperNetModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , 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) -> List[Any]: '''simple docstring''' return def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__a) @unittest.skip(reason='''UperNet does not use inputs_embeds''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not support input and output embeddings''') def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> int: '''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) -> Union[str, 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) -> List[Any]: '''simple docstring''' def check_hidden_states_output(__a , __a , __a): _UpperCamelCase = model_class(__a) model.to(__a) model.eval() with torch.no_grad(): _UpperCamelCase = model(**self._prepare_for_class(__a , __a)) _UpperCamelCase = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states _UpperCamelCase = self.model_tester.num_stages self.assertEqual(len(__a) , 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 = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) _UpperCamelCase = _config_zero_init(configs_no_init.backbone_config) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) 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) -> Optional[int]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''', repo_type='''dataset''', filename='''ADE_val_00000001.jpg''' ) _UpperCamelCase = Image.open(__snake_case ).convert('''RGB''' ) return image @require_torch @require_vision @slow class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4))
19
1
"""simple docstring""" def lowerCamelCase__ ( __snake_case ) -> int: """simple docstring""" _UpperCamelCase = 1 for i in range(1, num + 1 ): fact *= i return fact def lowerCamelCase__ ( __snake_case ) -> int: """simple docstring""" _UpperCamelCase = 0 while number > 0: _UpperCamelCase = number % 10 sum_of_digits += last_digit _UpperCamelCase = number // 10 # Removing the last_digit from the given number return sum_of_digits def lowerCamelCase__ ( __snake_case = 1_00 ) -> int: """simple docstring""" _UpperCamelCase = factorial(__snake_case ) _UpperCamelCase = split_and_add(__snake_case ) return result if __name__ == "__main__": print(solution(int(input("""Enter the Number: """).strip())))
19
"""simple docstring""" import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DDPMScheduler,) def UpperCAmelCase ( self , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 10_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**__a) return config def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for timesteps in [1, 5, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> int: '''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=__a , beta_end=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for clip_sample in [True, False]: self.check_over_configs(clip_sample=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.check_over_configs(thresholding=__a) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=__a , prediction_type=__a , sample_max_value=__a , ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for t in [0, 5_00, 9_99]: self.check_over_forward(time_step=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) assert torch.sum(torch.abs(scheduler._get_variance(0) - 0.0)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_87) - 0.0_0979)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_99) - 0.02)) < 1e-5 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 258.9606) < 1e-2 assert abs(result_mean.item() - 0.3372) < 1e-3 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 202.0296) < 1e-2 assert abs(result_mean.item() - 0.2631) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] scheduler.set_timesteps(timesteps=__a) _UpperCamelCase = scheduler.timesteps for i, timestep in enumerate(__a): if i == len(__a) - 1: _UpperCamelCase = -1 else: _UpperCamelCase = timesteps[i + 1] _UpperCamelCase = scheduler.previous_timestep(__a) _UpperCamelCase = prev_t.item() self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 51, 0] with self.assertRaises(__a , msg='''`custom_timesteps` must be in descending order.'''): scheduler.set_timesteps(timesteps=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] _UpperCamelCase = len(__a) with self.assertRaises(__a , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.'''): scheduler.set_timesteps(num_inference_steps=__a , timesteps=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [scheduler.config.num_train_timesteps] with self.assertRaises( __a , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=__a)
19
1
"""simple docstring""" from typing import Optional, Tuple, Union import flax import flax.linen as nn import jax import jax.numpy as jnp from flax.core.frozen_dict import FrozenDict from ..configuration_utils import ConfigMixin, flax_register_to_config from ..utils import BaseOutput from .embeddings_flax import FlaxTimestepEmbedding, FlaxTimesteps from .modeling_flax_utils import FlaxModelMixin from .unet_ad_blocks_flax import ( FlaxCrossAttnDownBlockaD, FlaxCrossAttnUpBlockaD, FlaxDownBlockaD, FlaxUNetMidBlockaDCrossAttn, FlaxUpBlockaD, ) @flax.struct.dataclass class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 42 @flax_register_to_config class _UpperCAmelCase( nn.Module , lowerCamelCase , lowerCamelCase ): lowercase__ = 32 lowercase__ = 4 lowercase__ = 4 lowercase__ = ( "CrossAttnDownBlock2D", "CrossAttnDownBlock2D", "CrossAttnDownBlock2D", "DownBlock2D", ) lowercase__ = ("UpBlock2D", "CrossAttnUpBlock2D", "CrossAttnUpBlock2D", "CrossAttnUpBlock2D") lowercase__ = False lowercase__ = (3_20, 6_40, 12_80, 12_80) lowercase__ = 2 lowercase__ = 8 lowercase__ = None lowercase__ = 12_80 lowercase__ = 0.0 lowercase__ = False lowercase__ = jnp.floataa lowercase__ = True lowercase__ = 0 lowercase__ = False def UpperCAmelCase ( self , __a) -> FrozenDict: '''simple docstring''' # init input tensors _UpperCamelCase = (1, self.in_channels, self.sample_size, self.sample_size) _UpperCamelCase = jnp.zeros(__a , dtype=jnp.floataa) _UpperCamelCase = jnp.ones((1,) , dtype=jnp.intaa) _UpperCamelCase = jnp.zeros((1, 1, self.cross_attention_dim) , dtype=jnp.floataa) _UpperCamelCase , _UpperCamelCase = jax.random.split(__a) _UpperCamelCase = {'''params''': params_rng, '''dropout''': dropout_rng} return self.init(__a , __a , __a , __a)["params"] def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.block_out_channels _UpperCamelCase = block_out_channels[0] * 4 if self.num_attention_heads is not None: raise ValueError( '''At the moment it is not possible to define the number of attention heads via `num_attention_heads` because of a naming issue as described in https://github.com/huggingface/diffusers/issues/2011#issuecomment-1547958131. Passing `num_attention_heads` will only be supported in diffusers v0.19.''') # If `num_attention_heads` is not defined (which is the case for most models) # it will default to `attention_head_dim`. This looks weird upon first reading it and it is. # The reason for this behavior is to correct for incorrectly named variables that were introduced # when this library was created. The incorrect naming was only discovered much later in https://github.com/huggingface/diffusers/issues/2011#issuecomment-1547958131 # Changing `attention_head_dim` to `num_attention_heads` for 40,000+ configurations is too backwards breaking # which is why we correct for the naming here. _UpperCamelCase = self.num_attention_heads or self.attention_head_dim # input _UpperCamelCase = nn.Conv( block_out_channels[0] , kernel_size=(3, 3) , strides=(1, 1) , padding=((1, 1), (1, 1)) , dtype=self.dtype , ) # time _UpperCamelCase = FlaxTimesteps( block_out_channels[0] , flip_sin_to_cos=self.flip_sin_to_cos , freq_shift=self.config.freq_shift) _UpperCamelCase = FlaxTimestepEmbedding(__a , dtype=self.dtype) _UpperCamelCase = self.only_cross_attention if isinstance(__a , __a): _UpperCamelCase = (only_cross_attention,) * len(self.down_block_types) if isinstance(__a , __a): _UpperCamelCase = (num_attention_heads,) * len(self.down_block_types) # down _UpperCamelCase = [] _UpperCamelCase = block_out_channels[0] for i, down_block_type in enumerate(self.down_block_types): _UpperCamelCase = output_channel _UpperCamelCase = block_out_channels[i] _UpperCamelCase = i == len(__a) - 1 if down_block_type == "CrossAttnDownBlock2D": _UpperCamelCase = FlaxCrossAttnDownBlockaD( in_channels=__a , out_channels=__a , dropout=self.dropout , num_layers=self.layers_per_block , num_attention_heads=num_attention_heads[i] , add_downsample=not is_final_block , use_linear_projection=self.use_linear_projection , only_cross_attention=only_cross_attention[i] , use_memory_efficient_attention=self.use_memory_efficient_attention , dtype=self.dtype , ) else: _UpperCamelCase = FlaxDownBlockaD( in_channels=__a , out_channels=__a , dropout=self.dropout , num_layers=self.layers_per_block , add_downsample=not is_final_block , dtype=self.dtype , ) down_blocks.append(__a) _UpperCamelCase = down_blocks # mid _UpperCamelCase = FlaxUNetMidBlockaDCrossAttn( in_channels=block_out_channels[-1] , dropout=self.dropout , num_attention_heads=num_attention_heads[-1] , use_linear_projection=self.use_linear_projection , use_memory_efficient_attention=self.use_memory_efficient_attention , dtype=self.dtype , ) # up _UpperCamelCase = [] _UpperCamelCase = list(reversed(__a)) _UpperCamelCase = list(reversed(__a)) _UpperCamelCase = list(reversed(__a)) _UpperCamelCase = reversed_block_out_channels[0] for i, up_block_type in enumerate(self.up_block_types): _UpperCamelCase = output_channel _UpperCamelCase = reversed_block_out_channels[i] _UpperCamelCase = reversed_block_out_channels[min(i + 1 , len(__a) - 1)] _UpperCamelCase = i == len(__a) - 1 if up_block_type == "CrossAttnUpBlock2D": _UpperCamelCase = FlaxCrossAttnUpBlockaD( in_channels=__a , out_channels=__a , prev_output_channel=__a , num_layers=self.layers_per_block + 1 , num_attention_heads=reversed_num_attention_heads[i] , add_upsample=not is_final_block , dropout=self.dropout , use_linear_projection=self.use_linear_projection , only_cross_attention=only_cross_attention[i] , use_memory_efficient_attention=self.use_memory_efficient_attention , dtype=self.dtype , ) else: _UpperCamelCase = FlaxUpBlockaD( in_channels=__a , out_channels=__a , prev_output_channel=__a , num_layers=self.layers_per_block + 1 , add_upsample=not is_final_block , dropout=self.dropout , dtype=self.dtype , ) up_blocks.append(__a) _UpperCamelCase = output_channel _UpperCamelCase = up_blocks # out _UpperCamelCase = nn.GroupNorm(num_groups=32 , epsilon=1e-5) _UpperCamelCase = nn.Conv( self.out_channels , kernel_size=(3, 3) , strides=(1, 1) , padding=((1, 1), (1, 1)) , dtype=self.dtype , ) def __call__( self , __a , __a , __a , __a=None , __a=None , __a = True , __a = False , ) -> Union[FlaxUNetaDConditionOutput, Tuple]: '''simple docstring''' # 1. time if not isinstance(__a , jnp.ndarray): _UpperCamelCase = jnp.array([timesteps] , dtype=jnp.intaa) elif isinstance(__a , jnp.ndarray) and len(timesteps.shape) == 0: _UpperCamelCase = timesteps.astype(dtype=jnp.floataa) _UpperCamelCase = jnp.expand_dims(__a , 0) _UpperCamelCase = self.time_proj(__a) _UpperCamelCase = self.time_embedding(__a) # 2. pre-process _UpperCamelCase = jnp.transpose(__a , (0, 2, 3, 1)) _UpperCamelCase = self.conv_in(__a) # 3. down _UpperCamelCase = (sample,) for down_block in self.down_blocks: if isinstance(__a , __a): _UpperCamelCase , _UpperCamelCase = down_block(__a , __a , __a , deterministic=not train) else: _UpperCamelCase , _UpperCamelCase = down_block(__a , __a , deterministic=not train) down_block_res_samples += res_samples if down_block_additional_residuals is not None: _UpperCamelCase = () for down_block_res_sample, down_block_additional_residual in zip( __a , __a): down_block_res_sample += down_block_additional_residual new_down_block_res_samples += (down_block_res_sample,) _UpperCamelCase = new_down_block_res_samples # 4. mid _UpperCamelCase = self.mid_block(__a , __a , __a , deterministic=not train) if mid_block_additional_residual is not None: sample += mid_block_additional_residual # 5. up for up_block in self.up_blocks: _UpperCamelCase = down_block_res_samples[-(self.layers_per_block + 1) :] _UpperCamelCase = down_block_res_samples[: -(self.layers_per_block + 1)] if isinstance(__a , __a): _UpperCamelCase = up_block( __a , temb=__a , encoder_hidden_states=__a , res_hidden_states_tuple=__a , deterministic=not train , ) else: _UpperCamelCase = up_block(__a , temb=__a , res_hidden_states_tuple=__a , deterministic=not train) # 6. post-process _UpperCamelCase = self.conv_norm_out(__a) _UpperCamelCase = nn.silu(__a) _UpperCamelCase = self.conv_out(__a) _UpperCamelCase = jnp.transpose(__a , (0, 3, 1, 2)) if not return_dict: return (sample,) return FlaxUNetaDConditionOutput(sample=__a)
19
"""simple docstring""" from __future__ import annotations from functools import lru_cache from math import ceil _a = 100 _a = set(range(3, NUM_PRIMES, 2)) primes.add(2) _a = 42 for prime in range(3, ceil(NUM_PRIMES**0.5), 2): if prime not in primes: continue primes.difference_update(set(range(prime * prime, NUM_PRIMES, prime))) @lru_cache(maxsize=1_00 ) def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" if number_to_partition < 0: return set() elif number_to_partition == 0: return {1} _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = 42 for prime in primes: if prime > number_to_partition: continue for sub in partition(number_to_partition - prime ): ret.add(sub * prime ) return ret def lowerCamelCase__ ( __snake_case = 50_00 ) -> int | None: """simple docstring""" for number_to_partition in range(1, __snake_case ): if len(partition(__snake_case ) ) > number_unique_partitions: return number_to_partition return None if __name__ == "__main__": print(F"""{solution() = }""")
19
1
"""simple docstring""" import warnings from ...utils import is_sklearn_available, requires_backends if is_sklearn_available(): from scipy.stats import pearsonr, spearmanr from sklearn.metrics import fa_score, matthews_corrcoef _a = ( """This metric will be removed from the library soon, metrics should be handled with the 🤗 Evaluate """ """library. You can have a look at this example script for pointers: """ """https://github.com/huggingface/transformers/blob/main/examples/pytorch/text-classification/run_glue.py""" ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[Any]: """simple docstring""" warnings.warn(__snake_case, __snake_case ) requires_backends(__snake_case, '''sklearn''' ) return (preds == labels).mean() def lowerCamelCase__ ( __snake_case, __snake_case ) -> Tuple: """simple docstring""" warnings.warn(__snake_case, __snake_case ) requires_backends(__snake_case, '''sklearn''' ) _UpperCamelCase = simple_accuracy(__snake_case, __snake_case ) _UpperCamelCase = fa_score(y_true=__snake_case, y_pred=__snake_case ) return { "acc": acc, "f1": fa, "acc_and_f1": (acc + fa) / 2, } def lowerCamelCase__ ( __snake_case, __snake_case ) -> Any: """simple docstring""" warnings.warn(__snake_case, __snake_case ) requires_backends(__snake_case, '''sklearn''' ) _UpperCamelCase = pearsonr(__snake_case, __snake_case )[0] _UpperCamelCase = spearmanr(__snake_case, __snake_case )[0] return { "pearson": pearson_corr, "spearmanr": spearman_corr, "corr": (pearson_corr + spearman_corr) / 2, } def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> Optional[Any]: """simple docstring""" warnings.warn(__snake_case, __snake_case ) requires_backends(__snake_case, '''sklearn''' ) assert len(__snake_case ) == len(__snake_case ), F'''Predictions and labels have mismatched lengths {len(__snake_case )} and {len(__snake_case )}''' if task_name == "cola": return {"mcc": matthews_corrcoef(__snake_case, __snake_case )} elif task_name == "sst-2": return {"acc": simple_accuracy(__snake_case, __snake_case )} elif task_name == "mrpc": return acc_and_fa(__snake_case, __snake_case ) elif task_name == "sts-b": return pearson_and_spearman(__snake_case, __snake_case ) elif task_name == "qqp": return acc_and_fa(__snake_case, __snake_case ) elif task_name == "mnli": return {"mnli/acc": simple_accuracy(__snake_case, __snake_case )} elif task_name == "mnli-mm": return {"mnli-mm/acc": simple_accuracy(__snake_case, __snake_case )} elif task_name == "qnli": return {"acc": simple_accuracy(__snake_case, __snake_case )} elif task_name == "rte": return {"acc": simple_accuracy(__snake_case, __snake_case )} elif task_name == "wnli": return {"acc": simple_accuracy(__snake_case, __snake_case )} elif task_name == "hans": return {"acc": simple_accuracy(__snake_case, __snake_case )} else: raise KeyError(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> List[str]: """simple docstring""" warnings.warn(__snake_case, __snake_case ) requires_backends(__snake_case, '''sklearn''' ) if len(__snake_case ) != len(__snake_case ): raise ValueError(F'''Predictions and labels have mismatched lengths {len(__snake_case )} and {len(__snake_case )}''' ) if task_name == "xnli": return {"acc": simple_accuracy(__snake_case, __snake_case )} else: raise KeyError(__snake_case )
19
"""simple docstring""" from collections.abc import Callable import numpy as np def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> np.array: """simple docstring""" _UpperCamelCase = int(np.ceil((x_end - xa) / step_size ) ) _UpperCamelCase = np.zeros((n + 1,) ) _UpperCamelCase = ya _UpperCamelCase = xa for k in range(__snake_case ): _UpperCamelCase = y[k] + step_size * ode_func(__snake_case, y[k] ) _UpperCamelCase = y[k] + ( (step_size / 2) * (ode_func(__snake_case, y[k] ) + ode_func(x + step_size, __snake_case )) ) x += step_size return y if __name__ == "__main__": import doctest doctest.testmod()
19
1
"""simple docstring""" import random import torch from huggingface_hub import HfApi from diffusers import UNetaDModel _a = HfApi() _a = {} # fmt: off _a = torch.tensor([ -0.7515, -1.6883, 0.2420, 0.0300, 0.6347, 1.3433, -1.1743, -3.7467, 1.2342, -2.2485, 0.4636, 0.8076, -0.7991, 0.3969, 0.8498, 0.9189, -1.8887, -3.3522, 0.7639, 0.2040, 0.6271, -2.7148, -1.6316, 3.0839, 0.3186, 0.2721, -0.9759, -1.2461, 2.6257, 1.3557 ]) _a = torch.tensor([ -2.3639, -2.5344, 0.0054, -0.6674, 1.5990, 1.0158, 0.3124, -2.1436, 1.8795, -2.5429, -0.1566, -0.3973, 1.2490, 2.6447, 1.2283, -0.5208, -2.8154, -3.5119, 2.3838, 1.2033, 1.7201, -2.1256, -1.4576, 2.7948, 2.4204, -0.9752, -1.2546, 0.8027, 3.2758, 3.1365 ]) _a = torch.tensor([ -0.6531, -0.6891, -0.3172, -0.5375, -0.9140, -0.5367, -0.1175, -0.7869, -0.3808, -0.4513, -0.2098, -0.0083, 0.3183, 0.5140, 0.2247, -0.1304, -0.1302, -0.2802, -0.2084, -0.2025, -0.4967, -0.4873, -0.0861, 0.6925, 0.0250, 0.1290, -0.1543, 0.6316, 1.0460, 1.4943 ]) _a = torch.tensor([ 0.0911, 0.1107, 0.0182, 0.0435, -0.0805, -0.0608, 0.0381, 0.2172, -0.0280, 0.1327, -0.0299, -0.0255, -0.0050, -0.1170, -0.1046, 0.0309, 0.1367, 0.1728, -0.0533, -0.0748, -0.0534, 0.1624, 0.0384, -0.1805, -0.0707, 0.0642, 0.0220, -0.0134, -0.1333, -0.1505 ]) _a = torch.tensor([ 0.1321, 0.1337, 0.0440, 0.0622, -0.0591, -0.0370, 0.0503, 0.2133, -0.0177, 0.1415, -0.0116, -0.0112, 0.0044, -0.0980, -0.0789, 0.0395, 0.1502, 0.1785, -0.0488, -0.0514, -0.0404, 0.1539, 0.0454, -0.1559, -0.0665, 0.0659, 0.0383, -0.0005, -0.1266, -0.1386 ]) _a = torch.tensor([ 0.1154, 0.1218, 0.0307, 0.0526, -0.0711, -0.0541, 0.0366, 0.2078, -0.0267, 0.1317, -0.0226, -0.0193, -0.0014, -0.1055, -0.0902, 0.0330, 0.1391, 0.1709, -0.0562, -0.0693, -0.0560, 0.1482, 0.0381, -0.1683, -0.0681, 0.0661, 0.0331, -0.0046, -0.1268, -0.1431 ]) _a = torch.tensor([ 0.1192, 0.1240, 0.0414, 0.0606, -0.0557, -0.0412, 0.0430, 0.2042, -0.0200, 0.1385, -0.0115, -0.0132, 0.0017, -0.0965, -0.0802, 0.0398, 0.1433, 0.1747, -0.0458, -0.0533, -0.0407, 0.1545, 0.0419, -0.1574, -0.0645, 0.0626, 0.0341, -0.0010, -0.1199, -0.1390 ]) _a = torch.tensor([ 0.1075, 0.1074, 0.0205, 0.0431, -0.0774, -0.0607, 0.0298, 0.2042, -0.0320, 0.1267, -0.0281, -0.0250, -0.0064, -0.1091, -0.0946, 0.0290, 0.1328, 0.1650, -0.0580, -0.0738, -0.0586, 0.1440, 0.0337, -0.1746, -0.0712, 0.0605, 0.0250, -0.0099, -0.1316, -0.1473 ]) _a = torch.tensor([ -1.4572, -2.0481, -0.0414, -0.6005, 1.4136, 0.5848, 0.4028, -2.7330, 1.2212, -2.1228, 0.2155, 0.4039, 0.7662, 2.0535, 0.7477, -0.3243, -2.1758, -2.7648, 1.6947, 0.7026, 1.2338, -1.6078, -0.8682, 2.2810, 1.8574, -0.5718, -0.5586, -0.0186, 2.3415, 2.1251]) _a = torch.tensor([ -1.3690, -1.9720, -0.4090, -0.6966, 1.4660, 0.9938, -0.1385, -2.7324, 0.7736, -1.8917, 0.2923, 0.4293, 0.1693, 1.4112, 1.1887, -0.3181, -2.2160, -2.6381, 1.3170, 0.8163, 0.9240, -1.6544, -0.6099, 2.5259, 1.6430, -0.9090, -0.9392, -0.0126, 2.4268, 2.3266 ]) _a = torch.tensor([ -1.3525, -1.9628, -0.3956, -0.6860, 1.4664, 1.0014, -0.1259, -2.7212, 0.7772, -1.8811, 0.2996, 0.4388, 0.1704, 1.4029, 1.1701, -0.3027, -2.2053, -2.6287, 1.3350, 0.8131, 0.9274, -1.6292, -0.6098, 2.5131, 1.6505, -0.8958, -0.9298, -0.0151, 2.4257, 2.3355 ]) _a = torch.tensor([ -2.0585, -2.7897, -0.2850, -0.8940, 1.9052, 0.5702, 0.6345, -3.8959, 1.5932, -3.2319, 0.1974, 0.0287, 1.7566, 2.6543, 0.8387, -0.5351, -3.2736, -4.3375, 2.9029, 1.6390, 1.4640, -2.1701, -1.9013, 2.9341, 3.4981, -0.6255, -1.1644, -0.1591, 3.7097, 3.2066 ]) _a = torch.tensor([ -2.3139, -2.5594, -0.0197, -0.6785, 1.7001, 1.1606, 0.3075, -2.1740, 1.8071, -2.5630, -0.0926, -0.3811, 1.2116, 2.6246, 1.2731, -0.5398, -2.8153, -3.6140, 2.3893, 1.3262, 1.6258, -2.1856, -1.3267, 2.8395, 2.3779, -1.0623, -1.2468, 0.8959, 3.3367, 3.2243 ]) _a = torch.tensor([ -2.0628, -2.7667, -0.2089, -0.8263, 2.0539, 0.5992, 0.6495, -3.8336, 1.6025, -3.2817, 0.1721, -0.0633, 1.7516, 2.7039, 0.8100, -0.5908, -3.2113, -4.4343, 2.9257, 1.3632, 1.5562, -2.1489, -1.9894, 3.0560, 3.3396, -0.7328, -1.0417, 0.0383, 3.7093, 3.2343 ]) _a = torch.tensor([ -1.4574, -2.0569, -0.0473, -0.6117, 1.4018, 0.5769, 0.4129, -2.7344, 1.2241, -2.1397, 0.2000, 0.3937, 0.7616, 2.0453, 0.7324, -0.3391, -2.1746, -2.7744, 1.6963, 0.6921, 1.2187, -1.6172, -0.8877, 2.2439, 1.8471, -0.5839, -0.5605, -0.0464, 2.3250, 2.1219 ]) # fmt: on _a = api.list_models(filter="""diffusers""") for mod in models: if "google" in mod.author or mod.modelId == "CompVis/ldm-celebahq-256": _a = """/home/patrick/google_checkpoints/""" + mod.modelId.split("""/""")[-1] print(F"""Started running {mod.modelId}!!!""") if mod.modelId.startswith("""CompVis"""): _a = UNetaDModel.from_pretrained(local_checkpoint, subfolder="""unet""") else: _a = UNetaDModel.from_pretrained(local_checkpoint) torch.manual_seed(0) random.seed(0) _a = torch.randn(1, model.config.in_channels, model.config.sample_size, model.config.sample_size) _a = torch.tensor([10] * noise.shape[0]) with torch.no_grad(): _a = model(noise, time_step).sample assert torch.allclose( logits[0, 0, 0, :30], results["""_""".join("""_""".join(mod.modelId.split("""/""")).split("""-"""))], atol=1E-3 ) print(F"""{mod.modelId} has passed successfully!!!""")
19
"""simple docstring""" import argparse import torch from transformers import BertForMaskedLM if __name__ == "__main__": _a = argparse.ArgumentParser( description=( """Extraction some layers of the full BertForMaskedLM or RObertaForMaskedLM for Transfer Learned""" """ Distillation""" ) ) parser.add_argument("""--model_type""", default="""bert""", choices=["""bert"""]) parser.add_argument("""--model_name""", default="""bert-base-uncased""", type=str) parser.add_argument("""--dump_checkpoint""", default="""serialization_dir/tf_bert-base-uncased_0247911.pth""", type=str) parser.add_argument("""--vocab_transform""", action="""store_true""") _a = parser.parse_args() if args.model_type == "bert": _a = BertForMaskedLM.from_pretrained(args.model_name) _a = """bert""" else: raise ValueError("""args.model_type should be \"bert\".""") _a = model.state_dict() _a = {} for w in ["word_embeddings", "position_embeddings"]: _a = state_dict[F"""{prefix}.embeddings.{w}.weight"""] for w in ["weight", "bias"]: _a = state_dict[F"""{prefix}.embeddings.LayerNorm.{w}"""] _a = 0 for teacher_idx in [0, 2, 4, 7, 9, 11]: for w in ["weight", "bias"]: _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.query.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.key.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.value.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.LayerNorm.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.intermediate.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.LayerNorm.{w}""" ] std_idx += 1 _a = state_dict["""cls.predictions.decoder.weight"""] _a = state_dict["""cls.predictions.bias"""] if args.vocab_transform: for w in ["weight", "bias"]: _a = state_dict[F"""cls.predictions.transform.dense.{w}"""] _a = state_dict[F"""cls.predictions.transform.LayerNorm.{w}"""] print(F"""N layers selected for distillation: {std_idx}""") print(F"""Number of params transferred for distillation: {len(compressed_sd.keys())}""") print(F"""Save transferred checkpoint to {args.dump_checkpoint}.""") torch.save(compressed_sd, args.dump_checkpoint)
19
1
"""simple docstring""" import os import unicodedata from shutil import copyfile from typing import Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import AddedToken, PreTrainedTokenizer from ...utils import SPIECE_UNDERLINE, logging _a = logging.get_logger(__name__) _a = {"""vocab_file""": """spiece.model"""} _a = { """vocab_file""": { """TsinghuaAI/CPM-Generate""": """https://huggingface.co/TsinghuaAI/CPM-Generate/resolve/main/spiece.model""", } } class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a , __a=False , __a=True , __a=False , __a="<s>" , __a="</s>" , __a="<unk>" , __a="<sep>" , __a="<pad>" , __a="<cls>" , __a="<mask>" , __a=["<eop>", "<eod>"] , __a = None , **__a , ) -> None: '''simple docstring''' _UpperCamelCase = AddedToken(__a , lstrip=__a , rstrip=__a) if isinstance(__a , __a) else mask_token _UpperCamelCase = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( do_lower_case=__a , remove_space=__a , keep_accents=__a , bos_token=__a , eos_token=__a , unk_token=__a , sep_token=__a , pad_token=__a , cls_token=__a , mask_token=__a , additional_special_tokens=__a , sp_model_kwargs=self.sp_model_kwargs , **__a , ) _UpperCamelCase = 3 _UpperCamelCase = do_lower_case _UpperCamelCase = remove_space _UpperCamelCase = keep_accents _UpperCamelCase = vocab_file _UpperCamelCase = spm.SentencePieceProcessor(**self.sp_model_kwargs) self.sp_model.Load(__a) try: import jieba except ModuleNotFoundError as error: raise error.__class__( '''You need to install jieba to use CpmTokenizer or CpmTokenizerFast. ''' '''See https://pypi.org/project/jieba/ for installation.''') _UpperCamelCase = jieba _UpperCamelCase = str.maketrans(''' \n''' , '''\u2582\u2583''') @property # Copied from transformers.models.xlnet.tokenization_xlnet.XLNetTokenizer.vocab_size def UpperCAmelCase ( self) -> int: '''simple docstring''' return len(self.sp_model) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = {self.convert_ids_to_tokens(__a): i for i in range(self.vocab_size)} vocab.update(self.added_tokens_encoder) return vocab def __getstate__( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.__dict__.copy() _UpperCamelCase = None return state def __setstate__( self , __a) -> str: '''simple docstring''' _UpperCamelCase = d # for backward compatibility if not hasattr(self , '''sp_model_kwargs'''): _UpperCamelCase = {} _UpperCamelCase = spm.SentencePieceProcessor(**self.sp_model_kwargs) self.sp_model.Load(self.vocab_file) def UpperCAmelCase ( self , __a) -> Dict: '''simple docstring''' if self.remove_space: _UpperCamelCase = ''' '''.join(inputs.strip().split()) else: _UpperCamelCase = inputs _UpperCamelCase = outputs.replace('''``''' , '''"''').replace('''\'\'''' , '''"''') if not self.keep_accents: _UpperCamelCase = unicodedata.normalize('''NFKD''' , __a) _UpperCamelCase = ''''''.join([c for c in outputs if not unicodedata.combining(__a)]) if self.do_lower_case: _UpperCamelCase = outputs.lower() return outputs def UpperCAmelCase ( self , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = self.preprocess_text(__a) _UpperCamelCase = self.sp_model.encode(__a , out_type=__a) _UpperCamelCase = [] for piece in pieces: if len(__a) > 1 and piece[-1] == str(''',''') and piece[-2].isdigit(): _UpperCamelCase = self.sp_model.EncodeAsPieces(piece[:-1].replace(__a , '''''')) if piece[0] != SPIECE_UNDERLINE and cur_pieces[0][0] == SPIECE_UNDERLINE: if len(cur_pieces[0]) == 1: _UpperCamelCase = cur_pieces[1:] else: _UpperCamelCase = cur_pieces[0][1:] cur_pieces.append(piece[-1]) new_pieces.extend(__a) else: new_pieces.append(__a) return new_pieces def UpperCAmelCase ( self , __a) -> List[Any]: '''simple docstring''' return self.sp_model.PieceToId(__a) def UpperCAmelCase ( self , __a) -> Any: '''simple docstring''' return self.sp_model.IdToPiece(__a) def UpperCAmelCase ( self , __a) -> Any: '''simple docstring''' _UpperCamelCase = ''''''.join(__a).replace(__a , ''' ''').strip() return out_string def UpperCAmelCase ( self , __a , __a = None) -> List[int]: '''simple docstring''' _UpperCamelCase = [self.sep_token_id] _UpperCamelCase = [self.cls_token_id] if token_ids_a is None: return token_ids_a + sep + cls return token_ids_a + sep + token_ids_a + sep + cls def UpperCAmelCase ( self , __a , __a = None , __a = False) -> List[int]: '''simple docstring''' if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=__a , token_ids_a=__a , already_has_special_tokens=__a) if token_ids_a is not None: return ([0] * len(__a)) + [1] + ([0] * len(__a)) + [1, 1] return ([0] * len(__a)) + [1, 1] def UpperCAmelCase ( self , __a , __a = None) -> List[int]: '''simple docstring''' _UpperCamelCase = [self.sep_token_id] _UpperCamelCase = [2] if token_ids_a is None: return len(token_ids_a + sep) * [0] + cls_segment_id return len(token_ids_a + sep) * [0] + len(token_ids_a + sep) * [1] + cls_segment_id def UpperCAmelCase ( self , __a , __a = None) -> Tuple[str]: '''simple docstring''' if not os.path.isdir(__a): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''') return _UpperCamelCase = os.path.join( __a , (filename_prefix + '''-''' if filename_prefix else '''''') + VOCAB_FILES_NAMES['''vocab_file''']) if os.path.abspath(self.vocab_file) != os.path.abspath(__a) and os.path.isfile(self.vocab_file): copyfile(self.vocab_file , __a) elif not os.path.isfile(self.vocab_file): with open(__a , '''wb''') as fi: _UpperCamelCase = self.sp_model.serialized_model_proto() fi.write(__a) return (out_vocab_file,) def UpperCAmelCase ( self , *__a , **__a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = super()._decode(*__a , **__a) _UpperCamelCase = text.replace(''' ''' , '''''').replace('''\u2582''' , ''' ''').replace('''\u2583''' , '''\n''') return text
19
"""simple docstring""" import unittest from transformers import PegasusConfig, PegasusTokenizer, is_flax_available from transformers.testing_utils import require_flax, slow from ...test_configuration_common import ConfigTester from ...test_modeling_flax_common import FlaxModelTesterMixin, ids_tensor if is_flax_available(): import os # The slow tests are often failing with OOM error on GPU # This makes JAX allocate exactly what is needed on demand, and deallocate memory that is no longer needed # but will be slower as stated here https://jax.readthedocs.io/en/latest/gpu_memory_allocation.html _a = """platform""" import jax import jax.numpy as jnp import numpy as np from transformers import FlaxPegasusForConditionalGeneration, FlaxPegasusModel @require_flax class _UpperCAmelCase: lowercase__ = PegasusConfig lowercase__ = {} lowercase__ = 'gelu' def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=False , __a=99 , __a=32 , __a=5 , __a=4 , __a=37 , __a=0.1 , __a=0.1 , __a=20 , __a=2 , __a=1 , __a=0 , ) -> int: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = eos_token_id _UpperCamelCase = pad_token_id _UpperCamelCase = bos_token_id def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size).clip(3 , self.vocab_size) _UpperCamelCase = np.expand_dims(np.array([self.eos_token_id] * self.batch_size) , 1) _UpperCamelCase = np.concatenate([input_ids, eos_tensor] , axis=1) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_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_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) _UpperCamelCase = prepare_pegasus_inputs_dict(__a , __a , __a) return config, inputs_dict def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.ones((decoder_input_ids.shape[0], max_decoder_length) , dtype='''i4''') _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , decoder_attention_mask=__a , past_key_values=outputs_cache.past_key_values , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = jnp.concatenate( [ decoder_attention_mask, jnp.zeros((decoder_attention_mask.shape[0], max_decoder_length - decoder_attention_mask.shape[1])), ] , axis=-1 , ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , past_key_values=outputs_cache.past_key_values , decoder_attention_mask=__a , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a , decoder_attention_mask=__a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=None, __snake_case=None, ) -> Union[str, Any]: """simple docstring""" if attention_mask is None: _UpperCamelCase = np.not_equal(__snake_case, config.pad_token_id ).astype(np.inta ) if decoder_attention_mask is None: _UpperCamelCase = np.concatenate( [ np.ones(decoder_input_ids[:, :1].shape, dtype=np.inta ), np.not_equal(decoder_input_ids[:, 1:], config.pad_token_id ).astype(np.inta ), ], axis=-1, ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, } @require_flax class _UpperCAmelCase( lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( FlaxPegasusForConditionalGeneration, FlaxPegasusModel, ) if is_flax_available() else () ) lowercase__ = (FlaxPegasusForConditionalGeneration,) if is_flax_available() else () lowercase__ = True lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = FlaxPegasusModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward_with_attn_mask(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = self._prepare_for_class(__a , __a) _UpperCamelCase = model_class(__a) @jax.jit def encode_jitted(__a , __a=None , **__a): return model.encode(input_ids=__a , attention_mask=__a) with self.subTest('''JIT Enabled'''): _UpperCamelCase = encode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = encode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = model_class(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids'''] , inputs_dict['''attention_mask''']) _UpperCamelCase = { '''decoder_input_ids''': inputs_dict['''decoder_input_ids'''], '''decoder_attention_mask''': inputs_dict['''decoder_attention_mask'''], '''encoder_outputs''': encoder_outputs, } @jax.jit def decode_jitted(__a , __a , __a): return model.decode( decoder_input_ids=__a , decoder_attention_mask=__a , encoder_outputs=__a , ) with self.subTest('''JIT Enabled'''): _UpperCamelCase = decode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = decode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) @slow def UpperCAmelCase ( self) -> int: '''simple docstring''' for model_class_name in self.all_model_classes: _UpperCamelCase = model_class_name.from_pretrained('''google/pegasus-large''' , from_pt=__a) _UpperCamelCase = np.ones((1, 1)) _UpperCamelCase = model(__a) self.assertIsNotNone(__a) @slow def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = FlaxPegasusForConditionalGeneration.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = PegasusTokenizer.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = [ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] _UpperCamelCase = [ '''California\'s largest electricity provider has turned off power to hundreds of thousands of customers.''', '''Pop group N-Dubz have revealed they were surprised to get four nominations for this year\'s Mobo Awards.''', ] _UpperCamelCase = tokenizer(__a , return_tensors='''np''' , truncation=__a , max_length=5_12 , padding=__a) _UpperCamelCase = model.generate(**__a , num_beams=2).sequences _UpperCamelCase = tokenizer.batch_decode(__a , skip_special_tokens=__a) assert tgt_text == decoded
19
1
"""simple docstring""" import json import os from pathlib import Path from shutil import copyfile from typing import Any, Dict, List, Optional, Tuple, Union import sentencepiece from ...tokenization_utils import PreTrainedTokenizer from ...utils import logging _a = logging.get_logger(__name__) _a = """▁""" _a = { """vocab_file""": """vocab.json""", """spm_file""": """sentencepiece.bpe.model""", } _a = { """vocab_file""": { """facebook/s2t-small-librispeech-asr""": ( """https://huggingface.co/facebook/s2t-small-librispeech-asr/resolve/main/vocab.json""" ), }, """spm_file""": { """facebook/s2t-small-librispeech-asr""": ( """https://huggingface.co/facebook/s2t-small-librispeech-asr/resolve/main/sentencepiece.bpe.model""" ) }, } _a = { """facebook/s2t-small-librispeech-asr""": 1024, } _a = ["""pt""", """fr""", """ru""", """nl""", """ro""", """it""", """es""", """de"""] _a = {"""mustc""": MUSTC_LANGS} class _UpperCAmelCase( lowerCamelCase ): lowercase__ = VOCAB_FILES_NAMES lowercase__ = PRETRAINED_VOCAB_FILES_MAP lowercase__ = MAX_MODEL_INPUT_SIZES lowercase__ = ['input_ids', 'attention_mask'] lowercase__ = [] def __init__( self , __a , __a , __a="<s>" , __a="</s>" , __a="<pad>" , __a="<unk>" , __a=False , __a=False , __a=None , __a=None , __a = None , **__a , ) -> None: '''simple docstring''' _UpperCamelCase = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( bos_token=__a , eos_token=__a , unk_token=__a , pad_token=__a , do_upper_case=__a , do_lower_case=__a , tgt_lang=__a , lang_codes=__a , sp_model_kwargs=self.sp_model_kwargs , **__a , ) _UpperCamelCase = do_upper_case _UpperCamelCase = do_lower_case _UpperCamelCase = load_json(__a) _UpperCamelCase = {v: k for k, v in self.encoder.items()} _UpperCamelCase = spm_file _UpperCamelCase = load_spm(__a , self.sp_model_kwargs) if lang_codes is not None: _UpperCamelCase = lang_codes _UpperCamelCase = LANGUAGES[lang_codes] _UpperCamelCase = [F'''<lang:{lang}>''' for lang in self.langs] _UpperCamelCase = {lang: self.sp_model.PieceToId(F'''<lang:{lang}>''') for lang in self.langs} _UpperCamelCase = self.lang_tokens _UpperCamelCase = tgt_lang if tgt_lang is not None else self.langs[0] self.set_tgt_lang_special_tokens(self._tgt_lang) else: _UpperCamelCase = {} @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return len(self.encoder) @property def UpperCAmelCase ( self) -> str: '''simple docstring''' return self._tgt_lang @tgt_lang.setter def UpperCAmelCase ( self , __a) -> None: '''simple docstring''' _UpperCamelCase = new_tgt_lang self.set_tgt_lang_special_tokens(__a) def UpperCAmelCase ( self , __a) -> None: '''simple docstring''' _UpperCamelCase = self.lang_code_to_id[tgt_lang] _UpperCamelCase = [lang_code_id] def UpperCAmelCase ( self , __a) -> List[str]: '''simple docstring''' return self.sp_model.encode(__a , out_type=__a) def UpperCAmelCase ( self , __a) -> Any: '''simple docstring''' return self.encoder.get(__a , self.encoder[self.unk_token]) def UpperCAmelCase ( self , __a) -> str: '''simple docstring''' return self.decoder.get(__a , self.unk_token) def UpperCAmelCase ( self , __a) -> str: '''simple docstring''' _UpperCamelCase = [] _UpperCamelCase = '''''' for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: _UpperCamelCase = self.sp_model.decode(__a) out_string += (decoded.upper() if self.do_upper_case else decoded) + token + " " _UpperCamelCase = [] else: current_sub_tokens.append(__a) _UpperCamelCase = self.sp_model.decode(__a) out_string += decoded.upper() if self.do_upper_case else decoded return out_string.strip() def UpperCAmelCase ( self , __a , __a=None) -> List[int]: '''simple docstring''' if token_ids_a is None: return self.prefix_tokens + token_ids_a + [self.eos_token_id] # 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.eos_token_id] def UpperCAmelCase ( self , __a , __a = None , __a = False) -> List[int]: '''simple docstring''' if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=__a , token_ids_a=__a , already_has_special_tokens=__a) _UpperCamelCase = [1] * len(self.prefix_tokens) _UpperCamelCase = [1] if token_ids_a is None: return prefix_ones + ([0] * len(__a)) + suffix_ones return prefix_ones + ([0] * len(__a)) + ([0] * len(__a)) + suffix_ones def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.encoder.copy() vocab.update(self.added_tokens_encoder) return vocab def __getstate__( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.__dict__.copy() _UpperCamelCase = None return state def __setstate__( self , __a) -> None: '''simple docstring''' _UpperCamelCase = d # for backward compatibility if not hasattr(self , '''sp_model_kwargs'''): _UpperCamelCase = {} _UpperCamelCase = load_spm(self.spm_file , self.sp_model_kwargs) def UpperCAmelCase ( self , __a , __a = None) -> Tuple[str]: '''simple docstring''' _UpperCamelCase = Path(__a) assert save_dir.is_dir(), F'''{save_directory} should be a directory''' _UpperCamelCase = save_dir / ( (filename_prefix + '''-''' if filename_prefix else '''''') + self.vocab_files_names['''vocab_file'''] ) _UpperCamelCase = save_dir / ( (filename_prefix + '''-''' if filename_prefix else '''''') + self.vocab_files_names['''spm_file'''] ) save_json(self.encoder , __a) if os.path.abspath(self.spm_file) != os.path.abspath(__a) and os.path.isfile(self.spm_file): copyfile(self.spm_file , __a) elif not os.path.isfile(self.spm_file): with open(__a , '''wb''') as fi: _UpperCamelCase = self.sp_model.serialized_model_proto() fi.write(__a) return (str(__a), str(__a)) def lowerCamelCase__ ( __snake_case, __snake_case ) -> sentencepiece.SentencePieceProcessor: """simple docstring""" _UpperCamelCase = sentencepiece.SentencePieceProcessor(**__snake_case ) spm.Load(str(__snake_case ) ) return spm def lowerCamelCase__ ( __snake_case ) -> Union[Dict, List]: """simple docstring""" with open(__snake_case, '''r''' ) as f: return json.load(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> None: """simple docstring""" with open(__snake_case, '''w''' ) as f: json.dump(__snake_case, __snake_case, indent=2 )
19
"""simple docstring""" from __future__ import annotations import unittest from transformers import 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 numpy import tensorflow as tf from transformers import ( TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST, BertConfig, DPRConfig, TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a=None , __a=0 , ) -> Any: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_mask _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = scope _UpperCamelCase = projection_dim def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: # follow test_modeling_tf_ctrl.py _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = BertConfig( 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=__a , initializer_range=self.initializer_range , ) _UpperCamelCase = DPRConfig(projection_dim=self.projection_dim , **config.to_dict()) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = TFDPRContextEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Dict: '''simple docstring''' _UpperCamelCase = TFDPRReader(config=__a) _UpperCamelCase = model(__a , attention_mask=__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)) self.parent.assertEqual(result.relevance_logits.shape , (self.batch_size,)) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) if is_tf_available() else () ) lowercase__ = {'feature-extraction': TFDPRQuestionEncoder} if is_tf_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_context_encoder(*__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_question_encoder(*__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_reader(*__a) @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRReader.from_pretrained(__a) self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained('''facebook/dpr-question_encoder-single-nq-base''') _UpperCamelCase = tf.constant( [[1_01, 75_92, 10_10, 20_03, 20_26, 38_99, 1_01_40, 10_29, 1_02]]) # [CLS] hello, is my dog cute? [SEP] _UpperCamelCase = model(__a)[0] # embedding shape = (1, 768) # compare the actual values for a slice. _UpperCamelCase = tf.constant( [ [ 0.0323_6253, 0.1275_3335, 0.1681_8509, 0.0027_9786, 0.389_6933, 0.2426_4945, 0.217_8971, -0.0233_5227, -0.0848_1959, -0.1432_4117, ] ]) self.assertTrue(numpy.allclose(output[:, :10].numpy() , expected_slice.numpy() , atol=1e-4))
19
1
"""simple docstring""" from __future__ import annotations import unittest from transformers import RoFormerConfig, 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 ( TFRoFormerForCausalLM, TFRoFormerForMaskedLM, TFRoFormerForMultipleChoice, TFRoFormerForQuestionAnswering, TFRoFormerForSequenceClassification, TFRoFormerForTokenClassification, TFRoFormerModel, ) from transformers.models.roformer.modeling_tf_roformer import ( TFRoFormerSelfAttention, TFRoFormerSinusoidalPositionalEmbedding, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a=None , ) -> List[Any]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = 13 _UpperCamelCase = 7 _UpperCamelCase = True _UpperCamelCase = True _UpperCamelCase = True _UpperCamelCase = True _UpperCamelCase = 99 _UpperCamelCase = 32 _UpperCamelCase = 2 _UpperCamelCase = 4 _UpperCamelCase = 37 _UpperCamelCase = '''gelu''' _UpperCamelCase = 0.1 _UpperCamelCase = 0.1 _UpperCamelCase = 5_12 _UpperCamelCase = 16 _UpperCamelCase = 2 _UpperCamelCase = 0.02 _UpperCamelCase = 3 _UpperCamelCase = 4 _UpperCamelCase = None def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = RoFormerConfig( 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 , return_dict=__a , ) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = TFRoFormerModel(config=__a) _UpperCamelCase = {'''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids} _UpperCamelCase = [input_ids, input_mask] _UpperCamelCase = model(__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = True _UpperCamelCase = TFRoFormerForCausalLM(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a)['''logits'''] self.parent.assertListEqual( list(prediction_scores.numpy().shape) , [self.batch_size, self.seq_length, self.vocab_size]) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> int: '''simple docstring''' _UpperCamelCase = TFRoFormerForMaskedLM(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = self.num_labels _UpperCamelCase = TFRoFormerForSequenceClassification(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.num_choices _UpperCamelCase = TFRoFormerForMultipleChoice(config=__a) _UpperCamelCase = tf.tile(tf.expand_dims(__a , 1) , (1, self.num_choices, 1)) _UpperCamelCase = tf.tile(tf.expand_dims(__a , 1) , (1, self.num_choices, 1)) _UpperCamelCase = tf.tile(tf.expand_dims(__a , 1) , (1, self.num_choices, 1)) _UpperCamelCase = { '''input_ids''': multiple_choice_inputs_ids, '''attention_mask''': multiple_choice_input_mask, '''token_type_ids''': multiple_choice_token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_choices)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.num_labels _UpperCamelCase = TFRoFormerForTokenClassification(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> str: '''simple docstring''' _UpperCamelCase = TFRoFormerForQuestionAnswering(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__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 UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids, '''token_type_ids''': token_type_ids, '''attention_mask''': input_mask} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFRoFormerModel, TFRoFormerForCausalLM, TFRoFormerForMaskedLM, TFRoFormerForQuestionAnswering, TFRoFormerForSequenceClassification, TFRoFormerForTokenClassification, TFRoFormerForMultipleChoice, ) if is_tf_available() else () ) lowercase__ = ( { 'feature-extraction': TFRoFormerModel, 'fill-mask': TFRoFormerForMaskedLM, 'question-answering': TFRoFormerForQuestionAnswering, 'text-classification': TFRoFormerForSequenceClassification, 'text-generation': TFRoFormerForCausalLM, 'token-classification': TFRoFormerForTokenClassification, 'zero-shot': TFRoFormerForSequenceClassification, } if is_tf_available() else {} ) lowercase__ = False lowercase__ = False def UpperCAmelCase ( self , __a , __a , __a , __a , __a) -> List[str]: '''simple docstring''' if pipeline_test_casse_name == "TextGenerationPipelineTests": return True return False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = TFRoFormerModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> str: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_lm(*__a) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_lm_head(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_multiple_choice(*__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_question_answering(*__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_sequence_classification(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification(*__a) @slow def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = TFRoFormerModel.from_pretrained('''junnyu/roformer_chinese_base''') self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = TFRoFormerForMaskedLM.from_pretrained('''junnyu/roformer_chinese_base''') _UpperCamelCase = tf.constant([[0, 1, 2, 3, 4, 5]]) _UpperCamelCase = model(__a)[0] # TODO Replace vocab size _UpperCamelCase = 5_00_00 _UpperCamelCase = [1, 6, vocab_size] self.assertEqual(output.shape , __a) print(output[:, :3, :3]) # TODO Replace values below with what was printed above. _UpperCamelCase = tf.constant( [ [ [-0.1205_3341, -1.026_4901, 0.2922_1946], [-1.513_3783, 0.19_7433, 0.1519_0607], [-5.013_5403, -3.90_0256, -0.8403_8764], ] ]) tf.debugging.assert_near(output[:, :3, :3] , __a , atol=1e-4) @require_tf class _UpperCAmelCase( unittest.TestCase ): lowercase__ = 1E-4 def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = tf.constant([[4, 10]]) _UpperCamelCase = TFRoFormerSinusoidalPositionalEmbedding(num_positions=6 , embedding_dim=6) _UpperCamelCase = emba(input_ids.shape) _UpperCamelCase = tf.constant( [[0.0000, 0.0000, 0.0000, 1.0000, 1.0000, 1.0000], [0.8415, 0.0464, 0.0022, 0.5403, 0.9989, 1.0000]]) tf.debugging.assert_near(__a , __a , atol=self.tolerance) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = tf.constant( [ [0.0000, 0.0000, 0.0000, 0.0000, 0.0000], [0.8415, 0.8219, 0.8020, 0.7819, 0.7617], [0.9093, 0.9364, 0.9581, 0.9749, 0.9870], ]) _UpperCamelCase = TFRoFormerSinusoidalPositionalEmbedding(num_positions=5_12 , embedding_dim=5_12) emba([2, 16, 5_12]) _UpperCamelCase = emba.weight[:3, :5] tf.debugging.assert_near(__a , __a , atol=self.tolerance) @require_tf class _UpperCAmelCase( unittest.TestCase ): lowercase__ = 1E-4 def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' # 2,12,16,64 _UpperCamelCase = tf.reshape(tf.range(2 * 12 * 16 * 64 , dtype=tf.floataa) , shape=(2, 12, 16, 64)) / 1_00 _UpperCamelCase = -tf.reshape(tf.range(2 * 12 * 16 * 64 , dtype=tf.floataa) , shape=(2, 12, 16, 64)) / 1_00 _UpperCamelCase = TFRoFormerSinusoidalPositionalEmbedding(num_positions=32 , embedding_dim=64) _UpperCamelCase = embed_positions([2, 16, 7_68])[None, None, :, :] _UpperCamelCase , _UpperCamelCase = TFRoFormerSelfAttention.apply_rotary_position_embeddings( __a , __a , __a) _UpperCamelCase = tf.constant( [ [0.0000, 0.0100, 0.0200, 0.0300, 0.0400, 0.0500, 0.0600, 0.0700], [-0.2012, 0.8897, 0.0263, 0.9401, 0.2074, 0.9463, 0.3481, 0.9343], [-1.7057, 0.6271, -1.2145, 1.3897, -0.6303, 1.7647, -0.1173, 1.8985], [-2.1731, -1.6397, -2.7358, 0.2854, -2.1840, 1.7183, -1.3018, 2.4871], [0.2717, -3.6173, -2.9206, -2.1988, -3.6638, 0.3858, -2.9155, 2.2980], [3.9859, -2.1580, -0.7984, -4.4904, -4.1181, -2.0252, -4.4782, 1.1253], ]) _UpperCamelCase = tf.constant( [ [0.0000, -0.0100, -0.0200, -0.0300, -0.0400, -0.0500, -0.0600, -0.0700], [0.2012, -0.8897, -0.0263, -0.9401, -0.2074, -0.9463, -0.3481, -0.9343], [1.7057, -0.6271, 1.2145, -1.3897, 0.6303, -1.7647, 0.1173, -1.8985], [2.1731, 1.6397, 2.7358, -0.2854, 2.1840, -1.7183, 1.3018, -2.4871], [-0.2717, 3.6173, 2.9206, 2.1988, 3.6638, -0.3858, 2.9155, -2.2980], [-3.9859, 2.1580, 0.7984, 4.4904, 4.1181, 2.0252, 4.4782, -1.1253], ]) tf.debugging.assert_near(query_layer[0, 0, :6, :8] , __a , atol=self.tolerance) tf.debugging.assert_near(key_layer[0, 0, :6, :8] , __a , atol=self.tolerance)
19
"""simple docstring""" import argparse import json from typing import List from ltp import LTP from transformers.models.bert.tokenization_bert import BertTokenizer def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if ( (cp >= 0x4E00 and cp <= 0x9FFF) or (cp >= 0x3400 and cp <= 0x4DBF) # or (cp >= 0x2_0000 and cp <= 0x2_A6DF) # or (cp >= 0x2_A700 and cp <= 0x2_B73F) # or (cp >= 0x2_B740 and cp <= 0x2_B81F) # or (cp >= 0x2_B820 and cp <= 0x2_CEAF) # or (cp >= 0xF900 and cp <= 0xFAFF) or (cp >= 0x2_F800 and cp <= 0x2_FA1F) # ): # return True return False def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" for char in word: _UpperCamelCase = ord(__snake_case ) if not _is_chinese_char(__snake_case ): return 0 return 1 def lowerCamelCase__ ( __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = set() for token in tokens: _UpperCamelCase = len(__snake_case ) > 1 and is_chinese(__snake_case ) if chinese_word: word_set.add(__snake_case ) _UpperCamelCase = list(__snake_case ) return word_list def lowerCamelCase__ ( __snake_case, __snake_case ) -> int: """simple docstring""" if not chinese_word_set: return bert_tokens _UpperCamelCase = max([len(__snake_case ) for w in chinese_word_set] ) _UpperCamelCase = bert_tokens _UpperCamelCase , _UpperCamelCase = 0, len(__snake_case ) while start < end: _UpperCamelCase = True if is_chinese(bert_word[start] ): _UpperCamelCase = min(end - start, __snake_case ) for i in range(__snake_case, 1, -1 ): _UpperCamelCase = ''''''.join(bert_word[start : start + i] ) if whole_word in chinese_word_set: for j in range(start + 1, start + i ): _UpperCamelCase = '''##''' + bert_word[j] _UpperCamelCase = start + i _UpperCamelCase = False break if single_word: start += 1 return bert_word def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = ltp_tokenizer.pipeline(lines[i : i + 1_00], tasks=['''cws'''] ).cws _UpperCamelCase = [get_chinese_word(__snake_case ) for r in res] ltp_res.extend(__snake_case ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = bert_tokenizer(lines[i : i + 1_00], add_special_tokens=__snake_case, truncation=__snake_case, max_length=5_12 ) bert_res.extend(res['''input_ids'''] ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for input_ids, chinese_word in zip(__snake_case, __snake_case ): _UpperCamelCase = [] for id in input_ids: _UpperCamelCase = bert_tokenizer._convert_id_to_token(__snake_case ) input_tokens.append(__snake_case ) _UpperCamelCase = add_sub_symbol(__snake_case, __snake_case ) _UpperCamelCase = [] # We only save pos of chinese subwords start with ##, which mean is part of a whole word. for i, token in enumerate(__snake_case ): if token[:2] == "##": _UpperCamelCase = token[2:] # save chinese tokens' pos if len(__snake_case ) == 1 and _is_chinese_char(ord(__snake_case ) ): ref_id.append(__snake_case ) ref_ids.append(__snake_case ) assert len(__snake_case ) == len(__snake_case ) return ref_ids def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" with open(args.file_name, '''r''', encoding='''utf-8''' ) as f: _UpperCamelCase = f.readlines() _UpperCamelCase = [line.strip() for line in data if len(__snake_case ) > 0 and not line.isspace()] # avoid delimiter like '\u2029' _UpperCamelCase = LTP(args.ltp ) # faster in GPU device _UpperCamelCase = BertTokenizer.from_pretrained(args.bert ) _UpperCamelCase = prepare_ref(__snake_case, __snake_case, __snake_case ) with open(args.save_path, '''w''', encoding='''utf-8''' ) as f: _UpperCamelCase = [json.dumps(__snake_case ) + '''\n''' for ref in ref_ids] f.writelines(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser(description="""prepare_chinese_ref""") parser.add_argument( """--file_name""", required=False, type=str, default="""./resources/chinese-demo.txt""", help="""file need process, same as training data in lm""", ) parser.add_argument( """--ltp""", required=False, type=str, default="""./resources/ltp""", help="""resources for LTP tokenizer, usually a path""", ) parser.add_argument( """--bert""", required=False, type=str, default="""./resources/robert""", help="""resources for Bert tokenizer""", ) parser.add_argument( """--save_path""", required=False, type=str, default="""./resources/ref.txt""", help="""path to save res""", ) _a = parser.parse_args() main(args)
19
1
"""simple docstring""" from __future__ import annotations import unittest from transformers import 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 numpy import tensorflow as tf from transformers import ( TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST, BertConfig, DPRConfig, TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a=None , __a=0 , ) -> Any: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_mask _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = scope _UpperCamelCase = projection_dim def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: # follow test_modeling_tf_ctrl.py _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = BertConfig( 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=__a , initializer_range=self.initializer_range , ) _UpperCamelCase = DPRConfig(projection_dim=self.projection_dim , **config.to_dict()) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = TFDPRContextEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Dict: '''simple docstring''' _UpperCamelCase = TFDPRReader(config=__a) _UpperCamelCase = model(__a , attention_mask=__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)) self.parent.assertEqual(result.relevance_logits.shape , (self.batch_size,)) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) if is_tf_available() else () ) lowercase__ = {'feature-extraction': TFDPRQuestionEncoder} if is_tf_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_context_encoder(*__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_question_encoder(*__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_reader(*__a) @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRReader.from_pretrained(__a) self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained('''facebook/dpr-question_encoder-single-nq-base''') _UpperCamelCase = tf.constant( [[1_01, 75_92, 10_10, 20_03, 20_26, 38_99, 1_01_40, 10_29, 1_02]]) # [CLS] hello, is my dog cute? [SEP] _UpperCamelCase = model(__a)[0] # embedding shape = (1, 768) # compare the actual values for a slice. _UpperCamelCase = tf.constant( [ [ 0.0323_6253, 0.1275_3335, 0.1681_8509, 0.0027_9786, 0.389_6933, 0.2426_4945, 0.217_8971, -0.0233_5227, -0.0848_1959, -0.1432_4117, ] ]) self.assertTrue(numpy.allclose(output[:, :10].numpy() , expected_slice.numpy() , atol=1e-4))
19
"""simple docstring""" import heapq def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" _UpperCamelCase = [] # for each node and his adjacency list add them and the rank of the node to queue # using heapq module the queue will be filled like a Priority Queue # heapq works with a min priority queue, so I used -1*len(v) to build it for key, value in graph.items(): # O(log(n)) heapq.heappush(__snake_case, [-1 * len(__snake_case ), (key, value)] ) # chosen_vertices = set of chosen vertices _UpperCamelCase = set() # while queue isn't empty and there are still edges # (queue[0][0] is the rank of the node with max rank) while queue and queue[0][0] != 0: # extract vertex with max rank from queue and add it to chosen_vertices _UpperCamelCase = heapq.heappop(__snake_case )[1][0] chosen_vertices.add(__snake_case ) # Remove all arcs adjacent to argmax for elem in queue: # if v haven't adjacent node, skip if elem[0] == 0: continue # if argmax is reachable from elem # remove argmax from elem's adjacent list and update his rank if argmax in elem[1][1]: _UpperCamelCase = elem[1][1].index(__snake_case ) del elem[1][1][index] elem[0] += 1 # re-order the queue heapq.heapify(__snake_case ) return chosen_vertices if __name__ == "__main__": import doctest doctest.testmod() _a = {0: [1, 3], 1: [0, 3], 2: [0, 3, 4], 3: [0, 1, 2], 4: [2, 3]} print(F"""Minimum vertex cover:\n{greedy_min_vertex_cover(graph)}""")
19
1
"""simple docstring""" _a = """ # 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 """ _a = [{"""type""": """code""", """content""": INSTALL_CONTENT}] _a = { """{processor_class}""": """FakeProcessorClass""", """{model_class}""": """FakeModelClass""", """{object_class}""": """FakeObjectClass""", }
19
"""simple docstring""" from datasets.utils.patching import _PatchedModuleObj, patch_submodule from . import _test_patching def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" import os as original_os from os import path as original_path from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join _UpperCamelCase = '''__test_patch_submodule_mock__''' with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): # Every way to access os.path.join must be patched, and the rest must stay untouched # check os.path.join assert isinstance(_test_patching.os, _PatchedModuleObj ) assert isinstance(_test_patching.os.path, _PatchedModuleObj ) assert _test_patching.os.path.join is mock # check path.join assert isinstance(_test_patching.path, _PatchedModuleObj ) assert _test_patching.path.join is mock # check join assert _test_patching.join is mock # check that the other attributes are untouched assert _test_patching.os.rename is original_rename assert _test_patching.path.dirname is original_dirname assert _test_patching.os.path.dirname is original_dirname # Even renamed modules or objects must be patched # check renamed_os.path.join assert isinstance(_test_patching.renamed_os, _PatchedModuleObj ) assert isinstance(_test_patching.renamed_os.path, _PatchedModuleObj ) assert _test_patching.renamed_os.path.join is mock # check renamed_path.join assert isinstance(_test_patching.renamed_path, _PatchedModuleObj ) assert _test_patching.renamed_path.join is mock # check renamed_join assert _test_patching.renamed_join is mock # check that the other attributes are untouched assert _test_patching.renamed_os.rename is original_rename assert _test_patching.renamed_path.dirname is original_dirname assert _test_patching.renamed_os.path.dirname is original_dirname # check that everthing is back to normal when the patch is over assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" assert _test_patching.open is open _UpperCamelCase = '''__test_patch_submodule_builtin_mock__''' # _test_patching has "open" in its globals assert _test_patching.open is open with patch_submodule(_test_patching, '''open''', __snake_case ): assert _test_patching.open is mock # check that everthing is back to normal when the patch is over assert _test_patching.open is open def lowerCamelCase__ ( ) -> Union[str, Any]: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_mock__''' with patch_submodule(_test_patching, '''pandas.read_csv''', __snake_case ): pass def lowerCamelCase__ ( ) -> Dict: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_builtin_mock__''' # _test_patching doesn't have "len" in its globals assert getattr(_test_patching, '''len''', __snake_case ) is None with patch_submodule(_test_patching, '''len''', __snake_case ): assert _test_patching.len is mock assert _test_patching.len is len def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_start_and_stop_mock__''' _UpperCamelCase = patch_submodule(_test_patching, '''open''', __snake_case ) assert _test_patching.open is open patch.start() assert _test_patching.open is mock patch.stop() assert _test_patching.open is open def lowerCamelCase__ ( ) -> Optional[int]: """simple docstring""" from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join _UpperCamelCase = '''__test_patch_submodule_successive_join__''' _UpperCamelCase = '''__test_patch_submodule_successive_dirname__''' _UpperCamelCase = '''__test_patch_submodule_successive_rename__''' assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename # try another order with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename def lowerCamelCase__ ( ) -> str: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_doesnt_exist_mock__''' with patch_submodule(_test_patching, '''__module_that_doesn_exist__.__attribute_that_doesn_exist__''', __snake_case ): pass with patch_submodule(_test_patching, '''os.__attribute_that_doesn_exist__''', __snake_case ): pass
19
1
"""simple docstring""" import argparse import os import re import packaging.version _a = """examples/""" _a = { """examples""": (re.compile(R"""^check_min_version\(\"[^\"]+\"\)\s*$""", re.MULTILINE), """check_min_version(\"VERSION\")\n"""), """init""": (re.compile(R"""^__version__\s+=\s+\"([^\"]+)\"\s*$""", re.MULTILINE), """__version__ = \"VERSION\"\n"""), """setup""": (re.compile(R"""^(\s*)version\s*=\s*\"[^\"]+\",""", re.MULTILINE), R"""\1version=\"VERSION\","""), """doc""": (re.compile(R"""^(\s*)release\s*=\s*\"[^\"]+\"$""", re.MULTILINE), """release = \"VERSION\"\n"""), } _a = { """init""": """src/transformers/__init__.py""", """setup""": """setup.py""", } _a = """README.md""" def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> Optional[Any]: """simple docstring""" with open(__snake_case, '''r''', encoding='''utf-8''', newline='''\n''' ) as f: _UpperCamelCase = f.read() _UpperCamelCase , _UpperCamelCase = REPLACE_PATTERNS[pattern] _UpperCamelCase = replace.replace('''VERSION''', __snake_case ) _UpperCamelCase = re_pattern.sub(__snake_case, __snake_case ) with open(__snake_case, '''w''', encoding='''utf-8''', newline='''\n''' ) as f: f.write(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> List[str]: """simple docstring""" for folder, directories, fnames in os.walk(__snake_case ): # Removing some of the folders with non-actively maintained examples from the walk if "research_projects" in directories: directories.remove('''research_projects''' ) if "legacy" in directories: directories.remove('''legacy''' ) for fname in fnames: if fname.endswith('''.py''' ): update_version_in_file(os.path.join(__snake_case, __snake_case ), __snake_case, pattern='''examples''' ) def lowerCamelCase__ ( __snake_case, __snake_case=False ) -> str: """simple docstring""" for pattern, fname in REPLACE_FILES.items(): update_version_in_file(__snake_case, __snake_case, __snake_case ) if not patch: update_version_in_examples(__snake_case ) def lowerCamelCase__ ( ) -> Union[str, Any]: """simple docstring""" _UpperCamelCase = '''🤗 Transformers currently provides the following architectures''' _UpperCamelCase = '''1. Want to contribute a new model?''' with open(__snake_case, '''r''', encoding='''utf-8''', newline='''\n''' ) as f: _UpperCamelCase = f.readlines() # Find the start of the list. _UpperCamelCase = 0 while not lines[start_index].startswith(_start_prompt ): start_index += 1 start_index += 1 _UpperCamelCase = start_index # Update the lines in the model list. while not lines[index].startswith(_end_prompt ): if lines[index].startswith('''1.''' ): _UpperCamelCase = lines[index].replace( '''https://huggingface.co/docs/transformers/main/model_doc''', '''https://huggingface.co/docs/transformers/model_doc''', ) index += 1 with open(__snake_case, '''w''', encoding='''utf-8''', newline='''\n''' ) as f: f.writelines(__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" with open(REPLACE_FILES['''init'''], '''r''' ) as f: _UpperCamelCase = f.read() _UpperCamelCase = REPLACE_PATTERNS['''init'''][0].search(__snake_case ).groups()[0] return packaging.version.parse(__snake_case ) def lowerCamelCase__ ( __snake_case=False ) -> Optional[int]: """simple docstring""" _UpperCamelCase = get_version() if patch and default_version.is_devrelease: raise ValueError('''Can\'t create a patch version from the dev branch, checkout a released version!''' ) if default_version.is_devrelease: _UpperCamelCase = default_version.base_version elif patch: _UpperCamelCase = F'''{default_version.major}.{default_version.minor}.{default_version.micro + 1}''' else: _UpperCamelCase = F'''{default_version.major}.{default_version.minor + 1}.0''' # Now let's ask nicely if that's the right one. _UpperCamelCase = input(F'''Which version are you releasing? [{default_version}]''' ) if len(__snake_case ) == 0: _UpperCamelCase = default_version print(F'''Updating version to {version}.''' ) global_version_update(__snake_case, patch=__snake_case ) if not patch: print('''Cleaning main README, don\'t forget to run `make fix-copies`.''' ) clean_main_ref_in_model_list() def lowerCamelCase__ ( ) -> str: """simple docstring""" _UpperCamelCase = get_version() _UpperCamelCase = F'''{current_version.major}.{current_version.minor + 1}.0.dev0''' _UpperCamelCase = current_version.base_version # Check with the user we got that right. _UpperCamelCase = input(F'''Which version are we developing now? [{dev_version}]''' ) if len(__snake_case ) == 0: _UpperCamelCase = dev_version print(F'''Updating version to {version}.''' ) global_version_update(__snake_case ) print('''Cleaning main README, don\'t forget to run `make fix-copies`.''' ) clean_main_ref_in_model_list() if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--post_release""", action="""store_true""", help="""Whether this is pre or post release.""") parser.add_argument("""--patch""", action="""store_true""", help="""Whether or not this is a patch release.""") _a = parser.parse_args() if not args.post_release: pre_release_work(patch=args.patch) elif args.patch: print("""Nothing to do after a patch :-)""") else: post_release_work()
19
"""simple docstring""" import argparse import json from collections import OrderedDict from pathlib import Path import requests import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import PoolFormerConfig, PoolFormerForImageClassification, PoolFormerImageProcessor from transformers.utils import logging logging.set_verbosity_info() _a = logging.get_logger(__name__) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = original_name.split('''.''' )[0] _UpperCamelCase = key.split('''.''' ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 2] ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 1] ) _UpperCamelCase = orig_block_num - offset _UpperCamelCase = key.replace(F'''{orig_block_num}.{layer_num}.{original_name}''', F'''block.{new_block_num}.{layer_num}.{new_name}''' ) return key def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase = OrderedDict() _UpperCamelCase , _UpperCamelCase = 0, 0 for key, value in state_dict.items(): if key.startswith('''network''' ): _UpperCamelCase = key.replace('''network''', '''poolformer.encoder''' ) if "proj" in key: # Works for the first embedding as well as the internal embedding layers if key.endswith('''bias''' ) and "patch_embed" not in key: patch_emb_offset += 1 _UpperCamelCase = key[: key.find('''proj''' )] _UpperCamelCase = key.replace(__snake_case, F'''patch_embeddings.{total_embed_found}.''' ) _UpperCamelCase = key.replace('''proj''', '''projection''' ) if key.endswith('''bias''' ): total_embed_found += 1 if "patch_embeddings" in key: _UpperCamelCase = '''poolformer.encoder.''' + key if "mlp.fc1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc1''', '''output.conv1''' ) if "mlp.fc2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc2''', '''output.conv2''' ) if "norm1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm1''', '''before_norm''' ) if "norm2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm2''', '''after_norm''' ) if "layer_scale_1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_1''', '''layer_scale_1''' ) if "layer_scale_2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_2''', '''layer_scale_2''' ) if "head" in key: _UpperCamelCase = key.replace('''head''', '''classifier''' ) _UpperCamelCase = value return new_state_dict def lowerCamelCase__ ( ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = '''http://images.cocodataset.org/val2017/000000039769.jpg''' _UpperCamelCase = Image.open(requests.get(__snake_case, stream=__snake_case ).raw ) return image @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" _UpperCamelCase = PoolFormerConfig() # set attributes based on model_name _UpperCamelCase = '''huggingface/label-files''' _UpperCamelCase = model_name[-3:] _UpperCamelCase = 10_00 _UpperCamelCase = '''imagenet-1k-id2label.json''' _UpperCamelCase = (1, 10_00) # set config attributes _UpperCamelCase = json.load(open(hf_hub_download(__snake_case, __snake_case, repo_type='''dataset''' ), '''r''' ) ) _UpperCamelCase = {int(__snake_case ): v for k, v in idalabel.items()} _UpperCamelCase = idalabel _UpperCamelCase = {v: k for k, v in idalabel.items()} if size == "s12": _UpperCamelCase = [2, 2, 6, 2] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s24": _UpperCamelCase = [4, 4, 12, 4] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.9 elif size == "m36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 elif size == "m48": _UpperCamelCase = [8, 8, 24, 8] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 else: raise ValueError(F'''Size {size} not supported''' ) # load image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) # Prepare image _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__snake_case, return_tensors='''pt''' ).pixel_values logger.info(F'''Converting model {model_name}...''' ) # load original state dict _UpperCamelCase = torch.load(__snake_case, map_location=torch.device('''cpu''' ) ) # rename keys _UpperCamelCase = rename_keys(__snake_case ) # create HuggingFace model and load state dict _UpperCamelCase = PoolFormerForImageClassification(__snake_case ) model.load_state_dict(__snake_case ) model.eval() # Define image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) _UpperCamelCase = image_processor(images=prepare_img(), return_tensors='''pt''' ).pixel_values # forward pass _UpperCamelCase = model(__snake_case ) _UpperCamelCase = outputs.logits # define expected logit slices for different models if size == "s12": _UpperCamelCase = torch.tensor([-0.3045, -0.6758, -0.4869] ) elif size == "s24": _UpperCamelCase = torch.tensor([0.4402, -0.1374, -0.8045] ) elif size == "s36": _UpperCamelCase = torch.tensor([-0.6080, -0.5133, -0.5898] ) elif size == "m36": _UpperCamelCase = torch.tensor([0.3952, 0.2263, -1.2668] ) elif size == "m48": _UpperCamelCase = torch.tensor([0.1167, -0.0656, -0.3423] ) else: raise ValueError(F'''Size {size} not supported''' ) # verify logits assert logits.shape == expected_shape assert torch.allclose(logits[0, :3], __snake_case, atol=1e-2 ) # finally, save model and image processor logger.info(F'''Saving PyTorch model and image processor to {pytorch_dump_folder_path}...''' ) Path(__snake_case ).mkdir(exist_ok=__snake_case ) model.save_pretrained(__snake_case ) print(F'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument( """--model_name""", default="""poolformer_s12""", type=str, help="""Name of the model you'd like to convert.""", ) parser.add_argument( """--checkpoint_path""", default=None, type=str, help="""Path to the original PyTorch checkpoint (.pth file).""" ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the folder to output PyTorch model.""" ) _a = parser.parse_args() convert_poolformer_checkpoint(args.model_name, args.checkpoint_path, args.pytorch_dump_folder_path)
19
1
"""simple docstring""" from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_sentencepiece_available, is_tokenizers_available, is_torch_available, ) _a = {} try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = ["""NllbTokenizer"""] try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = ["""NllbTokenizerFast"""] if TYPE_CHECKING: try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_nllb import NllbTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_nllb_fast import NllbTokenizerFast else: import sys _a = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
19
"""simple docstring""" import torch from diffusers import DPMSolverSDEScheduler from diffusers.utils import torch_device from diffusers.utils.testing_utils import require_torchsde from .test_schedulers import SchedulerCommonTest @require_torchsde class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DPMSolverSDEScheduler,) lowercase__ = 10 def UpperCAmelCase ( self , **__a) -> int: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 11_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''noise_sampler_seed''': 0, } config.update(**__a) return config def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' for timesteps in [10, 50, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for beta_start, beta_end in zip([0.0_0001, 0.0001, 0.001] , [0.0002, 0.002, 0.02]): self.check_over_configs(beta_start=__a , beta_end=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for schedule in ["linear", "scaled_linear"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> str: '''simple docstring''' for prediction_type in ["epsilon", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.47_8210_4492_1875) < 1e-2 assert abs(result_mean.item() - 0.2178_7059_6456_5277) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3521_1181_6406) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9068_9229_9652) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 124.77_1492_0043_9453) < 1e-2 assert abs(result_mean.item() - 0.1_6226_2890_1481_6284) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 128.1_6633_6059_5703) < 1e-2 assert abs(result_mean.item() - 0.1_6688_3260_0116_7297) < 1e-3 else: assert abs(result_sum.item() - 119.8_4875_4882_8125) < 1e-2 assert abs(result_mean.item() - 0.1560_5306_6253_6621) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.46_9573_9746_0938) < 1e-2 assert abs(result_mean.item() - 0.2_1805_9346_0798_2635) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3536_3769_5312) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9083_8241_5771) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a , use_karras_sigmas=__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 176.66_9741_3574_2188) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 177.63_6535_6445_3125) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 else: assert abs(result_sum.item() - 170.3_1352_2338_8672) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2
19
1
"""simple docstring""" import random def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = a[left_index] _UpperCamelCase = left_index + 1 for j in range(left_index + 1, __snake_case ): if a[j] < pivot: _UpperCamelCase , _UpperCamelCase = a[i], a[j] i += 1 _UpperCamelCase , _UpperCamelCase = a[i - 1], a[left_index] return i - 1 def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" if left < right: _UpperCamelCase = random.randint(__snake_case, right - 1 ) _UpperCamelCase , _UpperCamelCase = ( a[left], a[pivot], ) # switches the pivot with the left most bound _UpperCamelCase = partition(__snake_case, __snake_case, __snake_case ) quick_sort_random( __snake_case, __snake_case, __snake_case ) # recursive quicksort to the left of the pivot point quick_sort_random( __snake_case, pivot_index + 1, __snake_case ) # recursive quicksort to the right of the pivot point def lowerCamelCase__ ( ) -> str: """simple docstring""" _UpperCamelCase = input('''Enter numbers separated by a comma:\n''' ).strip() _UpperCamelCase = [int(__snake_case ) for item in user_input.split(''',''' )] quick_sort_random(__snake_case, 0, len(__snake_case ) ) print(__snake_case ) if __name__ == "__main__": main()
19
"""simple docstring""" 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, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, ChannelDimension, ImageInput, PILImageResampling, is_batched, to_numpy_array, valid_images, ) from ...utils import TensorType, logging _a = logging.get_logger(__name__) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['pixel_values'] def __init__( self , __a = True , __a = None , __a = PILImageResampling.BICUBIC , __a = True , __a = True , __a = 1 / 2_55 , __a = None , __a = True , __a = None , __a = None , **__a , ) -> None: '''simple docstring''' super().__init__(**__a) _UpperCamelCase = size if size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a) _UpperCamelCase = crop_size if crop_size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a , default_to_square=__a , param_name='''crop_size''') _UpperCamelCase = do_resize _UpperCamelCase = do_rescale _UpperCamelCase = do_normalize _UpperCamelCase = do_center_crop _UpperCamelCase = crop_size _UpperCamelCase = size _UpperCamelCase = resample _UpperCamelCase = rescale_factor _UpperCamelCase = image_mean if image_mean is not None else IMAGENET_DEFAULT_MEAN _UpperCamelCase = image_std if image_std is not None else IMAGENET_DEFAULT_STD def UpperCAmelCase ( self , __a , __a , __a = PILImageResampling.BILINEAR , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) if "shortest_edge" in size: _UpperCamelCase = get_resize_output_image_size(__a , size=size['''shortest_edge'''] , default_to_square=__a) # size = get_resize_output_image_size(image, size["shortest_edge"], size["longest_edge"]) elif "height" in size and "width" in size: _UpperCamelCase = (size['''height'''], size['''width''']) else: raise ValueError(F'''Size must contain \'height\' and \'width\' keys or \'shortest_edge\' key. Got {size.keys()}''') return resize(__a , size=__a , resample=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) 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(__a , size=(size['''height'''], size['''width''']) , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a) -> np.ndarray: '''simple docstring''' return rescale(__a , scale=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' return normalize(__a , mean=__a , std=__a , data_format=__a , **__a) def UpperCAmelCase ( 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 , **__a , ) -> BatchFeature: '''simple docstring''' _UpperCamelCase = do_resize if do_resize is not None else self.do_resize _UpperCamelCase = do_rescale if do_rescale is not None else self.do_rescale _UpperCamelCase = do_normalize if do_normalize is not None else self.do_normalize _UpperCamelCase = do_center_crop if do_center_crop is not None else self.do_center_crop _UpperCamelCase = crop_size if crop_size is not None else self.crop_size _UpperCamelCase = get_size_dict(__a , param_name='''crop_size''' , default_to_square=__a) _UpperCamelCase = resample if resample is not None else self.resample _UpperCamelCase = rescale_factor if rescale_factor is not None else self.rescale_factor _UpperCamelCase = image_mean if image_mean is not None else self.image_mean _UpperCamelCase = image_std if image_std is not None else self.image_std _UpperCamelCase = size if size is not None else self.size _UpperCamelCase = get_size_dict(__a) if not is_batched(__a): _UpperCamelCase = [images] 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_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.''') # All transformations expect numpy arrays. _UpperCamelCase = [to_numpy_array(__a) for image in images] if do_resize: _UpperCamelCase = [self.resize(image=__a , size=__a , resample=__a) for image in images] if do_center_crop: _UpperCamelCase = [self.center_crop(image=__a , size=__a) for image in images] if do_rescale: _UpperCamelCase = [self.rescale(image=__a , scale=__a) for image in images] if do_normalize: _UpperCamelCase = [self.normalize(image=__a , mean=__a , std=__a) for image in images] _UpperCamelCase = [to_channel_dimension_format(__a , __a) for image in images] _UpperCamelCase = {'''pixel_values''': images} return BatchFeature(data=__a , tensor_type=__a)
19
1
"""simple docstring""" # Lint as: python3 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 _a = get_logger() _a = None class _UpperCAmelCase( TensorFormatter[Mapping, 'jax.Array', Mapping] ): def __init__( self , __a=None , __a=None , **__a) -> str: '''simple docstring''' super().__init__(features=__a) import jax from jaxlib.xla_client import Device if isinstance(__a , __a): raise ValueError( F'''Expected {device} to be a `str` not {type(__a)}, 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`.''') _UpperCamelCase = device if isinstance(__a , __a) 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: _UpperCamelCase = 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])}.''') _UpperCamelCase = str(jax.devices()[0]) _UpperCamelCase = jnp_array_kwargs @staticmethod def UpperCAmelCase ( ) -> Dict[str, "jaxlib.xla_extension.Device"]: '''simple docstring''' import jax return {str(__a): device for device in jax.devices()} def UpperCAmelCase ( self , __a) -> Any: '''simple docstring''' import jax import jax.numpy as jnp if isinstance(__a , __a) and column: if all( isinstance(__a , jax.Array) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column): return jnp.stack(__a , axis=0) return column def UpperCAmelCase ( self , __a) -> Dict: '''simple docstring''' import jax import jax.numpy as jnp if isinstance(__a , (str, bytes, type(__a))): return value elif isinstance(__a , (np.character, np.ndarray)) and np.issubdtype(value.dtype , np.character): return value.tolist() _UpperCamelCase = {} if isinstance(__a , (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: _UpperCamelCase = {'''dtype''': jnp.intaa} else: _UpperCamelCase = {'''dtype''': jnp.intaa} elif isinstance(__a , (np.number, np.ndarray)) and np.issubdtype(value.dtype , np.floating): _UpperCamelCase = {'''dtype''': jnp.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(__a , PIL.Image.Image): _UpperCamelCase = np.asarray(__a) # 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: _UpperCamelCase = 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(__a , **{**default_dtype, **self.jnp_array_kwargs}) def UpperCAmelCase ( self , __a) -> str: '''simple docstring''' import jax # support for torch, tf, jax etc. if config.TORCH_AVAILABLE and "torch" in sys.modules: import torch if isinstance(__a , torch.Tensor): return self._tensorize(data_struct.detach().cpu().numpy()[()]) if hasattr(__a , '''__array__''') and not isinstance(__a , jax.Array): _UpperCamelCase = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(__a , np.ndarray): if data_struct.dtype == object: # jax arrays cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(__a) for substruct in data_struct]) elif isinstance(__a , (list, tuple)): return self._consolidate([self.recursive_tensorize(__a) for substruct in data_struct]) return self._tensorize(__a) def UpperCAmelCase ( self , __a) -> Optional[int]: '''simple docstring''' return map_nested(self._recursive_tensorize , __a , map_list=__a) def UpperCAmelCase ( self , __a) -> Mapping: '''simple docstring''' _UpperCamelCase = self.numpy_arrow_extractor().extract_row(__a) _UpperCamelCase = self.python_features_decoder.decode_row(__a) return self.recursive_tensorize(__a) def UpperCAmelCase ( self , __a) -> "jax.Array": '''simple docstring''' _UpperCamelCase = self.numpy_arrow_extractor().extract_column(__a) _UpperCamelCase = self.python_features_decoder.decode_column(__a , pa_table.column_names[0]) _UpperCamelCase = self.recursive_tensorize(__a) _UpperCamelCase = self._consolidate(__a) return column def UpperCAmelCase ( self , __a) -> Mapping: '''simple docstring''' _UpperCamelCase = self.numpy_arrow_extractor().extract_batch(__a) _UpperCamelCase = self.python_features_decoder.decode_batch(__a) _UpperCamelCase = self.recursive_tensorize(__a) for column_name in batch: _UpperCamelCase = self._consolidate(batch[column_name]) return batch
19
"""simple docstring""" # Imports import numpy as np class _UpperCAmelCase: def __init__( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) def UpperCAmelCase ( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' if red is not None: _UpperCamelCase = red if green is not None: _UpperCamelCase = green if blue is not None: _UpperCamelCase = blue if red_edge is not None: _UpperCamelCase = red_edge if nir is not None: _UpperCamelCase = nir return True def UpperCAmelCase ( self , __a="" , __a=None , __a=None , __a=None , __a=None , __a=None) -> List[str]: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) _UpperCamelCase = { '''ARVI2''': self.arvaa, '''CCCI''': self.ccci, '''CVI''': self.cvi, '''GLI''': self.gli, '''NDVI''': self.ndvi, '''BNDVI''': self.bndvi, '''redEdgeNDVI''': self.red_edge_ndvi, '''GNDVI''': self.gndvi, '''GBNDVI''': self.gbndvi, '''GRNDVI''': self.grndvi, '''RBNDVI''': self.rbndvi, '''PNDVI''': self.pndvi, '''ATSAVI''': self.atsavi, '''BWDRVI''': self.bwdrvi, '''CIgreen''': self.ci_green, '''CIrededge''': self.ci_rededge, '''CI''': self.ci, '''CTVI''': self.ctvi, '''GDVI''': self.gdvi, '''EVI''': self.evi, '''GEMI''': self.gemi, '''GOSAVI''': self.gosavi, '''GSAVI''': self.gsavi, '''Hue''': self.hue, '''IVI''': self.ivi, '''IPVI''': self.ipvi, '''I''': self.i, '''RVI''': self.rvi, '''MRVI''': self.mrvi, '''MSAVI''': self.m_savi, '''NormG''': self.norm_g, '''NormNIR''': self.norm_nir, '''NormR''': self.norm_r, '''NGRDI''': self.ngrdi, '''RI''': self.ri, '''S''': self.s, '''IF''': self._if, '''DVI''': self.dvi, '''TVI''': self.tvi, '''NDRE''': self.ndre, } try: return funcs[index]() except KeyError: print('''Index not in the list!''') return False def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return -0.18 + (1.17 * ((self.nir - self.red) / (self.nir + self.red))) def UpperCAmelCase ( self) -> Any: '''simple docstring''' return ((self.nir - self.redEdge) / (self.nir + self.redEdge)) / ( (self.nir - self.red) / (self.nir + self.red) ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir * (self.red / (self.green**2)) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.green - self.red - self.blue) / ( 2 * self.green + self.red + self.blue ) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - self.red) / (self.nir + self.red) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (self.nir - self.blue) / (self.nir + self.blue) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.redEdge - self.red) / (self.redEdge + self.red) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir - (self.green + self.blue)) / ( self.nir + (self.green + self.blue) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.nir - (self.green + self.red)) / ( self.nir + (self.green + self.red) ) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir - (self.blue + self.red)) / (self.nir + (self.blue + self.red)) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - (self.green + self.red + self.blue)) / ( self.nir + (self.green + self.red + self.blue) ) def UpperCAmelCase ( self , __a=0.08 , __a=1.22 , __a=0.03) -> Optional[Any]: '''simple docstring''' return a * ( (self.nir - a * self.red - b) / (a * self.nir + self.red - a * b + x * (1 + a**2)) ) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (0.1 * self.nir - self.blue) / (0.1 * self.nir + self.blue) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir / self.green) - 1 def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir / self.redEdge) - 1 def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.red - self.blue) / self.red def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.ndvi() return ((ndvi + 0.5) / (abs(ndvi + 0.5))) * (abs(ndvi + 0.5) ** (1 / 2)) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir - self.green def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return 2.5 * ( (self.nir - self.red) / (self.nir + 6 * self.red - 7.5 * self.blue + 1) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = (2 * (self.nir**2 - self.red**2) + 1.5 * self.nir + 0.5 * self.red) / ( self.nir + self.red + 0.5 ) return n * (1 - 0.25 * n) - (self.red - 0.125) / (1 - self.red) def UpperCAmelCase ( self , __a=0.16) -> Optional[Any]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green + y) def UpperCAmelCase ( self , __a=0.5) -> Dict: '''simple docstring''' return ((self.nir - self.green) / (self.nir + self.green + n)) * (1 + n) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return np.arctan( ((2 * self.red - self.green - self.blue) / 30.5) * (self.green - self.blue)) def UpperCAmelCase ( self , __a=None , __a=None) -> Any: '''simple docstring''' return (self.nir - b) / (a * self.red) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir / ((self.nir + self.red) / 2)) * (self.ndvi() + 1) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.red + self.green + self.blue) / 30.5 def UpperCAmelCase ( self) -> Any: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.rvi() - 1) / (self.rvi() + 1) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return ( (2 * self.nir + 1) - ((2 * self.nir + 1) ** 2 - 8 * (self.nir - self.red)) ** (1 / 2) ) / 2 def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.green / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> str: '''simple docstring''' return self.nir / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.red / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.green - self.red) / (self.green + self.red) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (self.red - self.green) / (self.red + self.green) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = np.max([np.max(self.red), np.max(self.green), np.max(self.blue)]) _UpperCamelCase = np.min([np.min(self.red), np.min(self.green), np.min(self.blue)]) return (max_value - min_value) / max_value def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.red - self.green - self.blue) / (self.green - self.blue) def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Any: '''simple docstring''' return (self.ndvi() + 0.5) ** (1 / 2) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.nir - self.redEdge) / (self.nir + self.redEdge)
19
1
"""simple docstring""" from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available, is_vision_available _a = { """configuration_mask2former""": [ """MASK2FORMER_PRETRAINED_CONFIG_ARCHIVE_MAP""", """Mask2FormerConfig""", ], } try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = ["""Mask2FormerImageProcessor"""] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: _a = [ """MASK2FORMER_PRETRAINED_MODEL_ARCHIVE_LIST""", """Mask2FormerForUniversalSegmentation""", """Mask2FormerModel""", """Mask2FormerPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_maskaformer import MASK2FORMER_PRETRAINED_CONFIG_ARCHIVE_MAP, MaskaFormerConfig try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .image_processing_maskaformer import MaskaFormerImageProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_maskaformer import ( MASK2FORMER_PRETRAINED_MODEL_ARCHIVE_LIST, MaskaFormerForUniversalSegmentation, MaskaFormerModel, MaskaFormerPreTrainedModel, ) else: import sys _a = _LazyModule(__name__, globals()["""__file__"""], _import_structure)
19
"""simple docstring""" import inspect import unittest from transformers import ViTHybridConfig from transformers.testing_utils import require_accelerate, 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, _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 ViTHybridForImageClassification, ViTHybridImageProcessor, ViTHybridModel from transformers.models.vit_hybrid.modeling_vit_hybrid import VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=64 , __a=2 , __a=3 , __a=True , __a=True , __a=32 , __a=5 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=10 , __a=0.02 , __a=[1, 16, 4, 4] , __a=None , ) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = image_size _UpperCamelCase = patch_size _UpperCamelCase = num_channels _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = scope _UpperCamelCase = backbone_featmap_shape # in ViT hybrid, the seq length equals the number of patches + 1 (we add 1 for the [CLS] token) # the number of patches is based on the feature map of the backbone, which by default uses an output stride # of 32, which means that the feature map has a spatial resolution of 1/32 of the input image size _UpperCamelCase = (self.image_size // 32) ** 2 _UpperCamelCase = num_patches + 1 def UpperCAmelCase ( self) -> int: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = { '''global_padding''': '''same''', '''layer_type''': '''bottleneck''', '''depths''': [3, 4, 9], '''out_features''': ['''stage1''', '''stage2''', '''stage3'''], '''embedding_dynamic_padding''': True, '''hidden_sizes''': [4, 8, 16, 32], '''num_groups''': 2, } return ViTHybridConfig( 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 , 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 , backbone_featmap_shape=self.backbone_featmap_shape , backbone_config=__a , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModel(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.type_sequence_label_size _UpperCamelCase = ViTHybridForImageClassification(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , labels=__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (ViTHybridModel, ViTHybridForImageClassification) if is_torch_available() else () lowercase__ = ( {'feature-extraction': ViTHybridModel, 'image-classification': ViTHybridForImageClassification} if is_torch_available() else {} ) lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , hidden_size=37) def UpperCAmelCase ( self) -> Any: '''simple docstring''' self.config_tester.run_common_tests() @unittest.skip(reason='''ViT does not use inputs_embeds''') def UpperCAmelCase ( self) -> Dict: '''simple docstring''' pass def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) self.assertIsInstance(model.get_input_embeddings() , (nn.Module)) _UpperCamelCase = model.get_output_embeddings() self.assertTrue(x is None or isinstance(__a , nn.Linear)) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) # Skip the check for the backbone for name, module in model.named_modules(): if module.__class__.__name__ == "ViTHybridPatchEmbeddings": _UpperCamelCase = [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''' , ) @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = ViTHybridModel.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) return image @require_torch @require_vision class _UpperCAmelCase( unittest.TestCase ): @cached_property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return ( ViTHybridImageProcessor.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]) if is_vision_available() else None ) @slow def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = ViTHybridForImageClassification.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]).to( __a) _UpperCamelCase = self.default_image_processor _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''').to(__a) # forward pass with torch.no_grad(): _UpperCamelCase = model(**__a) # verify the logits _UpperCamelCase = torch.Size((1, 10_00)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor([-1.9090, -0.4993, -0.2389]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, :3] , __a , atol=1e-4)) @slow @require_accelerate def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = ViTHybridImageProcessor.from_pretrained('''google/vit-hybrid-base-bit-384''') _UpperCamelCase = ViTHybridForImageClassification.from_pretrained('''google/vit-hybrid-base-bit-384''' , device_map='''auto''') _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''') _UpperCamelCase = model(**__a) _UpperCamelCase = outputs.logits # model predicts one of the 1000 ImageNet classes _UpperCamelCase = logits.argmax(-1).item() self.assertTrue(model.config.idalabel[predicted_class_idx] , '''tabby, tabby cat''')
19
1
"""simple docstring""" from typing import Any class _UpperCAmelCase: def __init__( self , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = data _UpperCamelCase = None class _UpperCAmelCase: def __init__( self) -> Dict: '''simple docstring''' _UpperCamelCase = None def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.head while temp is not None: print(temp.data , end=''' ''') _UpperCamelCase = temp.next print() def UpperCAmelCase ( self , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = Node(__a) _UpperCamelCase = self.head _UpperCamelCase = new_node def UpperCAmelCase ( self , __a , __a) -> Dict: '''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__": _a = 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()
19
"""simple docstring""" from math import acos, sin from typing import List, Tuple, Union import numpy as np import torch from PIL import Image from ...models import AutoencoderKL, UNetaDConditionModel from ...schedulers import DDIMScheduler, DDPMScheduler from ...utils import randn_tensor from ..pipeline_utils import AudioPipelineOutput, BaseOutput, DiffusionPipeline, ImagePipelineOutput from .mel import Mel class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['vqvae'] def __init__( self , __a , __a , __a , __a , ) -> List[str]: '''simple docstring''' super().__init__() self.register_modules(unet=__a , scheduler=__a , mel=__a , vqvae=__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' return 50 if isinstance(self.scheduler , __a) else 10_00 @torch.no_grad() def __call__( self , __a = 1 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = 0 , __a = None , __a = None , __a=True , ) -> Union[ Union[AudioPipelineOutput, ImagePipelineOutput], Tuple[List[Image.Image], Tuple[int, List[np.ndarray]]], ]: '''simple docstring''' _UpperCamelCase = steps or self.get_default_steps() self.scheduler.set_timesteps(__a) _UpperCamelCase = step_generator or generator # For backwards compatibility if type(self.unet.config.sample_size) == int: _UpperCamelCase = (self.unet.config.sample_size, self.unet.config.sample_size) if noise is None: _UpperCamelCase = randn_tensor( ( batch_size, self.unet.config.in_channels, self.unet.config.sample_size[0], self.unet.config.sample_size[1], ) , generator=__a , device=self.device , ) _UpperCamelCase = noise _UpperCamelCase = None if audio_file is not None or raw_audio is not None: self.mel.load_audio(__a , __a) _UpperCamelCase = self.mel.audio_slice_to_image(__a) _UpperCamelCase = np.frombuffer(input_image.tobytes() , dtype='''uint8''').reshape( (input_image.height, input_image.width)) _UpperCamelCase = (input_image / 2_55) * 2 - 1 _UpperCamelCase = torch.tensor(input_image[np.newaxis, :, :] , dtype=torch.float).to(self.device) if self.vqvae is not None: _UpperCamelCase = self.vqvae.encode(torch.unsqueeze(__a , 0)).latent_dist.sample( generator=__a)[0] _UpperCamelCase = self.vqvae.config.scaling_factor * input_images if start_step > 0: _UpperCamelCase = self.scheduler.add_noise(__a , __a , self.scheduler.timesteps[start_step - 1]) _UpperCamelCase = ( self.unet.config.sample_size[1] * self.mel.get_sample_rate() / self.mel.x_res / self.mel.hop_length ) _UpperCamelCase = int(mask_start_secs * pixels_per_second) _UpperCamelCase = int(mask_end_secs * pixels_per_second) _UpperCamelCase = self.scheduler.add_noise(__a , __a , torch.tensor(self.scheduler.timesteps[start_step:])) for step, t in enumerate(self.progress_bar(self.scheduler.timesteps[start_step:])): if isinstance(self.unet , __a): _UpperCamelCase = self.unet(__a , __a , __a)['''sample'''] else: _UpperCamelCase = self.unet(__a , __a)['''sample'''] if isinstance(self.scheduler , __a): _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , eta=__a , generator=__a , )['''prev_sample'''] else: _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , generator=__a , )['''prev_sample'''] if mask is not None: if mask_start > 0: _UpperCamelCase = mask[:, step, :, :mask_start] if mask_end > 0: _UpperCamelCase = mask[:, step, :, -mask_end:] if self.vqvae is not None: # 0.18215 was scaling factor used in training to ensure unit variance _UpperCamelCase = 1 / self.vqvae.config.scaling_factor * images _UpperCamelCase = self.vqvae.decode(__a)['''sample'''] _UpperCamelCase = (images / 2 + 0.5).clamp(0 , 1) _UpperCamelCase = images.cpu().permute(0 , 2 , 3 , 1).numpy() _UpperCamelCase = (images * 2_55).round().astype('''uint8''') _UpperCamelCase = list( (Image.fromarray(_[:, :, 0]) for _ in images) if images.shape[3] == 1 else (Image.fromarray(__a , mode='''RGB''').convert('''L''') for _ in images)) _UpperCamelCase = [self.mel.image_to_audio(__a) for _ in images] if not return_dict: return images, (self.mel.get_sample_rate(), audios) return BaseOutput(**AudioPipelineOutput(np.array(__a)[:, np.newaxis, :]) , **ImagePipelineOutput(__a)) @torch.no_grad() def UpperCAmelCase ( self , __a , __a = 50) -> np.ndarray: '''simple docstring''' assert isinstance(self.scheduler , __a) self.scheduler.set_timesteps(__a) _UpperCamelCase = np.array( [np.frombuffer(image.tobytes() , dtype='''uint8''').reshape((1, image.height, image.width)) for image in images]) _UpperCamelCase = (sample / 2_55) * 2 - 1 _UpperCamelCase = torch.Tensor(__a).to(self.device) for t in self.progress_bar(torch.flip(self.scheduler.timesteps , (0,))): _UpperCamelCase = t - self.scheduler.config.num_train_timesteps // self.scheduler.num_inference_steps _UpperCamelCase = self.scheduler.alphas_cumprod[t] _UpperCamelCase = ( self.scheduler.alphas_cumprod[prev_timestep] if prev_timestep >= 0 else self.scheduler.final_alpha_cumprod ) _UpperCamelCase = 1 - alpha_prod_t _UpperCamelCase = self.unet(__a , __a)['''sample'''] _UpperCamelCase = (1 - alpha_prod_t_prev) ** 0.5 * model_output _UpperCamelCase = (sample - pred_sample_direction) * alpha_prod_t_prev ** (-0.5) _UpperCamelCase = sample * alpha_prod_t ** 0.5 + beta_prod_t ** 0.5 * model_output return sample @staticmethod def UpperCAmelCase ( __a , __a , __a) -> torch.Tensor: '''simple docstring''' _UpperCamelCase = acos(torch.dot(torch.flatten(__a) , torch.flatten(__a)) / torch.norm(__a) / torch.norm(__a)) return sin((1 - alpha) * theta) * xa / sin(__a) + sin(alpha * theta) * xa / sin(__a)
19
1
"""simple docstring""" import torch from diffusers import DPMSolverSDEScheduler from diffusers.utils import torch_device from diffusers.utils.testing_utils import require_torchsde from .test_schedulers import SchedulerCommonTest @require_torchsde class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DPMSolverSDEScheduler,) lowercase__ = 10 def UpperCAmelCase ( self , **__a) -> int: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 11_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''noise_sampler_seed''': 0, } config.update(**__a) return config def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' for timesteps in [10, 50, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for beta_start, beta_end in zip([0.0_0001, 0.0001, 0.001] , [0.0002, 0.002, 0.02]): self.check_over_configs(beta_start=__a , beta_end=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for schedule in ["linear", "scaled_linear"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> str: '''simple docstring''' for prediction_type in ["epsilon", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.47_8210_4492_1875) < 1e-2 assert abs(result_mean.item() - 0.2178_7059_6456_5277) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3521_1181_6406) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9068_9229_9652) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 124.77_1492_0043_9453) < 1e-2 assert abs(result_mean.item() - 0.1_6226_2890_1481_6284) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 128.1_6633_6059_5703) < 1e-2 assert abs(result_mean.item() - 0.1_6688_3260_0116_7297) < 1e-3 else: assert abs(result_sum.item() - 119.8_4875_4882_8125) < 1e-2 assert abs(result_mean.item() - 0.1560_5306_6253_6621) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.46_9573_9746_0938) < 1e-2 assert abs(result_mean.item() - 0.2_1805_9346_0798_2635) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3536_3769_5312) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9083_8241_5771) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a , use_karras_sigmas=__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 176.66_9741_3574_2188) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 177.63_6535_6445_3125) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 else: assert abs(result_sum.item() - 170.3_1352_2338_8672) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2
19
"""simple docstring""" import copy from collections import OrderedDict from typing import Dict, Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging from ..auto import CONFIG_MAPPING _a = logging.get_logger(__name__) _a = { """facebook/detr-resnet-50""": """https://huggingface.co/facebook/detr-resnet-50/resolve/main/config.json""", # See all DETR models at https://huggingface.co/models?filter=detr } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'detr' lowercase__ = ['past_key_values'] lowercase__ = { 'hidden_size': 'd_model', 'num_attention_heads': 'encoder_attention_heads', } def __init__( self , __a=True , __a=None , __a=3 , __a=1_00 , __a=6 , __a=20_48 , __a=8 , __a=6 , __a=20_48 , __a=8 , __a=0.0 , __a=0.0 , __a=True , __a="relu" , __a=2_56 , __a=0.1 , __a=0.0 , __a=0.0 , __a=0.02 , __a=1.0 , __a=False , __a="sine" , __a="resnet50" , __a=True , __a=False , __a=1 , __a=5 , __a=2 , __a=1 , __a=1 , __a=5 , __a=2 , __a=0.1 , **__a , ) -> int: '''simple docstring''' if backbone_config is not None and use_timm_backbone: raise ValueError('''You can\'t specify both `backbone_config` and `use_timm_backbone`.''') if not use_timm_backbone: if backbone_config is None: logger.info('''`backbone_config` is `None`. Initializing the config with the default `ResNet` backbone.''') _UpperCamelCase = CONFIG_MAPPING['''resnet'''](out_features=['''stage4''']) elif isinstance(__a , __a): _UpperCamelCase = backbone_config.get('''model_type''') _UpperCamelCase = CONFIG_MAPPING[backbone_model_type] _UpperCamelCase = config_class.from_dict(__a) # set timm attributes to None _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = None, None, None _UpperCamelCase = use_timm_backbone _UpperCamelCase = backbone_config _UpperCamelCase = num_channels _UpperCamelCase = num_queries _UpperCamelCase = d_model _UpperCamelCase = encoder_ffn_dim _UpperCamelCase = encoder_layers _UpperCamelCase = encoder_attention_heads _UpperCamelCase = decoder_ffn_dim _UpperCamelCase = decoder_layers _UpperCamelCase = decoder_attention_heads _UpperCamelCase = dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = activation_function _UpperCamelCase = init_std _UpperCamelCase = init_xavier_std _UpperCamelCase = encoder_layerdrop _UpperCamelCase = decoder_layerdrop _UpperCamelCase = encoder_layers _UpperCamelCase = auxiliary_loss _UpperCamelCase = position_embedding_type _UpperCamelCase = backbone _UpperCamelCase = use_pretrained_backbone _UpperCamelCase = dilation # Hungarian matcher _UpperCamelCase = class_cost _UpperCamelCase = bbox_cost _UpperCamelCase = giou_cost # Loss coefficients _UpperCamelCase = mask_loss_coefficient _UpperCamelCase = dice_loss_coefficient _UpperCamelCase = bbox_loss_coefficient _UpperCamelCase = giou_loss_coefficient _UpperCamelCase = eos_coefficient super().__init__(is_encoder_decoder=__a , **__a) @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.encoder_attention_heads @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.d_model @classmethod def UpperCAmelCase ( cls , __a , **__a) -> int: '''simple docstring''' return cls(backbone_config=__a , **__a) def UpperCAmelCase ( self) -> Dict[str, any]: '''simple docstring''' _UpperCamelCase = copy.deepcopy(self.__dict__) if output["backbone_config"] is not None: _UpperCamelCase = self.backbone_config.to_dict() _UpperCamelCase = self.__class__.model_type return output class _UpperCAmelCase( lowerCamelCase ): lowercase__ = version.parse('1.11' ) @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''pixel_values''', {0: '''batch''', 1: '''num_channels''', 2: '''height''', 3: '''width'''}), ('''pixel_mask''', {0: '''batch'''}), ]) @property def UpperCAmelCase ( self) -> float: '''simple docstring''' return 1e-5 @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return 12
19
1
"""simple docstring""" import requests _a = """YOUR API KEY""" def lowerCamelCase__ ( __snake_case, __snake_case = giphy_api_key ) -> list: """simple docstring""" _UpperCamelCase = '''+'''.join(query.split() ) _UpperCamelCase = F'''https://api.giphy.com/v1/gifs/search?q={formatted_query}&api_key={api_key}''' _UpperCamelCase = requests.get(__snake_case ).json()['''data'''] return [gif["url"] for gif in gifs] if __name__ == "__main__": print("""\n""".join(get_gifs("""space ship""")))
19
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """microsoft/wavlm-base""": """https://huggingface.co/microsoft/wavlm-base/resolve/main/config.json""", # See all WavLM models at https://huggingface.co/models?filter=wavlm } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'wavlm' def __init__( self , __a=32 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu" , __a=0.1 , __a=0.1 , __a=0.1 , __a=0.0 , __a=0.1 , __a=0.1 , __a=0.02 , __a=1e-5 , __a="group" , __a="gelu" , __a=(5_12, 5_12, 5_12, 5_12, 5_12, 5_12, 5_12) , __a=(5, 2, 2, 2, 2, 2, 2) , __a=(10, 3, 3, 3, 3, 2, 2) , __a=False , __a=1_28 , __a=16 , __a=3_20 , __a=8_00 , __a=False , __a=True , __a=0.05 , __a=10 , __a=2 , __a=0.0 , __a=10 , __a=3_20 , __a=2 , __a=0.1 , __a=1_00 , __a=2_56 , __a=2_56 , __a=0.1 , __a="mean" , __a=False , __a=False , __a=2_56 , __a=(5_12, 5_12, 5_12, 5_12, 15_00) , __a=(5, 3, 3, 1, 1) , __a=(1, 2, 3, 1, 1) , __a=5_12 , __a=80 , __a=0 , __a=1 , __a=2 , __a=False , __a=3 , __a=2 , __a=3 , __a=None , **__a , ) -> Union[str, Any]: '''simple docstring''' super().__init__(**__a , pad_token_id=__a , bos_token_id=__a , eos_token_id=__a) _UpperCamelCase = hidden_size _UpperCamelCase = feat_extract_norm _UpperCamelCase = feat_extract_activation _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = conv_bias _UpperCamelCase = num_buckets _UpperCamelCase = max_bucket_distance _UpperCamelCase = num_conv_pos_embeddings _UpperCamelCase = num_conv_pos_embedding_groups _UpperCamelCase = len(self.conv_dim) _UpperCamelCase = num_hidden_layers _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = feat_proj_dropout _UpperCamelCase = final_dropout _UpperCamelCase = layerdrop _UpperCamelCase = layer_norm_eps _UpperCamelCase = initializer_range _UpperCamelCase = num_ctc_classes _UpperCamelCase = vocab_size _UpperCamelCase = do_stable_layer_norm _UpperCamelCase = use_weighted_layer_sum _UpperCamelCase = 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 _UpperCamelCase = apply_spec_augment _UpperCamelCase = mask_time_prob _UpperCamelCase = mask_time_length _UpperCamelCase = mask_time_min_masks _UpperCamelCase = mask_feature_prob _UpperCamelCase = mask_feature_length # parameters for pretraining with codevector quantized representations _UpperCamelCase = num_codevectors_per_group _UpperCamelCase = num_codevector_groups _UpperCamelCase = contrastive_logits_temperature _UpperCamelCase = num_negatives _UpperCamelCase = codevector_dim _UpperCamelCase = proj_codevector_dim _UpperCamelCase = diversity_loss_weight # ctc loss _UpperCamelCase = ctc_loss_reduction _UpperCamelCase = ctc_zero_infinity # adapter _UpperCamelCase = add_adapter _UpperCamelCase = adapter_kernel_size _UpperCamelCase = adapter_stride _UpperCamelCase = num_adapter_layers _UpperCamelCase = output_hidden_size or hidden_size # SequenceClassification-specific parameter. Feel free to ignore for other classes. _UpperCamelCase = classifier_proj_size # XVector-specific parameters. Feel free to ignore for other classes. _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = xvector_output_dim @property def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return functools.reduce(operator.mul , self.conv_stride , 1)
19
1
"""simple docstring""" import os import socket from contextlib import contextmanager import torch from ..commands.config.default import write_basic_config # noqa: F401 from ..state import PartialState from .dataclasses import DistributedType from .imports import is_deepspeed_available, is_tpu_available from .transformer_engine import convert_model from .versions import is_torch_version if is_deepspeed_available(): from deepspeed import DeepSpeedEngine if is_tpu_available(check_device=False): import torch_xla.core.xla_model as xm def lowerCamelCase__ ( __snake_case ) -> Tuple: """simple docstring""" if is_torch_version('''<''', '''2.0.0''' ) or not hasattr(__snake_case, '''_dynamo''' ): return False return isinstance(__snake_case, torch._dynamo.eval_frame.OptimizedModule ) def lowerCamelCase__ ( __snake_case, __snake_case = True ) -> List[str]: """simple docstring""" _UpperCamelCase = (torch.nn.parallel.DistributedDataParallel, torch.nn.DataParallel) _UpperCamelCase = is_compiled_module(__snake_case ) if is_compiled: _UpperCamelCase = model _UpperCamelCase = model._orig_mod if is_deepspeed_available(): options += (DeepSpeedEngine,) while isinstance(__snake_case, __snake_case ): _UpperCamelCase = model.module if not keep_fpaa_wrapper: _UpperCamelCase = getattr(__snake_case, '''forward''' ) _UpperCamelCase = model.__dict__.pop('''_original_forward''', __snake_case ) if original_forward is not None: while hasattr(__snake_case, '''__wrapped__''' ): _UpperCamelCase = forward.__wrapped__ if forward == original_forward: break _UpperCamelCase = forward if getattr(__snake_case, '''_converted_to_transformer_engine''', __snake_case ): convert_model(__snake_case, to_transformer_engine=__snake_case ) if is_compiled: _UpperCamelCase = model _UpperCamelCase = compiled_model return model def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" PartialState().wait_for_everyone() def lowerCamelCase__ ( __snake_case, __snake_case ) -> Any: """simple docstring""" if PartialState().distributed_type == DistributedType.TPU: xm.save(__snake_case, __snake_case ) elif PartialState().local_process_index == 0: torch.save(__snake_case, __snake_case ) @contextmanager def lowerCamelCase__ ( **__snake_case ) -> Tuple: """simple docstring""" for key, value in kwargs.items(): _UpperCamelCase = str(__snake_case ) yield for key in kwargs: if key.upper() in os.environ: del os.environ[key.upper()] def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if not hasattr(__snake_case, '''__qualname__''' ) and not hasattr(__snake_case, '''__name__''' ): _UpperCamelCase = getattr(__snake_case, '''__class__''', __snake_case ) if hasattr(__snake_case, '''__qualname__''' ): return obj.__qualname__ if hasattr(__snake_case, '''__name__''' ): return obj.__name__ return str(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> Any: """simple docstring""" for key, value in source.items(): if isinstance(__snake_case, __snake_case ): _UpperCamelCase = destination.setdefault(__snake_case, {} ) merge_dicts(__snake_case, __snake_case ) else: _UpperCamelCase = value return destination def lowerCamelCase__ ( __snake_case = None ) -> bool: """simple docstring""" if port is None: _UpperCamelCase = 2_95_00 with socket.socket(socket.AF_INET, socket.SOCK_STREAM ) as s: return s.connect_ex(('''localhost''', port) ) == 0
19
"""simple docstring""" import datasets import faiss import numpy as np import streamlit as st import torch from elasticsearch import Elasticsearch from elia_utils import ( embed_questions_for_retrieval, make_qa_sas_model, qa_sas_generate, query_es_index, query_qa_dense_index, ) import transformers from transformers import AutoModel, AutoModelForSeqaSeqLM, AutoTokenizer _a = """bart""" _a = True @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Dict: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/retribert-base-uncased''' ) _UpperCamelCase = AutoModel.from_pretrained('''yjernite/retribert-base-uncased''' ).to('''cuda:0''' ) _UpperCamelCase = qar_model.eval() else: _UpperCamelCase , _UpperCamelCase = (None, None) if MODEL_TYPE == "bart": _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/bart_eli5''' ) _UpperCamelCase = AutoModelForSeqaSeqLM.from_pretrained('''yjernite/bart_eli5''' ).to('''cuda:0''' ) _UpperCamelCase = torch.load('''seq2seq_models/eli5_bart_model_blm_2.pth''' ) sas_model.load_state_dict(save_dict['''model'''] ) _UpperCamelCase = sas_model.eval() else: _UpperCamelCase , _UpperCamelCase = make_qa_sas_model( model_name='''t5-small''', from_file='''seq2seq_models/eli5_t5_model_1024_4.pth''', device='''cuda:0''' ) return (qar_tokenizer, qar_model, sas_tokenizer, sas_model) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = faiss.StandardGpuResources() _UpperCamelCase = datasets.load_dataset(path='''wiki_snippets''', name='''wiki40b_en_100_0''' )['''train'''] _UpperCamelCase = np.memmap( '''wiki40b_passages_reps_32_l-8_h-768_b-512-512.dat''', dtype='''float32''', mode='''r''', shape=(wikiaab_passages.num_rows, 1_28), ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) _UpperCamelCase = faiss.index_cpu_to_gpu(__snake_case, 1, __snake_case ) wikiaab_gpu_index_flat.add(__snake_case ) # TODO fix for larger GPU else: _UpperCamelCase , _UpperCamelCase = (None, None) _UpperCamelCase = Elasticsearch([{'''host''': '''localhost''', '''port''': '''9200'''}] ) return (wikiaab_passages, wikiaab_gpu_index_flat, es_client) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = datasets.load_dataset('''eli5''', name='''LFQA_reddit''' ) _UpperCamelCase = elia['''train_eli5'''] _UpperCamelCase = np.memmap( '''eli5_questions_reps.dat''', dtype='''float32''', mode='''r''', shape=(elia_train.num_rows, 1_28) ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) eli5_train_q_index.add(__snake_case ) return (elia_train, eli5_train_q_index) _a , _a , _a = load_indexes() _a , _a , _a , _a = load_models() _a , _a = load_train_data() def lowerCamelCase__ ( __snake_case, __snake_case=10 ) -> List[Any]: """simple docstring""" _UpperCamelCase = embed_questions_for_retrieval([question], __snake_case, __snake_case ) _UpperCamelCase , _UpperCamelCase = eli5_train_q_index.search(__snake_case, __snake_case ) _UpperCamelCase = [elia_train[int(__snake_case )] for i in I[0]] return nn_examples def lowerCamelCase__ ( __snake_case, __snake_case="wiki40b", __snake_case="dense", __snake_case=10 ) -> List[str]: """simple docstring""" if source == "none": _UpperCamelCase , _UpperCamelCase = (''' <P> '''.join(['''''' for _ in range(11 )] ).strip(), []) else: if method == "dense": _UpperCamelCase , _UpperCamelCase = query_qa_dense_index( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) else: _UpperCamelCase , _UpperCamelCase = query_es_index( __snake_case, __snake_case, index_name='''english_wiki40b_snippets_100w''', n_results=__snake_case, ) _UpperCamelCase = [ (res['''article_title'''], res['''section_title'''].strip(), res['''score'''], res['''passage_text''']) for res in hit_lst ] _UpperCamelCase = '''question: {} context: {}'''.format(__snake_case, __snake_case ) return question_doc, support_list @st.cache( hash_funcs={ torch.Tensor: (lambda __snake_case : None), transformers.models.bart.tokenization_bart.BartTokenizer: (lambda __snake_case : None), } ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=64, __snake_case=2_56, __snake_case=False, __snake_case=2, __snake_case=0.95, __snake_case=0.8 ) -> Dict: """simple docstring""" with torch.no_grad(): _UpperCamelCase = qa_sas_generate( __snake_case, __snake_case, __snake_case, num_answers=1, num_beams=__snake_case, min_len=__snake_case, max_len=__snake_case, do_sample=__snake_case, temp=__snake_case, top_p=__snake_case, top_k=__snake_case, max_input_length=10_24, device='''cuda:0''', )[0] return (answer, support_list) st.title("""Long Form Question Answering with ELI5""") # Start sidebar _a = """<img src='https://huggingface.co/front/assets/huggingface_logo.svg'>""" _a = """ <html> <head> <style> .img-container { padding-left: 90px; padding-right: 90px; padding-top: 50px; padding-bottom: 50px; background-color: #f0f3f9; } </style> </head> <body> <span class=\"img-container\"> <!-- Inline parent element --> %s </span> </body> </html> """ % ( header_html, ) st.sidebar.markdown( header_full, unsafe_allow_html=True, ) # Long Form QA with ELI5 and Wikipedia _a = """ This demo presents a model trained to [provide long-form answers to open-domain questions](https://yjernite.github.io/lfqa.html). First, a document retriever fetches a set of relevant Wikipedia passages given the question from the [Wiki40b](https://research.google/pubs/pub49029/) dataset, a pre-processed fixed snapshot of Wikipedia. """ st.sidebar.markdown(description, unsafe_allow_html=True) _a = [ """Answer the question""", """View the retrieved document only""", """View the most similar ELI5 question and answer""", """Show me everything, please!""", ] _a = st.sidebar.checkbox("""Demo options""") if demo_options: _a = st.sidebar.selectbox( """""", action_list, index=3, ) _a = action_list.index(action_st) _a = st.sidebar.selectbox( """""", ["""Show full text of passages""", """Show passage section titles"""], index=0, ) _a = show_type == """Show full text of passages""" else: _a = 3 _a = True _a = st.sidebar.checkbox("""Retrieval options""") if retrieval_options: _a = """ ### Information retriever options The **sparse** retriever uses ElasticSearch, while the **dense** retriever uses max-inner-product search between a question and passage embedding trained using the [ELI5](https://arxiv.org/abs/1907.09190) questions-answer pairs. The answer is then generated by sequence to sequence model which takes the question and retrieved document as input. """ st.sidebar.markdown(retriever_info) _a = st.sidebar.selectbox("""Which Wikipedia format should the model use?""", ["""wiki40b""", """none"""]) _a = st.sidebar.selectbox("""Which Wikipedia indexer should the model use?""", ["""dense""", """sparse""", """mixed"""]) else: _a = """wiki40b""" _a = """dense""" _a = """beam""" _a = 2 _a = 64 _a = 256 _a = None _a = None _a = st.sidebar.checkbox("""Generation options""") if generate_options: _a = """ ### Answer generation options The sequence-to-sequence model was initialized with [BART](https://huggingface.co/facebook/bart-large) weights and fine-tuned on the ELI5 QA pairs and retrieved documents. You can use the model for greedy decoding with **beam** search, or **sample** from the decoder's output probabilities. """ st.sidebar.markdown(generate_info) _a = st.sidebar.selectbox("""Would you like to use beam search or sample an answer?""", ["""beam""", """sampled"""]) _a = st.sidebar.slider( """Minimum generation length""", min_value=8, max_value=256, value=64, step=8, format=None, key=None ) _a = st.sidebar.slider( """Maximum generation length""", min_value=64, max_value=512, value=256, step=16, format=None, key=None ) if sampled == "beam": _a = st.sidebar.slider("""Beam size""", min_value=1, max_value=8, value=2, step=None, format=None, key=None) else: _a = st.sidebar.slider( """Nucleus sampling p""", min_value=0.1, max_value=1.0, value=0.95, step=0.01, format=None, key=None ) _a = st.sidebar.slider( """Temperature""", min_value=0.1, max_value=1.0, value=0.7, step=0.01, format=None, key=None ) _a = None # start main text _a = [ """<MY QUESTION>""", """How do people make chocolate?""", """Why do we get a fever when we are sick?""", """How can different animals perceive different colors?""", """What is natural language processing?""", """What's the best way to treat a sunburn?""", """What exactly are vitamins ?""", """How does nuclear energy provide electricity?""", """What's the difference between viruses and bacteria?""", """Why are flutes classified as woodwinds when most of them are made out of metal ?""", """Why do people like drinking coffee even though it tastes so bad?""", """What happens when wine ages? How does it make the wine taste better?""", """If an animal is an herbivore, where does it get the protein that it needs to survive if it only eats grass?""", """How can we set a date to the beginning or end of an artistic period? Doesn't the change happen gradually?""", """How does New Zealand have so many large bird predators?""", ] _a = st.selectbox( """What would you like to ask? ---- select <MY QUESTION> to enter a new query""", questions_list, index=1, ) if question_s == "<MY QUESTION>": _a = st.text_input("""Enter your question here:""", """""") else: _a = question_s if st.button("""Show me!"""): if action in [0, 1, 3]: if index_type == "mixed": _a , _a = make_support(question, source=wiki_source, method="""dense""", n_results=10) _a , _a = make_support(question, source=wiki_source, method="""sparse""", n_results=10) _a = [] for res_d, res_s in zip(support_list_dense, support_list_sparse): if tuple(res_d) not in support_list: support_list += [tuple(res_d)] if tuple(res_s) not in support_list: support_list += [tuple(res_s)] _a = support_list[:10] _a = """<P> """ + """ <P> """.join([res[-1] for res in support_list]) else: _a , _a = make_support(question, source=wiki_source, method=index_type, n_results=10) if action in [0, 3]: _a , _a = answer_question( question_doc, sas_model, sas_tokenizer, min_len=min_len, max_len=int(max_len), sampling=(sampled == """sampled"""), n_beams=n_beams, top_p=top_p, temp=temp, ) st.markdown("""### The model generated answer is:""") st.write(answer) if action in [0, 1, 3] and wiki_source != "none": st.markdown("""--- \n ### The model is drawing information from the following Wikipedia passages:""") for i, res in enumerate(support_list): _a = """https://en.wikipedia.org/wiki/{}""".format(res[0].replace(""" """, """_""")) _a = res[1].strip() if sec_titles == "": _a = """[{}]({})""".format(res[0], wiki_url) else: _a = sec_titles.split(""" & """) _a = """ & """.join( ["""[{}]({}#{})""".format(sec.strip(), wiki_url, sec.strip().replace(""" """, """_""")) for sec in sec_list] ) st.markdown( """{0:02d} - **Article**: {1:<18} <br> _Section_: {2}""".format(i + 1, res[0], sections), unsafe_allow_html=True, ) if show_passages: st.write( """> <span style=\"font-family:arial; font-size:10pt;\">""" + res[-1] + """</span>""", unsafe_allow_html=True ) if action in [2, 3]: _a = find_nearest_training(question) _a = nn_train_list[0] st.markdown( """--- \n ### The most similar question in the ELI5 training set was: \n\n {}""".format(train_exple["""title"""]) ) _a = [ """{}. {}""".format(i + 1, """ \n""".join([line.strip() for line in ans.split("""\n""") if line.strip() != """"""])) for i, (ans, sc) in enumerate(zip(train_exple["""answers"""]["""text"""], train_exple["""answers"""]["""score"""])) if i == 0 or sc > 2 ] st.markdown("""##### Its answers were: \n\n {}""".format("""\n""".join(answers_st))) _a = """ --- **Disclaimer** *The intent of this app is to provide some (hopefully entertaining) insights into the behavior of a current LFQA system. Evaluating biases of such a model and ensuring factual generations are still very much open research problems. Therefore, until some significant progress is achieved, we caution against using the generated answers for practical purposes.* """ st.sidebar.markdown(disclaimer, unsafe_allow_html=True)
19
1
"""simple docstring""" def lowerCamelCase__ ( __snake_case = 10 ) -> str: """simple docstring""" if not isinstance(__snake_case, __snake_case ) or n < 0: raise ValueError('''Invalid input''' ) _UpperCamelCase = 10**n _UpperCamelCase = 2_84_33 * (pow(2, 7_83_04_57, __snake_case )) + 1 return str(number % modulus ) if __name__ == "__main__": from doctest import testmod testmod() print(F"""{solution(10) = }""")
19
"""simple docstring""" import argparse import fairseq import torch from torch import nn from transformers import ( MBartaaTokenizer, MBartConfig, MBartForCausalLM, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() _a = logging.get_logger(__name__) _a = { """post_extract_proj""": """feature_projection.projection""", """encoder.pos_conv.0""": """encoder.pos_conv_embed.conv""", """self_attn.k_proj""": """encoder.layers.*.attention.k_proj""", """self_attn.v_proj""": """encoder.layers.*.attention.v_proj""", """self_attn.q_proj""": """encoder.layers.*.attention.q_proj""", """self_attn.out_proj""": """encoder.layers.*.attention.out_proj""", """self_attn_layer_norm""": """encoder.layers.*.layer_norm""", """fc1""": """encoder.layers.*.feed_forward.intermediate_dense""", """fc2""": """encoder.layers.*.feed_forward.output_dense""", """final_layer_norm""": """encoder.layers.*.final_layer_norm""", """encoder.layer_norm""": """encoder.layer_norm""", """w2v_model.layer_norm""": """feature_projection.layer_norm""", """quantizer.weight_proj""": """quantizer.weight_proj""", """quantizer.vars""": """quantizer.codevectors""", """project_q""": """project_q""", """final_proj""": """project_hid""", """w2v_encoder.proj""": """lm_head""", """mask_emb""": """masked_spec_embed""", } _a = [ """lm_head""", """quantizer.weight_proj""", """quantizer.codevectors""", """project_q""", """project_hid""", ] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" for attribute in key.split('''.''' ): _UpperCamelCase = getattr(__snake_case, __snake_case ) if weight_type is not None: _UpperCamelCase = getattr(__snake_case, __snake_case ).shape else: _UpperCamelCase = hf_pointer.shape assert hf_shape == value.shape, ( 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": _UpperCamelCase = value elif weight_type == "weight_g": _UpperCamelCase = value elif weight_type == "weight_v": _UpperCamelCase = value elif weight_type == "bias": _UpperCamelCase = value else: _UpperCamelCase = value logger.info(F'''{key + "." + weight_type if weight_type is not None else ""} was initialized from {full_name}.''' ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = [] _UpperCamelCase = fairseq_model.state_dict() _UpperCamelCase = hf_model.feature_extractor _UpperCamelCase = hf_model.adapter for name, value in fairseq_dict.items(): _UpperCamelCase = False if "conv_layers" in name: load_conv_layer( __snake_case, __snake_case, __snake_case, __snake_case, hf_model.config.feat_extract_norm == '''group''', ) _UpperCamelCase = True elif any(x in name for x in ['''adaptor''', '''w2v_encoder.proj.''', '''w2v_proj_ln.'''] ): load_adapter(__snake_case, __snake_case, __snake_case, __snake_case ) _UpperCamelCase = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('''w2v_model.''' )[-1] == name.split('''.''' )[0]: _UpperCamelCase = True if "*" in mapped_key: _UpperCamelCase = name.split(__snake_case )[0].split('''.''' )[-2] _UpperCamelCase = mapped_key.replace('''*''', __snake_case ) if "weight_g" in name: _UpperCamelCase = '''weight_g''' elif "weight_v" in name: _UpperCamelCase = '''weight_v''' elif "bias" in name: _UpperCamelCase = '''bias''' elif "weight" in name: _UpperCamelCase = '''weight''' else: _UpperCamelCase = None set_recursively(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) continue if not is_used: unused_weights.append(__snake_case ) logger.warning(F'''Unused weights: {unused_weights}''' ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = full_name.split('''conv_layers.''' )[-1] _UpperCamelCase = name.split('''.''' ) _UpperCamelCase = int(items[0] ) _UpperCamelCase = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _UpperCamelCase = 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: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = full_name.split('''adaptor.''' )[-1] _UpperCamelCase = name.split('''.''' ) if items[1].isdigit(): _UpperCamelCase = int(items[1] ) else: _UpperCamelCase = None if "adaptor" not in full_name: if "proj_ln" in full_name: # has to be layer norm if "bias" in name: assert ( value.shape == adapter.proj_layer_norm.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer norm bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj_layer_norm.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.weight.data.shape} was found.''' _UpperCamelCase = value else: # has to be projection layer if "bias" in name: assert ( value.shape == adapter.proj.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer weight was initialized from {full_name}.''' ) elif isinstance(__snake_case, __snake_case ): if "bias" in name: assert ( value.shape == adapter.layers[layer_id].conv.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) elif "weight" in name: assert ( value.shape == adapter.layers[layer_id].conv.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase , _UpperCamelCase = emb.weight.shape _UpperCamelCase = nn.Linear(__snake_case, __snake_case, bias=__snake_case ) _UpperCamelCase = emb.weight.data return lin_layer @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = WavaVecaConfig.from_pretrained( __snake_case, add_adapter=__snake_case, adapter_stride=__snake_case, adapter_kernel_size=__snake_case, use_auth_token=__snake_case, output_hidden_size=__snake_case, ) _UpperCamelCase = MBartConfig.from_pretrained(__snake_case ) # load model _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path], arg_overrides={ '''config_yaml''': config_yaml_path, '''data''': '''/'''.join(dict_path.split('''/''' )[:-1] ), '''w2v_path''': checkpoint_path, '''load_pretrained_decoder_from''': None, }, ) _UpperCamelCase = model[0].eval() # load feature extractor _UpperCamelCase = WavaVecaFeatureExtractor.from_pretrained(__snake_case, use_auth_token=__snake_case ) # set weights for wav2vec2 encoder _UpperCamelCase = WavaVecaModel(__snake_case ) recursively_load_weights_wavaveca(model.encoder, __snake_case ) # load decoder weights _UpperCamelCase = MBartForCausalLM(__snake_case ) _UpperCamelCase , _UpperCamelCase = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict(), strict=__snake_case ) logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) _UpperCamelCase = SpeechEncoderDecoderModel(encoder=__snake_case, decoder=__snake_case ) _UpperCamelCase = False _UpperCamelCase = MBartaaTokenizer(__snake_case ) tokenizer.save_pretrained(__snake_case ) _UpperCamelCase = hf_wavavec.config.to_dict() _UpperCamelCase = tokenizer.pad_token_id _UpperCamelCase = tokenizer.bos_token_id _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = '''mbart50''' _UpperCamelCase = '''wav2vec2''' _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = 25_00_04 _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = SpeechEncoderDecoderConfig.from_dict(__snake_case ) hf_wavavec.save_pretrained(__snake_case ) feature_extractor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model.""") parser.add_argument("""--checkpoint_path""", default=None, type=str, help="""Path to fairseq checkpoint""") parser.add_argument("""--dict_path""", default=None, type=str, help="""Path to dict of fine-tuned model""") parser.add_argument("""--config_yaml_path""", default=None, type=str, help="""Path to yaml file of fine-tuned model""") parser.add_argument( """--encoder_config_path""", default="""facebook/wav2vec2-xls-r-1b""", type=str, help="""Path to hf encoder wav2vec2 checkpoint config""", ) parser.add_argument( """--decoder_config_path""", default="""facebook/mbart-large-50-one-to-many-mmt""", type=str, help="""Path to hf decoder checkpoint config""", ) parser.add_argument("""--add_adapter""", default=True, type=bool, help="""whethere to add model adapter layers""") parser.add_argument("""--adapter_stride""", default=2, type=int, help="""stride of adapter layers""") parser.add_argument("""--adapter_kernel_size""", default=3, type=int, help="""kernel size of adapter layers""") parser.add_argument("""--encoder_output_dim""", default=1024, type=int, help="""encoder output dim""") parser.add_argument("""--start_token_id""", default=25_0004, type=int, help="""`decoder_start_token_id` of model config""") _a = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, args.config_yaml_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, add_adapter=args.add_adapter, adapter_kernel_size=args.adapter_kernel_size, adapter_stride=args.adapter_stride, decoder_start_token_id=args.start_token_id, encoder_output_dim=args.encoder_output_dim, )
19
1
"""simple docstring""" import argparse import random import joblib import numpy as np import torch from igf.igf import ( SecondaryLearner, collect_objective_set, compute_perplexity, generate_datasets, load_gpta, recopy_gpta, set_seed, train_secondary_learner, ) from torch.utils.data import DataLoader, RandomSampler from transformers import GPTaLMHeadModel def lowerCamelCase__ ( __snake_case=32, __snake_case=10, __snake_case=1_00, __snake_case=10_26, __snake_case=True, __snake_case="data/tokenized_stories_train_wikitext103.jbl", __snake_case="igf_context_pairs.jbl", ) -> str: """simple docstring""" set_seed(3 ) # generate train_data and objective_set _UpperCamelCase , _UpperCamelCase = generate_datasets( __snake_case, __snake_case, number=__snake_case, min_len=10_26, trim=__snake_case ) # keeps model same across runs set_seed(4 ) # model, lm_optimizer, lm_scheduler = recopy_gpt2(model, device, max_steps) # store original model weights # can we train on GPU? _UpperCamelCase = torch.device('''cuda:0''' if torch.cuda.is_available() else '''cpu''' ) # load pretrained model _UpperCamelCase = load_gpta('''gpt2''' ).to(__snake_case ) print('''computing perplexity on objective set''' ) _UpperCamelCase = compute_perplexity(__snake_case, __snake_case, __snake_case ).item() print('''perplexity on objective set:''', __snake_case ) # collect igf pairs and save to file demo.jbl collect_objective_set(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) # clean up, delete model and data we don't need anymore del model, train_data, objective_set torch.cuda.empty_cache() def lowerCamelCase__ ( __snake_case, __snake_case=15, __snake_case=1_28, __snake_case=1_00, __snake_case="igf_model.pt", ) -> List[Any]: """simple docstring""" set_seed(42 ) # Load pre-trained model _UpperCamelCase = GPTaLMHeadModel.from_pretrained('''gpt2''' ) # Initialize secondary learner to use embedding weights of model _UpperCamelCase = SecondaryLearner(__snake_case ) # Train secondary learner _UpperCamelCase = train_secondary_learner( __snake_case, __snake_case, max_epochs=__snake_case, batch_size=__snake_case, eval_freq=1_00, igf_model_path=__snake_case, ) del model, secondary_learner_train_data torch.cuda.empty_cache() return secondary_learner def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=32, __snake_case=10_00, __snake_case=16, __snake_case=1.0, __snake_case=recopy_gpta, __snake_case=None, __snake_case=10, __snake_case="gpt2_finetuned.pt", ) -> str: """simple docstring""" _UpperCamelCase = torch.device('''cuda:0''' if torch.cuda.is_available() else '''cpu''' ) _UpperCamelCase = RandomSampler(__snake_case ) _UpperCamelCase = DataLoader(__snake_case, sampler=__snake_case ) _UpperCamelCase = max_steps // (len(__snake_case )) + 1 _UpperCamelCase = 0 _UpperCamelCase = torch.zeros((1, context_len), dtype=torch.long, device=__snake_case ) _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = recopy_model(__snake_case, __snake_case, __snake_case ) model.train() if secondary_learner is not None: secondary_learner.to(__snake_case ) secondary_learner.eval() _UpperCamelCase = [] _UpperCamelCase = 0 _UpperCamelCase = [] _UpperCamelCase = [] # Compute the performance of the transformer model at the beginning _UpperCamelCase = compute_perplexity(__snake_case, __snake_case, __snake_case ) test_perps.append(__snake_case ) print('''Test perplexity, step''', __snake_case, ''':''', __snake_case ) for epoch in range(int(__snake_case ) ): for step, example in enumerate(__snake_case ): torch.cuda.empty_cache() _UpperCamelCase = random.randint(0, example.size(2 ) - context_len - 1 ) _UpperCamelCase = example[0, 0, start : start + context_len] lm_optimizer.zero_grad() _UpperCamelCase = model(__snake_case, labels=__snake_case ) _UpperCamelCase = True if secondary_learner is not None: _UpperCamelCase = secondary_learner.forward( torch.tensor(__snake_case, dtype=torch.long, device=__snake_case ).unsqueeze(0 ) )[0].item() observed_qs.append(float(__snake_case ) ) # Here we implement the simple non-constant threshold for the predicted IG(X) value # We will decay the selectivity of our secondary learner filter from # 1 standard deviation above average to 1 below average after 10 batches. if global_step == 10: _UpperCamelCase = -1 if predicted_q < threshold: _UpperCamelCase = False # If we passed the filter, add the context to the batch! if do_backprop: contexts.append(np.array(context.cpu() ) ) _UpperCamelCase = outputs[0] lm_loss.backward() examples += 1 del outputs # Once the batch is filled with enough contexts, backprop on the batch. if examples == batch_size: torch.cuda.empty_cache() _UpperCamelCase = 0 # Do LM backprop torch.nn.utils.clip_grad_norm_(model.parameters(), 3.0 ) lm_optimizer.step() lm_scheduler.step() # Update learning rate schedule global_step += 1 # Compute the performance of the transformer model at this batch if global_step % eval_interval == 0: _UpperCamelCase = compute_perplexity(__snake_case, __snake_case, __snake_case ) test_perps.append(__snake_case ) print('''Test perplexity, step''', __snake_case, ''':''', __snake_case ) # Break out of the loop after 60 batches if max_steps > 0 and global_step > 60: break if max_steps > 0 and global_step > 60: break # save finetuned transformer model torch.save(model.state_dict(), __snake_case ) torch.cuda.empty_cache() # Do some cleaning up so we can reinitialize for the next run of this function del lm_optimizer del lm_scheduler return model def lowerCamelCase__ ( ) -> List[Any]: """simple docstring""" _UpperCamelCase = argparse.ArgumentParser(description='''Fine-tune a transformer model with IGF on a language modeling task''' ) # Required parameters parser.add_argument( '''--data_dir''', default=__snake_case, type=__snake_case, required=__snake_case, help='''The input data dir. Should contain data files for WikiText.''', ) 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( '''--data_file''', type=__snake_case, default=__snake_case, help=( '''A jbl file containing tokenized data which can be split as objective dataset, ''' '''train_dataset and test_dataset.''' ), ) parser.add_argument( '''--igf_data_file''', type=__snake_case, default=__snake_case, help='''A jbl file containing the context and information gain pairs to train secondary learner.''', ) parser.add_argument( '''--output_dir''', default=__snake_case, type=__snake_case, required=__snake_case, help='''The output directory where the final fine-tuned model is stored.''', ) parser.add_argument( '''--tokenizer_name''', default=__snake_case, type=__snake_case, help='''Pretrained tokenizer name or path if not the same as model_name''', ) parser.add_argument('''--seed''', type=__snake_case, default=__snake_case, help='''A seed for reproducible training.''' ) parser.add_argument( '''--context_len''', default=32, type=__snake_case, help=( '''The maximum total input sequence length after tokenization. Sequences longer ''' '''than this will be truncated, sequences shorter will be padded.''' ), ) parser.add_argument( '''--size_objective_set''', default=1_00, type=__snake_case, help='''number of articles that are long enough to be used as our objective set''', ) parser.add_argument( '''--eval_freq''', default=1_00, type=__snake_case, help='''secondary model evaluation is triggered at eval_freq''' ) parser.add_argument('''--max_steps''', default=10_00, type=__snake_case, help='''To calculate training epochs''' ) parser.add_argument( '''--secondary_learner_batch_size''', default=1_28, type=__snake_case, help='''batch size of training data for secondary learner''', ) parser.add_argument( '''--batch_size''', default=16, type=__snake_case, help='''batch size of training data of language model(gpt2) ''' ) parser.add_argument( '''--eval_interval''', default=10, type=__snake_case, help=( '''decay the selectivity of our secondary learner filter from''' '''1 standard deviation above average to 1 below average after 10 batches''' ), ) parser.add_argument( '''--number''', default=1_00, type=__snake_case, help='''The number of examples split to be used as objective_set/test_data''' ) parser.add_argument( '''--min_len''', default=10_26, type=__snake_case, help='''The minimum length of the article to be used as objective set''' ) parser.add_argument( '''--secondary_learner_max_epochs''', default=15, type=__snake_case, help='''number of epochs to train secondary learner''' ) parser.add_argument('''--trim''', default=__snake_case, type=__snake_case, help='''truncate the example if it exceeds context length''' ) parser.add_argument( '''--threshold''', default=1.0, type=__snake_case, help=( '''The threshold value used by secondary learner to filter the train_data and allow only''' ''' informative data as input to the model''' ), ) parser.add_argument('''--finetuned_model_name''', default='''gpt2_finetuned.pt''', type=__snake_case, help='''finetuned_model_name''' ) parser.add_argument( '''--recopy_model''', default=__snake_case, type=__snake_case, help='''Reset the model to the original pretrained GPT-2 weights after each iteration''', ) # function calls # Collecting *n* pairs of context and information gain(X, IG(X)) for training the secondary learner generate_n_pairs( context_len=32, max_steps=10, size_objective_set=1_00, min_len=10_26, trim=__snake_case, data_file='''data/tokenized_stories_train_wikitext103.jbl''', igf_data_file='''igf_context_pairs.jbl''', ) # Load train data for secondary learner _UpperCamelCase = joblib.load('''data/IGF_values.jbl''' ) # Train secondary learner _UpperCamelCase = training_secondary_learner( __snake_case, secondary_learner_max_epochs=15, secondary_learner_batch_size=1_28, eval_freq=1_00, igf_model_path='''igf_model.pt''', ) # load pretrained gpt2 model _UpperCamelCase = GPTaLMHeadModel.from_pretrained('''gpt2''' ) set_seed(42 ) # Generate train and test data to train and evaluate gpt2 model _UpperCamelCase , _UpperCamelCase = generate_datasets( context_len=32, file='''data/tokenized_stories_train_wikitext103.jbl''', number=1_00, min_len=10_26, trim=__snake_case ) # fine-tuning of the gpt2 model using igf (Information Gain Filtration) finetune( __snake_case, __snake_case, __snake_case, context_len=32, max_steps=10_00, batch_size=16, threshold=1.0, recopy_model=__snake_case, secondary_learner=__snake_case, eval_interval=10, finetuned_model_name='''gpt2_finetuned.pt''', ) if __name__ == "__main__": main()
19
"""simple docstring""" import fire from utils import calculate_rouge, save_json def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case=None, **__snake_case ) -> Optional[int]: """simple docstring""" _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()] _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()][: len(__snake_case )] _UpperCamelCase = calculate_rouge(__snake_case, __snake_case, **__snake_case ) if save_path is not None: save_json(__snake_case, __snake_case, indent=__snake_case ) return metrics # these print nicely if __name__ == "__main__": fire.Fire(calculate_rouge_path)
19
1
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=False , __a=True , __a="None" , __a=3 , __a=4 , __a=None , ) -> Dict: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_mask _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = relative_attention _UpperCamelCase = position_biased_input _UpperCamelCase = pos_att_type _UpperCamelCase = scope def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = 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=__a , ) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDebertaVaModel(config=__a) _UpperCamelCase = {'''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids} _UpperCamelCase = [input_ids, input_mask] _UpperCamelCase = model(__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = TFDebertaVaForMaskedLM(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.num_labels _UpperCamelCase = TFDebertaVaForSequenceClassification(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.num_labels _UpperCamelCase = TFDebertaVaForTokenClassification(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.num_labels)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = TFDebertaVaForQuestionAnswering(config=__a) _UpperCamelCase = { '''input_ids''': input_ids, '''attention_mask''': input_mask, '''token_type_ids''': token_type_ids, } _UpperCamelCase = model(__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 UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids, '''token_type_ids''': token_type_ids, '''attention_mask''': input_mask} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFDebertaVaModel, TFDebertaVaForMaskedLM, TFDebertaVaForQuestionAnswering, TFDebertaVaForSequenceClassification, TFDebertaVaForTokenClassification, ) if is_tf_available() else () ) lowercase__ = ( { 'feature-extraction': TFDebertaVaModel, 'fill-mask': TFDebertaVaForMaskedLM, 'question-answering': TFDebertaVaForQuestionAnswering, 'text-classification': TFDebertaVaForSequenceClassification, 'token-classification': TFDebertaVaForTokenClassification, 'zero-shot': TFDebertaVaForSequenceClassification, } if is_tf_available() else {} ) lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = TFDebertaVaModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> int: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_lm(*__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_question_answering(*__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_sequence_classification(*__a) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_token_classification(*__a) @slow def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = TFDebertaVaModel.from_pretrained('''kamalkraj/deberta-v2-xlarge''') self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @unittest.skip(reason='''Model not available yet''') def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = TFDebertaVaModel.from_pretrained('''kamalkraj/deberta-v2-xlarge''') _UpperCamelCase = tf.constant([[0, 3_14_14, 2_32, 3_28, 7_40, 11_40, 1_26_95, 69, 4_60_78, 15_88, 2]]) _UpperCamelCase = tf.constant([[0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]) _UpperCamelCase = model(__a , attention_mask=__a)[0] _UpperCamelCase = tf.constant( [[[0.2356, 0.1948, 0.0369], [-0.1063, 0.3586, -0.5152], [-0.6399, -0.0259, -0.2525]]]) tf.debugging.assert_near(output[:, 1:4, 1:4] , __a , atol=1e-4)
19
"""simple docstring""" import warnings from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'ViTImageProcessor' lowercase__ = ('CLIPTokenizer', 'CLIPTokenizerFast') def __init__( self , __a=None , __a=None , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) def __call__( self , __a=None , __a=None , __a=None , __a=None , **__a) -> Tuple: '''simple docstring''' if text is None and visual_prompt is None and images is None: raise ValueError('''You have to specify either text, visual prompt or images.''') if text is not None and visual_prompt is not None: raise ValueError('''You have to specify exactly one type of prompt. Either text or visual prompt.''') if text is not None: _UpperCamelCase = self.tokenizer(__a , return_tensors=__a , **__a) if visual_prompt is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if images is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if visual_prompt is not None and images is not None: _UpperCamelCase = { '''pixel_values''': image_features.pixel_values, '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding elif text is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif text is not None: return encoding elif visual_prompt is not None: _UpperCamelCase = { '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding else: return BatchEncoding(data=dict(**__a) , tensor_type=__a) def UpperCAmelCase ( self , *__a , **__a) -> Any: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> List[str]: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
1
"""simple docstring""" import enum import warnings from ..tokenization_utils import TruncationStrategy from ..utils import add_end_docstrings, is_tf_available, is_torch_available, logging from .base import PIPELINE_INIT_ARGS, Pipeline if is_tf_available(): import tensorflow as tf from ..models.auto.modeling_tf_auto import TF_MODEL_FOR_SEQ_TO_SEQ_CAUSAL_LM_MAPPING if is_torch_available(): from ..models.auto.modeling_auto import MODEL_FOR_SEQ_TO_SEQ_CAUSAL_LM_MAPPING _a = logging.get_logger(__name__) class _UpperCAmelCase( enum.Enum ): lowercase__ = 0 lowercase__ = 1 @add_end_docstrings(lowerCamelCase ) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'generated' def __init__( self , *__a , **__a) -> List[Any]: '''simple docstring''' super().__init__(*__a , **__a) self.check_model_type( TF_MODEL_FOR_SEQ_TO_SEQ_CAUSAL_LM_MAPPING if self.framework == '''tf''' else MODEL_FOR_SEQ_TO_SEQ_CAUSAL_LM_MAPPING) def UpperCAmelCase ( self , __a=None , __a=None , __a=None , __a=None , __a=None , __a=None , **__a , ) -> Tuple: '''simple docstring''' _UpperCamelCase = {} if truncation is not None: _UpperCamelCase = truncation _UpperCamelCase = generate_kwargs _UpperCamelCase = {} if return_tensors is not None and return_type is None: _UpperCamelCase = ReturnType.TENSORS if return_tensors else ReturnType.TEXT if return_type is not None: _UpperCamelCase = return_type if clean_up_tokenization_spaces is not None: _UpperCamelCase = clean_up_tokenization_spaces if stop_sequence is not None: _UpperCamelCase = self.tokenizer.encode(__a , add_special_tokens=__a) if len(__a) > 1: warnings.warn( '''Stopping on a multiple token sequence is not yet supported on transformers. The first token of''' ''' the stop sequence will be used as the stop sequence string in the interim.''') _UpperCamelCase = stop_sequence_ids[0] return preprocess_params, forward_params, postprocess_params def UpperCAmelCase ( self , __a , __a , __a) -> Any: '''simple docstring''' return True def UpperCAmelCase ( self , *__a , __a) -> Any: '''simple docstring''' _UpperCamelCase = self.model.config.prefix if self.model.config.prefix is not None else '''''' if isinstance(args[0] , __a): if self.tokenizer.pad_token_id is None: raise ValueError('''Please make sure that the tokenizer has a pad_token_id when using a batch input''') _UpperCamelCase = ([prefix + arg for arg in args[0]],) _UpperCamelCase = True elif isinstance(args[0] , __a): _UpperCamelCase = (prefix + args[0],) _UpperCamelCase = False else: raise ValueError( F''' `args[0]`: {args[0]} have the wrong format. The should be either of type `str` or type `list`''') _UpperCamelCase = self.tokenizer(*__a , padding=__a , truncation=__a , return_tensors=self.framework) # This is produced by tokenizers but is an invalid generate kwargs if "token_type_ids" in inputs: del inputs["token_type_ids"] return inputs def __call__( self , *__a , **__a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = super().__call__(*__a , **__a) if ( isinstance(args[0] , __a) and all(isinstance(__a , __a) for el in args[0]) and all(len(__a) == 1 for res in result) ): return [res[0] for res in result] return result def UpperCAmelCase ( self , __a , __a=TruncationStrategy.DO_NOT_TRUNCATE , **__a) -> Dict: '''simple docstring''' _UpperCamelCase = self._parse_and_tokenize(__a , truncation=__a , **__a) return inputs def UpperCAmelCase ( self , __a , **__a) -> Optional[int]: '''simple docstring''' if self.framework == "pt": _UpperCamelCase , _UpperCamelCase = model_inputs['''input_ids'''].shape elif self.framework == "tf": _UpperCamelCase , _UpperCamelCase = tf.shape(model_inputs['''input_ids''']).numpy() _UpperCamelCase = generate_kwargs.get('''min_length''' , self.model.config.min_length) _UpperCamelCase = generate_kwargs.get('''max_length''' , self.model.config.max_length) self.check_inputs(__a , generate_kwargs['''min_length'''] , generate_kwargs['''max_length''']) _UpperCamelCase = self.model.generate(**__a , **__a) _UpperCamelCase = output_ids.shape[0] if self.framework == "pt": _UpperCamelCase = output_ids.reshape(__a , out_b // in_b , *output_ids.shape[1:]) elif self.framework == "tf": _UpperCamelCase = tf.reshape(__a , (in_b, out_b // in_b, *output_ids.shape[1:])) return {"output_ids": output_ids} def UpperCAmelCase ( self , __a , __a=ReturnType.TEXT , __a=False) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = [] for output_ids in model_outputs["output_ids"][0]: if return_type == ReturnType.TENSORS: _UpperCamelCase = {F'''{self.return_name}_token_ids''': output_ids} elif return_type == ReturnType.TEXT: _UpperCamelCase = { F'''{self.return_name}_text''': self.tokenizer.decode( __a , skip_special_tokens=__a , clean_up_tokenization_spaces=__a , ) } records.append(__a) return records @add_end_docstrings(lowerCamelCase ) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'summary' def __call__( self , *__a , **__a) -> Dict: '''simple docstring''' return super().__call__(*__a , **__a) def UpperCAmelCase ( self , __a , __a , __a) -> bool: '''simple docstring''' if max_length < min_length: logger.warning(F'''Your min_length={min_length} must be inferior than your max_length={max_length}.''') if input_length < max_length: logger.warning( F'''Your max_length is set to {max_length}, but your input_length is only {input_length}. Since this is ''' '''a summarization task, where outputs shorter than the input are typically wanted, you might ''' F'''consider decreasing max_length manually, e.g. summarizer(\'...\', max_length={input_length//2})''') @add_end_docstrings(lowerCamelCase ) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'translation' def UpperCAmelCase ( self , __a , __a , __a) -> List[str]: '''simple docstring''' if input_length > 0.9 * max_length: logger.warning( F'''Your input_length: {input_length} is bigger than 0.9 * max_length: {max_length}. You might consider ''' '''increasing your max_length manually, e.g. translator(\'...\', max_length=400)''') return True def UpperCAmelCase ( self , *__a , __a=TruncationStrategy.DO_NOT_TRUNCATE , __a=None , __a=None) -> Dict: '''simple docstring''' if getattr(self.tokenizer , '''_build_translation_inputs''' , __a): return self.tokenizer._build_translation_inputs( *__a , return_tensors=self.framework , truncation=__a , src_lang=__a , tgt_lang=__a) else: return super()._parse_and_tokenize(*__a , truncation=__a) def UpperCAmelCase ( self , __a=None , __a=None , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = super()._sanitize_parameters(**__a) if src_lang is not None: _UpperCamelCase = src_lang if tgt_lang is not None: _UpperCamelCase = tgt_lang if src_lang is None and tgt_lang is None: # Backward compatibility, direct arguments use is preferred. _UpperCamelCase = kwargs.get('''task''' , self.task) _UpperCamelCase = task.split('''_''') if task and len(__a) == 4: # translation, XX, to YY _UpperCamelCase = items[1] _UpperCamelCase = items[3] return preprocess_params, forward_params, postprocess_params def __call__( self , *__a , **__a) -> Dict: '''simple docstring''' return super().__call__(*__a , **__a)
19
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=32 , __a=3 , __a=4 , __a=[10, 20, 30, 40] , __a=[2, 2, 3, 2] , __a=True , __a=True , __a=37 , __a="gelu" , __a=10 , __a=0.02 , __a=["stage2", "stage3", "stage4"] , __a=3 , __a=None , ) -> Optional[Any]: '''simple docstring''' _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 = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = out_features _UpperCamelCase = num_labels _UpperCamelCase = scope _UpperCamelCase = num_stages def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Any: '''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) -> Optional[int]: '''simple docstring''' return UperNetConfig( backbone_config=self.get_backbone_config() , hidden_size=5_12 , pool_scales=[1, 2, 3, 6] , use_auxiliary_head=__a , auxiliary_loss_weight=0.4 , auxiliary_in_channels=40 , auxiliary_channels=2_56 , auxiliary_num_convs=1 , auxiliary_concat_input=__a , loss_ignore_index=2_55 , num_labels=self.num_labels , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = UperNetForSemanticSegmentation(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual( result.logits.shape , (self.batch_size, self.num_labels, self.image_size, self.image_size)) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (UperNetForSemanticSegmentation,) if is_torch_available() else () lowercase__ = {'image-segmentation': UperNetForSemanticSegmentation} if is_torch_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = UperNetModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , 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) -> List[Any]: '''simple docstring''' return def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__a) @unittest.skip(reason='''UperNet does not use inputs_embeds''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not support input and output embeddings''') def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> int: '''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) -> Union[str, 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) -> List[Any]: '''simple docstring''' def check_hidden_states_output(__a , __a , __a): _UpperCamelCase = model_class(__a) model.to(__a) model.eval() with torch.no_grad(): _UpperCamelCase = model(**self._prepare_for_class(__a , __a)) _UpperCamelCase = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states _UpperCamelCase = self.model_tester.num_stages self.assertEqual(len(__a) , 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 = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) _UpperCamelCase = _config_zero_init(configs_no_init.backbone_config) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) 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) -> Optional[int]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''', repo_type='''dataset''', filename='''ADE_val_00000001.jpg''' ) _UpperCamelCase = Image.open(__snake_case ).convert('''RGB''' ) return image @require_torch @require_vision @slow class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4))
19
1
"""simple docstring""" import logging import os import threading import time try: import warnings except ImportError: _a = None try: import msvcrt except ImportError: _a = None try: import fcntl except ImportError: _a = None # Backward compatibility # ------------------------------------------------ try: TimeoutError except NameError: _a = OSError # Data # ------------------------------------------------ _a = [ """Timeout""", """BaseFileLock""", """WindowsFileLock""", """UnixFileLock""", """SoftFileLock""", """FileLock""", ] _a = """3.0.12""" _a = None def lowerCamelCase__ ( ) -> List[Any]: """simple docstring""" global _logger _UpperCamelCase = _logger or logging.getLogger(__name__ ) return _logger class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = lock_file return None def __str__( self) -> str: '''simple docstring''' _UpperCamelCase = F'''The file lock \'{self.lock_file}\' could not be acquired.''' return temp class _UpperCAmelCase: def __init__( self , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = lock return None def __enter__( self) -> List[Any]: '''simple docstring''' return self.lock def __exit__( self , __a , __a , __a) -> List[str]: '''simple docstring''' self.lock.release() return None class _UpperCAmelCase: def __init__( self , __a , __a=-1 , __a=None) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = max_filename_length if max_filename_length is not None else 2_55 # Hash the filename if it's too long _UpperCamelCase = self.hash_filename_if_too_long(__a , __a) # The path to the lock file. _UpperCamelCase = lock_file # The file descriptor for the *_lock_file* as it is returned by the # os.open() function. # This file lock is only NOT None, if the object currently holds the # lock. _UpperCamelCase = None # The default timeout value. _UpperCamelCase = timeout # We use this lock primarily for the lock counter. _UpperCamelCase = threading.Lock() # The lock counter is used for implementing the nested locking # mechanism. Whenever the lock is acquired, the counter is increased and # the lock is only released, when this value is 0 again. _UpperCamelCase = 0 return None @property def UpperCAmelCase ( self) -> str: '''simple docstring''' return self._lock_file @property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return self._timeout @timeout.setter def UpperCAmelCase ( self , __a) -> List[str]: '''simple docstring''' _UpperCamelCase = float(__a) return None def UpperCAmelCase ( self) -> Any: '''simple docstring''' raise NotImplementedError() def UpperCAmelCase ( self) -> int: '''simple docstring''' raise NotImplementedError() @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return self._lock_file_fd is not None def UpperCAmelCase ( self , __a=None , __a=0.05) -> str: '''simple docstring''' # Use the default timeout, if no timeout is provided. if timeout is None: _UpperCamelCase = self.timeout # Increment the number right at the beginning. # We can still undo it, if something fails. with self._thread_lock: self._lock_counter += 1 _UpperCamelCase = id(self) _UpperCamelCase = self._lock_file _UpperCamelCase = time.time() try: while True: with self._thread_lock: if not self.is_locked: logger().debug(F'''Attempting to acquire lock {lock_id} on {lock_filename}''') self._acquire() if self.is_locked: logger().debug(F'''Lock {lock_id} acquired on {lock_filename}''') break elif timeout >= 0 and time.time() - start_time > timeout: logger().debug(F'''Timeout on acquiring lock {lock_id} on {lock_filename}''') raise Timeout(self._lock_file) else: logger().debug( F'''Lock {lock_id} not acquired on {lock_filename}, waiting {poll_intervall} seconds ...''') time.sleep(__a) except: # noqa # Something did go wrong, so decrement the counter. with self._thread_lock: _UpperCamelCase = max(0 , self._lock_counter - 1) raise return _Acquire_ReturnProxy(lock=self) def UpperCAmelCase ( self , __a=False) -> Tuple: '''simple docstring''' with self._thread_lock: if self.is_locked: self._lock_counter -= 1 if self._lock_counter == 0 or force: _UpperCamelCase = id(self) _UpperCamelCase = self._lock_file logger().debug(F'''Attempting to release lock {lock_id} on {lock_filename}''') self._release() _UpperCamelCase = 0 logger().debug(F'''Lock {lock_id} released on {lock_filename}''') return None def __enter__( self) -> Dict: '''simple docstring''' self.acquire() return self def __exit__( self , __a , __a , __a) -> List[str]: '''simple docstring''' self.release() return None def __del__( self) -> str: '''simple docstring''' self.release(force=__a) return None def UpperCAmelCase ( self , __a , __a) -> str: '''simple docstring''' _UpperCamelCase = os.path.basename(__a) if len(__a) > max_length and max_length > 0: _UpperCamelCase = os.path.dirname(__a) _UpperCamelCase = str(hash(__a)) _UpperCamelCase = filename[: max_length - len(__a) - 8] + '''...''' + hashed_filename + '''.lock''' return os.path.join(__a , __a) else: return path class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a , __a=-1 , __a=None) -> Union[str, Any]: '''simple docstring''' from .file_utils import relative_to_absolute_path super().__init__(__a , timeout=__a , max_filename_length=__a) _UpperCamelCase = '''\\\\?\\''' + relative_to_absolute_path(self.lock_file) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = os.O_RDWR | os.O_CREAT | os.O_TRUNC try: _UpperCamelCase = os.open(self._lock_file , __a) except OSError: pass else: try: msvcrt.locking(__a , msvcrt.LK_NBLCK , 1) except OSError: os.close(__a) else: _UpperCamelCase = fd return None def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self._lock_file_fd _UpperCamelCase = None msvcrt.locking(__a , msvcrt.LK_UNLCK , 1) os.close(__a) try: os.remove(self._lock_file) # Probably another instance of the application # that acquired the file lock. except OSError: pass return None class _UpperCAmelCase( lowerCamelCase ): def __init__( self , __a , __a=-1 , __a=None) -> str: '''simple docstring''' _UpperCamelCase = os.statvfs(os.path.dirname(__a)).f_namemax super().__init__(__a , timeout=__a , max_filename_length=__a) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = os.O_RDWR | os.O_CREAT | os.O_TRUNC _UpperCamelCase = os.open(self._lock_file , __a) try: fcntl.flock(__a , fcntl.LOCK_EX | fcntl.LOCK_NB) except OSError: os.close(__a) else: _UpperCamelCase = fd return None def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' # Do not remove the lockfile: # # https://github.com/benediktschmitt/py-filelock/issues/31 # https://stackoverflow.com/questions/17708885/flock-removing-locked-file-without-race-condition _UpperCamelCase = self._lock_file_fd _UpperCamelCase = None fcntl.flock(__a , fcntl.LOCK_UN) os.close(__a) return None class _UpperCAmelCase( lowerCamelCase ): def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = os.O_WRONLY | os.O_CREAT | os.O_EXCL | os.O_TRUNC try: _UpperCamelCase = os.open(self._lock_file , __a) except OSError: pass else: _UpperCamelCase = fd return None def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' os.close(self._lock_file_fd) _UpperCamelCase = None try: os.remove(self._lock_file) # The file is already deleted and that's what we want. except OSError: pass return None _a = None if msvcrt: _a = WindowsFileLock elif fcntl: _a = UnixFileLock else: _a = SoftFileLock if warnings is not None: warnings.warn("""only soft file lock is available""")
19
"""simple docstring""" import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DDPMScheduler,) def UpperCAmelCase ( self , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 10_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**__a) return config def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for timesteps in [1, 5, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> int: '''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=__a , beta_end=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for clip_sample in [True, False]: self.check_over_configs(clip_sample=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.check_over_configs(thresholding=__a) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=__a , prediction_type=__a , sample_max_value=__a , ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for t in [0, 5_00, 9_99]: self.check_over_forward(time_step=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) assert torch.sum(torch.abs(scheduler._get_variance(0) - 0.0)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_87) - 0.0_0979)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_99) - 0.02)) < 1e-5 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 258.9606) < 1e-2 assert abs(result_mean.item() - 0.3372) < 1e-3 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 202.0296) < 1e-2 assert abs(result_mean.item() - 0.2631) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] scheduler.set_timesteps(timesteps=__a) _UpperCamelCase = scheduler.timesteps for i, timestep in enumerate(__a): if i == len(__a) - 1: _UpperCamelCase = -1 else: _UpperCamelCase = timesteps[i + 1] _UpperCamelCase = scheduler.previous_timestep(__a) _UpperCamelCase = prev_t.item() self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 51, 0] with self.assertRaises(__a , msg='''`custom_timesteps` must be in descending order.'''): scheduler.set_timesteps(timesteps=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] _UpperCamelCase = len(__a) with self.assertRaises(__a , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.'''): scheduler.set_timesteps(num_inference_steps=__a , timesteps=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [scheduler.config.num_train_timesteps] with self.assertRaises( __a , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=__a)
19
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 lowerCamelCase__ ( __snake_case ) -> Any: """simple docstring""" _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 lowerCamelCase__ ( __snake_case ) -> int: """simple docstring""" _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 _UpperCAmelCase: def __init__( self , __a , __a) -> 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 UpperCAmelCase ( self) -> str: '''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(__a) == 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 * 36_00 + minutes * 60 + seconds _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = total_secs // 36_00, (total_secs % 36_00) // 60, total_secs % 60 return F'''{int(__a)}h{int(__a)}m{int(__a)}s''' @property def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return {"type": "header", "text": {"type": "plain_text", "text": self.title}} @property def UpperCAmelCase ( self) -> Dict: '''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) -> Dict: '''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) -> Dict: '''simple docstring''' _UpperCamelCase = 40 _UpperCamelCase = {k: v['''failed'''] for k, v in doc_test_results.items() if isinstance(__a , __a)} _UpperCamelCase = '''''' for category, failures in category_failures.items(): if len(__a) == 0: continue if report != "": report += "\n\n" report += F'''*{category} failures*:'''.ljust(line_length // 2).rjust(line_length // 2) + "\n" report += "`" report += "`\n`".join(__a) report += "`" return { "type": "section", "text": { "type": "mrkdwn", "text": F'''The following examples had failures:\n\n\n{report}\n''', }, } @property def UpperCAmelCase ( self) -> str: '''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(__a) @staticmethod def UpperCAmelCase ( ) -> str: '''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(__a)})) client.chat_postMessage( channel=os.environ['''CI_SLACK_CHANNEL_ID_DAILY'''] , text='''There was an issue running the tests.''' , blocks=__a , ) def UpperCAmelCase ( 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=__a , ) def UpperCAmelCase ( self , __a , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = '''''' for key, value in failures.items(): _UpperCamelCase = value[:2_00] + ''' [Truncated]''' if len(__a) > 2_50 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) -> 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 __a: 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(__a , __a , __a , text=__a) 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=__a , thread_ts=self.thread_ts['''ts'''] , ) time.sleep(1) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _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_00) / 1_00 ) 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 lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" _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 lowerCamelCase__ ( ) -> int: """simple docstring""" class _UpperCAmelCase: def __init__( self , __a) -> str: '''simple docstring''' _UpperCamelCase = name _UpperCamelCase = [] def __str__( self) -> int: '''simple docstring''' return self.name def UpperCAmelCase ( self , __a) -> Any: '''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__": _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()
19
"""simple docstring""" from __future__ import annotations from functools import lru_cache from math import ceil _a = 100 _a = set(range(3, NUM_PRIMES, 2)) primes.add(2) _a = 42 for prime in range(3, ceil(NUM_PRIMES**0.5), 2): if prime not in primes: continue primes.difference_update(set(range(prime * prime, NUM_PRIMES, prime))) @lru_cache(maxsize=1_00 ) def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" if number_to_partition < 0: return set() elif number_to_partition == 0: return {1} _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = 42 for prime in primes: if prime > number_to_partition: continue for sub in partition(number_to_partition - prime ): ret.add(sub * prime ) return ret def lowerCamelCase__ ( __snake_case = 50_00 ) -> int | None: """simple docstring""" for number_to_partition in range(1, __snake_case ): if len(partition(__snake_case ) ) > number_unique_partitions: return number_to_partition return None if __name__ == "__main__": print(F"""{solution() = }""")
19
1
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=32 , __a=3 , __a=4 , __a=[10, 20, 30, 40] , __a=[2, 2, 3, 2] , __a=True , __a=True , __a=37 , __a="gelu" , __a=10 , __a=0.02 , __a=["stage2", "stage3", "stage4"] , __a=3 , __a=None , ) -> Optional[Any]: '''simple docstring''' _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 = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = out_features _UpperCamelCase = num_labels _UpperCamelCase = scope _UpperCamelCase = num_stages def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Any: '''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) -> Optional[int]: '''simple docstring''' return UperNetConfig( backbone_config=self.get_backbone_config() , hidden_size=5_12 , pool_scales=[1, 2, 3, 6] , use_auxiliary_head=__a , auxiliary_loss_weight=0.4 , auxiliary_in_channels=40 , auxiliary_channels=2_56 , auxiliary_num_convs=1 , auxiliary_concat_input=__a , loss_ignore_index=2_55 , num_labels=self.num_labels , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = UperNetForSemanticSegmentation(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual( result.logits.shape , (self.batch_size, self.num_labels, self.image_size, self.image_size)) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (UperNetForSemanticSegmentation,) if is_torch_available() else () lowercase__ = {'image-segmentation': UperNetForSemanticSegmentation} if is_torch_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = UperNetModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , 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) -> List[Any]: '''simple docstring''' return def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__a) @unittest.skip(reason='''UperNet does not use inputs_embeds''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not support input and output embeddings''') def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> int: '''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) -> Union[str, 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) -> List[Any]: '''simple docstring''' def check_hidden_states_output(__a , __a , __a): _UpperCamelCase = model_class(__a) model.to(__a) model.eval() with torch.no_grad(): _UpperCamelCase = model(**self._prepare_for_class(__a , __a)) _UpperCamelCase = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states _UpperCamelCase = self.model_tester.num_stages self.assertEqual(len(__a) , 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 = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) _UpperCamelCase = _config_zero_init(configs_no_init.backbone_config) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) 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) -> Optional[int]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''', repo_type='''dataset''', filename='''ADE_val_00000001.jpg''' ) _UpperCamelCase = Image.open(__snake_case ).convert('''RGB''' ) return image @require_torch @require_vision @slow class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4))
19
"""simple docstring""" from collections.abc import Callable import numpy as np def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> np.array: """simple docstring""" _UpperCamelCase = int(np.ceil((x_end - xa) / step_size ) ) _UpperCamelCase = np.zeros((n + 1,) ) _UpperCamelCase = ya _UpperCamelCase = xa for k in range(__snake_case ): _UpperCamelCase = y[k] + step_size * ode_func(__snake_case, y[k] ) _UpperCamelCase = y[k] + ( (step_size / 2) * (ode_func(__snake_case, y[k] ) + ode_func(x + step_size, __snake_case )) ) x += step_size return y if __name__ == "__main__": import doctest doctest.testmod()
19
1
"""simple docstring""" def lowerCamelCase__ ( ) -> Dict: """simple docstring""" _UpperCamelCase = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] _UpperCamelCase = 6 _UpperCamelCase = 1 _UpperCamelCase = 19_01 _UpperCamelCase = 0 while year < 20_01: day += 7 if (year % 4 == 0 and year % 1_00 != 0) or (year % 4_00 == 0): if day > days_per_month[month - 1] and month != 2: month += 1 _UpperCamelCase = day - days_per_month[month - 2] elif day > 29 and month == 2: month += 1 _UpperCamelCase = day - 29 else: if day > days_per_month[month - 1]: month += 1 _UpperCamelCase = day - days_per_month[month - 2] if month > 12: year += 1 _UpperCamelCase = 1 if year < 20_01 and day == 1: sundays += 1 return sundays if __name__ == "__main__": print(solution())
19
"""simple docstring""" import argparse import torch from transformers import BertForMaskedLM if __name__ == "__main__": _a = argparse.ArgumentParser( description=( """Extraction some layers of the full BertForMaskedLM or RObertaForMaskedLM for Transfer Learned""" """ Distillation""" ) ) parser.add_argument("""--model_type""", default="""bert""", choices=["""bert"""]) parser.add_argument("""--model_name""", default="""bert-base-uncased""", type=str) parser.add_argument("""--dump_checkpoint""", default="""serialization_dir/tf_bert-base-uncased_0247911.pth""", type=str) parser.add_argument("""--vocab_transform""", action="""store_true""") _a = parser.parse_args() if args.model_type == "bert": _a = BertForMaskedLM.from_pretrained(args.model_name) _a = """bert""" else: raise ValueError("""args.model_type should be \"bert\".""") _a = model.state_dict() _a = {} for w in ["word_embeddings", "position_embeddings"]: _a = state_dict[F"""{prefix}.embeddings.{w}.weight"""] for w in ["weight", "bias"]: _a = state_dict[F"""{prefix}.embeddings.LayerNorm.{w}"""] _a = 0 for teacher_idx in [0, 2, 4, 7, 9, 11]: for w in ["weight", "bias"]: _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.query.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.key.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.value.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.LayerNorm.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.intermediate.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.LayerNorm.{w}""" ] std_idx += 1 _a = state_dict["""cls.predictions.decoder.weight"""] _a = state_dict["""cls.predictions.bias"""] if args.vocab_transform: for w in ["weight", "bias"]: _a = state_dict[F"""cls.predictions.transform.dense.{w}"""] _a = state_dict[F"""cls.predictions.transform.LayerNorm.{w}"""] print(F"""N layers selected for distillation: {std_idx}""") print(F"""Number of params transferred for distillation: {len(compressed_sd.keys())}""") print(F"""Save transferred checkpoint to {args.dump_checkpoint}.""") torch.save(compressed_sd, args.dump_checkpoint)
19
1
"""simple docstring""" from diffusers.utils.testing_utils import require_onnxruntime @require_onnxruntime class _UpperCAmelCase: pass
19
"""simple docstring""" import unittest from transformers import PegasusConfig, PegasusTokenizer, is_flax_available from transformers.testing_utils import require_flax, slow from ...test_configuration_common import ConfigTester from ...test_modeling_flax_common import FlaxModelTesterMixin, ids_tensor if is_flax_available(): import os # The slow tests are often failing with OOM error on GPU # This makes JAX allocate exactly what is needed on demand, and deallocate memory that is no longer needed # but will be slower as stated here https://jax.readthedocs.io/en/latest/gpu_memory_allocation.html _a = """platform""" import jax import jax.numpy as jnp import numpy as np from transformers import FlaxPegasusForConditionalGeneration, FlaxPegasusModel @require_flax class _UpperCAmelCase: lowercase__ = PegasusConfig lowercase__ = {} lowercase__ = 'gelu' def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=False , __a=99 , __a=32 , __a=5 , __a=4 , __a=37 , __a=0.1 , __a=0.1 , __a=20 , __a=2 , __a=1 , __a=0 , ) -> int: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = eos_token_id _UpperCamelCase = pad_token_id _UpperCamelCase = bos_token_id def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size).clip(3 , self.vocab_size) _UpperCamelCase = np.expand_dims(np.array([self.eos_token_id] * self.batch_size) , 1) _UpperCamelCase = np.concatenate([input_ids, eos_tensor] , axis=1) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_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_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) _UpperCamelCase = prepare_pegasus_inputs_dict(__a , __a , __a) return config, inputs_dict def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.ones((decoder_input_ids.shape[0], max_decoder_length) , dtype='''i4''') _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , decoder_attention_mask=__a , past_key_values=outputs_cache.past_key_values , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def UpperCAmelCase ( self , __a , __a , __a) -> Tuple: '''simple docstring''' _UpperCamelCase = 20 _UpperCamelCase = model_class_name(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids''']) _UpperCamelCase , _UpperCamelCase = ( inputs_dict['''decoder_input_ids'''], inputs_dict['''decoder_attention_mask'''], ) _UpperCamelCase = jnp.concatenate( [ decoder_attention_mask, jnp.zeros((decoder_attention_mask.shape[0], max_decoder_length - decoder_attention_mask.shape[1])), ] , axis=-1 , ) _UpperCamelCase = model.init_cache(decoder_input_ids.shape[0] , __a , __a) _UpperCamelCase = jnp.broadcast_to( jnp.arange(decoder_input_ids.shape[-1] - 1)[None, :] , (decoder_input_ids.shape[0], decoder_input_ids.shape[-1] - 1) , ) _UpperCamelCase = model.decode( decoder_input_ids[:, :-1] , __a , decoder_attention_mask=__a , past_key_values=__a , decoder_position_ids=__a , ) _UpperCamelCase = jnp.array(decoder_input_ids.shape[0] * [[decoder_input_ids.shape[-1] - 1]] , dtype='''i4''') _UpperCamelCase = model.decode( decoder_input_ids[:, -1:] , __a , past_key_values=outputs_cache.past_key_values , decoder_attention_mask=__a , decoder_position_ids=__a , ) _UpperCamelCase = model.decode(__a , __a , decoder_attention_mask=__a) _UpperCamelCase = np.max(np.abs((outputs_cache_next[0][:, -1, :5] - outputs[0][:, -1, :5]))) self.parent.assertTrue(diff < 1e-3 , msg=F'''Max diff is {diff}''') def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=None, __snake_case=None, ) -> Union[str, Any]: """simple docstring""" if attention_mask is None: _UpperCamelCase = np.not_equal(__snake_case, config.pad_token_id ).astype(np.inta ) if decoder_attention_mask is None: _UpperCamelCase = np.concatenate( [ np.ones(decoder_input_ids[:, :1].shape, dtype=np.inta ), np.not_equal(decoder_input_ids[:, 1:], config.pad_token_id ).astype(np.inta ), ], axis=-1, ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, } @require_flax class _UpperCAmelCase( lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( FlaxPegasusForConditionalGeneration, FlaxPegasusModel, ) if is_flax_available() else () ) lowercase__ = (FlaxPegasusForConditionalGeneration,) if is_flax_available() else () lowercase__ = True lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = FlaxPegasusModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: self.model_tester.check_use_cache_forward_with_attn_mask(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = self._prepare_for_class(__a , __a) _UpperCamelCase = model_class(__a) @jax.jit def encode_jitted(__a , __a=None , **__a): return model.encode(input_ids=__a , attention_mask=__a) with self.subTest('''JIT Enabled'''): _UpperCamelCase = encode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = encode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__): _UpperCamelCase = model_class(__a) _UpperCamelCase = model.encode(inputs_dict['''input_ids'''] , inputs_dict['''attention_mask''']) _UpperCamelCase = { '''decoder_input_ids''': inputs_dict['''decoder_input_ids'''], '''decoder_attention_mask''': inputs_dict['''decoder_attention_mask'''], '''encoder_outputs''': encoder_outputs, } @jax.jit def decode_jitted(__a , __a , __a): return model.decode( decoder_input_ids=__a , decoder_attention_mask=__a , encoder_outputs=__a , ) with self.subTest('''JIT Enabled'''): _UpperCamelCase = decode_jitted(**__a).to_tuple() with self.subTest('''JIT Disabled'''): with jax.disable_jit(): _UpperCamelCase = decode_jitted(**__a).to_tuple() self.assertEqual(len(__a) , len(__a)) for jitted_output, output in zip(__a , __a): self.assertEqual(jitted_output.shape , output.shape) @slow def UpperCAmelCase ( self) -> int: '''simple docstring''' for model_class_name in self.all_model_classes: _UpperCamelCase = model_class_name.from_pretrained('''google/pegasus-large''' , from_pt=__a) _UpperCamelCase = np.ones((1, 1)) _UpperCamelCase = model(__a) self.assertIsNotNone(__a) @slow def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = FlaxPegasusForConditionalGeneration.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = PegasusTokenizer.from_pretrained('''google/pegasus-xsum''') _UpperCamelCase = [ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] _UpperCamelCase = [ '''California\'s largest electricity provider has turned off power to hundreds of thousands of customers.''', '''Pop group N-Dubz have revealed they were surprised to get four nominations for this year\'s Mobo Awards.''', ] _UpperCamelCase = tokenizer(__a , return_tensors='''np''' , truncation=__a , max_length=5_12 , padding=__a) _UpperCamelCase = model.generate(**__a , num_beams=2).sequences _UpperCamelCase = tokenizer.batch_decode(__a , skip_special_tokens=__a) assert tgt_text == decoded
19
1
"""simple docstring""" import warnings from typing import List import numpy as np from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding from ...utils import is_flax_available, is_tf_available, is_torch_available class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'OwlViTImageProcessor' lowercase__ = ('CLIPTokenizer', 'CLIPTokenizerFast') def __init__( self , __a=None , __a=None , **__a) -> Tuple: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) def __call__( self , __a=None , __a=None , __a=None , __a="max_length" , __a="np" , **__a) -> Optional[int]: '''simple docstring''' if text is None and query_images is None and images is None: raise ValueError( '''You have to specify at least one text or query image or image. All three cannot be none.''') if text is not None: if isinstance(__a , __a) or (isinstance(__a , __a) and not isinstance(text[0] , __a)): _UpperCamelCase = [self.tokenizer(__a , padding=__a , return_tensors=__a , **__a)] elif isinstance(__a , __a) and isinstance(text[0] , __a): _UpperCamelCase = [] # Maximum number of queries across batch _UpperCamelCase = max([len(__a) for t in text]) # Pad all batch samples to max number of text queries for t in text: if len(__a) != max_num_queries: _UpperCamelCase = t + [''' '''] * (max_num_queries - len(__a)) _UpperCamelCase = self.tokenizer(__a , padding=__a , return_tensors=__a , **__a) encodings.append(__a) else: raise TypeError('''Input text should be a string, a list of strings or a nested list of strings''') if return_tensors == "np": _UpperCamelCase = np.concatenate([encoding['''input_ids'''] for encoding in encodings] , axis=0) _UpperCamelCase = np.concatenate([encoding['''attention_mask'''] for encoding in encodings] , axis=0) elif return_tensors == "jax" and is_flax_available(): import jax.numpy as jnp _UpperCamelCase = jnp.concatenate([encoding['''input_ids'''] for encoding in encodings] , axis=0) _UpperCamelCase = jnp.concatenate([encoding['''attention_mask'''] for encoding in encodings] , axis=0) elif return_tensors == "pt" and is_torch_available(): import torch _UpperCamelCase = torch.cat([encoding['''input_ids'''] for encoding in encodings] , dim=0) _UpperCamelCase = torch.cat([encoding['''attention_mask'''] for encoding in encodings] , dim=0) elif return_tensors == "tf" and is_tf_available(): import tensorflow as tf _UpperCamelCase = tf.stack([encoding['''input_ids'''] for encoding in encodings] , axis=0) _UpperCamelCase = tf.stack([encoding['''attention_mask'''] for encoding in encodings] , axis=0) else: raise ValueError('''Target return tensor type could not be returned''') _UpperCamelCase = BatchEncoding() _UpperCamelCase = input_ids _UpperCamelCase = attention_mask if query_images is not None: _UpperCamelCase = BatchEncoding() _UpperCamelCase = self.image_processor( __a , return_tensors=__a , **__a).pixel_values _UpperCamelCase = query_pixel_values if images is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if text is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif query_images is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif text is not None or query_images is not None: return encoding else: return BatchEncoding(data=dict(**__a) , tensor_type=__a) def UpperCAmelCase ( self , *__a , **__a) -> Dict: '''simple docstring''' return self.image_processor.post_process(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> str: '''simple docstring''' return self.image_processor.post_process_object_detection(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> Union[str, Any]: '''simple docstring''' return self.image_processor.post_process_image_guided_detection(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> int: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> Dict: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
"""simple docstring""" from __future__ import annotations import unittest from transformers import 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 numpy import tensorflow as tf from transformers import ( TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST, TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST, BertConfig, DPRConfig, TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=7 , __a=True , __a=True , __a=True , __a=True , __a=99 , __a=32 , __a=2 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=5_12 , __a=16 , __a=2 , __a=0.02 , __a=3 , __a=4 , __a=None , __a=0 , ) -> Any: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = seq_length _UpperCamelCase = is_training _UpperCamelCase = use_input_mask _UpperCamelCase = use_token_type_ids _UpperCamelCase = use_labels _UpperCamelCase = vocab_size _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = max_position_embeddings _UpperCamelCase = type_vocab_size _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = num_labels _UpperCamelCase = num_choices _UpperCamelCase = scope _UpperCamelCase = projection_dim def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) _UpperCamelCase = None if self.use_input_mask: # follow test_modeling_tf_ctrl.py _UpperCamelCase = random_attention_mask([self.batch_size, self.seq_length]) _UpperCamelCase = None if self.use_token_type_ids: _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) _UpperCamelCase = None _UpperCamelCase = None _UpperCamelCase = None if self.use_labels: _UpperCamelCase = ids_tensor([self.batch_size] , self.type_sequence_label_size) _UpperCamelCase = ids_tensor([self.batch_size, self.seq_length] , self.num_labels) _UpperCamelCase = ids_tensor([self.batch_size] , self.num_choices) _UpperCamelCase = BertConfig( 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=__a , initializer_range=self.initializer_range , ) _UpperCamelCase = DPRConfig(projection_dim=self.projection_dim , **config.to_dict()) return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Optional[int]: '''simple docstring''' _UpperCamelCase = TFDPRContextEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder(config=__a) _UpperCamelCase = model(__a , attention_mask=__a , token_type_ids=__a) _UpperCamelCase = model(__a , token_type_ids=__a) _UpperCamelCase = model(__a) self.parent.assertEqual(result.pooler_output.shape , (self.batch_size, self.projection_dim or self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a , __a , __a , __a , __a) -> Dict: '''simple docstring''' _UpperCamelCase = TFDPRReader(config=__a) _UpperCamelCase = model(__a , attention_mask=__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)) self.parent.assertEqual(result.relevance_logits.shape , (self.batch_size,)) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''input_ids''': input_ids} return config, inputs_dict @require_tf class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = ( ( TFDPRContextEncoder, TFDPRQuestionEncoder, TFDPRReader, ) if is_tf_available() else () ) lowercase__ = {'feature-extraction': TFDPRQuestionEncoder} if is_tf_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , hidden_size=37) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.config_tester.run_common_tests() def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_context_encoder(*__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_question_encoder(*__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_dpr_reader(*__a) @slow def UpperCAmelCase ( self) -> str: '''simple docstring''' for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_CONTEXT_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRContextEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_QUESTION_ENCODER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained(__a) self.assertIsNotNone(__a) for model_name in TF_DPR_READER_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = TFDPRReader.from_pretrained(__a) self.assertIsNotNone(__a) @require_tf class _UpperCAmelCase( unittest.TestCase ): @slow def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = TFDPRQuestionEncoder.from_pretrained('''facebook/dpr-question_encoder-single-nq-base''') _UpperCamelCase = tf.constant( [[1_01, 75_92, 10_10, 20_03, 20_26, 38_99, 1_01_40, 10_29, 1_02]]) # [CLS] hello, is my dog cute? [SEP] _UpperCamelCase = model(__a)[0] # embedding shape = (1, 768) # compare the actual values for a slice. _UpperCamelCase = tf.constant( [ [ 0.0323_6253, 0.1275_3335, 0.1681_8509, 0.0027_9786, 0.389_6933, 0.2426_4945, 0.217_8971, -0.0233_5227, -0.0848_1959, -0.1432_4117, ] ]) self.assertTrue(numpy.allclose(output[:, :10].numpy() , expected_slice.numpy() , atol=1e-4))
19
1
import os def __lowercase ( ): """simple docstring""" with open(os.path.dirname(snake_case ) + '''/grid.txt''' ) as f: __magic_name__ :int = [] # noqa: E741 for _ in range(2_0 ): l.append([int(snake_case ) for x in f.readline().split()] ) __magic_name__ :Union[str, Any] = 0 # right for i in range(2_0 ): for j in range(1_7 ): __magic_name__ :Any = l[i][j] * l[i][j + 1] * l[i][j + 2] * l[i][j + 3] if temp > maximum: __magic_name__ :Optional[Any] = temp # down for i in range(1_7 ): for j in range(2_0 ): __magic_name__ :Optional[Any] = l[i][j] * l[i + 1][j] * l[i + 2][j] * l[i + 3][j] if temp > maximum: __magic_name__ :Optional[int] = temp # diagonal 1 for i in range(1_7 ): for j in range(1_7 ): __magic_name__ :int = l[i][j] * l[i + 1][j + 1] * l[i + 2][j + 2] * l[i + 3][j + 3] if temp > maximum: __magic_name__ :Optional[Any] = temp # diagonal 2 for i in range(1_7 ): for j in range(3, 2_0 ): __magic_name__ :int = l[i][j] * l[i + 1][j - 1] * l[i + 2][j - 2] * l[i + 3][j - 3] if temp > maximum: __magic_name__ :List[str] = temp return maximum if __name__ == "__main__": print(solution())
0
"""simple docstring""" import argparse import json from typing import List from ltp import LTP from transformers.models.bert.tokenization_bert import BertTokenizer def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" if ( (cp >= 0x4E00 and cp <= 0x9FFF) or (cp >= 0x3400 and cp <= 0x4DBF) # or (cp >= 0x2_0000 and cp <= 0x2_A6DF) # or (cp >= 0x2_A700 and cp <= 0x2_B73F) # or (cp >= 0x2_B740 and cp <= 0x2_B81F) # or (cp >= 0x2_B820 and cp <= 0x2_CEAF) # or (cp >= 0xF900 and cp <= 0xFAFF) or (cp >= 0x2_F800 and cp <= 0x2_FA1F) # ): # return True return False def lowerCamelCase__ ( __snake_case ) -> Optional[Any]: """simple docstring""" for char in word: _UpperCamelCase = ord(__snake_case ) if not _is_chinese_char(__snake_case ): return 0 return 1 def lowerCamelCase__ ( __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = set() for token in tokens: _UpperCamelCase = len(__snake_case ) > 1 and is_chinese(__snake_case ) if chinese_word: word_set.add(__snake_case ) _UpperCamelCase = list(__snake_case ) return word_list def lowerCamelCase__ ( __snake_case, __snake_case ) -> int: """simple docstring""" if not chinese_word_set: return bert_tokens _UpperCamelCase = max([len(__snake_case ) for w in chinese_word_set] ) _UpperCamelCase = bert_tokens _UpperCamelCase , _UpperCamelCase = 0, len(__snake_case ) while start < end: _UpperCamelCase = True if is_chinese(bert_word[start] ): _UpperCamelCase = min(end - start, __snake_case ) for i in range(__snake_case, 1, -1 ): _UpperCamelCase = ''''''.join(bert_word[start : start + i] ) if whole_word in chinese_word_set: for j in range(start + 1, start + i ): _UpperCamelCase = '''##''' + bert_word[j] _UpperCamelCase = start + i _UpperCamelCase = False break if single_word: start += 1 return bert_word def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = ltp_tokenizer.pipeline(lines[i : i + 1_00], tasks=['''cws'''] ).cws _UpperCamelCase = [get_chinese_word(__snake_case ) for r in res] ltp_res.extend(__snake_case ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for i in range(0, len(__snake_case ), 1_00 ): _UpperCamelCase = bert_tokenizer(lines[i : i + 1_00], add_special_tokens=__snake_case, truncation=__snake_case, max_length=5_12 ) bert_res.extend(res['''input_ids'''] ) assert len(__snake_case ) == len(__snake_case ) _UpperCamelCase = [] for input_ids, chinese_word in zip(__snake_case, __snake_case ): _UpperCamelCase = [] for id in input_ids: _UpperCamelCase = bert_tokenizer._convert_id_to_token(__snake_case ) input_tokens.append(__snake_case ) _UpperCamelCase = add_sub_symbol(__snake_case, __snake_case ) _UpperCamelCase = [] # We only save pos of chinese subwords start with ##, which mean is part of a whole word. for i, token in enumerate(__snake_case ): if token[:2] == "##": _UpperCamelCase = token[2:] # save chinese tokens' pos if len(__snake_case ) == 1 and _is_chinese_char(ord(__snake_case ) ): ref_id.append(__snake_case ) ref_ids.append(__snake_case ) assert len(__snake_case ) == len(__snake_case ) return ref_ids def lowerCamelCase__ ( __snake_case ) -> Optional[int]: """simple docstring""" with open(args.file_name, '''r''', encoding='''utf-8''' ) as f: _UpperCamelCase = f.readlines() _UpperCamelCase = [line.strip() for line in data if len(__snake_case ) > 0 and not line.isspace()] # avoid delimiter like '\u2029' _UpperCamelCase = LTP(args.ltp ) # faster in GPU device _UpperCamelCase = BertTokenizer.from_pretrained(args.bert ) _UpperCamelCase = prepare_ref(__snake_case, __snake_case, __snake_case ) with open(args.save_path, '''w''', encoding='''utf-8''' ) as f: _UpperCamelCase = [json.dumps(__snake_case ) + '''\n''' for ref in ref_ids] f.writelines(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser(description="""prepare_chinese_ref""") parser.add_argument( """--file_name""", required=False, type=str, default="""./resources/chinese-demo.txt""", help="""file need process, same as training data in lm""", ) parser.add_argument( """--ltp""", required=False, type=str, default="""./resources/ltp""", help="""resources for LTP tokenizer, usually a path""", ) parser.add_argument( """--bert""", required=False, type=str, default="""./resources/robert""", help="""resources for Bert tokenizer""", ) parser.add_argument( """--save_path""", required=False, type=str, default="""./resources/ref.txt""", help="""path to save res""", ) _a = parser.parse_args() main(args)
19
0
import os from shutil import copyfile from typing import List, Optional, Tuple from ...tokenization_utils_fast import PreTrainedTokenizerFast from ...utils import is_sentencepiece_available, logging if is_sentencepiece_available(): from .tokenization_pegasus import PegasusTokenizer else: __snake_case = None __snake_case = logging.get_logger(__name__) __snake_case = '''▁''' __snake_case = {'''vocab_file''': '''spiece.model''', '''tokenizer_file''': '''tokenizer.json'''} __snake_case = { '''vocab_file''': {'''google/pegasus-xsum''': '''https://huggingface.co/google/pegasus-xsum/resolve/main/spiece.model'''}, '''tokenizer_file''': { '''google/pegasus-xsum''': '''https://huggingface.co/google/pegasus-xsum/resolve/main/tokenizer.json''' }, } __snake_case = { '''google/pegasus-xsum''': 5_1_2, } class __lowerCamelCase (_a ): _lowercase = VOCAB_FILES_NAMES _lowercase = PRETRAINED_VOCAB_FILES_MAP _lowercase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _lowercase = PegasusTokenizer _lowercase = ["""input_ids""", """attention_mask"""] def __init__( self: Tuple,A_: Optional[Any]=None,A_: List[str]=None,A_: Dict="<pad>",A_: int="</s>",A_: List[str]="<unk>",A_: Tuple="<mask_2>",A_: Any="<mask_1>",A_: Union[str, Any]=None,A_: Optional[int]=103,**A_: List[str],): '''simple docstring''' __UpperCamelCase = offset if additional_special_tokens is not None: if not isinstance(A_,A_ ): raise TypeError( F'''additional_special_tokens should be of type {type(A_ )}, but is''' F''' {type(A_ )}''' ) __UpperCamelCase = ( ([mask_token_sent] + additional_special_tokens) if mask_token_sent not in additional_special_tokens and mask_token_sent is not None else additional_special_tokens ) # fill additional tokens with ..., <unk_token_102> in case not all additional tokens are already taken additional_special_tokens_extended += [ F'''<unk_{i}>''' for i in range(len(A_ ),self.offset - 1 ) ] if len(set(A_ ) ) != len(A_ ): raise ValueError( 'Please make sure that the provided additional_special_tokens do not contain an incorrectly' F''' shifted list of <unk_x> tokens. Found {additional_special_tokens_extended}.''' ) __UpperCamelCase = additional_special_tokens_extended else: __UpperCamelCase = [mask_token_sent] if mask_token_sent is not None else [] additional_special_tokens += [F'''<unk_{i}>''' for i in range(2,self.offset )] super().__init__( A_,tokenizer_file=A_,pad_token=A_,eos_token=A_,unk_token=A_,mask_token=A_,mask_token_sent=A_,offset=A_,additional_special_tokens=A_,**A_,) __UpperCamelCase = vocab_file __UpperCamelCase = False if not self.vocab_file else True def snake_case_ ( self: Optional[Any],A_: List[str] ): '''simple docstring''' __UpperCamelCase = set(self.all_special_ids ) # call it once instead of inside list comp all_special_ids.remove(self.unk_token_id ) # <unk> is only sometimes special if all_special_ids != set(range(len(self.additional_special_tokens ) + 3 ) ): raise ValueError( 'There should be 3 special tokens: mask_token, pad_token, and eos_token +' F''' {len(self.additional_special_tokens )} additional_special_tokens, but got {all_special_ids}''' ) return [1 if x in all_special_ids else 0 for x in seq] def snake_case_ ( self: List[Any],A_: List,A_: Optional[List] = None,A_: bool = False ): '''simple docstring''' if already_has_special_tokens: return self._special_token_mask(A_ ) elif token_ids_a is None: return self._special_token_mask(A_ ) + [1] else: return self._special_token_mask(token_ids_a + token_ids_a ) + [1] def snake_case_ ( self: int,A_: Dict,A_: List[Any]=None ): '''simple docstring''' if token_ids_a is None: return token_ids_a + [self.eos_token_id] # We don't expect to process pairs, but leave the pair logic for API consistency return token_ids_a + token_ids_a + [self.eos_token_id] def snake_case_ ( self: List[Any],A_: str,A_: Optional[str] = None ): '''simple docstring''' if not self.can_save_slow_tokenizer: raise ValueError( 'Your fast tokenizer does not have the necessary information to save the vocabulary for a slow ' 'tokenizer.' ) if not os.path.isdir(A_ ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return __UpperCamelCase = os.path.join( A_,(filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(A_ ): copyfile(self.vocab_file,A_ ) return (out_vocab_file,)
1
"""simple docstring""" import heapq def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" _UpperCamelCase = [] # for each node and his adjacency list add them and the rank of the node to queue # using heapq module the queue will be filled like a Priority Queue # heapq works with a min priority queue, so I used -1*len(v) to build it for key, value in graph.items(): # O(log(n)) heapq.heappush(__snake_case, [-1 * len(__snake_case ), (key, value)] ) # chosen_vertices = set of chosen vertices _UpperCamelCase = set() # while queue isn't empty and there are still edges # (queue[0][0] is the rank of the node with max rank) while queue and queue[0][0] != 0: # extract vertex with max rank from queue and add it to chosen_vertices _UpperCamelCase = heapq.heappop(__snake_case )[1][0] chosen_vertices.add(__snake_case ) # Remove all arcs adjacent to argmax for elem in queue: # if v haven't adjacent node, skip if elem[0] == 0: continue # if argmax is reachable from elem # remove argmax from elem's adjacent list and update his rank if argmax in elem[1][1]: _UpperCamelCase = elem[1][1].index(__snake_case ) del elem[1][1][index] elem[0] += 1 # re-order the queue heapq.heapify(__snake_case ) return chosen_vertices if __name__ == "__main__": import doctest doctest.testmod() _a = {0: [1, 3], 1: [0, 3], 2: [0, 3, 4], 3: [0, 1, 2], 4: [2, 3]} print(F"""Minimum vertex cover:\n{greedy_min_vertex_cover(graph)}""")
19
0
import warnings from ...utils import logging from .image_processing_videomae import VideoMAEImageProcessor UpperCAmelCase_ = logging.get_logger(__name__) class lowerCamelCase__ ( _A): """simple docstring""" def __init__( self : Union[str, Any] , *__lowerCAmelCase : Tuple , **__lowerCAmelCase : str ) -> None: warnings.warn( '''The class VideoMAEFeatureExtractor is deprecated and will be removed in version 5 of Transformers.''' ''' Please use VideoMAEImageProcessor instead.''' , __lowerCAmelCase , ) super().__init__(*__lowerCAmelCase , **__lowerCAmelCase )
2
"""simple docstring""" from datasets.utils.patching import _PatchedModuleObj, patch_submodule from . import _test_patching def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" import os as original_os from os import path as original_path from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join _UpperCamelCase = '''__test_patch_submodule_mock__''' with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): # Every way to access os.path.join must be patched, and the rest must stay untouched # check os.path.join assert isinstance(_test_patching.os, _PatchedModuleObj ) assert isinstance(_test_patching.os.path, _PatchedModuleObj ) assert _test_patching.os.path.join is mock # check path.join assert isinstance(_test_patching.path, _PatchedModuleObj ) assert _test_patching.path.join is mock # check join assert _test_patching.join is mock # check that the other attributes are untouched assert _test_patching.os.rename is original_rename assert _test_patching.path.dirname is original_dirname assert _test_patching.os.path.dirname is original_dirname # Even renamed modules or objects must be patched # check renamed_os.path.join assert isinstance(_test_patching.renamed_os, _PatchedModuleObj ) assert isinstance(_test_patching.renamed_os.path, _PatchedModuleObj ) assert _test_patching.renamed_os.path.join is mock # check renamed_path.join assert isinstance(_test_patching.renamed_path, _PatchedModuleObj ) assert _test_patching.renamed_path.join is mock # check renamed_join assert _test_patching.renamed_join is mock # check that the other attributes are untouched assert _test_patching.renamed_os.rename is original_rename assert _test_patching.renamed_path.dirname is original_dirname assert _test_patching.renamed_os.path.dirname is original_dirname # check that everthing is back to normal when the patch is over assert _test_patching.os is original_os assert _test_patching.path is original_path assert _test_patching.join is original_join assert _test_patching.renamed_os is original_os assert _test_patching.renamed_path is original_path assert _test_patching.renamed_join is original_join def lowerCamelCase__ ( ) -> List[str]: """simple docstring""" assert _test_patching.open is open _UpperCamelCase = '''__test_patch_submodule_builtin_mock__''' # _test_patching has "open" in its globals assert _test_patching.open is open with patch_submodule(_test_patching, '''open''', __snake_case ): assert _test_patching.open is mock # check that everthing is back to normal when the patch is over assert _test_patching.open is open def lowerCamelCase__ ( ) -> Union[str, Any]: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_mock__''' with patch_submodule(_test_patching, '''pandas.read_csv''', __snake_case ): pass def lowerCamelCase__ ( ) -> Dict: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_missing_builtin_mock__''' # _test_patching doesn't have "len" in its globals assert getattr(_test_patching, '''len''', __snake_case ) is None with patch_submodule(_test_patching, '''len''', __snake_case ): assert _test_patching.len is mock assert _test_patching.len is len def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_start_and_stop_mock__''' _UpperCamelCase = patch_submodule(_test_patching, '''open''', __snake_case ) assert _test_patching.open is open patch.start() assert _test_patching.open is mock patch.stop() assert _test_patching.open is open def lowerCamelCase__ ( ) -> Optional[int]: """simple docstring""" from os import rename as original_rename from os.path import dirname as original_dirname from os.path import join as original_join _UpperCamelCase = '''__test_patch_submodule_successive_join__''' _UpperCamelCase = '''__test_patch_submodule_successive_dirname__''' _UpperCamelCase = '''__test_patch_submodule_successive_rename__''' assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename # try another order with patch_submodule(_test_patching, '''os.rename''', __snake_case ): with patch_submodule(_test_patching, '''os.path.join''', __snake_case ): with patch_submodule(_test_patching, '''os.path.dirname''', __snake_case ): assert _test_patching.os.path.join is mock_join assert _test_patching.os.path.dirname is mock_dirname assert _test_patching.os.rename is mock_rename assert _test_patching.os.path.join is original_join assert _test_patching.os.path.dirname is original_dirname assert _test_patching.os.rename is original_rename def lowerCamelCase__ ( ) -> str: """simple docstring""" _UpperCamelCase = '''__test_patch_submodule_doesnt_exist_mock__''' with patch_submodule(_test_patching, '''__module_that_doesn_exist__.__attribute_that_doesn_exist__''', __snake_case ): pass with patch_submodule(_test_patching, '''os.__attribute_that_doesn_exist__''', __snake_case ): pass
19
0
'''simple docstring''' from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool from google.protobuf import symbol_database as _symbol_database from google.protobuf.internal import builder as _builder # @@protoc_insertion_point(imports) lowerCAmelCase : Dict = _symbol_database.Default() lowerCAmelCase : Union[str, Any] = _descriptor_pool.Default().AddSerializedFile( B'\n\x19sentencepiece_model.proto\x12\rsentencepiece"\x80\x0c\n\x0bTrainerSpec\x12\r\n\x05input\x18\x01 \x03(\t\x12\x14\n\x0cinput_format\x18\x07 \x01(\t\x12\x14\n\x0cmodel_prefix\x18\x02 \x01(\t\x12\x41\n\nmodel_type\x18\x03 \x01(\x0e\x32$.sentencepiece.TrainerSpec.ModelType:\x07UNIGRAM\x12\x18\n\nvocab_size\x18\x04 \x01(\x05:\x04\x38\x30\x30\x30\x12\x17\n\x0f\x61\x63\x63\x65pt_language\x18\x05 \x03(\t\x12 \n\x15self_test_sample_size\x18\x06 \x01(\x05:\x01\x30\x12*\n\x1b\x65nable_differential_privacy\x18\x32 \x01(\x08:\x05\x66\x61lse\x12+\n differential_privacy_noise_level\x18\x33 \x01(\x02:\x01\x30\x12\x32\n\'differential_privacy_clipping_threshold\x18\x34 \x01(\x04:\x01\x30\x12"\n\x12\x63haracter_coverage\x18\n \x01(\x02:\x06\x30.9995\x12\x1e\n\x13input_sentence_size\x18\x0b \x01(\x04:\x01\x30\x12$\n\x16shuffle_input_sentence\x18\x13 \x01(\x08:\x04true\x12 \n\x14mining_sentence_size\x18\x0c \x01(\x05\x42\x02\x18\x01\x12"\n\x16training_sentence_size\x18\r \x01(\x05\x42\x02\x18\x01\x12(\n\x17seed_sentencepiece_size\x18\x0e \x01(\x05:\x07\x31\x30\x30\x30\x30\x30\x30\x12\x1e\n\x10shrinking_factor\x18\x0f \x01(\x02:\x04\x30.75\x12!\n\x13max_sentence_length\x18\x12 \x01(\x05:\x04\x34\x31\x39\x32\x12\x17\n\x0bnum_threads\x18\x10 \x01(\x05:\x02\x31\x36\x12\x1d\n\x12num_sub_iterations\x18\x11 \x01(\x05:\x01\x32\x12$\n\x18max_sentencepiece_length\x18\x14 \x01(\x05:\x02\x31\x36\x12%\n\x17split_by_unicode_script\x18\x15 \x01(\x08:\x04true\x12\x1d\n\x0fsplit_by_number\x18\x17 \x01(\x08:\x04true\x12!\n\x13split_by_whitespace\x18\x16 \x01(\x08:\x04true\x12)\n\x1atreat_whitespace_as_suffix\x18\x18 \x01(\x08:\x05\x66\x61lse\x12+\n\x1c\x61llow_whitespace_only_pieces\x18\x1a \x01(\x08:\x05\x66\x61lse\x12\x1b\n\x0csplit_digits\x18\x19 \x01(\x08:\x05\x66\x61lse\x12#\n\x19pretokenization_delimiter\x18\x35 \x01(\t:\x00\x12\x17\n\x0f\x63ontrol_symbols\x18\x1e \x03(\t\x12\x1c\n\x14user_defined_symbols\x18\x1f \x03(\t\x12\x16\n\x0erequired_chars\x18$ \x01(\t\x12\x1c\n\rbyte_fallback\x18# \x01(\x08:\x05\x66\x61lse\x12+\n\x1dvocabulary_output_piece_score\x18 \x01(\x08:\x04true\x12\x1e\n\x10hard_vocab_limit\x18! \x01(\x08:\x04true\x12\x1c\n\ruse_all_vocab\x18" \x01(\x08:\x05\x66\x61lse\x12\x11\n\x06unk_id\x18( \x01(\x05:\x01\x30\x12\x11\n\x06\x62os_id\x18) \x01(\x05:\x01\x31\x12\x11\n\x06\x65os_id\x18* \x01(\x05:\x01\x32\x12\x12\n\x06pad_id\x18+ \x01(\x05:\x02-1\x12\x18\n\tunk_piece\x18- \x01(\t:\x05<unk>\x12\x16\n\tbos_piece\x18. \x01(\t:\x03<s>\x12\x17\n\teos_piece\x18/ \x01(\t:\x04</s>\x12\x18\n\tpad_piece\x18\x30 \x01(\t:\x05<pad>\x12\x1a\n\x0bunk_surface\x18, \x01(\t:\x05 \xe2\x81\x87 \x12+\n\x1ctrain_extremely_large_corpus\x18\x31 \x01(\x08:\x05\x66\x61lse"5\n\tModelType\x12\x0b\n\x07UNIGRAM\x10\x01\x12\x07\n\x03\x42PE\x10\x02\x12\x08\n\x04WORD\x10\x03\x12\x08\n\x04\x43HAR\x10\x04*\t\x08\xc8\x01\x10\x80\x80\x80\x80\x02"\xd1\x01\n\x0eNormalizerSpec\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1c\n\x14precompiled_charsmap\x18\x02 \x01(\x0c\x12\x1e\n\x10\x61\x64\x64_dummy_prefix\x18\x03 \x01(\x08:\x04true\x12&\n\x18remove_extra_whitespaces\x18\x04 \x01(\x08:\x04true\x12 \n\x12\x65scape_whitespaces\x18\x05 \x01(\x08:\x04true\x12\x1e\n\x16normalization_rule_tsv\x18\x06 \x01(\t*\t\x08\xc8\x01\x10\x80\x80\x80\x80\x02"y\n\x0cSelfTestData\x12\x33\n\x07samples\x18\x01 \x03(\x0b\x32".sentencepiece.SelfTestData.Sample\x1a)\n\x06Sample\x12\r\n\x05input\x18\x01 \x01(\t\x12\x10\n\x08\x65xpected\x18\x02 \x01(\t*\t\x08\xc8\x01\x10\x80\x80\x80\x80\x02"\xfe\x03\n\nModelProto\x12\x37\n\x06pieces\x18\x01 \x03(\x0b\x32\'.sentencepiece.ModelProto.SentencePiece\x12\x30\n\x0ctrainer_spec\x18\x02 \x01(\x0b\x32\x1a.sentencepiece.TrainerSpec\x12\x36\n\x0fnormalizer_spec\x18\x03 \x01(\x0b\x32\x1d.sentencepiece.NormalizerSpec\x12\x33\n\x0eself_test_data\x18\x04 \x01(\x0b\x32\x1b.sentencepiece.SelfTestData\x12\x38\n\x11\x64\x65normalizer_spec\x18\x05 \x01(\x0b\x32\x1d.sentencepiece.NormalizerSpec\x1a\xd2\x01\n\rSentencePiece\x12\r\n\x05piece\x18\x01 \x01(\t\x12\r\n\x05score\x18\x02 \x01(\x02\x12\x42\n\x04type\x18\x03 \x01(\x0e\x32,.sentencepiece.ModelProto.SentencePiece.Type:\x06NORMAL"T\n\x04Type\x12\n\n\x06NORMAL\x10\x01\x12\x0b\n\x07UNKNOWN\x10\x02\x12\x0b\n\x07\x43ONTROL\x10\x03\x12\x10\n\x0cUSER_DEFINED\x10\x04\x12\x08\n\x04\x42YTE\x10\x06\x12\n\n\x06UNUSED\x10\x05*\t\x08\xc8\x01\x10\x80\x80\x80\x80\x02*\t\x08\xc8\x01\x10\x80\x80\x80\x80\x02\x42\x02H\x03' ) lowerCAmelCase : Optional[Any] = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'sentencepiece_model_pb2', _globals) if _descriptor._USE_C_DESCRIPTORS is False: lowerCAmelCase : Optional[int] = None lowerCAmelCase : str = B'H\003' # (generated by protobuf compiler, but `_TRAINERSPEC` is not defined) # _TRAINERSPEC.fields_by_name["mining_sentence_size"]._options = None # _TRAINERSPEC.fields_by_name["mining_sentence_size"]._serialized_options = b"\030\001" # _TRAINERSPEC.fields_by_name["training_sentence_size"]._options = None # _TRAINERSPEC.fields_by_name["training_sentence_size"]._serialized_options = b"\030\001" lowerCAmelCase : Optional[int] = 45 lowerCAmelCase : Tuple = 15_81 lowerCAmelCase : Tuple = 15_17 lowerCAmelCase : Tuple = 15_70 lowerCAmelCase : Union[str, Any] = 15_84 lowerCAmelCase : Optional[int] = 17_93 lowerCAmelCase : int = 17_95 lowerCAmelCase : Dict = 19_16 lowerCAmelCase : List[Any] = 18_64 lowerCAmelCase : Any = 19_05 lowerCAmelCase : Any = 19_19 lowerCAmelCase : str = 24_29 lowerCAmelCase : str = 22_08 lowerCAmelCase : Any = 24_18 lowerCAmelCase : Dict = 23_23 lowerCAmelCase : Optional[int] = 24_07 # @@protoc_insertion_point(module_scope)
3
"""simple docstring""" import argparse import json from collections import OrderedDict from pathlib import Path import requests import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import PoolFormerConfig, PoolFormerForImageClassification, PoolFormerImageProcessor from transformers.utils import logging logging.set_verbosity_info() _a = logging.get_logger(__name__) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = original_name.split('''.''' )[0] _UpperCamelCase = key.split('''.''' ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 2] ) _UpperCamelCase = int(key_list[key_list.index(__snake_case ) - 1] ) _UpperCamelCase = orig_block_num - offset _UpperCamelCase = key.replace(F'''{orig_block_num}.{layer_num}.{original_name}''', F'''block.{new_block_num}.{layer_num}.{new_name}''' ) return key def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase = OrderedDict() _UpperCamelCase , _UpperCamelCase = 0, 0 for key, value in state_dict.items(): if key.startswith('''network''' ): _UpperCamelCase = key.replace('''network''', '''poolformer.encoder''' ) if "proj" in key: # Works for the first embedding as well as the internal embedding layers if key.endswith('''bias''' ) and "patch_embed" not in key: patch_emb_offset += 1 _UpperCamelCase = key[: key.find('''proj''' )] _UpperCamelCase = key.replace(__snake_case, F'''patch_embeddings.{total_embed_found}.''' ) _UpperCamelCase = key.replace('''proj''', '''projection''' ) if key.endswith('''bias''' ): total_embed_found += 1 if "patch_embeddings" in key: _UpperCamelCase = '''poolformer.encoder.''' + key if "mlp.fc1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc1''', '''output.conv1''' ) if "mlp.fc2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''mlp.fc2''', '''output.conv2''' ) if "norm1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm1''', '''before_norm''' ) if "norm2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''norm2''', '''after_norm''' ) if "layer_scale_1" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_1''', '''layer_scale_1''' ) if "layer_scale_2" in key: _UpperCamelCase = replace_key_with_offset(__snake_case, __snake_case, '''layer_scale_2''', '''layer_scale_2''' ) if "head" in key: _UpperCamelCase = key.replace('''head''', '''classifier''' ) _UpperCamelCase = value return new_state_dict def lowerCamelCase__ ( ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = '''http://images.cocodataset.org/val2017/000000039769.jpg''' _UpperCamelCase = Image.open(requests.get(__snake_case, stream=__snake_case ).raw ) return image @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case ) -> int: """simple docstring""" _UpperCamelCase = PoolFormerConfig() # set attributes based on model_name _UpperCamelCase = '''huggingface/label-files''' _UpperCamelCase = model_name[-3:] _UpperCamelCase = 10_00 _UpperCamelCase = '''imagenet-1k-id2label.json''' _UpperCamelCase = (1, 10_00) # set config attributes _UpperCamelCase = json.load(open(hf_hub_download(__snake_case, __snake_case, repo_type='''dataset''' ), '''r''' ) ) _UpperCamelCase = {int(__snake_case ): v for k, v in idalabel.items()} _UpperCamelCase = idalabel _UpperCamelCase = {v: k for k, v in idalabel.items()} if size == "s12": _UpperCamelCase = [2, 2, 6, 2] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s24": _UpperCamelCase = [4, 4, 12, 4] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 0.9 elif size == "s36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [64, 1_28, 3_20, 5_12] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.9 elif size == "m36": _UpperCamelCase = [6, 6, 18, 6] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 elif size == "m48": _UpperCamelCase = [8, 8, 24, 8] _UpperCamelCase = [96, 1_92, 3_84, 7_68] _UpperCamelCase = 4.0 _UpperCamelCase = 1e-6 _UpperCamelCase = 0.95 else: raise ValueError(F'''Size {size} not supported''' ) # load image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) # Prepare image _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__snake_case, return_tensors='''pt''' ).pixel_values logger.info(F'''Converting model {model_name}...''' ) # load original state dict _UpperCamelCase = torch.load(__snake_case, map_location=torch.device('''cpu''' ) ) # rename keys _UpperCamelCase = rename_keys(__snake_case ) # create HuggingFace model and load state dict _UpperCamelCase = PoolFormerForImageClassification(__snake_case ) model.load_state_dict(__snake_case ) model.eval() # Define image processor _UpperCamelCase = PoolFormerImageProcessor(crop_pct=__snake_case ) _UpperCamelCase = image_processor(images=prepare_img(), return_tensors='''pt''' ).pixel_values # forward pass _UpperCamelCase = model(__snake_case ) _UpperCamelCase = outputs.logits # define expected logit slices for different models if size == "s12": _UpperCamelCase = torch.tensor([-0.3045, -0.6758, -0.4869] ) elif size == "s24": _UpperCamelCase = torch.tensor([0.4402, -0.1374, -0.8045] ) elif size == "s36": _UpperCamelCase = torch.tensor([-0.6080, -0.5133, -0.5898] ) elif size == "m36": _UpperCamelCase = torch.tensor([0.3952, 0.2263, -1.2668] ) elif size == "m48": _UpperCamelCase = torch.tensor([0.1167, -0.0656, -0.3423] ) else: raise ValueError(F'''Size {size} not supported''' ) # verify logits assert logits.shape == expected_shape assert torch.allclose(logits[0, :3], __snake_case, atol=1e-2 ) # finally, save model and image processor logger.info(F'''Saving PyTorch model and image processor to {pytorch_dump_folder_path}...''' ) Path(__snake_case ).mkdir(exist_ok=__snake_case ) model.save_pretrained(__snake_case ) print(F'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument( """--model_name""", default="""poolformer_s12""", type=str, help="""Name of the model you'd like to convert.""", ) parser.add_argument( """--checkpoint_path""", default=None, type=str, help="""Path to the original PyTorch checkpoint (.pth file).""" ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the folder to output PyTorch model.""" ) _a = parser.parse_args() convert_poolformer_checkpoint(args.model_name, args.checkpoint_path, args.pytorch_dump_folder_path)
19
0
"""simple docstring""" import math import os import sys def _SCREAMING_SNAKE_CASE (_UpperCAmelCase : str ): lowerCAmelCase = '' try: with open(_UpperCAmelCase , 'rb' ) as binary_file: lowerCAmelCase = binary_file.read() for dat in data: lowerCAmelCase = F'{dat:08b}' result += curr_byte return result except OSError: print('File not accessible' ) sys.exit() def _SCREAMING_SNAKE_CASE (_UpperCAmelCase : dict[str, str] , _UpperCAmelCase : str , _UpperCAmelCase : int , _UpperCAmelCase : str ): lexicon.pop(_UpperCAmelCase ) lowerCAmelCase = last_match_id if math.loga(_UpperCAmelCase ).is_integer(): for curr_key in lexicon: lowerCAmelCase = '0' + lexicon[curr_key] lowerCAmelCase = bin(_UpperCAmelCase )[2:] def _SCREAMING_SNAKE_CASE (_UpperCAmelCase : str ): lowerCAmelCase = {'0': '0', '1': '1'} lowerCAmelCase ,lowerCAmelCase = '', '' lowerCAmelCase = len(_UpperCAmelCase ) for i in range(len(_UpperCAmelCase ) ): curr_string += data_bits[i] if curr_string not in lexicon: continue lowerCAmelCase = lexicon[curr_string] result += last_match_id add_key_to_lexicon(_UpperCAmelCase , _UpperCAmelCase , _UpperCAmelCase , _UpperCAmelCase ) index += 1 lowerCAmelCase = '' while curr_string != "" and curr_string not in lexicon: curr_string += "0" if curr_string != "": lowerCAmelCase = lexicon[curr_string] result += last_match_id return result def _SCREAMING_SNAKE_CASE (_UpperCAmelCase : str , _UpperCAmelCase : str ): lowerCAmelCase = os.path.getsize(_UpperCAmelCase ) lowerCAmelCase = bin(_UpperCAmelCase )[2:] lowerCAmelCase = len(_UpperCAmelCase ) return "0" * (length_length - 1) + file_length_binary + compressed def _SCREAMING_SNAKE_CASE (_UpperCAmelCase : str , _UpperCAmelCase : str ): lowerCAmelCase = 8 try: with open(_UpperCAmelCase , 'wb' ) as opened_file: lowerCAmelCase = [ to_write[i : i + byte_length] for i in range(0 , len(_UpperCAmelCase ) , _UpperCAmelCase ) ] if len(result_byte_array[-1] ) % byte_length == 0: result_byte_array.append('10000000' ) else: result_byte_array[-1] += "1" + "0" * ( byte_length - len(result_byte_array[-1] ) - 1 ) for elem in result_byte_array: opened_file.write(int(_UpperCAmelCase , 2 ).to_bytes(1 , byteorder='big' ) ) except OSError: print('File not accessible' ) sys.exit() def _SCREAMING_SNAKE_CASE (_UpperCAmelCase : str , _UpperCAmelCase : str ): lowerCAmelCase = read_file_binary(_UpperCAmelCase ) lowerCAmelCase = compress_data(_UpperCAmelCase ) lowerCAmelCase = add_file_length(_UpperCAmelCase , _UpperCAmelCase ) write_file_binary(_UpperCAmelCase , _UpperCAmelCase ) if __name__ == "__main__": compress(sys.argv[1], sys.argv[2])
4
"""simple docstring""" import torch from diffusers import DPMSolverSDEScheduler from diffusers.utils import torch_device from diffusers.utils.testing_utils import require_torchsde from .test_schedulers import SchedulerCommonTest @require_torchsde class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DPMSolverSDEScheduler,) lowercase__ = 10 def UpperCAmelCase ( self , **__a) -> int: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 11_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''noise_sampler_seed''': 0, } config.update(**__a) return config def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' for timesteps in [10, 50, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for beta_start, beta_end in zip([0.0_0001, 0.0001, 0.001] , [0.0002, 0.002, 0.02]): self.check_over_configs(beta_start=__a , beta_end=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for schedule in ["linear", "scaled_linear"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> str: '''simple docstring''' for prediction_type in ["epsilon", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.47_8210_4492_1875) < 1e-2 assert abs(result_mean.item() - 0.2178_7059_6456_5277) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3521_1181_6406) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9068_9229_9652) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for i, t in enumerate(scheduler.timesteps): _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 124.77_1492_0043_9453) < 1e-2 assert abs(result_mean.item() - 0.1_6226_2890_1481_6284) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 128.1_6633_6059_5703) < 1e-2 assert abs(result_mean.item() - 0.1_6688_3260_0116_7297) < 1e-3 else: assert abs(result_sum.item() - 119.8_4875_4882_8125) < 1e-2 assert abs(result_mean.item() - 0.1560_5306_6253_6621) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 167.46_9573_9746_0938) < 1e-2 assert abs(result_mean.item() - 0.2_1805_9346_0798_2635) < 1e-3 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 171.59_3536_3769_5312) < 1e-2 assert abs(result_mean.item() - 0.2_2342_9083_8241_5771) < 1e-3 else: assert abs(result_sum.item() - 162.52_3834_2285_1562) < 1e-2 assert abs(result_mean.item() - 0.211_6195_7085_1326) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a , use_karras_sigmas=__a) scheduler.set_timesteps(self.num_inference_steps , device=__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter.to(__a) * scheduler.init_noise_sigma _UpperCamelCase = sample.to(__a) for t in scheduler.timesteps: _UpperCamelCase = scheduler.scale_model_input(__a , __a) _UpperCamelCase = model(__a , __a) _UpperCamelCase = scheduler.step(__a , __a , __a) _UpperCamelCase = output.prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) if torch_device in ["mps"]: assert abs(result_sum.item() - 176.66_9741_3574_2188) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 elif torch_device in ["cuda"]: assert abs(result_sum.item() - 177.63_6535_6445_3125) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2 else: assert abs(result_sum.item() - 170.3_1352_2338_8672) < 1e-2 assert abs(result_mean.item() - 0.2_3003_8727_3098_1811) < 1e-2
19
0
'''simple docstring''' import unittest from transformers.testing_utils import CaptureStdout from transformers.tools.python_interpreter import evaluate def A (__lowerCamelCase :Optional[int] ): return x + 2 class UpperCAmelCase_ ( unittest.TestCase ): '''simple docstring''' def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """x = 3""" _lowerCAmelCase = {} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) assert result == 3 self.assertDictEqual(_lowercase , {"""x""": 3} ) _lowerCAmelCase = """x = y""" _lowerCAmelCase = {"""y""": 5} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) # evaluate returns the value of the last assignment. assert result == 5 self.assertDictEqual(_lowercase , {"""x""": 5, """y""": 5} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """y = add_two(x)""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {"""add_two""": add_two} , state=_lowercase ) assert result == 5 self.assertDictEqual(_lowercase , {"""x""": 3, """y""": 5} ) # Won't work without the tool with CaptureStdout() as out: _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) assert result is None assert "tried to execute add_two" in out.out def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """x = 3""" _lowerCAmelCase = {} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) assert result == 3 self.assertDictEqual(_lowercase , {"""x""": 3} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """test_dict = {'x': x, 'y': add_two(x)}""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {"""add_two""": add_two} , state=_lowercase ) self.assertDictEqual(_lowercase , {"""x""": 3, """y""": 5} ) self.assertDictEqual(_lowercase , {"""x""": 3, """test_dict""": {"""x""": 3, """y""": 5}} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """x = 3\ny = 5""" _lowerCAmelCase = {} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) # evaluate returns the value of the last assignment. assert result == 5 self.assertDictEqual(_lowercase , {"""x""": 3, """y""": 5} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """text = f'This is x: {x}.'""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) # evaluate returns the value of the last assignment. assert result == "This is x: 3." self.assertDictEqual(_lowercase , {"""x""": 3, """text""": """This is x: 3."""} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """if x <= 3:\n y = 2\nelse:\n y = 5""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) # evaluate returns the value of the last assignment. assert result == 2 self.assertDictEqual(_lowercase , {"""x""": 3, """y""": 2} ) _lowerCAmelCase = {"""x""": 8} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) # evaluate returns the value of the last assignment. assert result == 5 self.assertDictEqual(_lowercase , {"""x""": 8, """y""": 5} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """test_list = [x, add_two(x)]""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {"""add_two""": add_two} , state=_lowercase ) self.assertListEqual(_lowercase , [3, 5] ) self.assertDictEqual(_lowercase , {"""x""": 3, """test_list""": [3, 5]} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """y = x""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {} , state=_lowercase ) assert result == 3 self.assertDictEqual(_lowercase , {"""x""": 3, """y""": 3} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """test_list = [x, add_two(x)]\ntest_list[1]""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {"""add_two""": add_two} , state=_lowercase ) assert result == 5 self.assertDictEqual(_lowercase , {"""x""": 3, """test_list""": [3, 5]} ) _lowerCAmelCase = """test_dict = {'x': x, 'y': add_two(x)}\ntest_dict['y']""" _lowerCAmelCase = {"""x""": 3} _lowerCAmelCase = evaluate(_lowercase , {"""add_two""": add_two} , state=_lowercase ) assert result == 5 self.assertDictEqual(_lowercase , {"""x""": 3, """test_dict""": {"""x""": 3, """y""": 5}} ) def _lowercase ( self ): """simple docstring""" _lowerCAmelCase = """x = 0\nfor i in range(3):\n x = i""" _lowerCAmelCase = {} _lowerCAmelCase = evaluate(_lowercase , {"""range""": range} , state=_lowercase ) assert result == 2 self.assertDictEqual(_lowercase , {"""x""": 2, """i""": 2} )
5
"""simple docstring""" 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, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD, ChannelDimension, ImageInput, PILImageResampling, is_batched, to_numpy_array, valid_images, ) from ...utils import TensorType, logging _a = logging.get_logger(__name__) class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['pixel_values'] def __init__( self , __a = True , __a = None , __a = PILImageResampling.BICUBIC , __a = True , __a = True , __a = 1 / 2_55 , __a = None , __a = True , __a = None , __a = None , **__a , ) -> None: '''simple docstring''' super().__init__(**__a) _UpperCamelCase = size if size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a) _UpperCamelCase = crop_size if crop_size is not None else {'''height''': 2_24, '''width''': 2_24} _UpperCamelCase = get_size_dict(__a , default_to_square=__a , param_name='''crop_size''') _UpperCamelCase = do_resize _UpperCamelCase = do_rescale _UpperCamelCase = do_normalize _UpperCamelCase = do_center_crop _UpperCamelCase = crop_size _UpperCamelCase = size _UpperCamelCase = resample _UpperCamelCase = rescale_factor _UpperCamelCase = image_mean if image_mean is not None else IMAGENET_DEFAULT_MEAN _UpperCamelCase = image_std if image_std is not None else IMAGENET_DEFAULT_STD def UpperCAmelCase ( self , __a , __a , __a = PILImageResampling.BILINEAR , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) if "shortest_edge" in size: _UpperCamelCase = get_resize_output_image_size(__a , size=size['''shortest_edge'''] , default_to_square=__a) # size = get_resize_output_image_size(image, size["shortest_edge"], size["longest_edge"]) elif "height" in size and "width" in size: _UpperCamelCase = (size['''height'''], size['''width''']) else: raise ValueError(F'''Size must contain \'height\' and \'width\' keys or \'shortest_edge\' key. Got {size.keys()}''') return resize(__a , size=__a , resample=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' _UpperCamelCase = get_size_dict(__a) 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(__a , size=(size['''height'''], size['''width''']) , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a = None , **__a) -> np.ndarray: '''simple docstring''' return rescale(__a , scale=__a , data_format=__a , **__a) def UpperCAmelCase ( self , __a , __a , __a , __a = None , **__a , ) -> np.ndarray: '''simple docstring''' return normalize(__a , mean=__a , std=__a , data_format=__a , **__a) def UpperCAmelCase ( 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 , **__a , ) -> BatchFeature: '''simple docstring''' _UpperCamelCase = do_resize if do_resize is not None else self.do_resize _UpperCamelCase = do_rescale if do_rescale is not None else self.do_rescale _UpperCamelCase = do_normalize if do_normalize is not None else self.do_normalize _UpperCamelCase = do_center_crop if do_center_crop is not None else self.do_center_crop _UpperCamelCase = crop_size if crop_size is not None else self.crop_size _UpperCamelCase = get_size_dict(__a , param_name='''crop_size''' , default_to_square=__a) _UpperCamelCase = resample if resample is not None else self.resample _UpperCamelCase = rescale_factor if rescale_factor is not None else self.rescale_factor _UpperCamelCase = image_mean if image_mean is not None else self.image_mean _UpperCamelCase = image_std if image_std is not None else self.image_std _UpperCamelCase = size if size is not None else self.size _UpperCamelCase = get_size_dict(__a) if not is_batched(__a): _UpperCamelCase = [images] 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_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.''') # All transformations expect numpy arrays. _UpperCamelCase = [to_numpy_array(__a) for image in images] if do_resize: _UpperCamelCase = [self.resize(image=__a , size=__a , resample=__a) for image in images] if do_center_crop: _UpperCamelCase = [self.center_crop(image=__a , size=__a) for image in images] if do_rescale: _UpperCamelCase = [self.rescale(image=__a , scale=__a) for image in images] if do_normalize: _UpperCamelCase = [self.normalize(image=__a , mean=__a , std=__a) for image in images] _UpperCamelCase = [to_channel_dimension_format(__a , __a) for image in images] _UpperCamelCase = {'''pixel_values''': images} return BatchFeature(data=__a , tensor_type=__a)
19
0
from dataclasses import dataclass from typing import Optional import numpy as np import torch import torch.nn as nn from ..utils import BaseOutput, is_torch_version, randn_tensor from .attention_processor import SpatialNorm from .unet_ad_blocks import UNetMidBlockaD, get_down_block, get_up_block @dataclass class UpperCamelCase_ ( UpperCamelCase__ ): lowerCamelCase_ = 42 class UpperCamelCase_ ( nn.Module ): def __init__( self :Any , __A :str=3 , __A :List[Any]=3 , __A :str=("DownEncoderBlock2D",) , __A :Optional[int]=(64,) , __A :str=2 , __A :Optional[Any]=32 , __A :int="silu" , __A :List[Any]=True , ) -> Optional[Any]: """simple docstring""" super().__init__() SCREAMING_SNAKE_CASE__ = layers_per_block SCREAMING_SNAKE_CASE__ = torch.nn.Convad( __A , block_out_channels[0] , kernel_size=3 , stride=1 , padding=1 , ) SCREAMING_SNAKE_CASE__ = None SCREAMING_SNAKE_CASE__ = nn.ModuleList([] ) # down SCREAMING_SNAKE_CASE__ = block_out_channels[0] for i, down_block_type in enumerate(__A ): SCREAMING_SNAKE_CASE__ = output_channel SCREAMING_SNAKE_CASE__ = block_out_channels[i] SCREAMING_SNAKE_CASE__ = i == len(__A ) - 1 SCREAMING_SNAKE_CASE__ = get_down_block( __A , num_layers=self.layers_per_block , in_channels=__A , out_channels=__A , add_downsample=not is_final_block , resnet_eps=1E-6 , downsample_padding=0 , resnet_act_fn=__A , resnet_groups=__A , attention_head_dim=__A , temb_channels=__A , ) self.down_blocks.append(__A ) # mid SCREAMING_SNAKE_CASE__ = UNetMidBlockaD( in_channels=block_out_channels[-1] , resnet_eps=1E-6 , resnet_act_fn=__A , output_scale_factor=1 , resnet_time_scale_shift="""default""" , attention_head_dim=block_out_channels[-1] , resnet_groups=__A , temb_channels=__A , ) # out SCREAMING_SNAKE_CASE__ = nn.GroupNorm(num_channels=block_out_channels[-1] , num_groups=__A , eps=1E-6 ) SCREAMING_SNAKE_CASE__ = nn.SiLU() SCREAMING_SNAKE_CASE__ = 2 * out_channels if double_z else out_channels SCREAMING_SNAKE_CASE__ = nn.Convad(block_out_channels[-1] , __A , 3 , padding=1 ) SCREAMING_SNAKE_CASE__ = False def _snake_case ( self :Optional[int] , __A :Tuple ) -> Dict: """simple docstring""" SCREAMING_SNAKE_CASE__ = x SCREAMING_SNAKE_CASE__ = self.conv_in(__A ) if self.training and self.gradient_checkpointing: def create_custom_forward(__A :Tuple ): def custom_forward(*__A :List[Any] ): return module(*__A ) return custom_forward # down if is_torch_version(""">=""" , """1.11.0""" ): for down_block in self.down_blocks: SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint( create_custom_forward(__A ) , __A , use_reentrant=__A ) # middle SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint( create_custom_forward(self.mid_block ) , __A , use_reentrant=__A ) else: for down_block in self.down_blocks: SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint(create_custom_forward(__A ) , __A ) # middle SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint(create_custom_forward(self.mid_block ) , __A ) else: # down for down_block in self.down_blocks: SCREAMING_SNAKE_CASE__ = down_block(__A ) # middle SCREAMING_SNAKE_CASE__ = self.mid_block(__A ) # post-process SCREAMING_SNAKE_CASE__ = self.conv_norm_out(__A ) SCREAMING_SNAKE_CASE__ = self.conv_act(__A ) SCREAMING_SNAKE_CASE__ = self.conv_out(__A ) return sample class UpperCamelCase_ ( nn.Module ): def __init__( self :Any , __A :List[Any]=3 , __A :str=3 , __A :Tuple=("UpDecoderBlock2D",) , __A :Tuple=(64,) , __A :Any=2 , __A :int=32 , __A :Optional[int]="silu" , __A :Optional[Any]="group" , ) -> Optional[int]: """simple docstring""" super().__init__() SCREAMING_SNAKE_CASE__ = layers_per_block SCREAMING_SNAKE_CASE__ = nn.Convad( __A , block_out_channels[-1] , kernel_size=3 , stride=1 , padding=1 , ) SCREAMING_SNAKE_CASE__ = None SCREAMING_SNAKE_CASE__ = nn.ModuleList([] ) SCREAMING_SNAKE_CASE__ = in_channels if norm_type == """spatial""" else None # mid SCREAMING_SNAKE_CASE__ = UNetMidBlockaD( in_channels=block_out_channels[-1] , resnet_eps=1E-6 , resnet_act_fn=__A , output_scale_factor=1 , resnet_time_scale_shift="""default""" if norm_type == """group""" else norm_type , attention_head_dim=block_out_channels[-1] , resnet_groups=__A , temb_channels=__A , ) # up SCREAMING_SNAKE_CASE__ = list(reversed(__A ) ) SCREAMING_SNAKE_CASE__ = reversed_block_out_channels[0] for i, up_block_type in enumerate(__A ): SCREAMING_SNAKE_CASE__ = output_channel SCREAMING_SNAKE_CASE__ = reversed_block_out_channels[i] SCREAMING_SNAKE_CASE__ = i == len(__A ) - 1 SCREAMING_SNAKE_CASE__ = get_up_block( __A , num_layers=self.layers_per_block + 1 , in_channels=__A , out_channels=__A , prev_output_channel=__A , add_upsample=not is_final_block , resnet_eps=1E-6 , resnet_act_fn=__A , resnet_groups=__A , attention_head_dim=__A , temb_channels=__A , resnet_time_scale_shift=__A , ) self.up_blocks.append(__A ) SCREAMING_SNAKE_CASE__ = output_channel # out if norm_type == "spatial": SCREAMING_SNAKE_CASE__ = SpatialNorm(block_out_channels[0] , __A ) else: SCREAMING_SNAKE_CASE__ = nn.GroupNorm(num_channels=block_out_channels[0] , num_groups=__A , eps=1E-6 ) SCREAMING_SNAKE_CASE__ = nn.SiLU() SCREAMING_SNAKE_CASE__ = nn.Convad(block_out_channels[0] , __A , 3 , padding=1 ) SCREAMING_SNAKE_CASE__ = False def _snake_case ( self :str , __A :Tuple , __A :int=None ) -> str: """simple docstring""" SCREAMING_SNAKE_CASE__ = z SCREAMING_SNAKE_CASE__ = self.conv_in(__A ) SCREAMING_SNAKE_CASE__ = next(iter(self.up_blocks.parameters() ) ).dtype if self.training and self.gradient_checkpointing: def create_custom_forward(__A :Tuple ): def custom_forward(*__A :List[Any] ): return module(*__A ) return custom_forward if is_torch_version(""">=""" , """1.11.0""" ): # middle SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint( create_custom_forward(self.mid_block ) , __A , __A , use_reentrant=__A ) SCREAMING_SNAKE_CASE__ = sample.to(__A ) # up for up_block in self.up_blocks: SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint( create_custom_forward(__A ) , __A , __A , use_reentrant=__A ) else: # middle SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint( create_custom_forward(self.mid_block ) , __A , __A ) SCREAMING_SNAKE_CASE__ = sample.to(__A ) # up for up_block in self.up_blocks: SCREAMING_SNAKE_CASE__ = torch.utils.checkpoint.checkpoint(create_custom_forward(__A ) , __A , __A ) else: # middle SCREAMING_SNAKE_CASE__ = self.mid_block(__A , __A ) SCREAMING_SNAKE_CASE__ = sample.to(__A ) # up for up_block in self.up_blocks: SCREAMING_SNAKE_CASE__ = up_block(__A , __A ) # post-process if latent_embeds is None: SCREAMING_SNAKE_CASE__ = self.conv_norm_out(__A ) else: SCREAMING_SNAKE_CASE__ = self.conv_norm_out(__A , __A ) SCREAMING_SNAKE_CASE__ = self.conv_act(__A ) SCREAMING_SNAKE_CASE__ = self.conv_out(__A ) return sample class UpperCamelCase_ ( nn.Module ): def __init__( self :Optional[int] , __A :Optional[Any] , __A :List[Any] , __A :str , __A :List[str]=None , __A :Optional[Any]="random" , __A :Optional[int]=False , __A :int=True ) -> Optional[int]: """simple docstring""" super().__init__() SCREAMING_SNAKE_CASE__ = n_e SCREAMING_SNAKE_CASE__ = vq_embed_dim SCREAMING_SNAKE_CASE__ = beta SCREAMING_SNAKE_CASE__ = legacy SCREAMING_SNAKE_CASE__ = nn.Embedding(self.n_e , self.vq_embed_dim ) self.embedding.weight.data.uniform_(-1.0 / self.n_e , 1.0 / self.n_e ) SCREAMING_SNAKE_CASE__ = remap if self.remap is not None: self.register_buffer("""used""" , torch.tensor(np.load(self.remap ) ) ) SCREAMING_SNAKE_CASE__ = self.used.shape[0] SCREAMING_SNAKE_CASE__ = unknown_index # "random" or "extra" or integer if self.unknown_index == "extra": SCREAMING_SNAKE_CASE__ = self.re_embed SCREAMING_SNAKE_CASE__ = self.re_embed + 1 print( f'''Remapping {self.n_e} indices to {self.re_embed} indices. ''' f'''Using {self.unknown_index} for unknown indices.''' ) else: SCREAMING_SNAKE_CASE__ = n_e SCREAMING_SNAKE_CASE__ = sane_index_shape def _snake_case ( self :Tuple , __A :List[Any] ) -> Dict: """simple docstring""" SCREAMING_SNAKE_CASE__ = inds.shape assert len(__A ) > 1 SCREAMING_SNAKE_CASE__ = inds.reshape(ishape[0] , -1 ) SCREAMING_SNAKE_CASE__ = self.used.to(__A ) SCREAMING_SNAKE_CASE__ = (inds[:, :, None] == used[None, None, ...]).long() SCREAMING_SNAKE_CASE__ = match.argmax(-1 ) SCREAMING_SNAKE_CASE__ = match.sum(2 ) < 1 if self.unknown_index == "random": SCREAMING_SNAKE_CASE__ = torch.randint(0 , self.re_embed , size=new[unknown].shape ).to(device=new.device ) else: SCREAMING_SNAKE_CASE__ = self.unknown_index return new.reshape(__A ) def _snake_case ( self :Dict , __A :Optional[Any] ) -> Optional[Any]: """simple docstring""" SCREAMING_SNAKE_CASE__ = inds.shape assert len(__A ) > 1 SCREAMING_SNAKE_CASE__ = inds.reshape(ishape[0] , -1 ) SCREAMING_SNAKE_CASE__ = self.used.to(__A ) if self.re_embed > self.used.shape[0]: # extra token SCREAMING_SNAKE_CASE__ = 0 # simply set to zero SCREAMING_SNAKE_CASE__ = torch.gather(used[None, :][inds.shape[0] * [0], :] , 1 , __A ) return back.reshape(__A ) def _snake_case ( self :Optional[int] , __A :List[str] ) -> Optional[Any]: """simple docstring""" SCREAMING_SNAKE_CASE__ = z.permute(0 , 2 , 3 , 1 ).contiguous() SCREAMING_SNAKE_CASE__ = z.view(-1 , self.vq_embed_dim ) # distances from z to embeddings e_j (z - e)^2 = z^2 + e^2 - 2 e * z SCREAMING_SNAKE_CASE__ = torch.argmin(torch.cdist(__A , self.embedding.weight ) , dim=1 ) SCREAMING_SNAKE_CASE__ = self.embedding(__A ).view(z.shape ) SCREAMING_SNAKE_CASE__ = None SCREAMING_SNAKE_CASE__ = None # compute loss for embedding if not self.legacy: SCREAMING_SNAKE_CASE__ = self.beta * torch.mean((z_q.detach() - z) ** 2 ) + torch.mean((z_q - z.detach()) ** 2 ) else: SCREAMING_SNAKE_CASE__ = torch.mean((z_q.detach() - z) ** 2 ) + self.beta * torch.mean((z_q - z.detach()) ** 2 ) # preserve gradients SCREAMING_SNAKE_CASE__ = z + (z_q - z).detach() # reshape back to match original input shape SCREAMING_SNAKE_CASE__ = z_q.permute(0 , 3 , 1 , 2 ).contiguous() if self.remap is not None: SCREAMING_SNAKE_CASE__ = min_encoding_indices.reshape(z.shape[0] , -1 ) # add batch axis SCREAMING_SNAKE_CASE__ = self.remap_to_used(__A ) SCREAMING_SNAKE_CASE__ = min_encoding_indices.reshape(-1 , 1 ) # flatten if self.sane_index_shape: SCREAMING_SNAKE_CASE__ = min_encoding_indices.reshape(z_q.shape[0] , z_q.shape[2] , z_q.shape[3] ) return z_q, loss, (perplexity, min_encodings, min_encoding_indices) def _snake_case ( self :Union[str, Any] , __A :Dict , __A :Optional[Any] ) -> Dict: """simple docstring""" if self.remap is not None: SCREAMING_SNAKE_CASE__ = indices.reshape(shape[0] , -1 ) # add batch axis SCREAMING_SNAKE_CASE__ = self.unmap_to_all(__A ) SCREAMING_SNAKE_CASE__ = indices.reshape(-1 ) # flatten again # get quantized latent vectors SCREAMING_SNAKE_CASE__ = self.embedding(__A ) if shape is not None: SCREAMING_SNAKE_CASE__ = z_q.view(__A ) # reshape back to match original input shape SCREAMING_SNAKE_CASE__ = z_q.permute(0 , 3 , 1 , 2 ).contiguous() return z_q class UpperCamelCase_ ( UpperCamelCase__ ): def __init__( self :List[Any] , __A :List[str] , __A :Dict=False ) -> List[Any]: """simple docstring""" SCREAMING_SNAKE_CASE__ = parameters SCREAMING_SNAKE_CASE__ , SCREAMING_SNAKE_CASE__ = torch.chunk(__A , 2 , dim=1 ) SCREAMING_SNAKE_CASE__ = torch.clamp(self.logvar , -3_0.0 , 2_0.0 ) SCREAMING_SNAKE_CASE__ = deterministic SCREAMING_SNAKE_CASE__ = torch.exp(0.5 * self.logvar ) SCREAMING_SNAKE_CASE__ = torch.exp(self.logvar ) if self.deterministic: SCREAMING_SNAKE_CASE__ = SCREAMING_SNAKE_CASE__ = torch.zeros_like( self.mean , device=self.parameters.device , dtype=self.parameters.dtype ) def _snake_case ( self :Union[str, Any] , __A :Optional[torch.Generator] = None ) -> torch.FloatTensor: """simple docstring""" SCREAMING_SNAKE_CASE__ = randn_tensor( self.mean.shape , generator=__A , device=self.parameters.device , dtype=self.parameters.dtype ) SCREAMING_SNAKE_CASE__ = self.mean + self.std * sample return x def _snake_case ( self :str , __A :Any=None ) -> Union[str, Any]: """simple docstring""" if self.deterministic: return torch.Tensor([0.0] ) else: if other is None: return 0.5 * torch.sum(torch.pow(self.mean , 2 ) + self.var - 1.0 - self.logvar , dim=[1, 2, 3] ) else: return 0.5 * torch.sum( torch.pow(self.mean - other.mean , 2 ) / other.var + self.var / other.var - 1.0 - self.logvar + other.logvar , dim=[1, 2, 3] , ) def _snake_case ( self :str , __A :Optional[int] , __A :List[Any]=[1, 2, 3] ) -> Any: """simple docstring""" if self.deterministic: return torch.Tensor([0.0] ) SCREAMING_SNAKE_CASE__ = np.log(2.0 * np.pi ) return 0.5 * torch.sum(logtwopi + self.logvar + torch.pow(sample - self.mean , 2 ) / self.var , dim=__A ) def _snake_case ( self :Any ) -> str: """simple docstring""" return self.mean
6
"""simple docstring""" # Imports import numpy as np class _UpperCAmelCase: def __init__( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) def UpperCAmelCase ( self , __a=None , __a=None , __a=None , __a=None , __a=None) -> Dict: '''simple docstring''' if red is not None: _UpperCamelCase = red if green is not None: _UpperCamelCase = green if blue is not None: _UpperCamelCase = blue if red_edge is not None: _UpperCamelCase = red_edge if nir is not None: _UpperCamelCase = nir return True def UpperCAmelCase ( self , __a="" , __a=None , __a=None , __a=None , __a=None , __a=None) -> List[str]: '''simple docstring''' self.set_matricies(red=__a , green=__a , blue=__a , red_edge=__a , nir=__a) _UpperCamelCase = { '''ARVI2''': self.arvaa, '''CCCI''': self.ccci, '''CVI''': self.cvi, '''GLI''': self.gli, '''NDVI''': self.ndvi, '''BNDVI''': self.bndvi, '''redEdgeNDVI''': self.red_edge_ndvi, '''GNDVI''': self.gndvi, '''GBNDVI''': self.gbndvi, '''GRNDVI''': self.grndvi, '''RBNDVI''': self.rbndvi, '''PNDVI''': self.pndvi, '''ATSAVI''': self.atsavi, '''BWDRVI''': self.bwdrvi, '''CIgreen''': self.ci_green, '''CIrededge''': self.ci_rededge, '''CI''': self.ci, '''CTVI''': self.ctvi, '''GDVI''': self.gdvi, '''EVI''': self.evi, '''GEMI''': self.gemi, '''GOSAVI''': self.gosavi, '''GSAVI''': self.gsavi, '''Hue''': self.hue, '''IVI''': self.ivi, '''IPVI''': self.ipvi, '''I''': self.i, '''RVI''': self.rvi, '''MRVI''': self.mrvi, '''MSAVI''': self.m_savi, '''NormG''': self.norm_g, '''NormNIR''': self.norm_nir, '''NormR''': self.norm_r, '''NGRDI''': self.ngrdi, '''RI''': self.ri, '''S''': self.s, '''IF''': self._if, '''DVI''': self.dvi, '''TVI''': self.tvi, '''NDRE''': self.ndre, } try: return funcs[index]() except KeyError: print('''Index not in the list!''') return False def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return -0.18 + (1.17 * ((self.nir - self.red) / (self.nir + self.red))) def UpperCAmelCase ( self) -> Any: '''simple docstring''' return ((self.nir - self.redEdge) / (self.nir + self.redEdge)) / ( (self.nir - self.red) / (self.nir + self.red) ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir * (self.red / (self.green**2)) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.green - self.red - self.blue) / ( 2 * self.green + self.red + self.blue ) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - self.red) / (self.nir + self.red) def UpperCAmelCase ( self) -> str: '''simple docstring''' return (self.nir - self.blue) / (self.nir + self.blue) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.redEdge - self.red) / (self.redEdge + self.red) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir - (self.green + self.blue)) / ( self.nir + (self.green + self.blue) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.nir - (self.green + self.red)) / ( self.nir + (self.green + self.red) ) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir - (self.blue + self.red)) / (self.nir + (self.blue + self.red)) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir - (self.green + self.red + self.blue)) / ( self.nir + (self.green + self.red + self.blue) ) def UpperCAmelCase ( self , __a=0.08 , __a=1.22 , __a=0.03) -> Optional[Any]: '''simple docstring''' return a * ( (self.nir - a * self.red - b) / (a * self.nir + self.red - a * b + x * (1 + a**2)) ) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (0.1 * self.nir - self.blue) / (0.1 * self.nir + self.blue) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return (self.nir / self.green) - 1 def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return (self.nir / self.redEdge) - 1 def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.red - self.blue) / self.red def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.ndvi() return ((ndvi + 0.5) / (abs(ndvi + 0.5))) * (abs(ndvi + 0.5) ** (1 / 2)) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.nir - self.green def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' return 2.5 * ( (self.nir - self.red) / (self.nir + 6 * self.red - 7.5 * self.blue + 1) ) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = (2 * (self.nir**2 - self.red**2) + 1.5 * self.nir + 0.5 * self.red) / ( self.nir + self.red + 0.5 ) return n * (1 - 0.25 * n) - (self.red - 0.125) / (1 - self.red) def UpperCAmelCase ( self , __a=0.16) -> Optional[Any]: '''simple docstring''' return (self.nir - self.green) / (self.nir + self.green + y) def UpperCAmelCase ( self , __a=0.5) -> Dict: '''simple docstring''' return ((self.nir - self.green) / (self.nir + self.green + n)) * (1 + n) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return np.arctan( ((2 * self.red - self.green - self.blue) / 30.5) * (self.green - self.blue)) def UpperCAmelCase ( self , __a=None , __a=None) -> Any: '''simple docstring''' return (self.nir - b) / (a * self.red) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.nir / ((self.nir + self.red) / 2)) * (self.ndvi() + 1) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return (self.red + self.green + self.blue) / 30.5 def UpperCAmelCase ( self) -> Any: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.rvi() - 1) / (self.rvi() + 1) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' return ( (2 * self.nir + 1) - ((2 * self.nir + 1) ** 2 - 8 * (self.nir - self.red)) ** (1 / 2) ) / 2 def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.green / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> str: '''simple docstring''' return self.nir / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' return self.red / (self.nir + self.red + self.green) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return (self.green - self.red) / (self.green + self.red) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' return (self.red - self.green) / (self.red + self.green) def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = np.max([np.max(self.red), np.max(self.green), np.max(self.blue)]) _UpperCamelCase = np.min([np.min(self.red), np.min(self.green), np.min(self.blue)]) return (max_value - min_value) / max_value def UpperCAmelCase ( self) -> str: '''simple docstring''' return (2 * self.red - self.green - self.blue) / (self.green - self.blue) def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.nir / self.red def UpperCAmelCase ( self) -> Any: '''simple docstring''' return (self.ndvi() + 0.5) ** (1 / 2) def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' return (self.nir - self.redEdge) / (self.nir + self.redEdge)
19
0
"""simple docstring""" # Copyright 2023 The HuggingFace 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 # rely on isort to merge the imports from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available, is_vision_available a = { '''configuration_vivit''': ['''VIVIT_PRETRAINED_CONFIG_ARCHIVE_MAP''', '''VivitConfig'''], } try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: a = ['''VivitImageProcessor'''] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: a = [ '''VIVIT_PRETRAINED_MODEL_ARCHIVE_LIST''', '''VivitModel''', '''VivitPreTrainedModel''', '''VivitForVideoClassification''', ] if TYPE_CHECKING: from .configuration_vivit import VIVIT_PRETRAINED_CONFIG_ARCHIVE_MAP, VivitConfig try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .image_processing_vivit import VivitImageProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_vivit import ( VIVIT_PRETRAINED_MODEL_ARCHIVE_LIST, VivitForVideoClassification, VivitModel, VivitPreTrainedModel, ) else: import sys a = _LazyModule(__name__, globals()['''__file__'''], _import_structure, module_spec=__spec__)
7
"""simple docstring""" import inspect import unittest from transformers import ViTHybridConfig from transformers.testing_utils import require_accelerate, 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, _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 ViTHybridForImageClassification, ViTHybridImageProcessor, ViTHybridModel from transformers.models.vit_hybrid.modeling_vit_hybrid import VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image class _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=64 , __a=2 , __a=3 , __a=True , __a=True , __a=32 , __a=5 , __a=4 , __a=37 , __a="gelu" , __a=0.1 , __a=0.1 , __a=10 , __a=0.02 , __a=[1, 16, 4, 4] , __a=None , ) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = parent _UpperCamelCase = batch_size _UpperCamelCase = image_size _UpperCamelCase = patch_size _UpperCamelCase = num_channels _UpperCamelCase = is_training _UpperCamelCase = use_labels _UpperCamelCase = hidden_size _UpperCamelCase = num_hidden_layers _UpperCamelCase = num_attention_heads _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = hidden_dropout_prob _UpperCamelCase = attention_probs_dropout_prob _UpperCamelCase = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = scope _UpperCamelCase = backbone_featmap_shape # in ViT hybrid, the seq length equals the number of patches + 1 (we add 1 for the [CLS] token) # the number of patches is based on the feature map of the backbone, which by default uses an output stride # of 32, which means that the feature map has a spatial resolution of 1/32 of the input image size _UpperCamelCase = (self.image_size // 32) ** 2 _UpperCamelCase = num_patches + 1 def UpperCAmelCase ( self) -> int: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = { '''global_padding''': '''same''', '''layer_type''': '''bottleneck''', '''depths''': [3, 4, 9], '''out_features''': ['''stage1''', '''stage2''', '''stage3'''], '''embedding_dynamic_padding''': True, '''hidden_sizes''': [4, 8, 16, 32], '''num_groups''': 2, } return ViTHybridConfig( 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 , 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 , backbone_featmap_shape=self.backbone_featmap_shape , backbone_config=__a , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModel(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size)) def UpperCAmelCase ( self , __a , __a , __a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = self.type_sequence_label_size _UpperCamelCase = ViTHybridForImageClassification(__a) model.to(__a) model.eval() _UpperCamelCase = model(__a , labels=__a) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (ViTHybridModel, ViTHybridForImageClassification) if is_torch_available() else () lowercase__ = ( {'feature-extraction': ViTHybridModel, 'image-classification': ViTHybridForImageClassification} if is_torch_available() else {} ) lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = ViTHybridModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , hidden_size=37) def UpperCAmelCase ( self) -> Any: '''simple docstring''' self.config_tester.run_common_tests() @unittest.skip(reason='''ViT does not use inputs_embeds''') def UpperCAmelCase ( self) -> Dict: '''simple docstring''' pass def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) self.assertIsInstance(model.get_input_embeddings() , (nn.Module)) _UpperCamelCase = model.get_output_embeddings() self.assertTrue(x is None or isinstance(__a , nn.Linear)) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) # Skip the check for the backbone for name, module in model.named_modules(): if module.__class__.__name__ == "ViTHybridPatchEmbeddings": _UpperCamelCase = [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''' , ) @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = ViTHybridModel.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" _UpperCamelCase = Image.open('''./tests/fixtures/tests_samples/COCO/000000039769.png''' ) return image @require_torch @require_vision class _UpperCAmelCase( unittest.TestCase ): @cached_property def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' return ( ViTHybridImageProcessor.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]) if is_vision_available() else None ) @slow def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = ViTHybridForImageClassification.from_pretrained(VIT_HYBRID_PRETRAINED_MODEL_ARCHIVE_LIST[0]).to( __a) _UpperCamelCase = self.default_image_processor _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''').to(__a) # forward pass with torch.no_grad(): _UpperCamelCase = model(**__a) # verify the logits _UpperCamelCase = torch.Size((1, 10_00)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor([-1.9090, -0.4993, -0.2389]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, :3] , __a , atol=1e-4)) @slow @require_accelerate def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = ViTHybridImageProcessor.from_pretrained('''google/vit-hybrid-base-bit-384''') _UpperCamelCase = ViTHybridForImageClassification.from_pretrained('''google/vit-hybrid-base-bit-384''' , device_map='''auto''') _UpperCamelCase = prepare_img() _UpperCamelCase = image_processor(images=__a , return_tensors='''pt''') _UpperCamelCase = model(**__a) _UpperCamelCase = outputs.logits # model predicts one of the 1000 ImageNet classes _UpperCamelCase = logits.argmax(-1).item() self.assertTrue(model.config.idalabel[predicted_class_idx] , '''tabby, tabby cat''')
19
0
'''simple docstring''' from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging lowercase__ : Any = logging.get_logger(__name__) lowercase__ : str = { '''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 SCREAMING_SNAKE_CASE (a__ ): lowerCAmelCase = '''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-1_2 , _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 , ): '''simple docstring''' super().__init__(pad_token_id=_UpperCAmelCase , bos_token_id=_UpperCAmelCase , eos_token_id=_UpperCAmelCase , **_UpperCAmelCase) __A : Optional[int] = vocab_size __A : List[Any] = hidden_size __A : Tuple = num_hidden_layers __A : List[Any] = num_attention_heads __A : Optional[Any] = hidden_act __A : Optional[int] = intermediate_size __A : Dict = hidden_dropout_prob __A : Union[str, Any] = attention_probs_dropout_prob __A : List[Any] = max_position_embeddings __A : Optional[int] = type_vocab_size __A : int = initializer_range __A : Optional[Any] = layer_norm_eps __A : Any = position_embedding_type __A : Tuple = use_cache __A : Dict = classifier_dropout __A : Union[str, Any] = pre_norm __A : str = adapter_reduction_factor __A : Tuple = adapter_layer_norm __A : str = adapter_reuse_layer_norm __A : Dict = ln_before_adapter __A : str = list(_UpperCAmelCase) __A : Optional[int] = default_language class SCREAMING_SNAKE_CASE (a__ ): @property def SCREAMING_SNAKE_CASE ( self): '''simple docstring''' if self.task == "multiple-choice": __A : Union[str, Any] = {0: 'batch', 1: 'choice', 2: 'sequence'} else: __A : List[Any] = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ])
8
"""simple docstring""" from math import acos, sin from typing import List, Tuple, Union import numpy as np import torch from PIL import Image from ...models import AutoencoderKL, UNetaDConditionModel from ...schedulers import DDIMScheduler, DDPMScheduler from ...utils import randn_tensor from ..pipeline_utils import AudioPipelineOutput, BaseOutput, DiffusionPipeline, ImagePipelineOutput from .mel import Mel class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['vqvae'] def __init__( self , __a , __a , __a , __a , ) -> List[str]: '''simple docstring''' super().__init__() self.register_modules(unet=__a , scheduler=__a , mel=__a , vqvae=__a) def UpperCAmelCase ( self) -> int: '''simple docstring''' return 50 if isinstance(self.scheduler , __a) else 10_00 @torch.no_grad() def __call__( self , __a = 1 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = None , __a = 0 , __a = 0 , __a = None , __a = 0 , __a = None , __a = None , __a=True , ) -> Union[ Union[AudioPipelineOutput, ImagePipelineOutput], Tuple[List[Image.Image], Tuple[int, List[np.ndarray]]], ]: '''simple docstring''' _UpperCamelCase = steps or self.get_default_steps() self.scheduler.set_timesteps(__a) _UpperCamelCase = step_generator or generator # For backwards compatibility if type(self.unet.config.sample_size) == int: _UpperCamelCase = (self.unet.config.sample_size, self.unet.config.sample_size) if noise is None: _UpperCamelCase = randn_tensor( ( batch_size, self.unet.config.in_channels, self.unet.config.sample_size[0], self.unet.config.sample_size[1], ) , generator=__a , device=self.device , ) _UpperCamelCase = noise _UpperCamelCase = None if audio_file is not None or raw_audio is not None: self.mel.load_audio(__a , __a) _UpperCamelCase = self.mel.audio_slice_to_image(__a) _UpperCamelCase = np.frombuffer(input_image.tobytes() , dtype='''uint8''').reshape( (input_image.height, input_image.width)) _UpperCamelCase = (input_image / 2_55) * 2 - 1 _UpperCamelCase = torch.tensor(input_image[np.newaxis, :, :] , dtype=torch.float).to(self.device) if self.vqvae is not None: _UpperCamelCase = self.vqvae.encode(torch.unsqueeze(__a , 0)).latent_dist.sample( generator=__a)[0] _UpperCamelCase = self.vqvae.config.scaling_factor * input_images if start_step > 0: _UpperCamelCase = self.scheduler.add_noise(__a , __a , self.scheduler.timesteps[start_step - 1]) _UpperCamelCase = ( self.unet.config.sample_size[1] * self.mel.get_sample_rate() / self.mel.x_res / self.mel.hop_length ) _UpperCamelCase = int(mask_start_secs * pixels_per_second) _UpperCamelCase = int(mask_end_secs * pixels_per_second) _UpperCamelCase = self.scheduler.add_noise(__a , __a , torch.tensor(self.scheduler.timesteps[start_step:])) for step, t in enumerate(self.progress_bar(self.scheduler.timesteps[start_step:])): if isinstance(self.unet , __a): _UpperCamelCase = self.unet(__a , __a , __a)['''sample'''] else: _UpperCamelCase = self.unet(__a , __a)['''sample'''] if isinstance(self.scheduler , __a): _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , eta=__a , generator=__a , )['''prev_sample'''] else: _UpperCamelCase = self.scheduler.step( model_output=__a , timestep=__a , sample=__a , generator=__a , )['''prev_sample'''] if mask is not None: if mask_start > 0: _UpperCamelCase = mask[:, step, :, :mask_start] if mask_end > 0: _UpperCamelCase = mask[:, step, :, -mask_end:] if self.vqvae is not None: # 0.18215 was scaling factor used in training to ensure unit variance _UpperCamelCase = 1 / self.vqvae.config.scaling_factor * images _UpperCamelCase = self.vqvae.decode(__a)['''sample'''] _UpperCamelCase = (images / 2 + 0.5).clamp(0 , 1) _UpperCamelCase = images.cpu().permute(0 , 2 , 3 , 1).numpy() _UpperCamelCase = (images * 2_55).round().astype('''uint8''') _UpperCamelCase = list( (Image.fromarray(_[:, :, 0]) for _ in images) if images.shape[3] == 1 else (Image.fromarray(__a , mode='''RGB''').convert('''L''') for _ in images)) _UpperCamelCase = [self.mel.image_to_audio(__a) for _ in images] if not return_dict: return images, (self.mel.get_sample_rate(), audios) return BaseOutput(**AudioPipelineOutput(np.array(__a)[:, np.newaxis, :]) , **ImagePipelineOutput(__a)) @torch.no_grad() def UpperCAmelCase ( self , __a , __a = 50) -> np.ndarray: '''simple docstring''' assert isinstance(self.scheduler , __a) self.scheduler.set_timesteps(__a) _UpperCamelCase = np.array( [np.frombuffer(image.tobytes() , dtype='''uint8''').reshape((1, image.height, image.width)) for image in images]) _UpperCamelCase = (sample / 2_55) * 2 - 1 _UpperCamelCase = torch.Tensor(__a).to(self.device) for t in self.progress_bar(torch.flip(self.scheduler.timesteps , (0,))): _UpperCamelCase = t - self.scheduler.config.num_train_timesteps // self.scheduler.num_inference_steps _UpperCamelCase = self.scheduler.alphas_cumprod[t] _UpperCamelCase = ( self.scheduler.alphas_cumprod[prev_timestep] if prev_timestep >= 0 else self.scheduler.final_alpha_cumprod ) _UpperCamelCase = 1 - alpha_prod_t _UpperCamelCase = self.unet(__a , __a)['''sample'''] _UpperCamelCase = (1 - alpha_prod_t_prev) ** 0.5 * model_output _UpperCamelCase = (sample - pred_sample_direction) * alpha_prod_t_prev ** (-0.5) _UpperCamelCase = sample * alpha_prod_t ** 0.5 + beta_prod_t ** 0.5 * model_output return sample @staticmethod def UpperCAmelCase ( __a , __a , __a) -> torch.Tensor: '''simple docstring''' _UpperCamelCase = acos(torch.dot(torch.flatten(__a) , torch.flatten(__a)) / torch.norm(__a) / torch.norm(__a)) return sin((1 - alpha) * theta) * xa / sin(__a) + sin(alpha * theta) * xa / sin(__a)
19
0
import inspect import os import sys import unittest import accelerate from accelerate.test_utils import execute_subprocess_async, require_tpu class __lowerCAmelCase ( unittest.TestCase ): """simple docstring""" def _a ( self : Tuple ): """simple docstring""" A__ = inspect.getfile(accelerate.test_utils ) A__ = os.path.sep.join(mod_file.split(os.path.sep )[:-1] + ['scripts', 'test_script.py'] ) A__ = os.path.sep.join(inspect.getfile(self.__class__ ).split(os.path.sep )[:-1] ) @require_tpu def _a ( self : List[str] ): """simple docstring""" A__ = F''' {self.test_dir}/xla_spawn.py --num_cores 8 {self.test_file_path} '''.split() A__ = [sys.executable] + distributed_args execute_subprocess_async(_snake_case , env=os.environ.copy() )
9
"""simple docstring""" import copy from collections import OrderedDict from typing import Dict, Mapping from packaging import version from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging from ..auto import CONFIG_MAPPING _a = logging.get_logger(__name__) _a = { """facebook/detr-resnet-50""": """https://huggingface.co/facebook/detr-resnet-50/resolve/main/config.json""", # See all DETR models at https://huggingface.co/models?filter=detr } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'detr' lowercase__ = ['past_key_values'] lowercase__ = { 'hidden_size': 'd_model', 'num_attention_heads': 'encoder_attention_heads', } def __init__( self , __a=True , __a=None , __a=3 , __a=1_00 , __a=6 , __a=20_48 , __a=8 , __a=6 , __a=20_48 , __a=8 , __a=0.0 , __a=0.0 , __a=True , __a="relu" , __a=2_56 , __a=0.1 , __a=0.0 , __a=0.0 , __a=0.02 , __a=1.0 , __a=False , __a="sine" , __a="resnet50" , __a=True , __a=False , __a=1 , __a=5 , __a=2 , __a=1 , __a=1 , __a=5 , __a=2 , __a=0.1 , **__a , ) -> int: '''simple docstring''' if backbone_config is not None and use_timm_backbone: raise ValueError('''You can\'t specify both `backbone_config` and `use_timm_backbone`.''') if not use_timm_backbone: if backbone_config is None: logger.info('''`backbone_config` is `None`. Initializing the config with the default `ResNet` backbone.''') _UpperCamelCase = CONFIG_MAPPING['''resnet'''](out_features=['''stage4''']) elif isinstance(__a , __a): _UpperCamelCase = backbone_config.get('''model_type''') _UpperCamelCase = CONFIG_MAPPING[backbone_model_type] _UpperCamelCase = config_class.from_dict(__a) # set timm attributes to None _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = None, None, None _UpperCamelCase = use_timm_backbone _UpperCamelCase = backbone_config _UpperCamelCase = num_channels _UpperCamelCase = num_queries _UpperCamelCase = d_model _UpperCamelCase = encoder_ffn_dim _UpperCamelCase = encoder_layers _UpperCamelCase = encoder_attention_heads _UpperCamelCase = decoder_ffn_dim _UpperCamelCase = decoder_layers _UpperCamelCase = decoder_attention_heads _UpperCamelCase = dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = activation_function _UpperCamelCase = init_std _UpperCamelCase = init_xavier_std _UpperCamelCase = encoder_layerdrop _UpperCamelCase = decoder_layerdrop _UpperCamelCase = encoder_layers _UpperCamelCase = auxiliary_loss _UpperCamelCase = position_embedding_type _UpperCamelCase = backbone _UpperCamelCase = use_pretrained_backbone _UpperCamelCase = dilation # Hungarian matcher _UpperCamelCase = class_cost _UpperCamelCase = bbox_cost _UpperCamelCase = giou_cost # Loss coefficients _UpperCamelCase = mask_loss_coefficient _UpperCamelCase = dice_loss_coefficient _UpperCamelCase = bbox_loss_coefficient _UpperCamelCase = giou_loss_coefficient _UpperCamelCase = eos_coefficient super().__init__(is_encoder_decoder=__a , **__a) @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.encoder_attention_heads @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return self.d_model @classmethod def UpperCAmelCase ( cls , __a , **__a) -> int: '''simple docstring''' return cls(backbone_config=__a , **__a) def UpperCAmelCase ( self) -> Dict[str, any]: '''simple docstring''' _UpperCamelCase = copy.deepcopy(self.__dict__) if output["backbone_config"] is not None: _UpperCamelCase = self.backbone_config.to_dict() _UpperCamelCase = self.__class__.model_type return output class _UpperCAmelCase( lowerCamelCase ): lowercase__ = version.parse('1.11' ) @property def UpperCAmelCase ( self) -> Mapping[str, Mapping[int, str]]: '''simple docstring''' return OrderedDict( [ ('''pixel_values''', {0: '''batch''', 1: '''num_channels''', 2: '''height''', 3: '''width'''}), ('''pixel_mask''', {0: '''batch'''}), ]) @property def UpperCAmelCase ( self) -> float: '''simple docstring''' return 1e-5 @property def UpperCAmelCase ( self) -> int: '''simple docstring''' return 12
19
0
import unittest from transformers import ( MODEL_FOR_CAUSAL_LM_MAPPING, TF_MODEL_FOR_CAUSAL_LM_MAPPING, TextGenerationPipeline, logging, pipeline, ) from transformers.testing_utils import ( CaptureLogger, is_pipeline_test, require_accelerate, require_tf, require_torch, require_torch_gpu, require_torch_or_tf, ) from .test_pipelines_common import ANY @is_pipeline_test @require_torch_or_tf class lowerCAmelCase_ ( unittest.TestCase ): UpperCAmelCase = MODEL_FOR_CAUSAL_LM_MAPPING UpperCAmelCase = TF_MODEL_FOR_CAUSAL_LM_MAPPING @require_torch def UpperCamelCase_ ( self : str ): _UpperCamelCase = pipeline(task='''text-generation''' , model='''sshleifer/tiny-ctrl''' , framework='''pt''' ) # Using `do_sample=False` to force deterministic output _UpperCamelCase = text_generator('''This is a test''' , do_sample=_A ) self.assertEqual( _A , [ { '''generated_text''': ( '''This is a test ☃ ☃ segmental segmental segmental 议议eski eski flutter flutter Lacy oscope.''' ''' oscope. FiliFili@@''' ) } ] , ) _UpperCamelCase = text_generator(['''This is a test''', '''This is a second test'''] ) self.assertEqual( _A , [ [ { '''generated_text''': ( '''This is a test ☃ ☃ segmental segmental segmental 议议eski eski flutter flutter Lacy oscope.''' ''' oscope. FiliFili@@''' ) } ], [ { '''generated_text''': ( '''This is a second test ☃ segmental segmental segmental 议议eski eski flutter flutter Lacy''' ''' oscope. oscope. FiliFili@@''' ) } ], ] , ) _UpperCamelCase = text_generator('''This is a test''' , do_sample=_A , num_return_sequences=2 , return_tensors=_A ) self.assertEqual( _A , [ {'''generated_token_ids''': ANY(_A )}, {'''generated_token_ids''': ANY(_A )}, ] , ) _UpperCamelCase = text_generator.model.config.eos_token_id _UpperCamelCase = '''<pad>''' _UpperCamelCase = text_generator( ['''This is a test''', '''This is a second test'''] , do_sample=_A , num_return_sequences=2 , batch_size=2 , return_tensors=_A , ) self.assertEqual( _A , [ [ {'''generated_token_ids''': ANY(_A )}, {'''generated_token_ids''': ANY(_A )}, ], [ {'''generated_token_ids''': ANY(_A )}, {'''generated_token_ids''': ANY(_A )}, ], ] , ) @require_tf def UpperCamelCase_ ( self : Dict ): _UpperCamelCase = pipeline(task='''text-generation''' , model='''sshleifer/tiny-ctrl''' , framework='''tf''' ) # Using `do_sample=False` to force deterministic output _UpperCamelCase = text_generator('''This is a test''' , do_sample=_A ) self.assertEqual( _A , [ { '''generated_text''': ( '''This is a test FeyFeyFey(Croatis.), s.), Cannes Cannes Cannes 閲閲Cannes Cannes Cannes 攵''' ''' please,''' ) } ] , ) _UpperCamelCase = text_generator(['''This is a test''', '''This is a second test'''] , do_sample=_A ) self.assertEqual( _A , [ [ { '''generated_text''': ( '''This is a test FeyFeyFey(Croatis.), s.), Cannes Cannes Cannes 閲閲Cannes Cannes Cannes 攵''' ''' please,''' ) } ], [ { '''generated_text''': ( '''This is a second test Chieftain Chieftain prefecture prefecture prefecture Cannes Cannes''' ''' Cannes 閲閲Cannes Cannes Cannes 攵 please,''' ) } ], ] , ) def UpperCamelCase_ ( self : int , _A : str , _A : Union[str, Any] , _A : Any ): _UpperCamelCase = TextGenerationPipeline(model=_A , tokenizer=_A ) return text_generator, ["This is a test", "Another test"] def UpperCamelCase_ ( self : Union[str, Any] ): _UpperCamelCase = '''Hello I believe in''' _UpperCamelCase = pipeline('''text-generation''' , model='''hf-internal-testing/tiny-random-gpt2''' ) _UpperCamelCase = text_generator(_A ) self.assertEqual( _A , [{'''generated_text''': '''Hello I believe in fe fe fe fe fe fe fe fe fe fe fe fe'''}] , ) _UpperCamelCase = text_generator(_A , stop_sequence=''' fe''' ) self.assertEqual(_A , [{'''generated_text''': '''Hello I believe in fe'''}] ) def UpperCamelCase_ ( self : Any , _A : List[Any] , _A : Union[str, Any] ): _UpperCamelCase = text_generator.model _UpperCamelCase = text_generator.tokenizer _UpperCamelCase = text_generator('''This is a test''' ) self.assertEqual(_A , [{'''generated_text''': ANY(_A )}] ) self.assertTrue(outputs[0]['''generated_text'''].startswith('''This is a test''' ) ) _UpperCamelCase = text_generator('''This is a test''' , return_full_text=_A ) self.assertEqual(_A , [{'''generated_text''': ANY(_A )}] ) self.assertNotIn('''This is a test''' , outputs[0]['''generated_text'''] ) _UpperCamelCase = pipeline(task='''text-generation''' , model=_A , tokenizer=_A , return_full_text=_A ) _UpperCamelCase = text_generator('''This is a test''' ) self.assertEqual(_A , [{'''generated_text''': ANY(_A )}] ) self.assertNotIn('''This is a test''' , outputs[0]['''generated_text'''] ) _UpperCamelCase = text_generator('''This is a test''' , return_full_text=_A ) self.assertEqual(_A , [{'''generated_text''': ANY(_A )}] ) self.assertTrue(outputs[0]['''generated_text'''].startswith('''This is a test''' ) ) _UpperCamelCase = text_generator(['''This is great !''', '''Something else'''] , num_return_sequences=2 , do_sample=_A ) self.assertEqual( _A , [ [{'''generated_text''': ANY(_A )}, {'''generated_text''': ANY(_A )}], [{'''generated_text''': ANY(_A )}, {'''generated_text''': ANY(_A )}], ] , ) if text_generator.tokenizer.pad_token is not None: _UpperCamelCase = text_generator( ['''This is great !''', '''Something else'''] , num_return_sequences=2 , batch_size=2 , do_sample=_A ) self.assertEqual( _A , [ [{'''generated_text''': ANY(_A )}, {'''generated_text''': ANY(_A )}], [{'''generated_text''': ANY(_A )}, {'''generated_text''': ANY(_A )}], ] , ) with self.assertRaises(_A ): _UpperCamelCase = text_generator('''test''' , return_full_text=_A , return_text=_A ) with self.assertRaises(_A ): _UpperCamelCase = text_generator('''test''' , return_full_text=_A , return_tensors=_A ) with self.assertRaises(_A ): _UpperCamelCase = text_generator('''test''' , return_text=_A , return_tensors=_A ) # Empty prompt is slighly special # it requires BOS token to exist. # Special case for Pegasus which will always append EOS so will # work even without BOS. if ( text_generator.tokenizer.bos_token_id is not None or "Pegasus" in tokenizer.__class__.__name__ or "Git" in model.__class__.__name__ ): _UpperCamelCase = text_generator('''''' ) self.assertEqual(_A , [{'''generated_text''': ANY(_A )}] ) else: with self.assertRaises((ValueError, AssertionError) ): _UpperCamelCase = text_generator('''''' ) if text_generator.framework == "tf": # TF generation does not support max_new_tokens, and it's impossible # to control long generation with only max_length without # fancy calculation, dismissing tests for now. return # We don't care about infinite range models. # They already work. # Skip this test for XGLM, since it uses sinusoidal positional embeddings which are resized on-the-fly. _UpperCamelCase = ['''RwkvForCausalLM''', '''XGLMForCausalLM''', '''GPTNeoXForCausalLM'''] if ( tokenizer.model_max_length < 1_0000 and text_generator.model.__class__.__name__ not in EXTRA_MODELS_CAN_HANDLE_LONG_INPUTS ): # Handling of large generations with self.assertRaises((RuntimeError, IndexError, ValueError, AssertionError) ): text_generator('''This is a test''' * 500 , max_new_tokens=20 ) _UpperCamelCase = text_generator('''This is a test''' * 500 , handle_long_generation='''hole''' , max_new_tokens=20 ) # Hole strategy cannot work with self.assertRaises(_A ): text_generator( '''This is a test''' * 500 , handle_long_generation='''hole''' , max_new_tokens=tokenizer.model_max_length + 10 , ) @require_torch @require_accelerate @require_torch_gpu def UpperCamelCase_ ( self : Optional[int] ): import torch # Classic `model_kwargs` _UpperCamelCase = pipeline( model='''hf-internal-testing/tiny-random-bloom''' , model_kwargs={'''device_map''': '''auto''', '''torch_dtype''': torch.bfloataa} , ) self.assertEqual(pipe.model.device , torch.device(0 ) ) self.assertEqual(pipe.model.lm_head.weight.dtype , torch.bfloataa ) _UpperCamelCase = pipe('''This is a test''' ) self.assertEqual( _A , [ { '''generated_text''': ( '''This is a test test test test test test test test test test test test test test test test''' ''' test''' ) } ] , ) # Upgraded those two to real pipeline arguments (they just get sent for the model as they're unlikely to mean anything else.) _UpperCamelCase = pipeline(model='''hf-internal-testing/tiny-random-bloom''' , device_map='''auto''' , torch_dtype=torch.bfloataa ) self.assertEqual(pipe.model.device , torch.device(0 ) ) self.assertEqual(pipe.model.lm_head.weight.dtype , torch.bfloataa ) _UpperCamelCase = pipe('''This is a test''' ) self.assertEqual( _A , [ { '''generated_text''': ( '''This is a test test test test test test test test test test test test test test test test''' ''' test''' ) } ] , ) # torch_dtype will be automatically set to float32 if not provided - check: https://github.com/huggingface/transformers/pull/20602 _UpperCamelCase = pipeline(model='''hf-internal-testing/tiny-random-bloom''' , device_map='''auto''' ) self.assertEqual(pipe.model.device , torch.device(0 ) ) self.assertEqual(pipe.model.lm_head.weight.dtype , torch.floataa ) _UpperCamelCase = pipe('''This is a test''' ) self.assertEqual( _A , [ { '''generated_text''': ( '''This is a test test test test test test test test test test test test test test test test''' ''' test''' ) } ] , ) @require_torch @require_torch_gpu def UpperCamelCase_ ( self : Union[str, Any] ): import torch _UpperCamelCase = pipeline(model='''hf-internal-testing/tiny-random-bloom''' , device=0 , torch_dtype=torch.floataa ) pipe('''This is a test''' ) @require_torch @require_accelerate @require_torch_gpu def UpperCamelCase_ ( self : Optional[int] ): import torch _UpperCamelCase = pipeline(model='''hf-internal-testing/tiny-random-bloom''' , device_map='''auto''' , torch_dtype=torch.floataa ) pipe('''This is a test''' , do_sample=_A , top_p=0.5 ) def UpperCamelCase_ ( self : Tuple ): _UpperCamelCase = '''Hello world''' _UpperCamelCase = pipeline('''text-generation''' , model='''hf-internal-testing/tiny-random-gpt2''' ) if text_generator.model.framework == "tf": _UpperCamelCase = logging.get_logger('''transformers.generation.tf_utils''' ) else: _UpperCamelCase = logging.get_logger('''transformers.generation.utils''' ) _UpperCamelCase = '''Both `max_new_tokens`''' # The beggining of the message to be checked in this test # Both are set by the user -> log warning with CaptureLogger(_A ) as cl: _UpperCamelCase = text_generator(_A , max_length=10 , max_new_tokens=1 ) self.assertIn(_A , cl.out ) # The user only sets one -> no warning with CaptureLogger(_A ) as cl: _UpperCamelCase = text_generator(_A , max_new_tokens=1 ) self.assertNotIn(_A , cl.out ) with CaptureLogger(_A ) as cl: _UpperCamelCase = text_generator(_A , max_length=10 ) self.assertNotIn(_A , cl.out )
10
"""simple docstring""" import functools import operator from ...configuration_utils import PretrainedConfig from ...utils import logging _a = logging.get_logger(__name__) _a = { """microsoft/wavlm-base""": """https://huggingface.co/microsoft/wavlm-base/resolve/main/config.json""", # See all WavLM models at https://huggingface.co/models?filter=wavlm } class _UpperCAmelCase( lowerCamelCase ): lowercase__ = 'wavlm' def __init__( self , __a=32 , __a=7_68 , __a=12 , __a=12 , __a=30_72 , __a="gelu" , __a=0.1 , __a=0.1 , __a=0.1 , __a=0.0 , __a=0.1 , __a=0.1 , __a=0.02 , __a=1e-5 , __a="group" , __a="gelu" , __a=(5_12, 5_12, 5_12, 5_12, 5_12, 5_12, 5_12) , __a=(5, 2, 2, 2, 2, 2, 2) , __a=(10, 3, 3, 3, 3, 2, 2) , __a=False , __a=1_28 , __a=16 , __a=3_20 , __a=8_00 , __a=False , __a=True , __a=0.05 , __a=10 , __a=2 , __a=0.0 , __a=10 , __a=3_20 , __a=2 , __a=0.1 , __a=1_00 , __a=2_56 , __a=2_56 , __a=0.1 , __a="mean" , __a=False , __a=False , __a=2_56 , __a=(5_12, 5_12, 5_12, 5_12, 15_00) , __a=(5, 3, 3, 1, 1) , __a=(1, 2, 3, 1, 1) , __a=5_12 , __a=80 , __a=0 , __a=1 , __a=2 , __a=False , __a=3 , __a=2 , __a=3 , __a=None , **__a , ) -> Union[str, Any]: '''simple docstring''' super().__init__(**__a , pad_token_id=__a , bos_token_id=__a , eos_token_id=__a) _UpperCamelCase = hidden_size _UpperCamelCase = feat_extract_norm _UpperCamelCase = feat_extract_activation _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = conv_bias _UpperCamelCase = num_buckets _UpperCamelCase = max_bucket_distance _UpperCamelCase = num_conv_pos_embeddings _UpperCamelCase = num_conv_pos_embedding_groups _UpperCamelCase = len(self.conv_dim) _UpperCamelCase = num_hidden_layers _UpperCamelCase = intermediate_size _UpperCamelCase = hidden_act _UpperCamelCase = num_attention_heads _UpperCamelCase = hidden_dropout _UpperCamelCase = attention_dropout _UpperCamelCase = activation_dropout _UpperCamelCase = feat_proj_dropout _UpperCamelCase = final_dropout _UpperCamelCase = layerdrop _UpperCamelCase = layer_norm_eps _UpperCamelCase = initializer_range _UpperCamelCase = num_ctc_classes _UpperCamelCase = vocab_size _UpperCamelCase = do_stable_layer_norm _UpperCamelCase = use_weighted_layer_sum _UpperCamelCase = 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 _UpperCamelCase = apply_spec_augment _UpperCamelCase = mask_time_prob _UpperCamelCase = mask_time_length _UpperCamelCase = mask_time_min_masks _UpperCamelCase = mask_feature_prob _UpperCamelCase = mask_feature_length # parameters for pretraining with codevector quantized representations _UpperCamelCase = num_codevectors_per_group _UpperCamelCase = num_codevector_groups _UpperCamelCase = contrastive_logits_temperature _UpperCamelCase = num_negatives _UpperCamelCase = codevector_dim _UpperCamelCase = proj_codevector_dim _UpperCamelCase = diversity_loss_weight # ctc loss _UpperCamelCase = ctc_loss_reduction _UpperCamelCase = ctc_zero_infinity # adapter _UpperCamelCase = add_adapter _UpperCamelCase = adapter_kernel_size _UpperCamelCase = adapter_stride _UpperCamelCase = num_adapter_layers _UpperCamelCase = output_hidden_size or hidden_size # SequenceClassification-specific parameter. Feel free to ignore for other classes. _UpperCamelCase = classifier_proj_size # XVector-specific parameters. Feel free to ignore for other classes. _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = list(__a) _UpperCamelCase = xvector_output_dim @property def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' return functools.reduce(operator.mul , self.conv_stride , 1)
19
0
'''simple docstring''' from __future__ import annotations from math import pi # Define the Reduced Planck Constant ℏ (H bar), speed of light C, value of # Pi and the function lowercase_ = 1.0_54_57_18_17e-34 # unit of ℏ : J * s lowercase_ = 3e8 # unit of c : m * s^-1 def lowerCAmelCase (__A , __A , __A): """simple docstring""" if (force, area, distance).count(0) != 1: raise ValueError('''One and only one argument must be 0''') if force < 0: raise ValueError('''Magnitude of force can not be negative''') if distance < 0: raise ValueError('''Distance can not be negative''') if area < 0: raise ValueError('''Area can not be negative''') if force == 0: _a = (REDUCED_PLANCK_CONSTANT * SPEED_OF_LIGHT * pi**2 * area) / ( 240 * (distance) ** 4 ) return {"force": force} elif area == 0: _a = (240 * force * (distance) ** 4) / ( REDUCED_PLANCK_CONSTANT * SPEED_OF_LIGHT * pi**2 ) return {"area": area} elif distance == 0: _a = ( (REDUCED_PLANCK_CONSTANT * SPEED_OF_LIGHT * pi**2 * area) / (240 * force) ) ** (1 / 4) return {"distance": distance} raise ValueError('''One and only one argument must be 0''') # Run doctest if __name__ == "__main__": import doctest doctest.testmod()
11
"""simple docstring""" import datasets import faiss import numpy as np import streamlit as st import torch from elasticsearch import Elasticsearch from elia_utils import ( embed_questions_for_retrieval, make_qa_sas_model, qa_sas_generate, query_es_index, query_qa_dense_index, ) import transformers from transformers import AutoModel, AutoModelForSeqaSeqLM, AutoTokenizer _a = """bart""" _a = True @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Dict: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/retribert-base-uncased''' ) _UpperCamelCase = AutoModel.from_pretrained('''yjernite/retribert-base-uncased''' ).to('''cuda:0''' ) _UpperCamelCase = qar_model.eval() else: _UpperCamelCase , _UpperCamelCase = (None, None) if MODEL_TYPE == "bart": _UpperCamelCase = AutoTokenizer.from_pretrained('''yjernite/bart_eli5''' ) _UpperCamelCase = AutoModelForSeqaSeqLM.from_pretrained('''yjernite/bart_eli5''' ).to('''cuda:0''' ) _UpperCamelCase = torch.load('''seq2seq_models/eli5_bart_model_blm_2.pth''' ) sas_model.load_state_dict(save_dict['''model'''] ) _UpperCamelCase = sas_model.eval() else: _UpperCamelCase , _UpperCamelCase = make_qa_sas_model( model_name='''t5-small''', from_file='''seq2seq_models/eli5_t5_model_1024_4.pth''', device='''cuda:0''' ) return (qar_tokenizer, qar_model, sas_tokenizer, sas_model) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> Tuple: """simple docstring""" if LOAD_DENSE_INDEX: _UpperCamelCase = faiss.StandardGpuResources() _UpperCamelCase = datasets.load_dataset(path='''wiki_snippets''', name='''wiki40b_en_100_0''' )['''train'''] _UpperCamelCase = np.memmap( '''wiki40b_passages_reps_32_l-8_h-768_b-512-512.dat''', dtype='''float32''', mode='''r''', shape=(wikiaab_passages.num_rows, 1_28), ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) _UpperCamelCase = faiss.index_cpu_to_gpu(__snake_case, 1, __snake_case ) wikiaab_gpu_index_flat.add(__snake_case ) # TODO fix for larger GPU else: _UpperCamelCase , _UpperCamelCase = (None, None) _UpperCamelCase = Elasticsearch([{'''host''': '''localhost''', '''port''': '''9200'''}] ) return (wikiaab_passages, wikiaab_gpu_index_flat, es_client) @st.cache(allow_output_mutation=__snake_case ) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = datasets.load_dataset('''eli5''', name='''LFQA_reddit''' ) _UpperCamelCase = elia['''train_eli5'''] _UpperCamelCase = np.memmap( '''eli5_questions_reps.dat''', dtype='''float32''', mode='''r''', shape=(elia_train.num_rows, 1_28) ) _UpperCamelCase = faiss.IndexFlatIP(1_28 ) eli5_train_q_index.add(__snake_case ) return (elia_train, eli5_train_q_index) _a , _a , _a = load_indexes() _a , _a , _a , _a = load_models() _a , _a = load_train_data() def lowerCamelCase__ ( __snake_case, __snake_case=10 ) -> List[Any]: """simple docstring""" _UpperCamelCase = embed_questions_for_retrieval([question], __snake_case, __snake_case ) _UpperCamelCase , _UpperCamelCase = eli5_train_q_index.search(__snake_case, __snake_case ) _UpperCamelCase = [elia_train[int(__snake_case )] for i in I[0]] return nn_examples def lowerCamelCase__ ( __snake_case, __snake_case="wiki40b", __snake_case="dense", __snake_case=10 ) -> List[str]: """simple docstring""" if source == "none": _UpperCamelCase , _UpperCamelCase = (''' <P> '''.join(['''''' for _ in range(11 )] ).strip(), []) else: if method == "dense": _UpperCamelCase , _UpperCamelCase = query_qa_dense_index( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) else: _UpperCamelCase , _UpperCamelCase = query_es_index( __snake_case, __snake_case, index_name='''english_wiki40b_snippets_100w''', n_results=__snake_case, ) _UpperCamelCase = [ (res['''article_title'''], res['''section_title'''].strip(), res['''score'''], res['''passage_text''']) for res in hit_lst ] _UpperCamelCase = '''question: {} context: {}'''.format(__snake_case, __snake_case ) return question_doc, support_list @st.cache( hash_funcs={ torch.Tensor: (lambda __snake_case : None), transformers.models.bart.tokenization_bart.BartTokenizer: (lambda __snake_case : None), } ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case=64, __snake_case=2_56, __snake_case=False, __snake_case=2, __snake_case=0.95, __snake_case=0.8 ) -> Dict: """simple docstring""" with torch.no_grad(): _UpperCamelCase = qa_sas_generate( __snake_case, __snake_case, __snake_case, num_answers=1, num_beams=__snake_case, min_len=__snake_case, max_len=__snake_case, do_sample=__snake_case, temp=__snake_case, top_p=__snake_case, top_k=__snake_case, max_input_length=10_24, device='''cuda:0''', )[0] return (answer, support_list) st.title("""Long Form Question Answering with ELI5""") # Start sidebar _a = """<img src='https://huggingface.co/front/assets/huggingface_logo.svg'>""" _a = """ <html> <head> <style> .img-container { padding-left: 90px; padding-right: 90px; padding-top: 50px; padding-bottom: 50px; background-color: #f0f3f9; } </style> </head> <body> <span class=\"img-container\"> <!-- Inline parent element --> %s </span> </body> </html> """ % ( header_html, ) st.sidebar.markdown( header_full, unsafe_allow_html=True, ) # Long Form QA with ELI5 and Wikipedia _a = """ This demo presents a model trained to [provide long-form answers to open-domain questions](https://yjernite.github.io/lfqa.html). First, a document retriever fetches a set of relevant Wikipedia passages given the question from the [Wiki40b](https://research.google/pubs/pub49029/) dataset, a pre-processed fixed snapshot of Wikipedia. """ st.sidebar.markdown(description, unsafe_allow_html=True) _a = [ """Answer the question""", """View the retrieved document only""", """View the most similar ELI5 question and answer""", """Show me everything, please!""", ] _a = st.sidebar.checkbox("""Demo options""") if demo_options: _a = st.sidebar.selectbox( """""", action_list, index=3, ) _a = action_list.index(action_st) _a = st.sidebar.selectbox( """""", ["""Show full text of passages""", """Show passage section titles"""], index=0, ) _a = show_type == """Show full text of passages""" else: _a = 3 _a = True _a = st.sidebar.checkbox("""Retrieval options""") if retrieval_options: _a = """ ### Information retriever options The **sparse** retriever uses ElasticSearch, while the **dense** retriever uses max-inner-product search between a question and passage embedding trained using the [ELI5](https://arxiv.org/abs/1907.09190) questions-answer pairs. The answer is then generated by sequence to sequence model which takes the question and retrieved document as input. """ st.sidebar.markdown(retriever_info) _a = st.sidebar.selectbox("""Which Wikipedia format should the model use?""", ["""wiki40b""", """none"""]) _a = st.sidebar.selectbox("""Which Wikipedia indexer should the model use?""", ["""dense""", """sparse""", """mixed"""]) else: _a = """wiki40b""" _a = """dense""" _a = """beam""" _a = 2 _a = 64 _a = 256 _a = None _a = None _a = st.sidebar.checkbox("""Generation options""") if generate_options: _a = """ ### Answer generation options The sequence-to-sequence model was initialized with [BART](https://huggingface.co/facebook/bart-large) weights and fine-tuned on the ELI5 QA pairs and retrieved documents. You can use the model for greedy decoding with **beam** search, or **sample** from the decoder's output probabilities. """ st.sidebar.markdown(generate_info) _a = st.sidebar.selectbox("""Would you like to use beam search or sample an answer?""", ["""beam""", """sampled"""]) _a = st.sidebar.slider( """Minimum generation length""", min_value=8, max_value=256, value=64, step=8, format=None, key=None ) _a = st.sidebar.slider( """Maximum generation length""", min_value=64, max_value=512, value=256, step=16, format=None, key=None ) if sampled == "beam": _a = st.sidebar.slider("""Beam size""", min_value=1, max_value=8, value=2, step=None, format=None, key=None) else: _a = st.sidebar.slider( """Nucleus sampling p""", min_value=0.1, max_value=1.0, value=0.95, step=0.01, format=None, key=None ) _a = st.sidebar.slider( """Temperature""", min_value=0.1, max_value=1.0, value=0.7, step=0.01, format=None, key=None ) _a = None # start main text _a = [ """<MY QUESTION>""", """How do people make chocolate?""", """Why do we get a fever when we are sick?""", """How can different animals perceive different colors?""", """What is natural language processing?""", """What's the best way to treat a sunburn?""", """What exactly are vitamins ?""", """How does nuclear energy provide electricity?""", """What's the difference between viruses and bacteria?""", """Why are flutes classified as woodwinds when most of them are made out of metal ?""", """Why do people like drinking coffee even though it tastes so bad?""", """What happens when wine ages? How does it make the wine taste better?""", """If an animal is an herbivore, where does it get the protein that it needs to survive if it only eats grass?""", """How can we set a date to the beginning or end of an artistic period? Doesn't the change happen gradually?""", """How does New Zealand have so many large bird predators?""", ] _a = st.selectbox( """What would you like to ask? ---- select <MY QUESTION> to enter a new query""", questions_list, index=1, ) if question_s == "<MY QUESTION>": _a = st.text_input("""Enter your question here:""", """""") else: _a = question_s if st.button("""Show me!"""): if action in [0, 1, 3]: if index_type == "mixed": _a , _a = make_support(question, source=wiki_source, method="""dense""", n_results=10) _a , _a = make_support(question, source=wiki_source, method="""sparse""", n_results=10) _a = [] for res_d, res_s in zip(support_list_dense, support_list_sparse): if tuple(res_d) not in support_list: support_list += [tuple(res_d)] if tuple(res_s) not in support_list: support_list += [tuple(res_s)] _a = support_list[:10] _a = """<P> """ + """ <P> """.join([res[-1] for res in support_list]) else: _a , _a = make_support(question, source=wiki_source, method=index_type, n_results=10) if action in [0, 3]: _a , _a = answer_question( question_doc, sas_model, sas_tokenizer, min_len=min_len, max_len=int(max_len), sampling=(sampled == """sampled"""), n_beams=n_beams, top_p=top_p, temp=temp, ) st.markdown("""### The model generated answer is:""") st.write(answer) if action in [0, 1, 3] and wiki_source != "none": st.markdown("""--- \n ### The model is drawing information from the following Wikipedia passages:""") for i, res in enumerate(support_list): _a = """https://en.wikipedia.org/wiki/{}""".format(res[0].replace(""" """, """_""")) _a = res[1].strip() if sec_titles == "": _a = """[{}]({})""".format(res[0], wiki_url) else: _a = sec_titles.split(""" & """) _a = """ & """.join( ["""[{}]({}#{})""".format(sec.strip(), wiki_url, sec.strip().replace(""" """, """_""")) for sec in sec_list] ) st.markdown( """{0:02d} - **Article**: {1:<18} <br> _Section_: {2}""".format(i + 1, res[0], sections), unsafe_allow_html=True, ) if show_passages: st.write( """> <span style=\"font-family:arial; font-size:10pt;\">""" + res[-1] + """</span>""", unsafe_allow_html=True ) if action in [2, 3]: _a = find_nearest_training(question) _a = nn_train_list[0] st.markdown( """--- \n ### The most similar question in the ELI5 training set was: \n\n {}""".format(train_exple["""title"""]) ) _a = [ """{}. {}""".format(i + 1, """ \n""".join([line.strip() for line in ans.split("""\n""") if line.strip() != """"""])) for i, (ans, sc) in enumerate(zip(train_exple["""answers"""]["""text"""], train_exple["""answers"""]["""score"""])) if i == 0 or sc > 2 ] st.markdown("""##### Its answers were: \n\n {}""".format("""\n""".join(answers_st))) _a = """ --- **Disclaimer** *The intent of this app is to provide some (hopefully entertaining) insights into the behavior of a current LFQA system. Evaluating biases of such a model and ensuring factual generations are still very much open research problems. Therefore, until some significant progress is achieved, we caution against using the generated answers for practical purposes.* """ st.sidebar.markdown(disclaimer, unsafe_allow_html=True)
19
0
import shutil import tempfile import unittest from unittest.mock import patch from transformers import ( DefaultFlowCallback, IntervalStrategy, PrinterCallback, ProgressCallback, Trainer, TrainerCallback, TrainingArguments, is_torch_available, ) from transformers.testing_utils import require_torch if is_torch_available(): from transformers.trainer import DEFAULT_CALLBACKS from .test_trainer import RegressionDataset, RegressionModelConfig, RegressionPreTrainedModel class _snake_case ( UpperCAmelCase_ ): def __init__( self): '''simple docstring''' lowercase__ : List[Any] = [] def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_init_end""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_train_begin""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_train_end""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_epoch_begin""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_epoch_end""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_step_begin""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_step_end""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_evaluate""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_predict""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_save""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_log""") def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , **SCREAMING_SNAKE_CASE_): '''simple docstring''' self.events.append("""on_prediction_step""") @require_torch class _snake_case ( unittest.TestCase ): def lowercase__ ( self): '''simple docstring''' lowercase__ : Dict = tempfile.mkdtemp() def lowercase__ ( self): '''simple docstring''' shutil.rmtree(self.output_dir) def lowercase__ ( self , SCREAMING_SNAKE_CASE_=0 , SCREAMING_SNAKE_CASE_=0 , SCREAMING_SNAKE_CASE_=64 , SCREAMING_SNAKE_CASE_=64 , SCREAMING_SNAKE_CASE_=None , SCREAMING_SNAKE_CASE_=False , **SCREAMING_SNAKE_CASE_): '''simple docstring''' lowercase__ : Any = RegressionDataset(length=SCREAMING_SNAKE_CASE_) lowercase__ : Optional[int] = RegressionDataset(length=SCREAMING_SNAKE_CASE_) lowercase__ : Dict = RegressionModelConfig(a=SCREAMING_SNAKE_CASE_ , b=SCREAMING_SNAKE_CASE_) lowercase__ : Any = RegressionPreTrainedModel(SCREAMING_SNAKE_CASE_) lowercase__ : Any = TrainingArguments(self.output_dir , disable_tqdm=SCREAMING_SNAKE_CASE_ , report_to=[] , **SCREAMING_SNAKE_CASE_) return Trainer( SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , train_dataset=SCREAMING_SNAKE_CASE_ , eval_dataset=SCREAMING_SNAKE_CASE_ , callbacks=SCREAMING_SNAKE_CASE_ , ) def lowercase__ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_): '''simple docstring''' self.assertEqual(len(SCREAMING_SNAKE_CASE_) , len(SCREAMING_SNAKE_CASE_)) # Order doesn't matter lowercase__ : str = sorted(SCREAMING_SNAKE_CASE_ , key=lambda SCREAMING_SNAKE_CASE_: cb.__name__ if isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) else cb.__class__.__name__) lowercase__ : Tuple = sorted(SCREAMING_SNAKE_CASE_ , key=lambda SCREAMING_SNAKE_CASE_: cb.__name__ if isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) else cb.__class__.__name__) for cba, cba in zip(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_): if isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) and isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_): self.assertEqual(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) elif isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) and not isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_): self.assertEqual(SCREAMING_SNAKE_CASE_ , cba.__class__) elif not isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) and isinstance(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_): self.assertEqual(cba.__class__ , SCREAMING_SNAKE_CASE_) else: self.assertEqual(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) def lowercase__ ( self , SCREAMING_SNAKE_CASE_): '''simple docstring''' lowercase__ : int = ["""on_init_end""", """on_train_begin"""] lowercase__ : Union[str, Any] = 0 lowercase__ : Union[str, Any] = len(trainer.get_eval_dataloader()) lowercase__ : Dict = ["""on_prediction_step"""] * len(trainer.get_eval_dataloader()) + ["""on_log""", """on_evaluate"""] for _ in range(trainer.state.num_train_epochs): expected_events.append("""on_epoch_begin""") for _ in range(SCREAMING_SNAKE_CASE_): step += 1 expected_events += ["on_step_begin", "on_step_end"] if step % trainer.args.logging_steps == 0: expected_events.append("""on_log""") if trainer.args.evaluation_strategy == IntervalStrategy.STEPS and step % trainer.args.eval_steps == 0: expected_events += evaluation_events.copy() if step % trainer.args.save_steps == 0: expected_events.append("""on_save""") expected_events.append("""on_epoch_end""") if trainer.args.evaluation_strategy == IntervalStrategy.EPOCH: expected_events += evaluation_events.copy() expected_events += ["on_log", "on_train_end"] return expected_events def lowercase__ ( self): '''simple docstring''' lowercase__ : int = self.get_trainer() lowercase__ : Union[str, Any] = DEFAULT_CALLBACKS.copy() + [ProgressCallback] self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) # Callbacks passed at init are added to the default callbacks lowercase__ : Any = self.get_trainer(callbacks=[MyTestTrainerCallback]) expected_callbacks.append(SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) # TrainingArguments.disable_tqdm controls if use ProgressCallback or PrinterCallback lowercase__ : Any = self.get_trainer(disable_tqdm=SCREAMING_SNAKE_CASE_) lowercase__ : Tuple = DEFAULT_CALLBACKS.copy() + [PrinterCallback] self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) def lowercase__ ( self): '''simple docstring''' lowercase__ : Any = DEFAULT_CALLBACKS.copy() + [ProgressCallback] lowercase__ : Tuple = self.get_trainer() # We can add, pop, or remove by class name trainer.remove_callback(SCREAMING_SNAKE_CASE_) expected_callbacks.remove(SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) lowercase__ : Optional[int] = self.get_trainer() lowercase__ : List[Any] = trainer.pop_callback(SCREAMING_SNAKE_CASE_) self.assertEqual(cb.__class__ , SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) trainer.add_callback(SCREAMING_SNAKE_CASE_) expected_callbacks.insert(0 , SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) # We can also add, pop, or remove by instance lowercase__ : Union[str, Any] = self.get_trainer() lowercase__ : Optional[Any] = trainer.callback_handler.callbacks[0] trainer.remove_callback(SCREAMING_SNAKE_CASE_) expected_callbacks.remove(SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) lowercase__ : str = self.get_trainer() lowercase__ : Optional[Any] = trainer.callback_handler.callbacks[0] lowercase__ : Union[str, Any] = trainer.pop_callback(SCREAMING_SNAKE_CASE_) self.assertEqual(SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) trainer.add_callback(SCREAMING_SNAKE_CASE_) expected_callbacks.insert(0 , SCREAMING_SNAKE_CASE_) self.check_callbacks_equality(trainer.callback_handler.callbacks , SCREAMING_SNAKE_CASE_) def lowercase__ ( self): '''simple docstring''' import warnings # XXX: for now ignore scatter_gather warnings in this test since it's not relevant to what's being tested warnings.simplefilter(action="""ignore""" , category=SCREAMING_SNAKE_CASE_) lowercase__ : Union[str, Any] = self.get_trainer(callbacks=[MyTestTrainerCallback]) trainer.train() lowercase__ : Union[str, Any] = trainer.callback_handler.callbacks[-2].events self.assertEqual(SCREAMING_SNAKE_CASE_ , self.get_expected_events(SCREAMING_SNAKE_CASE_)) # Independent log/save/eval lowercase__ : List[Any] = self.get_trainer(callbacks=[MyTestTrainerCallback] , logging_steps=5) trainer.train() lowercase__ : List[str] = trainer.callback_handler.callbacks[-2].events self.assertEqual(SCREAMING_SNAKE_CASE_ , self.get_expected_events(SCREAMING_SNAKE_CASE_)) lowercase__ : Optional[Any] = self.get_trainer(callbacks=[MyTestTrainerCallback] , save_steps=5) trainer.train() lowercase__ : Dict = trainer.callback_handler.callbacks[-2].events self.assertEqual(SCREAMING_SNAKE_CASE_ , self.get_expected_events(SCREAMING_SNAKE_CASE_)) lowercase__ : Any = self.get_trainer(callbacks=[MyTestTrainerCallback] , eval_steps=5 , evaluation_strategy="""steps""") trainer.train() lowercase__ : int = trainer.callback_handler.callbacks[-2].events self.assertEqual(SCREAMING_SNAKE_CASE_ , self.get_expected_events(SCREAMING_SNAKE_CASE_)) lowercase__ : Tuple = self.get_trainer(callbacks=[MyTestTrainerCallback] , evaluation_strategy="""epoch""") trainer.train() lowercase__ : Optional[int] = trainer.callback_handler.callbacks[-2].events self.assertEqual(SCREAMING_SNAKE_CASE_ , self.get_expected_events(SCREAMING_SNAKE_CASE_)) # A bit of everything lowercase__ : Any = self.get_trainer( callbacks=[MyTestTrainerCallback] , logging_steps=3 , save_steps=10 , eval_steps=5 , evaluation_strategy="""steps""" , ) trainer.train() lowercase__ : str = trainer.callback_handler.callbacks[-2].events self.assertEqual(SCREAMING_SNAKE_CASE_ , self.get_expected_events(SCREAMING_SNAKE_CASE_)) # warning should be emitted for duplicated callbacks with patch("""transformers.trainer_callback.logger.warning""") as warn_mock: lowercase__ : Dict = self.get_trainer( callbacks=[MyTestTrainerCallback, MyTestTrainerCallback] , ) assert str(SCREAMING_SNAKE_CASE_) in warn_mock.call_args[0][0]
12
"""simple docstring""" import argparse import fairseq import torch from torch import nn from transformers import ( MBartaaTokenizer, MBartConfig, MBartForCausalLM, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() _a = logging.get_logger(__name__) _a = { """post_extract_proj""": """feature_projection.projection""", """encoder.pos_conv.0""": """encoder.pos_conv_embed.conv""", """self_attn.k_proj""": """encoder.layers.*.attention.k_proj""", """self_attn.v_proj""": """encoder.layers.*.attention.v_proj""", """self_attn.q_proj""": """encoder.layers.*.attention.q_proj""", """self_attn.out_proj""": """encoder.layers.*.attention.out_proj""", """self_attn_layer_norm""": """encoder.layers.*.layer_norm""", """fc1""": """encoder.layers.*.feed_forward.intermediate_dense""", """fc2""": """encoder.layers.*.feed_forward.output_dense""", """final_layer_norm""": """encoder.layers.*.final_layer_norm""", """encoder.layer_norm""": """encoder.layer_norm""", """w2v_model.layer_norm""": """feature_projection.layer_norm""", """quantizer.weight_proj""": """quantizer.weight_proj""", """quantizer.vars""": """quantizer.codevectors""", """project_q""": """project_q""", """final_proj""": """project_hid""", """w2v_encoder.proj""": """lm_head""", """mask_emb""": """masked_spec_embed""", } _a = [ """lm_head""", """quantizer.weight_proj""", """quantizer.codevectors""", """project_q""", """project_hid""", ] def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> Tuple: """simple docstring""" for attribute in key.split('''.''' ): _UpperCamelCase = getattr(__snake_case, __snake_case ) if weight_type is not None: _UpperCamelCase = getattr(__snake_case, __snake_case ).shape else: _UpperCamelCase = hf_pointer.shape assert hf_shape == value.shape, ( 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": _UpperCamelCase = value elif weight_type == "weight_g": _UpperCamelCase = value elif weight_type == "weight_v": _UpperCamelCase = value elif weight_type == "bias": _UpperCamelCase = value else: _UpperCamelCase = value logger.info(F'''{key + "." + weight_type if weight_type is not None else ""} was initialized from {full_name}.''' ) def lowerCamelCase__ ( __snake_case, __snake_case ) -> List[str]: """simple docstring""" _UpperCamelCase = [] _UpperCamelCase = fairseq_model.state_dict() _UpperCamelCase = hf_model.feature_extractor _UpperCamelCase = hf_model.adapter for name, value in fairseq_dict.items(): _UpperCamelCase = False if "conv_layers" in name: load_conv_layer( __snake_case, __snake_case, __snake_case, __snake_case, hf_model.config.feat_extract_norm == '''group''', ) _UpperCamelCase = True elif any(x in name for x in ['''adaptor''', '''w2v_encoder.proj.''', '''w2v_proj_ln.'''] ): load_adapter(__snake_case, __snake_case, __snake_case, __snake_case ) _UpperCamelCase = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('''w2v_model.''' )[-1] == name.split('''.''' )[0]: _UpperCamelCase = True if "*" in mapped_key: _UpperCamelCase = name.split(__snake_case )[0].split('''.''' )[-2] _UpperCamelCase = mapped_key.replace('''*''', __snake_case ) if "weight_g" in name: _UpperCamelCase = '''weight_g''' elif "weight_v" in name: _UpperCamelCase = '''weight_v''' elif "bias" in name: _UpperCamelCase = '''bias''' elif "weight" in name: _UpperCamelCase = '''weight''' else: _UpperCamelCase = None set_recursively(__snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) continue if not is_used: unused_weights.append(__snake_case ) logger.warning(F'''Unused weights: {unused_weights}''' ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> List[Any]: """simple docstring""" _UpperCamelCase = full_name.split('''conv_layers.''' )[-1] _UpperCamelCase = name.split('''.''' ) _UpperCamelCase = int(items[0] ) _UpperCamelCase = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) _UpperCamelCase = 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: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) _UpperCamelCase = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case ) -> Dict: """simple docstring""" _UpperCamelCase = full_name.split('''adaptor.''' )[-1] _UpperCamelCase = name.split('''.''' ) if items[1].isdigit(): _UpperCamelCase = int(items[1] ) else: _UpperCamelCase = None if "adaptor" not in full_name: if "proj_ln" in full_name: # has to be layer norm if "bias" in name: assert ( value.shape == adapter.proj_layer_norm.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer norm bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj_layer_norm.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj_layer_norm.weight.data.shape} was found.''' _UpperCamelCase = value else: # has to be projection layer if "bias" in name: assert ( value.shape == adapter.proj.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer bias was initialized from {full_name}.''' ) if "weight" in name: assert ( value.shape == adapter.proj.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.proj.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter proj layer weight was initialized from {full_name}.''' ) elif isinstance(__snake_case, __snake_case ): if "bias" in name: assert ( value.shape == adapter.layers[layer_id].conv.bias.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.bias.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) elif "weight" in name: assert ( value.shape == adapter.layers[layer_id].conv.weight.data.shape ), F'''{full_name} has size {value.shape}, but {adapter.layers[layer_id].conv.weight.data.shape} was found.''' _UpperCamelCase = value logger.info(F'''Adapter layer {layer_id} bias was initialized from {full_name}.''' ) else: unused_weights.append(__snake_case ) def lowerCamelCase__ ( __snake_case ) -> str: """simple docstring""" _UpperCamelCase , _UpperCamelCase = emb.weight.shape _UpperCamelCase = nn.Linear(__snake_case, __snake_case, bias=__snake_case ) _UpperCamelCase = emb.weight.data return lin_layer @torch.no_grad() def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, __snake_case, ) -> Optional[Any]: """simple docstring""" _UpperCamelCase = WavaVecaConfig.from_pretrained( __snake_case, add_adapter=__snake_case, adapter_stride=__snake_case, adapter_kernel_size=__snake_case, use_auth_token=__snake_case, output_hidden_size=__snake_case, ) _UpperCamelCase = MBartConfig.from_pretrained(__snake_case ) # load model _UpperCamelCase , _UpperCamelCase , _UpperCamelCase = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path], arg_overrides={ '''config_yaml''': config_yaml_path, '''data''': '''/'''.join(dict_path.split('''/''' )[:-1] ), '''w2v_path''': checkpoint_path, '''load_pretrained_decoder_from''': None, }, ) _UpperCamelCase = model[0].eval() # load feature extractor _UpperCamelCase = WavaVecaFeatureExtractor.from_pretrained(__snake_case, use_auth_token=__snake_case ) # set weights for wav2vec2 encoder _UpperCamelCase = WavaVecaModel(__snake_case ) recursively_load_weights_wavaveca(model.encoder, __snake_case ) # load decoder weights _UpperCamelCase = MBartForCausalLM(__snake_case ) _UpperCamelCase , _UpperCamelCase = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict(), strict=__snake_case ) logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) _UpperCamelCase = SpeechEncoderDecoderModel(encoder=__snake_case, decoder=__snake_case ) _UpperCamelCase = False _UpperCamelCase = MBartaaTokenizer(__snake_case ) tokenizer.save_pretrained(__snake_case ) _UpperCamelCase = hf_wavavec.config.to_dict() _UpperCamelCase = tokenizer.pad_token_id _UpperCamelCase = tokenizer.bos_token_id _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = '''mbart50''' _UpperCamelCase = '''wav2vec2''' _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = 25_00_04 _UpperCamelCase = tokenizer.eos_token_id _UpperCamelCase = SpeechEncoderDecoderConfig.from_dict(__snake_case ) hf_wavavec.save_pretrained(__snake_case ) feature_extractor.save_pretrained(__snake_case ) if __name__ == "__main__": _a = argparse.ArgumentParser() parser.add_argument("""--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model.""") parser.add_argument("""--checkpoint_path""", default=None, type=str, help="""Path to fairseq checkpoint""") parser.add_argument("""--dict_path""", default=None, type=str, help="""Path to dict of fine-tuned model""") parser.add_argument("""--config_yaml_path""", default=None, type=str, help="""Path to yaml file of fine-tuned model""") parser.add_argument( """--encoder_config_path""", default="""facebook/wav2vec2-xls-r-1b""", type=str, help="""Path to hf encoder wav2vec2 checkpoint config""", ) parser.add_argument( """--decoder_config_path""", default="""facebook/mbart-large-50-one-to-many-mmt""", type=str, help="""Path to hf decoder checkpoint config""", ) parser.add_argument("""--add_adapter""", default=True, type=bool, help="""whethere to add model adapter layers""") parser.add_argument("""--adapter_stride""", default=2, type=int, help="""stride of adapter layers""") parser.add_argument("""--adapter_kernel_size""", default=3, type=int, help="""kernel size of adapter layers""") parser.add_argument("""--encoder_output_dim""", default=1024, type=int, help="""encoder output dim""") parser.add_argument("""--start_token_id""", default=25_0004, type=int, help="""`decoder_start_token_id` of model config""") _a = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, args.config_yaml_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, add_adapter=args.add_adapter, adapter_kernel_size=args.adapter_kernel_size, adapter_stride=args.adapter_stride, decoder_start_token_id=args.start_token_id, encoder_output_dim=args.encoder_output_dim, )
19
0
'''simple docstring''' import unittest from huggingface_hub import hf_hub_download from transformers import MODEL_FOR_VIDEO_CLASSIFICATION_MAPPING, VideoMAEFeatureExtractor from transformers.pipelines import VideoClassificationPipeline, pipeline from transformers.testing_utils import ( is_pipeline_test, nested_simplify, require_decord, require_tf, require_torch, require_torch_or_tf, require_vision, ) from .test_pipelines_common import ANY @is_pipeline_test @require_torch_or_tf @require_vision @require_decord class UpperCAmelCase_ (unittest.TestCase ): """simple docstring""" lowerCamelCase : Union[str, Any] = MODEL_FOR_VIDEO_CLASSIFICATION_MAPPING def lowercase_ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ) -> Optional[int]: __lowerCamelCase : Dict = hf_hub_download( repo_id='nateraw/video-demo' , filename='archery.mp4' , repo_type='dataset' ) __lowerCamelCase : Optional[int] = VideoClassificationPipeline(model=SCREAMING_SNAKE_CASE_ , image_processor=SCREAMING_SNAKE_CASE_ , top_k=2 ) __lowerCamelCase : Tuple = [ example_video_filepath, 'https://huggingface.co/datasets/nateraw/video-demo/resolve/main/archery.mp4', ] return video_classifier, examples def lowercase_ ( self , SCREAMING_SNAKE_CASE_ , SCREAMING_SNAKE_CASE_ ) -> str: for example in examples: __lowerCamelCase : Optional[int] = video_classifier(SCREAMING_SNAKE_CASE_ ) self.assertEqual( SCREAMING_SNAKE_CASE_ , [ {'score': ANY(SCREAMING_SNAKE_CASE_ ), 'label': ANY(SCREAMING_SNAKE_CASE_ )}, {'score': ANY(SCREAMING_SNAKE_CASE_ ), 'label': ANY(SCREAMING_SNAKE_CASE_ )}, ] , ) @require_torch def lowercase_ ( self ) -> List[Any]: __lowerCamelCase : Union[str, Any] = 'hf-internal-testing/tiny-random-VideoMAEForVideoClassification' __lowerCamelCase : Union[str, Any] = VideoMAEFeatureExtractor( size={'shortest_edge': 10} , crop_size={'height': 10, 'width': 10} ) __lowerCamelCase : Tuple = pipeline( 'video-classification' , model=SCREAMING_SNAKE_CASE_ , feature_extractor=SCREAMING_SNAKE_CASE_ , frame_sampling_rate=4 ) __lowerCamelCase : int = hf_hub_download(repo_id='nateraw/video-demo' , filename='archery.mp4' , repo_type='dataset' ) __lowerCamelCase : str = video_classifier(SCREAMING_SNAKE_CASE_ , top_k=2 ) self.assertEqual( nested_simplify(SCREAMING_SNAKE_CASE_ , decimals=4 ) , [{'score': 0.5_1_9_9, 'label': 'LABEL_0'}, {'score': 0.4_8_0_1, 'label': 'LABEL_1'}] , ) __lowerCamelCase : Dict = video_classifier( [ video_file_path, video_file_path, ] , top_k=2 , ) self.assertEqual( nested_simplify(SCREAMING_SNAKE_CASE_ , decimals=4 ) , [ [{'score': 0.5_1_9_9, 'label': 'LABEL_0'}, {'score': 0.4_8_0_1, 'label': 'LABEL_1'}], [{'score': 0.5_1_9_9, 'label': 'LABEL_0'}, {'score': 0.4_8_0_1, 'label': 'LABEL_1'}], ] , ) @require_tf def lowercase_ ( self ) -> str: pass
13
"""simple docstring""" import fire from utils import calculate_rouge, save_json def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case=None, **__snake_case ) -> Optional[int]: """simple docstring""" _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()] _UpperCamelCase = [x.strip() for x in open(__snake_case ).readlines()][: len(__snake_case )] _UpperCamelCase = calculate_rouge(__snake_case, __snake_case, **__snake_case ) if save_path is not None: save_json(__snake_case, __snake_case, indent=__snake_case ) return metrics # these print nicely if __name__ == "__main__": fire.Fire(calculate_rouge_path)
19
0
import argparse from collections import defaultdict def __UpperCAmelCase ( __a : Union[str, Any] ,__a : Tuple ,__a : Tuple ,__a : Dict ,__a : Tuple ) -> List[Any]: """simple docstring""" _a : List[str] = F"""{file}_{class_name}_{test_name}""" done_test[_id] += 1 with open(__a ,'''r''' ) as f: _a : Dict = f.readlines() _a : str = F"""class {class_name}(""" _a : Tuple = F"""{4 * ' '}def {test_name}(""" _a : List[Any] = F"""{8 * ' '}{correct_line.split()[0]}""" _a : Tuple = F"""{16 * ' '}{correct_line.split()[0]}""" _a : Tuple = False _a : str = False _a : Any = False _a : Dict = False _a : Tuple = 0 _a : List[str] = 0 _a : List[Any] = [] for line in lines: if line.startswith(__a ): _a : Tuple = True elif in_class and line.startswith(__a ): _a : List[str] = True elif in_class and in_func and (line.startswith(__a ) or line.startswith(__a )): _a : Tuple = len(line.split(correct_line.split()[0] )[0] ) count += 1 if count == done_test[_id]: _a : Dict = True if in_class and in_func and in_line: if ")" not in line: continue else: _a : Optional[Any] = True if in_class and in_func and in_line and insert_line: new_lines.append(F"""{spaces * ' '}{correct_line}""" ) _a : Optional[Any] = False else: new_lines.append(__a ) with open(__a ,'''w''' ) as f: for line in new_lines: f.write(__a ) def __UpperCAmelCase ( __a : Dict ,__a : Tuple=None ) -> Union[str, Any]: """simple docstring""" if fail is not None: with open(__a ,'''r''' ) as f: _a : Optional[int] = {l.strip() for l in f.readlines()} else: _a : List[Any] = None with open(__a ,'''r''' ) as f: _a : List[Any] = f.readlines() _a : List[Any] = defaultdict(__a ) for line in correct_lines: _a , _a , _a , _a : Dict = line.split(''';''' ) if test_failures is None or "::".join([file, class_name, test_name] ) in test_failures: overwrite_file(__a ,__a ,__a ,__a ,__a ) if __name__ == "__main__": a__ = argparse.ArgumentParser() parser.add_argument('''--correct_filename''', help='''filename of tests with expected result''') parser.add_argument('''--fail_filename''', help='''filename of test failures''', type=str, default=None) a__ = parser.parse_args() main(args.correct_filename, args.fail_filename)
14
"""simple docstring""" import warnings from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding class _UpperCAmelCase( lowerCamelCase ): lowercase__ = ['image_processor', 'tokenizer'] lowercase__ = 'ViTImageProcessor' lowercase__ = ('CLIPTokenizer', 'CLIPTokenizerFast') def __init__( self , __a=None , __a=None , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = None if "feature_extractor" in kwargs: warnings.warn( '''The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`''' ''' instead.''' , __a , ) _UpperCamelCase = kwargs.pop('''feature_extractor''') _UpperCamelCase = 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__(__a , __a) def __call__( self , __a=None , __a=None , __a=None , __a=None , **__a) -> Tuple: '''simple docstring''' if text is None and visual_prompt is None and images is None: raise ValueError('''You have to specify either text, visual prompt or images.''') if text is not None and visual_prompt is not None: raise ValueError('''You have to specify exactly one type of prompt. Either text or visual prompt.''') if text is not None: _UpperCamelCase = self.tokenizer(__a , return_tensors=__a , **__a) if visual_prompt is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if images is not None: _UpperCamelCase = self.image_processor(__a , return_tensors=__a , **__a) if visual_prompt is not None and images is not None: _UpperCamelCase = { '''pixel_values''': image_features.pixel_values, '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding elif text is not None and images is not None: _UpperCamelCase = image_features.pixel_values return encoding elif text is not None: return encoding elif visual_prompt is not None: _UpperCamelCase = { '''conditional_pixel_values''': prompt_features.pixel_values, } return encoding else: return BatchEncoding(data=dict(**__a) , tensor_type=__a) def UpperCAmelCase ( self , *__a , **__a) -> Any: '''simple docstring''' return self.tokenizer.batch_decode(*__a , **__a) def UpperCAmelCase ( self , *__a , **__a) -> List[str]: '''simple docstring''' return self.tokenizer.decode(*__a , **__a) @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.''' , __a , ) return self.image_processor_class @property def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' warnings.warn( '''`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.''' , __a , ) return self.image_processor
19
0
from __future__ import annotations from math import pi from typing import Protocol import matplotlib.pyplot as plt import numpy as np class A ( UpperCAmelCase__ ): '''simple docstring''' def lowerCamelCase__ (self : List[str] , _UpperCAmelCase : float ) -> float: """simple docstring""" return 0.0 def UpperCamelCase ( __magic_name__ : np.ndarray , __magic_name__ : int ) -> tuple[int | float, int | float]: """simple docstring""" lowercase__ = min([-20, np.min(fft_results[1 : samplerate // 2 - 1] )] ) lowercase__ = max([20, np.max(fft_results[1 : samplerate // 2 - 1] )] ) return lowest, highest def UpperCamelCase ( __magic_name__ : FilterType , __magic_name__ : int ) -> None: """simple docstring""" lowercase__ = 512 lowercase__ = [1] + [0] * (size - 1) lowercase__ = [filter_type.process(__magic_name__ ) for item in inputs] lowercase__ = [0] * (samplerate - size) # zero-padding outputs += filler lowercase__ = np.abs(np.fft.fft(__magic_name__ ) ) lowercase__ = 20 * np.logaa(__magic_name__ ) # Frequencies on log scale from 24 to nyquist frequency plt.xlim(24 , samplerate / 2 - 1 ) plt.xlabel("""Frequency (Hz)""" ) plt.xscale("""log""" ) # Display within reasonable bounds lowercase__ = get_bounds(__magic_name__ , __magic_name__ ) plt.ylim(max([-80, bounds[0]] ) , min([80, bounds[1]] ) ) plt.ylabel("""Gain (dB)""" ) plt.plot(__magic_name__ ) plt.show() def UpperCamelCase ( __magic_name__ : FilterType , __magic_name__ : int ) -> None: """simple docstring""" lowercase__ = 512 lowercase__ = [1] + [0] * (size - 1) lowercase__ = [filter_type.process(__magic_name__ ) for item in inputs] lowercase__ = [0] * (samplerate - size) # zero-padding outputs += filler lowercase__ = np.angle(np.fft.fft(__magic_name__ ) ) # Frequencies on log scale from 24 to nyquist frequency plt.xlim(24 , samplerate / 2 - 1 ) plt.xlabel("""Frequency (Hz)""" ) plt.xscale("""log""" ) plt.ylim(-2 * pi , 2 * pi ) plt.ylabel("""Phase shift (Radians)""" ) plt.plot(np.unwrap(__magic_name__ , -2 * pi ) ) plt.show()
15
"""simple docstring""" 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 _UpperCAmelCase: def __init__( self , __a , __a=13 , __a=32 , __a=3 , __a=4 , __a=[10, 20, 30, 40] , __a=[2, 2, 3, 2] , __a=True , __a=True , __a=37 , __a="gelu" , __a=10 , __a=0.02 , __a=["stage2", "stage3", "stage4"] , __a=3 , __a=None , ) -> Optional[Any]: '''simple docstring''' _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 = type_sequence_label_size _UpperCamelCase = initializer_range _UpperCamelCase = out_features _UpperCamelCase = num_labels _UpperCamelCase = scope _UpperCamelCase = num_stages def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _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.type_sequence_label_size) _UpperCamelCase = self.get_config() return config, pixel_values, labels def UpperCAmelCase ( self) -> Any: '''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) -> Optional[int]: '''simple docstring''' return UperNetConfig( backbone_config=self.get_backbone_config() , hidden_size=5_12 , pool_scales=[1, 2, 3, 6] , use_auxiliary_head=__a , auxiliary_loss_weight=0.4 , auxiliary_in_channels=40 , auxiliary_channels=2_56 , auxiliary_num_convs=1 , auxiliary_concat_input=__a , loss_ignore_index=2_55 , num_labels=self.num_labels , ) def UpperCAmelCase ( self , __a , __a , __a) -> Optional[Any]: '''simple docstring''' _UpperCamelCase = UperNetForSemanticSegmentation(config=__a) model.to(__a) model.eval() _UpperCamelCase = model(__a) self.parent.assertEqual( result.logits.shape , (self.batch_size, self.num_labels, self.image_size, self.image_size)) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.prepare_config_and_inputs() ( ( _UpperCamelCase ) , ( _UpperCamelCase ) , ( _UpperCamelCase ) , ) = config_and_inputs _UpperCamelCase = {'''pixel_values''': pixel_values} return config, inputs_dict @require_torch class _UpperCAmelCase( lowerCamelCase , lowerCamelCase , unittest.TestCase ): lowercase__ = (UperNetForSemanticSegmentation,) if is_torch_available() else () lowercase__ = {'image-segmentation': UperNetForSemanticSegmentation} if is_torch_available() else {} lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False lowercase__ = False def UpperCAmelCase ( self) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = UperNetModelTester(self) _UpperCamelCase = ConfigTester(self , config_class=__a , has_text_modality=__a , 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) -> List[Any]: '''simple docstring''' return def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = model_class(__a) _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] , __a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_semantic_segmentation(*__a) @unittest.skip(reason='''UperNet does not use inputs_embeds''') def UpperCAmelCase ( self) -> Any: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not support input and output embeddings''') def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' pass @unittest.skip(reason='''UperNet does not have a base model''') def UpperCAmelCase ( self) -> int: '''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) -> Union[str, 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) -> List[Any]: '''simple docstring''' def check_hidden_states_output(__a , __a , __a): _UpperCamelCase = model_class(__a) model.to(__a) model.eval() with torch.no_grad(): _UpperCamelCase = model(**self._prepare_for_class(__a , __a)) _UpperCamelCase = outputs.encoder_hidden_states if config.is_encoder_decoder else outputs.hidden_states _UpperCamelCase = self.model_tester.num_stages self.assertEqual(len(__a) , 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 = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] _UpperCamelCase = True check_hidden_states_output(__a , __a , __a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' _UpperCamelCase , _UpperCamelCase = self.model_tester.prepare_config_and_inputs_for_common() _UpperCamelCase = _config_zero_init(__a) _UpperCamelCase = _config_zero_init(configs_no_init.backbone_config) for model_class in self.all_model_classes: _UpperCamelCase = model_class(config=__a) 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) -> Optional[int]: '''simple docstring''' pass @slow def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for model_name in UPERNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained(__a) self.assertIsNotNone(__a) def lowerCamelCase__ ( ) -> int: """simple docstring""" _UpperCamelCase = hf_hub_download( repo_id='''hf-internal-testing/fixtures_ade20k''', repo_type='''dataset''', filename='''ADE_val_00000001.jpg''' ) _UpperCamelCase = Image.open(__snake_case ).convert('''RGB''' ) return image @require_torch @require_vision @slow class _UpperCAmelCase( unittest.TestCase ): def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-swin-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-swin-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-7.5958, -7.5958, -7.4302], [-7.5958, -7.5958, -7.4302], [-7.4797, -7.4797, -7.3068]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4)) def UpperCAmelCase ( self) -> List[Any]: '''simple docstring''' _UpperCamelCase = AutoImageProcessor.from_pretrained('''openmmlab/upernet-convnext-tiny''') _UpperCamelCase = UperNetForSemanticSegmentation.from_pretrained('''openmmlab/upernet-convnext-tiny''').to(__a) _UpperCamelCase = prepare_img() _UpperCamelCase = processor(images=__a , return_tensors='''pt''').to(__a) with torch.no_grad(): _UpperCamelCase = model(**__a) _UpperCamelCase = torch.Size((1, model.config.num_labels, 5_12, 5_12)) self.assertEqual(outputs.logits.shape , __a) _UpperCamelCase = torch.tensor( [[-8.8110, -8.8110, -8.6521], [-8.8110, -8.8110, -8.6521], [-8.7746, -8.7746, -8.6130]]).to(__a) self.assertTrue(torch.allclose(outputs.logits[0, 0, :3, :3] , __a , atol=1e-4))
19
0
import unittest import numpy as np from transformers.testing_utils import require_torch, require_vision 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 PoolFormerImageProcessor class _SCREAMING_SNAKE_CASE ( unittest.TestCase ): '''simple docstring''' def __init__( self : str , __lowerCamelCase : Dict , __lowerCamelCase : List[Any]=7 , __lowerCamelCase : Any=3 , __lowerCamelCase : Any=30 , __lowerCamelCase : Any=400 , __lowerCamelCase : Union[str, Any]=True , __lowerCamelCase : List[Any]=None , __lowerCamelCase : Optional[int]=0.9 , __lowerCamelCase : Dict=None , __lowerCamelCase : Dict=True , __lowerCamelCase : List[Any]=[0.5, 0.5, 0.5] , __lowerCamelCase : Dict=[0.5, 0.5, 0.5] , ): SCREAMING_SNAKE_CASE = size if size is not None else {"shortest_edge": 30} SCREAMING_SNAKE_CASE = crop_size if crop_size is not None else {"height": 30, "width": 30} SCREAMING_SNAKE_CASE = parent SCREAMING_SNAKE_CASE = batch_size SCREAMING_SNAKE_CASE = num_channels SCREAMING_SNAKE_CASE = min_resolution SCREAMING_SNAKE_CASE = max_resolution SCREAMING_SNAKE_CASE = do_resize_and_center_crop SCREAMING_SNAKE_CASE = size SCREAMING_SNAKE_CASE = crop_pct SCREAMING_SNAKE_CASE = crop_size SCREAMING_SNAKE_CASE = do_normalize SCREAMING_SNAKE_CASE = image_mean SCREAMING_SNAKE_CASE = image_std def _snake_case ( self : Dict ): return { "size": self.size, "do_resize_and_center_crop": self.do_resize_and_center_crop, "crop_pct": self.crop_pct, "crop_size": self.crop_size, "do_normalize": self.do_normalize, "image_mean": self.image_mean, "image_std": self.image_std, } @require_torch @require_vision class _SCREAMING_SNAKE_CASE ( __snake_case , unittest.TestCase ): '''simple docstring''' lowerCamelCase__ = PoolFormerImageProcessor if is_vision_available() else None def _snake_case ( self : List[Any] ): SCREAMING_SNAKE_CASE = PoolFormerImageProcessingTester(self ) @property def _snake_case ( self : Optional[int] ): return self.image_processor_tester.prepare_image_processor_dict() def _snake_case ( self : Union[str, Any] ): SCREAMING_SNAKE_CASE = self.image_processing_class(**self.image_processor_dict ) self.assertTrue(hasattr(__lowerCamelCase , "do_resize_and_center_crop" ) ) self.assertTrue(hasattr(__lowerCamelCase , "size" ) ) self.assertTrue(hasattr(__lowerCamelCase , "crop_pct" ) ) self.assertTrue(hasattr(__lowerCamelCase , "do_normalize" ) ) self.assertTrue(hasattr(__lowerCamelCase , "image_mean" ) ) self.assertTrue(hasattr(__lowerCamelCase , "image_std" ) ) def _snake_case ( self : Union[str, Any] ): SCREAMING_SNAKE_CASE = self.image_processing_class.from_dict(self.image_processor_dict ) self.assertEqual(image_processor.size , {"shortest_edge": 30} ) self.assertEqual(image_processor.crop_size , {"height": 30, "width": 30} ) SCREAMING_SNAKE_CASE = self.image_processing_class.from_dict(self.image_processor_dict , size=42 , crop_size=84 ) self.assertEqual(image_processor.size , {"shortest_edge": 42} ) self.assertEqual(image_processor.crop_size , {"height": 84, "width": 84} ) def _snake_case ( self : List[str] ): pass def _snake_case ( self : List[Any] ): # Initialize image_processing SCREAMING_SNAKE_CASE = self.image_processing_class(**self.image_processor_dict ) # create random PIL images SCREAMING_SNAKE_CASE = prepare_image_inputs(self.image_processor_tester , equal_resolution=__lowerCamelCase ) for image in image_inputs: self.assertIsInstance(__lowerCamelCase , Image.Image ) # Test not batched input SCREAMING_SNAKE_CASE = 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.crop_size["height"], self.image_processor_tester.crop_size["width"], ) , ) # Test batched SCREAMING_SNAKE_CASE = 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.crop_size["height"], self.image_processor_tester.crop_size["width"], ) , ) def _snake_case ( self : Optional[int] ): # Initialize image_processing SCREAMING_SNAKE_CASE = self.image_processing_class(**self.image_processor_dict ) # create random numpy tensors SCREAMING_SNAKE_CASE = 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 SCREAMING_SNAKE_CASE = 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.crop_size["height"], self.image_processor_tester.crop_size["width"], ) , ) # Test batched SCREAMING_SNAKE_CASE = 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.crop_size["height"], self.image_processor_tester.crop_size["width"], ) , ) def _snake_case ( self : str ): # Initialize image_processing SCREAMING_SNAKE_CASE = self.image_processing_class(**self.image_processor_dict ) # create random PyTorch tensors SCREAMING_SNAKE_CASE = 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 SCREAMING_SNAKE_CASE = 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.crop_size["height"], self.image_processor_tester.crop_size["width"], ) , ) # Test batched SCREAMING_SNAKE_CASE = 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.crop_size["height"], self.image_processor_tester.crop_size["width"], ) , )
16
"""simple docstring""" import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _UpperCAmelCase( lowerCamelCase ): lowercase__ = (DDPMScheduler,) def UpperCAmelCase ( self , **__a) -> Union[str, Any]: '''simple docstring''' _UpperCamelCase = { '''num_train_timesteps''': 10_00, '''beta_start''': 0.0001, '''beta_end''': 0.02, '''beta_schedule''': '''linear''', '''variance_type''': '''fixed_small''', '''clip_sample''': True, } config.update(**__a) return config def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for timesteps in [1, 5, 1_00, 10_00]: self.check_over_configs(num_train_timesteps=__a) def UpperCAmelCase ( self) -> int: '''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=__a , beta_end=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=__a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' for clip_sample in [True, False]: self.check_over_configs(clip_sample=__a) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' self.check_over_configs(thresholding=__a) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=__a , prediction_type=__a , sample_max_value=__a , ) def UpperCAmelCase ( self) -> Optional[int]: '''simple docstring''' for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=__a) def UpperCAmelCase ( self) -> Optional[Any]: '''simple docstring''' for t in [0, 5_00, 9_99]: self.check_over_forward(time_step=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) assert torch.sum(torch.abs(scheduler._get_variance(0) - 0.0)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_87) - 0.0_0979)) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_99) - 0.02)) < 1e-5 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 258.9606) < 1e-2 assert abs(result_mean.item() - 0.3372) < 1e-3 def UpperCAmelCase ( self) -> str: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config(prediction_type='''v_prediction''') _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = len(__a) _UpperCamelCase = self.dummy_model() _UpperCamelCase = self.dummy_sample_deter _UpperCamelCase = torch.manual_seed(0) for t in reversed(range(__a)): # 1. predict noise residual _UpperCamelCase = model(__a , __a) # 2. predict previous mean of sample x_t-1 _UpperCamelCase = scheduler.step(__a , __a , __a , generator=__a).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance _UpperCamelCase = pred_prev_sample _UpperCamelCase = torch.sum(torch.abs(__a)) _UpperCamelCase = torch.mean(torch.abs(__a)) assert abs(result_sum.item() - 202.0296) < 1e-2 assert abs(result_mean.item() - 0.2631) < 1e-3 def UpperCAmelCase ( self) -> Any: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] scheduler.set_timesteps(timesteps=__a) _UpperCamelCase = scheduler.timesteps for i, timestep in enumerate(__a): if i == len(__a) - 1: _UpperCamelCase = -1 else: _UpperCamelCase = timesteps[i + 1] _UpperCamelCase = scheduler.previous_timestep(__a) _UpperCamelCase = prev_t.item() self.assertEqual(__a , __a) def UpperCAmelCase ( self) -> Dict: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 51, 0] with self.assertRaises(__a , msg='''`custom_timesteps` must be in descending order.'''): scheduler.set_timesteps(timesteps=__a) def UpperCAmelCase ( self) -> List[str]: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [1_00, 87, 50, 1, 0] _UpperCamelCase = len(__a) with self.assertRaises(__a , msg='''Can only pass one of `num_inference_steps` or `custom_timesteps`.'''): scheduler.set_timesteps(num_inference_steps=__a , timesteps=__a) def UpperCAmelCase ( self) -> Tuple: '''simple docstring''' _UpperCamelCase = self.scheduler_classes[0] _UpperCamelCase = self.get_scheduler_config() _UpperCamelCase = scheduler_class(**__a) _UpperCamelCase = [scheduler.config.num_train_timesteps] with self.assertRaises( __a , msg='''`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}''' , ): scheduler.set_timesteps(timesteps=__a)
19
0
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 UpperCAmelCase_ : Union[str, Any] = data_utils.TransfoXLTokenizer UpperCAmelCase_ : Optional[Any] = data_utils.TransfoXLCorpus UpperCAmelCase_ : Union[str, Any] = data_utils UpperCAmelCase_ : int = data_utils def __SCREAMING_SNAKE_CASE ( a__ : str ,a__ : List[str] ,a__ : List[Any] ,a__ : Optional[int] ) -> str: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(a__ ,"""rb""" ) as fp: __A : str = pickle.load(a__ ,encoding="""latin1""" ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) __A : Optional[int] = pytorch_dump_folder_path + """/""" + VOCAB_FILES_NAMES["""pretrained_vocab_file"""] print(f"""Save vocabulary to {pytorch_vocab_dump_path}""" ) __A : List[Any] = corpus.vocab.__dict__ torch.save(a__ ,a__ ) __A : List[Any] = corpus.__dict__ corpus_dict_no_vocab.pop("""vocab""" ,a__ ) __A : Optional[Any] = pytorch_dump_folder_path + """/""" + CORPUS_NAME print(f"""Save dataset to {pytorch_dataset_dump_path}""" ) torch.save(a__ ,a__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model __A : Optional[Any] = os.path.abspath(a__ ) __A : List[str] = os.path.abspath(a__ ) print(f"""Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.""" ) # Initialise PyTorch model if transfo_xl_config_file == "": __A : str = TransfoXLConfig() else: __A : str = TransfoXLConfig.from_json_file(a__ ) print(f"""Building PyTorch model from configuration: {config}""" ) __A : Union[str, Any] = TransfoXLLMHeadModel(a__ ) __A : List[Any] = load_tf_weights_in_transfo_xl(a__ ,a__ ,a__ ) # Save pytorch-model __A : int = os.path.join(a__ ,a__ ) __A : Tuple = os.path.join(a__ ,a__ ) print(f"""Save PyTorch model to {os.path.abspath(a__ )}""" ) torch.save(model.state_dict() ,a__ ) print(f"""Save configuration file to {os.path.abspath(a__ )}""" ) with open(a__ ,"""w""" ,encoding="""utf-8""" ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": UpperCAmelCase_ : Optional[int] = argparse.ArgumentParser() parser.add_argument( '''--pytorch_dump_folder_path''', default=None, type=str, required=True, help='''Path to the folder to store the PyTorch model or dataset/vocab.''', ) parser.add_argument( '''--tf_checkpoint_path''', default='''''', type=str, help='''An optional path to a TensorFlow checkpoint path to be converted.''', ) parser.add_argument( '''--transfo_xl_config_file''', default='''''', type=str, help=( '''An optional config json file corresponding to the pre-trained BERT model. \n''' '''This specifies the model architecture.''' ), ) parser.add_argument( '''--transfo_xl_dataset_file''', default='''''', type=str, help='''An optional dataset file to be converted in a vocabulary.''', ) UpperCAmelCase_ : str = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
17
"""simple docstring""" from __future__ import annotations from functools import lru_cache from math import ceil _a = 100 _a = set(range(3, NUM_PRIMES, 2)) primes.add(2) _a = 42 for prime in range(3, ceil(NUM_PRIMES**0.5), 2): if prime not in primes: continue primes.difference_update(set(range(prime * prime, NUM_PRIMES, prime))) @lru_cache(maxsize=1_00 ) def lowerCamelCase__ ( __snake_case ) -> set[int]: """simple docstring""" if number_to_partition < 0: return set() elif number_to_partition == 0: return {1} _UpperCamelCase = set() _UpperCamelCase = 42 _UpperCamelCase = 42 for prime in primes: if prime > number_to_partition: continue for sub in partition(number_to_partition - prime ): ret.add(sub * prime ) return ret def lowerCamelCase__ ( __snake_case = 50_00 ) -> int | None: """simple docstring""" for number_to_partition in range(1, __snake_case ): if len(partition(__snake_case ) ) > number_unique_partitions: return number_to_partition return None if __name__ == "__main__": print(F"""{solution() = }""")
19
0
'''simple docstring''' import logging import os from dataclasses import dataclass, field from functools import partial from pathlib import Path from tempfile import TemporaryDirectory from typing import List, Optional import faiss import torch from datasets import Features, Sequence, Value, load_dataset from transformers import DPRContextEncoder, DPRContextEncoderTokenizerFast, HfArgumentParser _SCREAMING_SNAKE_CASE = logging.getLogger(__name__) torch.set_grad_enabled(False) _SCREAMING_SNAKE_CASE = "cuda" if torch.cuda.is_available() else "cpu" def __a(SCREAMING_SNAKE_CASE_ : str , SCREAMING_SNAKE_CASE_ : int=100 , SCREAMING_SNAKE_CASE_ : Optional[int]=" " ): '''simple docstring''' _lowerCAmelCase = text.split(SCREAMING_SNAKE_CASE_ ) return [character.join(text[i : i + n] ).strip() for i in range(0 , len(SCREAMING_SNAKE_CASE_ ) , SCREAMING_SNAKE_CASE_ )] def __a(SCREAMING_SNAKE_CASE_ : dict ): '''simple docstring''' _lowerCAmelCase , _lowerCAmelCase = [], [] for title, text in zip(documents["title"] , documents["text"] ): if text is not None: for passage in split_text(SCREAMING_SNAKE_CASE_ ): titles.append(title if title is not None else "" ) texts.append(SCREAMING_SNAKE_CASE_ ) return {"title": titles, "text": texts} def __a(SCREAMING_SNAKE_CASE_ : dict , SCREAMING_SNAKE_CASE_ : DPRContextEncoder , SCREAMING_SNAKE_CASE_ : DPRContextEncoderTokenizerFast ): '''simple docstring''' _lowerCAmelCase = ctx_tokenizer( documents["title"] , documents["text"] , truncation=SCREAMING_SNAKE_CASE_ , padding="longest" , return_tensors="pt" )["input_ids"] _lowerCAmelCase = ctx_encoder(input_ids.to(device=SCREAMING_SNAKE_CASE_ ) , return_dict=SCREAMING_SNAKE_CASE_ ).pooler_output return {"embeddings": embeddings.detach().cpu().numpy()} def __a(SCREAMING_SNAKE_CASE_ : "RagExampleArguments" , SCREAMING_SNAKE_CASE_ : "ProcessingArguments" , SCREAMING_SNAKE_CASE_ : "IndexHnswArguments" , ): '''simple docstring''' logger.info("Step 1 - Create the dataset" ) ###################################### # The dataset needed for RAG must have three columns: # - title (string): title of the document # - text (string): text of a passage of the document # - embeddings (array of dimension d): DPR representation of the passage # Let's say you have documents in tab-separated csv files with columns "title" and "text" assert os.path.isfile(rag_example_args.csv_path ), "Please provide a valid path to a csv file" # You can load a Dataset object this way _lowerCAmelCase = load_dataset( "csv" , data_files=[rag_example_args.csv_path] , split="train" , delimiter="\t" , column_names=["title", "text"] ) # More info about loading csv files in the documentation: https://huggingface.co/docs/datasets/loading_datasets.html?highlight=csv#csv-files # Then split the documents into passages of 100 words _lowerCAmelCase = dataset.map(SCREAMING_SNAKE_CASE_ , batched=SCREAMING_SNAKE_CASE_ , num_proc=processing_args.num_proc ) # And compute the embeddings _lowerCAmelCase = DPRContextEncoder.from_pretrained(rag_example_args.dpr_ctx_encoder_model_name ).to(device=SCREAMING_SNAKE_CASE_ ) _lowerCAmelCase = DPRContextEncoderTokenizerFast.from_pretrained(rag_example_args.dpr_ctx_encoder_model_name ) _lowerCAmelCase = Features( {"text": Value("string" ), "title": Value("string" ), "embeddings": Sequence(Value("float32" ) )} ) # optional, save as float32 instead of float64 to save space _lowerCAmelCase = dataset.map( partial(SCREAMING_SNAKE_CASE_ , ctx_encoder=SCREAMING_SNAKE_CASE_ , ctx_tokenizer=SCREAMING_SNAKE_CASE_ ) , batched=SCREAMING_SNAKE_CASE_ , batch_size=processing_args.batch_size , features=SCREAMING_SNAKE_CASE_ , ) # And finally save your dataset _lowerCAmelCase = os.path.join(rag_example_args.output_dir , "my_knowledge_dataset" ) dataset.save_to_disk(SCREAMING_SNAKE_CASE_ ) # from datasets import load_from_disk # dataset = load_from_disk(passages_path) # to reload the dataset ###################################### logger.info("Step 2 - Index the dataset" ) ###################################### # Let's use the Faiss implementation of HNSW for fast approximate nearest neighbor search _lowerCAmelCase = faiss.IndexHNSWFlat(index_hnsw_args.d , index_hnsw_args.m , faiss.METRIC_INNER_PRODUCT ) dataset.add_faiss_index("embeddings" , custom_index=SCREAMING_SNAKE_CASE_ ) # And save the index _lowerCAmelCase = os.path.join(rag_example_args.output_dir , "my_knowledge_dataset_hnsw_index.faiss" ) dataset.get_index("embeddings" ).save(SCREAMING_SNAKE_CASE_ ) # dataset.load_faiss_index("embeddings", index_path) # to reload the index @dataclass class lowerCAmelCase_ : __lowerCamelCase : str = field( default=str(Path(__magic_name__ ).parent / "test_run" / "dummy-kb" / "my_knowledge_dataset.csv" ) ,metadata={"help": "Path to a tab-separated csv file with columns 'title' and 'text'"} ,) __lowerCamelCase : Optional[str] = field( default=__magic_name__ ,metadata={"help": "Question that is passed as input to RAG. Default is 'What does Moses' rod turn into ?'."} ,) __lowerCamelCase : str = field( default="facebook/rag-sequence-nq" ,metadata={"help": "The RAG model to use. Either 'facebook/rag-sequence-nq' or 'facebook/rag-token-nq'"} ,) __lowerCamelCase : str = field( default="facebook/dpr-ctx_encoder-multiset-base" ,metadata={ "help": ( "The DPR context encoder model to use. Either 'facebook/dpr-ctx_encoder-single-nq-base' or" " 'facebook/dpr-ctx_encoder-multiset-base'" ) } ,) __lowerCamelCase : Optional[str] = field( default=str(Path(__magic_name__ ).parent / "test_run" / "dummy-kb" ) ,metadata={"help": "Path to a directory where the dataset passages and the index will be saved"} ,) @dataclass class lowerCAmelCase_ : __lowerCamelCase : Optional[int] = field( default=__magic_name__ ,metadata={ "help": "The number of processes to use to split the documents into passages. Default is single process." } ,) __lowerCamelCase : int = field( default=16 ,metadata={ "help": "The batch size to use when computing the passages embeddings using the DPR context encoder." } ,) @dataclass class lowerCAmelCase_ : __lowerCamelCase : int = field( default=768 ,metadata={"help": "The dimension of the embeddings to pass to the HNSW Faiss index."} ,) __lowerCamelCase : int = field( default=128 ,metadata={ "help": ( "The number of bi-directional links created for every new element during the HNSW index construction." ) } ,) if __name__ == "__main__": logging.basicConfig(level=logging.WARNING) logger.setLevel(logging.INFO) _SCREAMING_SNAKE_CASE = HfArgumentParser((RagExampleArguments, ProcessingArguments, IndexHnswArguments)) _SCREAMING_SNAKE_CASE , _SCREAMING_SNAKE_CASE , _SCREAMING_SNAKE_CASE = parser.parse_args_into_dataclasses() with TemporaryDirectory() as tmp_dir: _SCREAMING_SNAKE_CASE = rag_example_args.output_dir or tmp_dir main(rag_example_args, processing_args, index_hnsw_args)
18
"""simple docstring""" from collections.abc import Callable import numpy as np def lowerCamelCase__ ( __snake_case, __snake_case, __snake_case, __snake_case, __snake_case ) -> np.array: """simple docstring""" _UpperCamelCase = int(np.ceil((x_end - xa) / step_size ) ) _UpperCamelCase = np.zeros((n + 1,) ) _UpperCamelCase = ya _UpperCamelCase = xa for k in range(__snake_case ): _UpperCamelCase = y[k] + step_size * ode_func(__snake_case, y[k] ) _UpperCamelCase = y[k] + ( (step_size / 2) * (ode_func(__snake_case, y[k] ) + ode_func(x + step_size, __snake_case )) ) x += step_size return y if __name__ == "__main__": import doctest doctest.testmod()
19
0
import unittest import numpy as np from transformers import RobertaConfig, is_flax_available from transformers.testing_utils import require_flax, slow from ...test_modeling_flax_common import FlaxModelTesterMixin, floats_tensor, ids_tensor, random_attention_mask if is_flax_available(): from transformers.models.roberta.modeling_flax_roberta import ( FlaxRobertaForCausalLM, FlaxRobertaForMaskedLM, FlaxRobertaForMultipleChoice, FlaxRobertaForQuestionAnswering, FlaxRobertaForSequenceClassification, FlaxRobertaForTokenClassification, FlaxRobertaModel, ) class lowercase_ (unittest.TestCase ): def __init__( self , lowercase_ , lowercase_=13 , lowercase_=7 , lowercase_=True , lowercase_=True , lowercase_=True , lowercase_=True , lowercase_=99 , lowercase_=32 , lowercase_=5 , lowercase_=4 , lowercase_=37 , lowercase_="gelu" , lowercase_=0.1 , lowercase_=0.1 , lowercase_=512 , lowercase_=16 , lowercase_=2 , lowercase_=0.02 , lowercase_=4 , ) -> Dict: a__ =parent a__ =batch_size a__ =seq_length a__ =is_training a__ =use_attention_mask a__ =use_token_type_ids a__ =use_labels a__ =vocab_size a__ =hidden_size a__ =num_hidden_layers a__ =num_attention_heads a__ =intermediate_size a__ =hidden_act a__ =hidden_dropout_prob a__ =attention_probs_dropout_prob a__ =max_position_embeddings a__ =type_vocab_size a__ =type_sequence_label_size a__ =initializer_range a__ =num_choices def __UpperCamelCase ( self) -> Optional[Any]: a__ =ids_tensor([self.batch_size, self.seq_length] , self.vocab_size) a__ =None if self.use_attention_mask: a__ =random_attention_mask([self.batch_size, self.seq_length]) a__ =None if self.use_token_type_ids: a__ =ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size) a__ =RobertaConfig( 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=lowercase_ , initializer_range=self.initializer_range , ) return config, input_ids, token_type_ids, attention_mask def __UpperCamelCase ( self) -> Tuple: a__ =self.prepare_config_and_inputs() a__ , a__ , a__ , a__ =config_and_inputs a__ ={'input_ids': input_ids, 'token_type_ids': token_type_ids, 'attention_mask': attention_mask} return config, inputs_dict def __UpperCamelCase ( self) -> List[str]: a__ =self.prepare_config_and_inputs() a__ , a__ , a__ , a__ =config_and_inputs a__ =True a__ =floats_tensor([self.batch_size, self.seq_length, self.hidden_size]) a__ =ids_tensor([self.batch_size, self.seq_length] , vocab_size=2) return ( config, input_ids, token_type_ids, encoder_hidden_states, encoder_attention_mask, ) @require_flax class lowercase_ (lowercase__ , unittest.TestCase ): snake_case =True snake_case =( ( FlaxRobertaModel, FlaxRobertaForCausalLM, FlaxRobertaForMaskedLM, FlaxRobertaForSequenceClassification, FlaxRobertaForTokenClassification, FlaxRobertaForMultipleChoice, FlaxRobertaForQuestionAnswering, ) if is_flax_available() else () ) def __UpperCamelCase ( self) -> List[str]: a__ =FlaxRobertaModelTester(self) @slow def __UpperCamelCase ( self) -> List[Any]: for model_class_name in self.all_model_classes: a__ =model_class_name.from_pretrained('roberta-base' , from_pt=lowercase_) a__ =model(np.ones((1, 1))) self.assertIsNotNone(lowercase_)
20
"""simple docstring""" import argparse import torch from transformers import BertForMaskedLM if __name__ == "__main__": _a = argparse.ArgumentParser( description=( """Extraction some layers of the full BertForMaskedLM or RObertaForMaskedLM for Transfer Learned""" """ Distillation""" ) ) parser.add_argument("""--model_type""", default="""bert""", choices=["""bert"""]) parser.add_argument("""--model_name""", default="""bert-base-uncased""", type=str) parser.add_argument("""--dump_checkpoint""", default="""serialization_dir/tf_bert-base-uncased_0247911.pth""", type=str) parser.add_argument("""--vocab_transform""", action="""store_true""") _a = parser.parse_args() if args.model_type == "bert": _a = BertForMaskedLM.from_pretrained(args.model_name) _a = """bert""" else: raise ValueError("""args.model_type should be \"bert\".""") _a = model.state_dict() _a = {} for w in ["word_embeddings", "position_embeddings"]: _a = state_dict[F"""{prefix}.embeddings.{w}.weight"""] for w in ["weight", "bias"]: _a = state_dict[F"""{prefix}.embeddings.LayerNorm.{w}"""] _a = 0 for teacher_idx in [0, 2, 4, 7, 9, 11]: for w in ["weight", "bias"]: _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.query.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.key.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.self.value.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.attention.output.LayerNorm.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.intermediate.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.dense.{w}""" ] _a = state_dict[ F"""{prefix}.encoder.layer.{teacher_idx}.output.LayerNorm.{w}""" ] std_idx += 1 _a = state_dict["""cls.predictions.decoder.weight"""] _a = state_dict["""cls.predictions.bias"""] if args.vocab_transform: for w in ["weight", "bias"]: _a = state_dict[F"""cls.predictions.transform.dense.{w}"""] _a = state_dict[F"""cls.predictions.transform.LayerNorm.{w}"""] print(F"""N layers selected for distillation: {std_idx}""") print(F"""Number of params transferred for distillation: {len(compressed_sd.keys())}""") print(F"""Save transferred checkpoint to {args.dump_checkpoint}.""") torch.save(compressed_sd, args.dump_checkpoint)
19
0