code
stringlengths
87
55.2k
code_codestyle
int64
0
349
style_context
stringlengths
135
49.1k
style_context_codestyle
int64
0
349
label
int64
0
1
def a_ ( _A , _A , _A , _A , _A , _A ) -> Union[str, Any]: """simple docstring""" if index == r: for j in range(_A ): print(data[j] , end=' ' ) print(' ' ) return # When no more elements are there to put in data[] if i >= n: return # current is included, put next at next location snake_case__ = arr[i] combination_util(_A , _A , _A , index + 1 , _A , i + 1 ) # current is excluded, replace it with # next (Note that i+1 is passed, but # index is not changed) combination_util(_A , _A , _A , _A , _A , i + 1 ) # The main function that prints all combinations # of size r in arr[] of size n. This function # mainly uses combinationUtil() def a_ ( _A , _A , _A ) -> Dict: """simple docstring""" # A temporary array to store all combination one by one snake_case__ = [0] * r # Print all combination using temporary array 'data[]' combination_util(_A , _A , _A , 0 , _A , 0 ) if __name__ == "__main__": # Driver code to check the function above __UpperCamelCase : str = [10, 20, 30, 40, 50] print_combination(arr, len(arr), 3) # This code is contributed by Ambuj sahu
307
from math import sqrt import numpy as np from sympy import symbols # Coefficient # Speed of light (m/s) __UpperCamelCase : int = 299792458 # Symbols __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Optional[int] = symbols("""ct x y z""") def a_ ( _A ) -> float: """simple docstring""" if velocity > c: raise ValueError('Speed must not exceed light speed 299,792,458 [m/s]!' ) elif velocity < 1: # Usually the speed should be much higher than 1 (c order of magnitude) raise ValueError('Speed must be greater than or equal to 1!' ) return velocity / c def a_ ( _A ) -> float: """simple docstring""" return 1 / sqrt(1 - beta(_A ) ** 2 ) def a_ ( _A ) -> np.ndarray: """simple docstring""" return np.array( [ [gamma(_A ), -gamma(_A ) * beta(_A ), 0, 0], [-gamma(_A ) * beta(_A ), gamma(_A ), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], ] ) def a_ ( _A , _A = None ) -> np.ndarray: """simple docstring""" # Ensure event is not empty if event is None: snake_case__ = np.array([ct, x, y, z] ) # Symbolic four vector else: event[0] *= c # x0 is ct (speed of light * time) return transformation_matrix(_A ) @ event if __name__ == "__main__": import doctest doctest.testmod() # Example of symbolic vector: __UpperCamelCase : List[Any] = transform(29979245) print("""Example of four vector: """) print(f'''ct\' = {four_vector[0]}''') print(f'''x\' = {four_vector[1]}''') print(f'''y\' = {four_vector[2]}''') print(f'''z\' = {four_vector[3]}''') # Substitute symbols with numerical values __UpperCamelCase : List[Any] = {ct: c, x: 1, y: 1, z: 1} __UpperCamelCase : Tuple = [four_vector[i].subs(sub_dict) for i in range(4)] print(f'''\n{numerical_vector}''')
307
1
import os import re import warnings from shutil import copyfile from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer if TYPE_CHECKING: from ...tokenization_utils_base import TextInput from ...utils import logging __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) __UpperCamelCase : int = {"""vocab_file""": """spiece.model"""} __UpperCamelCase : Any = { """vocab_file""": { """t5-small""": """https://huggingface.co/t5-small/resolve/main/spiece.model""", """t5-base""": """https://huggingface.co/t5-base/resolve/main/spiece.model""", """t5-large""": """https://huggingface.co/t5-large/resolve/main/spiece.model""", """t5-3b""": """https://huggingface.co/t5-3b/resolve/main/spiece.model""", """t5-11b""": """https://huggingface.co/t5-11b/resolve/main/spiece.model""", } } # TODO(PVP) - this should be removed in Transformers v5 __UpperCamelCase : Tuple = { """t5-small""": 512, """t5-base""": 512, """t5-large""": 512, """t5-3b""": 512, """t5-11b""": 512, } __UpperCamelCase : Optional[Any] = """▁""" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any]="</s>" , UpperCamelCase: Tuple="<unk>" , UpperCamelCase: Optional[int]="<pad>" , UpperCamelCase: List[str]=1_00 , UpperCamelCase: Dict=None , UpperCamelCase: Optional[Dict[str, Any]] = None , UpperCamelCase: Tuple=True , **UpperCamelCase: Dict , ) -> None: # Add extra_ids to the special token list if extra_ids > 0 and additional_special_tokens is None: snake_case__ = [F'''<extra_id_{i}>''' for i in range(UpperCamelCase )] elif extra_ids > 0 and additional_special_tokens is not None: # Check that we have the right number of extra_id special tokens snake_case__ = len(set(filter(lambda UpperCamelCase : bool('extra_id' in str(UpperCamelCase ) ) , UpperCamelCase ) ) ) if extra_tokens != extra_ids: raise ValueError( F'''Both extra_ids ({extra_ids}) and additional_special_tokens ({additional_special_tokens}) are''' ' provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids' ' tokens' ) if legacy: logger.warning_once( F'''You are using the legacy behaviour of the {self.__class__}. This means that tokens that come after special tokens will not be properly handled. We recommend you to''' ' read the related pull request available at https://github.com/huggingface/transformers/pull/24565' ) snake_case__ = legacy snake_case__ = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( eos_token=UpperCamelCase , unk_token=UpperCamelCase , pad_token=UpperCamelCase , extra_ids=UpperCamelCase , additional_special_tokens=UpperCamelCase , sp_model_kwargs=self.sp_model_kwargs , legacy=UpperCamelCase , **UpperCamelCase , ) snake_case__ = vocab_file snake_case__ = extra_ids snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] ) -> Any: if pretrained_model_name_or_path in TaTokenizer.max_model_input_sizes: snake_case__ = TaTokenizer.max_model_input_sizes[pretrained_model_name_or_path] if init_max_model_length is not None and init_max_model_length != max_model_length: return init_max_model_length elif init_max_model_length is None: warnings.warn( 'This tokenizer was incorrectly instantiated with a model max length of' F''' {deprecated_max_model_length} which will be corrected in Transformers v5.\nFor now, this''' ' behavior is kept to avoid breaking backwards compatibility when padding/encoding with' ' `truncation is True`.\n- Be aware that you SHOULD NOT rely on' F''' {pretrained_model_name_or_path} automatically truncating your input to''' F''' {deprecated_max_model_length} when padding/encoding.\n- If you want to encode/pad to sequences''' F''' longer than {deprecated_max_model_length} you can either instantiate this tokenizer with''' ' `model_max_length` or pass `max_length` when encoding/padding.\n- To avoid this warning, please' ' instantiate this tokenizer with `model_max_length` set to your preferred value.' , UpperCamelCase , ) return max_model_length @property def lowerCAmelCase_ ( self: Tuple ) -> List[str]: return self.sp_model.get_piece_size() + self._extra_ids def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = {self.convert_ids_to_tokens(UpperCamelCase ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None , UpperCamelCase: bool = False ) -> List[int]: if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase , token_ids_a=UpperCamelCase , already_has_special_tokens=UpperCamelCase ) # normal case: some special tokens if token_ids_a is None: return ([0] * len(UpperCamelCase )) + [1] return ([0] * len(UpperCamelCase )) + [1] + ([0] * len(UpperCamelCase )) + [1] def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: return list( set(filter(lambda UpperCamelCase : bool(re.search(R'<extra_id_\d+>' , UpperCamelCase ) ) is not None , self.additional_special_tokens ) ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return [self._convert_token_to_id(UpperCamelCase ) for token in self.get_sentinel_tokens()] def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[int] ) -> List[int]: if len(UpperCamelCase ) > 0 and token_ids[-1] == self.eos_token_id: warnings.warn( F'''This sequence already has {self.eos_token}. In future versions this behavior may lead to duplicated''' ' eos tokens being added.' ) return token_ids else: return token_ids + [self.eos_token_id] def lowerCAmelCase_ ( self: str , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.eos_token_id] if token_ids_a is None: return len(token_ids_a + eos ) * [0] return len(token_ids_a + eos + token_ids_a + eos ) * [0] def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) if token_ids_a is None: return token_ids_a else: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) return token_ids_a + token_ids_a def __getstate__( self: Union[str, Any] ) -> List[str]: snake_case__ = self.__dict__.copy() snake_case__ = None return state def __setstate__( self: Optional[int] , UpperCamelCase: int ) -> List[str]: snake_case__ = d # for backward compatibility if not hasattr(self , 'sp_model_kwargs' ): snake_case__ = {} snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(self.vocab_file ) def lowerCAmelCase_ ( self: str , UpperCamelCase: "TextInput" , **UpperCamelCase: Dict ) -> List[str]: # Replace the SPIECE_UNDERLINE with a space to make sure SPIECE_UNDERLINE is only used at # the beginning of the text if not self.legacy: snake_case__ = SPIECE_UNDERLINE + text.replace(UpperCamelCase , ' ' ) return super().tokenize(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , **UpperCamelCase: str ) -> str: if not self.legacy: snake_case__ = text.startswith(UpperCamelCase ) if is_first: snake_case__ = text[1:] snake_case__ = self.sp_model.encode(UpperCamelCase , out_type=UpperCamelCase ) if not self.legacy and not is_first and not text.startswith(' ' ) and tokens[0].startswith(UpperCamelCase ): snake_case__ = ([tokens[0][1:]] if len(tokens[0] ) > 1 else []) + tokens[1:] return tokens def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[int] ) -> Dict: if token.startswith('<extra_id_' ): snake_case__ = re.match(R'<extra_id_(\d+)>' , UpperCamelCase ) snake_case__ = int(match.group(1 ) ) return self.vocab_size - num - 1 return self.sp_model.piece_to_id(UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: str ) -> Tuple: if index < self.sp_model.get_piece_size(): snake_case__ = self.sp_model.IdToPiece(UpperCamelCase ) else: snake_case__ = F'''<extra_id_{self.vocab_size - 1 - index}>''' return token def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> Dict: snake_case__ = [] snake_case__ = '' snake_case__ = False for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: if not prev_is_special: out_string += " " out_string += self.sp_model.decode(UpperCamelCase ) + token snake_case__ = True snake_case__ = [] else: current_sub_tokens.append(UpperCamelCase ) snake_case__ = False out_string += self.sp_model.decode(UpperCamelCase ) return out_string.strip() def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: if not os.path.isdir(UpperCamelCase ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase , 'wb' ) as fi: snake_case__ = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase ) return (out_vocab_file,)
307
from typing import TYPE_CHECKING from ...utils import _LazyModule __UpperCamelCase : Any = {"""tokenization_byt5""": ["""ByT5Tokenizer"""]} if TYPE_CHECKING: from .tokenization_byta import ByTaTokenizer else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import shutil import tempfile import unittest import numpy as np import pytest from transformers.testing_utils import require_vision from transformers.utils import is_vision_available if is_vision_available(): from PIL import Image from transformers import ( AutoProcessor, BertTokenizerFast, BlipImageProcessor, GPTaTokenizer, InstructBlipProcessor, PreTrainedTokenizerFast, ) @require_vision class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def lowerCAmelCase_ ( self: Dict ) -> List[Any]: snake_case__ = tempfile.mkdtemp() snake_case__ = BlipImageProcessor() snake_case__ = GPTaTokenizer.from_pretrained('hf-internal-testing/tiny-random-GPT2Model' ) snake_case__ = BertTokenizerFast.from_pretrained('hf-internal-testing/tiny-random-bert' ) snake_case__ = InstructBlipProcessor(UpperCamelCase , UpperCamelCase , UpperCamelCase ) processor.save_pretrained(self.tmpdirname ) def lowerCAmelCase_ ( self: List[str] , **UpperCamelCase: int ) -> Optional[int]: return AutoProcessor.from_pretrained(self.tmpdirname , **UpperCamelCase ).tokenizer def lowerCAmelCase_ ( self: Tuple , **UpperCamelCase: List[Any] ) -> List[Any]: return AutoProcessor.from_pretrained(self.tmpdirname , **UpperCamelCase ).image_processor def lowerCAmelCase_ ( self: List[str] , **UpperCamelCase: str ) -> Tuple: return AutoProcessor.from_pretrained(self.tmpdirname , **UpperCamelCase ).qformer_tokenizer def lowerCAmelCase_ ( self: Any ) -> Optional[Any]: shutil.rmtree(self.tmpdirname ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Any: snake_case__ = [np.random.randint(2_55 , size=(3, 30, 4_00) , dtype=np.uinta )] snake_case__ = [Image.fromarray(np.moveaxis(UpperCamelCase , 0 , -1 ) ) for x in image_inputs] return image_inputs def lowerCAmelCase_ ( self: int ) -> Any: snake_case__ = InstructBlipProcessor( tokenizer=self.get_tokenizer() , image_processor=self.get_image_processor() , qformer_tokenizer=self.get_qformer_tokenizer() , ) processor.save_pretrained(self.tmpdirname ) snake_case__ = self.get_tokenizer(bos_token='(BOS)' , eos_token='(EOS)' ) snake_case__ = self.get_image_processor(do_normalize=UpperCamelCase , padding_value=1.0 ) snake_case__ = InstructBlipProcessor.from_pretrained( self.tmpdirname , bos_token='(BOS)' , eos_token='(EOS)' , do_normalize=UpperCamelCase , padding_value=1.0 ) self.assertEqual(processor.tokenizer.get_vocab() , tokenizer_add_kwargs.get_vocab() ) self.assertIsInstance(processor.tokenizer , UpperCamelCase ) self.assertEqual(processor.image_processor.to_json_string() , image_processor_add_kwargs.to_json_string() ) self.assertIsInstance(processor.image_processor , UpperCamelCase ) self.assertIsInstance(processor.qformer_tokenizer , UpperCamelCase ) def lowerCAmelCase_ ( self: Any ) -> int: snake_case__ = self.get_image_processor() snake_case__ = self.get_tokenizer() snake_case__ = self.get_qformer_tokenizer() snake_case__ = InstructBlipProcessor( tokenizer=UpperCamelCase , image_processor=UpperCamelCase , qformer_tokenizer=UpperCamelCase ) snake_case__ = self.prepare_image_inputs() snake_case__ = image_processor(UpperCamelCase , return_tensors='np' ) snake_case__ = processor(images=UpperCamelCase , return_tensors='np' ) for key in input_feat_extract.keys(): self.assertAlmostEqual(input_feat_extract[key].sum() , input_processor[key].sum() , delta=1e-2 ) def lowerCAmelCase_ ( self: Tuple ) -> Union[str, Any]: snake_case__ = self.get_image_processor() snake_case__ = self.get_tokenizer() snake_case__ = self.get_qformer_tokenizer() snake_case__ = InstructBlipProcessor( tokenizer=UpperCamelCase , image_processor=UpperCamelCase , qformer_tokenizer=UpperCamelCase ) snake_case__ = 'lower newer' snake_case__ = processor(text=UpperCamelCase ) snake_case__ = tokenizer(UpperCamelCase , return_token_type_ids=UpperCamelCase ) snake_case__ = qformer_tokenizer(UpperCamelCase , return_token_type_ids=UpperCamelCase ) for key in encoded_tokens.keys(): self.assertListEqual(encoded_tokens[key] , encoded_processor[key] ) for key in encoded_tokens_qformer.keys(): self.assertListEqual(encoded_tokens_qformer[key] , encoded_processor['qformer_' + key] ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> int: snake_case__ = self.get_image_processor() snake_case__ = self.get_tokenizer() snake_case__ = self.get_qformer_tokenizer() snake_case__ = InstructBlipProcessor( tokenizer=UpperCamelCase , image_processor=UpperCamelCase , qformer_tokenizer=UpperCamelCase ) snake_case__ = 'lower newer' snake_case__ = self.prepare_image_inputs() snake_case__ = processor(text=UpperCamelCase , images=UpperCamelCase ) self.assertListEqual( list(inputs.keys() ) , ['input_ids', 'attention_mask', 'qformer_input_ids', 'qformer_attention_mask', 'pixel_values'] , ) # test if it raises when no input is passed with pytest.raises(UpperCamelCase ): processor() def lowerCAmelCase_ ( self: List[str] ) -> List[Any]: snake_case__ = self.get_image_processor() snake_case__ = self.get_tokenizer() snake_case__ = self.get_qformer_tokenizer() snake_case__ = InstructBlipProcessor( tokenizer=UpperCamelCase , image_processor=UpperCamelCase , qformer_tokenizer=UpperCamelCase ) snake_case__ = [[1, 4, 5, 8, 1, 0, 8], [3, 4, 3, 1, 1, 8, 9]] snake_case__ = processor.batch_decode(UpperCamelCase ) snake_case__ = tokenizer.batch_decode(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = self.get_image_processor() snake_case__ = self.get_tokenizer() snake_case__ = self.get_qformer_tokenizer() snake_case__ = InstructBlipProcessor( tokenizer=UpperCamelCase , image_processor=UpperCamelCase , qformer_tokenizer=UpperCamelCase ) snake_case__ = 'lower newer' snake_case__ = self.prepare_image_inputs() snake_case__ = processor(text=UpperCamelCase , images=UpperCamelCase ) self.assertListEqual( list(inputs.keys() ) , ['input_ids', 'attention_mask', 'qformer_input_ids', 'qformer_attention_mask', 'pixel_values'] , )
307
import os import re import warnings from shutil import copyfile from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer if TYPE_CHECKING: from ...tokenization_utils_base import TextInput from ...utils import logging __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) __UpperCamelCase : int = {"""vocab_file""": """spiece.model"""} __UpperCamelCase : Any = { """vocab_file""": { """t5-small""": """https://huggingface.co/t5-small/resolve/main/spiece.model""", """t5-base""": """https://huggingface.co/t5-base/resolve/main/spiece.model""", """t5-large""": """https://huggingface.co/t5-large/resolve/main/spiece.model""", """t5-3b""": """https://huggingface.co/t5-3b/resolve/main/spiece.model""", """t5-11b""": """https://huggingface.co/t5-11b/resolve/main/spiece.model""", } } # TODO(PVP) - this should be removed in Transformers v5 __UpperCamelCase : Tuple = { """t5-small""": 512, """t5-base""": 512, """t5-large""": 512, """t5-3b""": 512, """t5-11b""": 512, } __UpperCamelCase : Optional[Any] = """▁""" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any]="</s>" , UpperCamelCase: Tuple="<unk>" , UpperCamelCase: Optional[int]="<pad>" , UpperCamelCase: List[str]=1_00 , UpperCamelCase: Dict=None , UpperCamelCase: Optional[Dict[str, Any]] = None , UpperCamelCase: Tuple=True , **UpperCamelCase: Dict , ) -> None: # Add extra_ids to the special token list if extra_ids > 0 and additional_special_tokens is None: snake_case__ = [F'''<extra_id_{i}>''' for i in range(UpperCamelCase )] elif extra_ids > 0 and additional_special_tokens is not None: # Check that we have the right number of extra_id special tokens snake_case__ = len(set(filter(lambda UpperCamelCase : bool('extra_id' in str(UpperCamelCase ) ) , UpperCamelCase ) ) ) if extra_tokens != extra_ids: raise ValueError( F'''Both extra_ids ({extra_ids}) and additional_special_tokens ({additional_special_tokens}) are''' ' provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids' ' tokens' ) if legacy: logger.warning_once( F'''You are using the legacy behaviour of the {self.__class__}. This means that tokens that come after special tokens will not be properly handled. We recommend you to''' ' read the related pull request available at https://github.com/huggingface/transformers/pull/24565' ) snake_case__ = legacy snake_case__ = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( eos_token=UpperCamelCase , unk_token=UpperCamelCase , pad_token=UpperCamelCase , extra_ids=UpperCamelCase , additional_special_tokens=UpperCamelCase , sp_model_kwargs=self.sp_model_kwargs , legacy=UpperCamelCase , **UpperCamelCase , ) snake_case__ = vocab_file snake_case__ = extra_ids snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] ) -> Any: if pretrained_model_name_or_path in TaTokenizer.max_model_input_sizes: snake_case__ = TaTokenizer.max_model_input_sizes[pretrained_model_name_or_path] if init_max_model_length is not None and init_max_model_length != max_model_length: return init_max_model_length elif init_max_model_length is None: warnings.warn( 'This tokenizer was incorrectly instantiated with a model max length of' F''' {deprecated_max_model_length} which will be corrected in Transformers v5.\nFor now, this''' ' behavior is kept to avoid breaking backwards compatibility when padding/encoding with' ' `truncation is True`.\n- Be aware that you SHOULD NOT rely on' F''' {pretrained_model_name_or_path} automatically truncating your input to''' F''' {deprecated_max_model_length} when padding/encoding.\n- If you want to encode/pad to sequences''' F''' longer than {deprecated_max_model_length} you can either instantiate this tokenizer with''' ' `model_max_length` or pass `max_length` when encoding/padding.\n- To avoid this warning, please' ' instantiate this tokenizer with `model_max_length` set to your preferred value.' , UpperCamelCase , ) return max_model_length @property def lowerCAmelCase_ ( self: Tuple ) -> List[str]: return self.sp_model.get_piece_size() + self._extra_ids def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = {self.convert_ids_to_tokens(UpperCamelCase ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None , UpperCamelCase: bool = False ) -> List[int]: if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase , token_ids_a=UpperCamelCase , already_has_special_tokens=UpperCamelCase ) # normal case: some special tokens if token_ids_a is None: return ([0] * len(UpperCamelCase )) + [1] return ([0] * len(UpperCamelCase )) + [1] + ([0] * len(UpperCamelCase )) + [1] def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: return list( set(filter(lambda UpperCamelCase : bool(re.search(R'<extra_id_\d+>' , UpperCamelCase ) ) is not None , self.additional_special_tokens ) ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return [self._convert_token_to_id(UpperCamelCase ) for token in self.get_sentinel_tokens()] def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[int] ) -> List[int]: if len(UpperCamelCase ) > 0 and token_ids[-1] == self.eos_token_id: warnings.warn( F'''This sequence already has {self.eos_token}. In future versions this behavior may lead to duplicated''' ' eos tokens being added.' ) return token_ids else: return token_ids + [self.eos_token_id] def lowerCAmelCase_ ( self: str , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.eos_token_id] if token_ids_a is None: return len(token_ids_a + eos ) * [0] return len(token_ids_a + eos + token_ids_a + eos ) * [0] def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) if token_ids_a is None: return token_ids_a else: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) return token_ids_a + token_ids_a def __getstate__( self: Union[str, Any] ) -> List[str]: snake_case__ = self.__dict__.copy() snake_case__ = None return state def __setstate__( self: Optional[int] , UpperCamelCase: int ) -> List[str]: snake_case__ = d # for backward compatibility if not hasattr(self , 'sp_model_kwargs' ): snake_case__ = {} snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(self.vocab_file ) def lowerCAmelCase_ ( self: str , UpperCamelCase: "TextInput" , **UpperCamelCase: Dict ) -> List[str]: # Replace the SPIECE_UNDERLINE with a space to make sure SPIECE_UNDERLINE is only used at # the beginning of the text if not self.legacy: snake_case__ = SPIECE_UNDERLINE + text.replace(UpperCamelCase , ' ' ) return super().tokenize(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , **UpperCamelCase: str ) -> str: if not self.legacy: snake_case__ = text.startswith(UpperCamelCase ) if is_first: snake_case__ = text[1:] snake_case__ = self.sp_model.encode(UpperCamelCase , out_type=UpperCamelCase ) if not self.legacy and not is_first and not text.startswith(' ' ) and tokens[0].startswith(UpperCamelCase ): snake_case__ = ([tokens[0][1:]] if len(tokens[0] ) > 1 else []) + tokens[1:] return tokens def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[int] ) -> Dict: if token.startswith('<extra_id_' ): snake_case__ = re.match(R'<extra_id_(\d+)>' , UpperCamelCase ) snake_case__ = int(match.group(1 ) ) return self.vocab_size - num - 1 return self.sp_model.piece_to_id(UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: str ) -> Tuple: if index < self.sp_model.get_piece_size(): snake_case__ = self.sp_model.IdToPiece(UpperCamelCase ) else: snake_case__ = F'''<extra_id_{self.vocab_size - 1 - index}>''' return token def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> Dict: snake_case__ = [] snake_case__ = '' snake_case__ = False for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: if not prev_is_special: out_string += " " out_string += self.sp_model.decode(UpperCamelCase ) + token snake_case__ = True snake_case__ = [] else: current_sub_tokens.append(UpperCamelCase ) snake_case__ = False out_string += self.sp_model.decode(UpperCamelCase ) return out_string.strip() def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: if not os.path.isdir(UpperCamelCase ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase , 'wb' ) as fi: snake_case__ = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase ) return (out_vocab_file,)
307
1
import json import os import unittest from transformers.models.gptsan_japanese.tokenization_gptsan_japanese import ( VOCAB_FILES_NAMES, GPTSanJapaneseTokenizer, ) from transformers.testing_utils import require_tokenizers, slow from ...test_tokenization_common import TokenizerTesterMixin @require_tokenizers class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = GPTSanJapaneseTokenizer _UpperCAmelCase = False _UpperCAmelCase = {"do_clean_text": False, "add_prefix_space": False} def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[int]: super().setUp() # fmt: off snake_case__ = ['こん', 'こんに', 'にちは', 'ばんは', '世界,㔺界', '、', '。', '<BR>', '<SP>', '<TAB>', '<URL>', '<EMAIL>', '<TEL>', '<DATE>', '<PRICE>', '<BLOCK>', '<KIGOU>', '<U2000U2BFF>', '<|emoji1|>', '<unk>', '<|bagoftoken|>', '<|endoftext|>'] # fmt: on snake_case__ = {'emoji': {'\ud83d\ude00': '<|emoji1|>'}, 'emoji_inv': {'<|emoji1|>': '\ud83d\ude00'}} # 😀 snake_case__ = {'unk_token': '<unk>'} snake_case__ = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['vocab_file'] ) snake_case__ = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['emoji_file'] ) with open(self.vocab_file , 'w' , encoding='utf-8' ) as vocab_writer: vocab_writer.write(''.join([x + '\n' for x in vocab_tokens] ) ) with open(self.emoji_file , 'w' ) as emoji_writer: emoji_writer.write(json.dumps(UpperCamelCase ) ) def lowerCAmelCase_ ( self: Dict , **UpperCamelCase: int ) -> int: kwargs.update(self.special_tokens_map ) return GPTSanJapaneseTokenizer.from_pretrained(self.tmpdirname , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Optional[Any] ) -> Union[str, Any]: snake_case__ = 'こんにちは、世界。 \nこんばんは、㔺界。😀' snake_case__ = 'こんにちは、世界。 \nこんばんは、世界。😀' return input_text, output_text def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Union[str, Any] ) -> str: snake_case__ , snake_case__ = self.get_input_output_texts(UpperCamelCase ) snake_case__ = tokenizer.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) snake_case__ = tokenizer.decode(UpperCamelCase , clean_up_tokenization_spaces=UpperCamelCase ) return text, ids def lowerCAmelCase_ ( self: Optional[int] ) -> str: pass # TODO add if relevant def lowerCAmelCase_ ( self: List[Any] ) -> Any: pass # TODO add if relevant def lowerCAmelCase_ ( self: Optional[int] ) -> Tuple: pass # TODO add if relevant def lowerCAmelCase_ ( self: Dict ) -> str: snake_case__ = self.get_tokenizer() # Testing tokenization snake_case__ = 'こんにちは、世界。 こんばんは、㔺界。' snake_case__ = ['こん', 'にちは', '、', '世界', '。', '<SP>', 'こん', 'ばんは', '、', '㔺界', '。'] snake_case__ = tokenizer.tokenize(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) # Testing conversion to ids without special tokens snake_case__ = [0, 2, 5, 4, 6, 8, 0, 3, 5, 4, 6] snake_case__ = tokenizer.convert_tokens_to_ids(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) # Testing conversion to ids with special tokens snake_case__ = tokens + [tokenizer.unk_token] snake_case__ = [0, 2, 5, 4, 6, 8, 0, 3, 5, 4, 6, 19] snake_case__ = tokenizer.convert_tokens_to_ids(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = self.get_tokenizer() # Testing tokenization snake_case__ = 'こんにちは、<|bagoftoken|>世界。こんばんは、<|bagoftoken|>㔺界。' snake_case__ = 'こんにちは、、、、世界。こんばんは、、、、世界。' snake_case__ = tokenizer.encode(UpperCamelCase ) snake_case__ = tokenizer.decode(UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Dict: snake_case__ = self.tokenizer_class.from_pretrained('Tanrei/GPTSAN-japanese' ) # Testing tokenization snake_case__ = 'こんにちは、世界。' snake_case__ = 'こんばんは、㔺界。😀' snake_case__ = 'こんにちは、世界。こんばんは、世界。😀' snake_case__ = tokenizer.encode(prefix_text + input_text ) snake_case__ = tokenizer.encode('' , prefix_text=prefix_text + input_text ) snake_case__ = tokenizer.encode(UpperCamelCase , prefix_text=UpperCamelCase ) snake_case__ = tokenizer.decode(UpperCamelCase ) snake_case__ = tokenizer.decode(UpperCamelCase ) snake_case__ = tokenizer.decode(UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = self.tokenizer_class.from_pretrained('Tanrei/GPTSAN-japanese' ) # Testing tokenization snake_case__ = 'こんにちは、世界。' snake_case__ = 'こんばんは、㔺界。😀' snake_case__ = len(tokenizer.encode(UpperCamelCase ) ) - 2 snake_case__ = len(tokenizer.encode(UpperCamelCase ) ) - 2 snake_case__ = [1] + [0] * (len_prefix + len_text + 1) snake_case__ = [1] * (len_prefix + len_text + 1) + [0] snake_case__ = [1] + [1] * (len_prefix) + [0] * (len_text + 1) snake_case__ = tokenizer(prefix_text + input_text ).token_type_ids snake_case__ = tokenizer('' , prefix_text=prefix_text + input_text ).token_type_ids snake_case__ = tokenizer(UpperCamelCase , prefix_text=UpperCamelCase ).token_type_ids self.assertListEqual(UpperCamelCase , UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Any: snake_case__ = self.tokenizer_class.from_pretrained('Tanrei/GPTSAN-japanese' ) snake_case__ = tokenizer.encode('あンいワ' ) snake_case__ = tokenizer.encode('' , prefix_text='あンいワ' ) snake_case__ = tokenizer.encode('いワ' , prefix_text='あン' ) self.assertEqual(tokenizer.decode(UpperCamelCase ) , tokenizer.decode(UpperCamelCase ) ) self.assertEqual(tokenizer.decode(UpperCamelCase ) , tokenizer.decode(UpperCamelCase ) ) self.assertNotEqual(UpperCamelCase , UpperCamelCase ) self.assertNotEqual(UpperCamelCase , UpperCamelCase ) self.assertEqual(x_token_a[1] , x_token_a[-1] ) # SEG token self.assertEqual(x_token_a[1] , x_token_a[3] ) # SEG token @slow def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.tokenizer_class.from_pretrained('Tanrei/GPTSAN-japanese' ) snake_case__ = [['武田信玄', 'は、'], ['織田信長', 'の配下の、']] snake_case__ = tokenizer(UpperCamelCase , padding=UpperCamelCase ) snake_case__ = tokenizer.batch_encode_plus(UpperCamelCase , padding=UpperCamelCase ) # fmt: off snake_case__ = [[3_59_93, 86_40, 2_59_48, 3_59_98, 3_06_47, 3_56_75, 3_59_99, 3_59_99], [3_59_93, 1_03_82, 98_68, 3_59_98, 3_06_46, 94_59, 3_06_46, 3_56_75]] snake_case__ = [[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0]] snake_case__ = [[1, 1, 1, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1]] # fmt: on self.assertListEqual(x_token.input_ids , UpperCamelCase ) self.assertListEqual(x_token.token_type_ids , UpperCamelCase ) self.assertListEqual(x_token.attention_mask , UpperCamelCase ) self.assertListEqual(x_token_a.input_ids , UpperCamelCase ) self.assertListEqual(x_token_a.token_type_ids , UpperCamelCase ) self.assertListEqual(x_token_a.attention_mask , UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> int: # Intentionally convert some words to accommodate character fluctuations unique to Japanese pass def lowerCAmelCase_ ( self: str ) -> str: # tokenizer has no padding token pass
307
import unittest from parameterized import parameterized from transformers import LlamaConfig, is_torch_available, set_seed from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import LlamaForCausalLM, LlamaForSequenceClassification, LlamaModel, LlamaTokenizer class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: List[str] , UpperCamelCase: str=13 , UpperCamelCase: int=7 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , UpperCamelCase: Dict=False , UpperCamelCase: Optional[int]=True , UpperCamelCase: Dict=99 , UpperCamelCase: Dict=32 , UpperCamelCase: Optional[Any]=5 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: List[str]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Union[str, Any]=5_12 , UpperCamelCase: str=16 , UpperCamelCase: int=2 , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Dict=4 , UpperCamelCase: List[str]=None , ) -> List[str]: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_input_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_labels snake_case__ = num_choices snake_case__ = scope def lowerCAmelCase_ ( self: List[str] ) -> Dict: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_input_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = None snake_case__ = None snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case__ = ids_tensor([self.batch_size] , self.num_choices ) snake_case__ = self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: return LlamaConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: Dict , UpperCamelCase: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: str ) -> Dict: snake_case__ = LlamaModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[Any] , ) -> str: snake_case__ = True snake_case__ = LlamaModel(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , ) snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Any , UpperCamelCase: int , UpperCamelCase: Optional[Any] , ) -> Any: snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: List[str] , ) -> Union[str, Any]: snake_case__ = True snake_case__ = True snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() # first forward pass snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , use_cache=UpperCamelCase , ) snake_case__ = outputs.past_key_values # create hypothetical multiple next token and extent to next_input_ids snake_case__ = ids_tensor((self.batch_size, 3) , config.vocab_size ) snake_case__ = ids_tensor((self.batch_size, 3) , vocab_size=2 ) # append to next input_ids and snake_case__ = torch.cat([input_ids, next_tokens] , dim=-1 ) snake_case__ = torch.cat([input_mask, next_mask] , dim=-1 ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , past_key_values=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] # select random slice snake_case__ = ids_tensor((1,) , output_from_past.shape[-1] ).item() snake_case__ = output_from_no_past[:, -3:, random_slice_idx].detach() snake_case__ = output_from_past[:, :, random_slice_idx].detach() self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1] ) # test that outputs are equal for slice self.parent.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: int ) -> Dict: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'input_ids': input_ids, 'attention_mask': input_mask} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , a_ , unittest.TestCase ): _UpperCAmelCase = (LlamaModel, LlamaForCausalLM, LlamaForSequenceClassification) if is_torch_available() else () _UpperCAmelCase = (LlamaForCausalLM,) if is_torch_available() else () _UpperCAmelCase = ( { "feature-extraction": LlamaModel, "text-classification": LlamaForSequenceClassification, "text-generation": LlamaForCausalLM, "zero-shot": LlamaForSequenceClassification, } if is_torch_available() else {} ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = LlamaModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: self.config_tester.run_common_tests() def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> str: snake_case__ = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: snake_case__ = type self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'single_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: Dict ) -> int: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'multi_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor( [self.model_tester.batch_size, config.num_labels] , self.model_tester.type_sequence_label_size ).to(torch.float ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) @unittest.skip('LLaMA buffers include complex numbers, which breaks this test' ) def lowerCAmelCase_ ( self: Dict ) -> Any: pass @parameterized.expand([('linear',), ('dynamic',)] ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> List[str]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = ids_tensor([1, 10] , config.vocab_size ) snake_case__ = ids_tensor([1, int(config.max_position_embeddings * 1.5 )] , config.vocab_size ) set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = LlamaModel(UpperCamelCase ) original_model.to(UpperCamelCase ) original_model.eval() snake_case__ = original_model(UpperCamelCase ).last_hidden_state snake_case__ = original_model(UpperCamelCase ).last_hidden_state set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = {'type': scaling_type, 'factor': 10.0} snake_case__ = LlamaModel(UpperCamelCase ) scaled_model.to(UpperCamelCase ) scaled_model.eval() snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state # Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original # maximum sequence length, so the outputs for the short input should match. if scaling_type == "dynamic": self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) else: self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) # The output should be different for long inputs self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) @require_torch class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> str: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor([input_ids] ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-6.6_550, -4.1_227, -4.9_859, -3.2_406, 0.8_262, -3.0_033, 1.2_964, -3.3_699]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-12.8_281, -7.4_453, -0.4_639, -8.0_625, -7.2_500, -8.0_000, -6.4_883, -7.7_695, -7.8_438, -7.0_312, -6.2_188, -7.1_328, -1.8_496, 1.9_961, -8.6_250, -6.7_227, -12.8_281, -6.9_492, -7.0_742, -7.7_852, -7.5_820, -7.9_062, -6.9_375, -7.9_805, -8.3_438, -8.1_562, -8.0_469, -7.6_250, -7.7_422, -7.3_398,] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-2.0_622, -1.2_794, -1.1_638, -0.9_788, -1.4_603, -1.0_238, -1.7_893, -1.4_411]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-8.1_406, -8.0_547, 2.7_461, -1.2_344, -0.1_448, -1.8_262, -1.0_020, -1.8_154, -1.6_895, -1.8_516, -2.3_574, -0.9_277, 3.7_598, 6.5_742, -1.2_998, -0.1_177, -8.1_406, -2.9_688, -2.9_199, -3.1_699, -3.5_254, -2.3_555, -2.7_988, -3.4_141, -2.8_262, -4.5_195, -3.3_379, -3.3_164, -2.7_832, -3.0_273] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-chat-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-0.8_562, -1.8_520, -0.7_551, -0.4_162, -1.5_161, -1.2_038, -2.4_823, -2.3_254]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-2.2_227, 4.8_828, 0.9_023, -0.4_578, -0.7_871, -0.1_033, -0.6_221, -0.5_786, -0.7_803, -1.0_674, -1.2_920, -0.1_570, 0.8_008, 2.0_723, -0.9_497, 0.2_771, -2.2_227, -0.7_612, -1.4_346, -1.2_061, -1.6_426, -0.3_000, -0.7_139, -1.1_934, -1.8_691, -1.6_973, -1.5_947, -1.2_705, -0.3_523, -0.5_513] ) # fmt: on torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) @unittest.skip( 'Logits are not exactly the same, once we fix the instabalities somehow, will update! Also it is gonna be a `too_slow` test' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-70b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) snake_case__ = torch.tensor( [[-4.2_327, -3.3_360, -4.6_665, -4.7_631, -1.8_180, -3.4_170, -1.4_211, -3.1_810]] , dtype=torch.floataa ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # fmt: off snake_case__ = torch.tensor([-9.4_922, -3.9_551, 1.7_998, -5.6_758, -5.1_055, -5.8_984, -4.8_320, -6.8_086, -6.5_391, -5.6_172, -5.5_820, -5.5_352, 1.7_881, 3.6_289, -6.5_117, -3.4_785, -9.5_000, -6.0_352, -6.8_125, -6.0_195, -6.6_836, -5.4_727, -6.2_812, -6.0_391, -7.3_398, -7.4_297, -7.4_844, -6.5_820, -5.8_789, -5.5_312] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Model is curently gated' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'Simply put, the theory of relativity states that 1) the laws of physics are the same everywhere in the universe and 2) the passage of time and the length of objects can vary depending on the observer\'s frame of reference.\n\nThe first part of the theory, that the laws of physics are the same everywhere, is known as the "princi' snake_case__ = 'Simply put, the theory of relativity states that ' snake_case__ = LlamaTokenizer.from_pretrained('meta-llama/Llama-2-13b-chat-hf' ) snake_case__ = tokenizer.encode(UpperCamelCase , return_tensors='pt' ) snake_case__ = LlamaForCausalLM.from_pretrained( 'meta-llama/Llama-2-13b-chat-hf' , device_map='sequential' , use_safetensors=UpperCamelCase ) # greedy generation outputs snake_case__ = model.generate(UpperCamelCase , max_new_tokens=64 , top_p=UpperCamelCase , temperature=1 , do_sample=UpperCamelCase ) snake_case__ = tokenizer.decode(generated_ids[0] , skip_special_tokens=UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase )
307
1
import inspect from typing import List, Optional, Tuple, Union import numpy as np import PIL import torch import torch.utils.checkpoint from ...models import UNetaDModel, VQModel from ...schedulers import ( DDIMScheduler, DPMSolverMultistepScheduler, EulerAncestralDiscreteScheduler, EulerDiscreteScheduler, LMSDiscreteScheduler, PNDMScheduler, ) from ...utils import PIL_INTERPOLATION, randn_tensor from ..pipeline_utils import DiffusionPipeline, ImagePipelineOutput def a_ ( _A ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = image.size snake_case__ , snake_case__ = (x - x % 32 for x in (w, h)) # resize to integer multiple of 32 snake_case__ = image.resize((w, h) , resample=PIL_INTERPOLATION['lanczos'] ) snake_case__ = np.array(_A ).astype(np.floataa ) / 255.0 snake_case__ = image[None].transpose(0 , 3 , 1 , 2 ) snake_case__ = torch.from_numpy(_A ) return 2.0 * image - 1.0 class __SCREAMING_SNAKE_CASE( a_ ): def __init__( self: Optional[Any] , UpperCamelCase: VQModel , UpperCamelCase: UNetaDModel , UpperCamelCase: Union[ DDIMScheduler, PNDMScheduler, LMSDiscreteScheduler, EulerDiscreteScheduler, EulerAncestralDiscreteScheduler, DPMSolverMultistepScheduler, ] , ) -> Dict: super().__init__() self.register_modules(vqvae=UpperCamelCase , unet=UpperCamelCase , scheduler=UpperCamelCase ) @torch.no_grad() def __call__( self: Optional[Any] , UpperCamelCase: Union[torch.Tensor, PIL.Image.Image] = None , UpperCamelCase: Optional[int] = 1 , UpperCamelCase: Optional[int] = 1_00 , UpperCamelCase: Optional[float] = 0.0 , UpperCamelCase: Optional[Union[torch.Generator, List[torch.Generator]]] = None , UpperCamelCase: Optional[str] = "pil" , UpperCamelCase: bool = True , ) -> Union[Tuple, ImagePipelineOutput]: if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = 1 elif isinstance(UpperCamelCase , torch.Tensor ): snake_case__ = image.shape[0] else: raise ValueError(F'''`image` has to be of type `PIL.Image.Image` or `torch.Tensor` but is {type(UpperCamelCase )}''' ) if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = preprocess(UpperCamelCase ) snake_case__ , snake_case__ = image.shape[-2:] # in_channels should be 6: 3 for latents, 3 for low resolution image snake_case__ = (batch_size, self.unet.config.in_channels // 2, height, width) snake_case__ = next(self.unet.parameters() ).dtype snake_case__ = randn_tensor(UpperCamelCase , generator=UpperCamelCase , device=self.device , dtype=UpperCamelCase ) snake_case__ = image.to(device=self.device , dtype=UpperCamelCase ) # set timesteps and move to the correct device self.scheduler.set_timesteps(UpperCamelCase , device=self.device ) snake_case__ = self.scheduler.timesteps # scale the initial noise by the standard deviation required by the scheduler snake_case__ = latents * self.scheduler.init_noise_sigma # prepare extra kwargs for the scheduler step, since not all schedulers have the same signature. # eta (η) is only used with the DDIMScheduler, it will be ignored for other schedulers. # eta corresponds to η in DDIM paper: https://arxiv.org/abs/2010.02502 # and should be between [0, 1] snake_case__ = 'eta' in set(inspect.signature(self.scheduler.step ).parameters.keys() ) snake_case__ = {} if accepts_eta: snake_case__ = eta for t in self.progress_bar(UpperCamelCase ): # concat latents and low resolution image in the channel dimension. snake_case__ = torch.cat([latents, image] , dim=1 ) snake_case__ = self.scheduler.scale_model_input(UpperCamelCase , UpperCamelCase ) # predict the noise residual snake_case__ = self.unet(UpperCamelCase , UpperCamelCase ).sample # compute the previous noisy sample x_t -> x_t-1 snake_case__ = self.scheduler.step(UpperCamelCase , UpperCamelCase , UpperCamelCase , **UpperCamelCase ).prev_sample # decode the image latents with the VQVAE snake_case__ = self.vqvae.decode(UpperCamelCase ).sample snake_case__ = torch.clamp(UpperCamelCase , -1.0 , 1.0 ) snake_case__ = image / 2 + 0.5 snake_case__ = image.cpu().permute(0 , 2 , 3 , 1 ).numpy() if output_type == "pil": snake_case__ = self.numpy_to_pil(UpperCamelCase ) if not return_dict: return (image,) return ImagePipelineOutput(images=UpperCamelCase )
307
from math import isclose, sqrt def a_ ( _A , _A , _A ) -> tuple[float, float, float]: """simple docstring""" snake_case__ = point_y / 4 / point_x snake_case__ = 2 * normal_gradient / (1 + normal_gradient * normal_gradient) snake_case__ = (1 - normal_gradient * normal_gradient) / ( 1 + normal_gradient * normal_gradient ) snake_case__ = (sa - ca * incoming_gradient) / (ca + sa * incoming_gradient) # to find the next point, solve the simultaeneous equations: # y^2 + 4x^2 = 100 # y - b = m * (x - a) # ==> A x^2 + B x + C = 0 snake_case__ = outgoing_gradient**2 + 4 snake_case__ = 2 * outgoing_gradient * (point_y - outgoing_gradient * point_x) snake_case__ = (point_y - outgoing_gradient * point_x) ** 2 - 100 snake_case__ = ( -linear_term - sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) snake_case__ = ( -linear_term + sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) # two solutions, one of which is our input point snake_case__ = x_minus if isclose(_A , _A ) else x_plus snake_case__ = point_y + outgoing_gradient * (next_x - point_x) return next_x, next_y, outgoing_gradient def a_ ( _A = 1.4 , _A = -9.6 ) -> int: """simple docstring""" snake_case__ = 0 snake_case__ = first_x_coord snake_case__ = first_y_coord snake_case__ = (10.1 - point_y) / (0.0 - point_x) while not (-0.01 <= point_x <= 0.01 and point_y > 0): snake_case__ , snake_case__ , snake_case__ = next_point(_A , _A , _A ) num_reflections += 1 return num_reflections if __name__ == "__main__": print(f'''{solution() = }''')
307
1
def a_ ( _A , _A ) -> int: """simple docstring""" return 1 if input_a == input_a else 0 def a_ ( ) -> None: """simple docstring""" assert xnor_gate(0 , 0 ) == 1 assert xnor_gate(0 , 1 ) == 0 assert xnor_gate(1 , 0 ) == 0 assert xnor_gate(1 , 1 ) == 1 if __name__ == "__main__": print(xnor_gate(0, 0)) print(xnor_gate(0, 1)) print(xnor_gate(1, 0)) print(xnor_gate(1, 1))
307
# Lint as: python3 import sys from collections.abc import Mapping from typing import TYPE_CHECKING import numpy as np import pyarrow as pa from .. import config from ..utils.py_utils import map_nested from .formatting import TensorFormatter if TYPE_CHECKING: import torch class __SCREAMING_SNAKE_CASE( TensorFormatter[Mapping, "torch.Tensor", Mapping] ): def __init__( self: Any , UpperCamelCase: Optional[int]=None , **UpperCamelCase: Union[str, Any] ) -> int: super().__init__(features=UpperCamelCase ) snake_case__ = torch_tensor_kwargs import torch # noqa import torch at initialization def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any ) -> List[str]: import torch if isinstance(UpperCamelCase , UpperCamelCase ) and column: if all( isinstance(UpperCamelCase , torch.Tensor ) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column ): return torch.stack(UpperCamelCase ) return column def lowerCAmelCase_ ( self: str , UpperCamelCase: Dict ) -> Union[str, Any]: import torch if isinstance(UpperCamelCase , (str, bytes, type(UpperCamelCase )) ): return value elif isinstance(UpperCamelCase , (np.character, np.ndarray) ) and np.issubdtype(value.dtype , np.character ): return value.tolist() snake_case__ = {} if isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.integer ): snake_case__ = {'dtype': torch.intaa} elif isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.floating ): snake_case__ = {'dtype': torch.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = np.asarray(UpperCamelCase ) return torch.tensor(UpperCamelCase , **{**default_dtype, **self.torch_tensor_kwargs} ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: str ) -> Any: import torch # support for torch, tf, jax etc. if hasattr(UpperCamelCase , '__array__' ) and not isinstance(UpperCamelCase , torch.Tensor ): snake_case__ = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(UpperCamelCase , np.ndarray ): if data_struct.dtype == object: # torch tensors cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) elif isinstance(UpperCamelCase , (list, tuple) ): return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) return self._tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: dict ) -> List[str]: return map_nested(self._recursive_tensorize , UpperCamelCase , map_list=UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_row(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_row(UpperCamelCase ) return self.recursive_tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: pa.Table ) -> "torch.Tensor": snake_case__ = self.numpy_arrow_extractor().extract_column(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_column(UpperCamelCase , pa_table.column_names[0] ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) snake_case__ = self._consolidate(UpperCamelCase ) return column def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_batch(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_batch(UpperCamelCase ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) for column_name in batch: snake_case__ = self._consolidate(batch[column_name] ) return batch
307
1
import re import string import numpy as np import datasets __UpperCamelCase : Union[str, Any] = """ Returns the rate at which the input predicted strings exactly match their references, ignoring any strings input as part of the regexes_to_ignore list. """ __UpperCamelCase : Union[str, Any] = """ Args: predictions: List of predicted texts. references: List of reference texts. regexes_to_ignore: List, defaults to None. Regex expressions of characters to ignore when calculating the exact matches. Note: these regexes are removed from the input data before the changes based on the options below (e.g. ignore_case, ignore_punctuation, ignore_numbers) are applied. ignore_case: Boolean, defaults to False. If true, turns everything to lowercase so that capitalization differences are ignored. ignore_punctuation: Boolean, defaults to False. If true, removes all punctuation before comparing predictions and references. ignore_numbers: Boolean, defaults to False. If true, removes all punctuation before comparing predictions and references. Returns: exact_match: Dictionary containing exact_match rate. Possible values are between 0.0 and 100.0, inclusive. Examples: >>> exact_match = datasets.load_metric(\"exact_match\") >>> refs = [\"the cat\", \"theater\", \"YELLING\", \"agent007\"] >>> preds = [\"cat?\", \"theater\", \"yelling\", \"agent\"] >>> results = exact_match.compute(references=refs, predictions=preds) >>> print(round(results[\"exact_match\"], 1)) 25.0 >>> exact_match = datasets.load_metric(\"exact_match\") >>> refs = [\"the cat\", \"theater\", \"YELLING\", \"agent007\"] >>> preds = [\"cat?\", \"theater\", \"yelling\", \"agent\"] >>> results = exact_match.compute(references=refs, predictions=preds, regexes_to_ignore=[\"the \", \"yell\"], ignore_case=True, ignore_punctuation=True) >>> print(round(results[\"exact_match\"], 1)) 50.0 >>> exact_match = datasets.load_metric(\"exact_match\") >>> refs = [\"the cat\", \"theater\", \"YELLING\", \"agent007\"] >>> preds = [\"cat?\", \"theater\", \"yelling\", \"agent\"] >>> results = exact_match.compute(references=refs, predictions=preds, regexes_to_ignore=[\"the \", \"yell\", \"YELL\"], ignore_case=True, ignore_punctuation=True) >>> print(round(results[\"exact_match\"], 1)) 75.0 >>> exact_match = datasets.load_metric(\"exact_match\") >>> refs = [\"the cat\", \"theater\", \"YELLING\", \"agent007\"] >>> preds = [\"cat?\", \"theater\", \"yelling\", \"agent\"] >>> results = exact_match.compute(references=refs, predictions=preds, regexes_to_ignore=[\"the \", \"yell\", \"YELL\"], ignore_case=True, ignore_punctuation=True, ignore_numbers=True) >>> print(round(results[\"exact_match\"], 1)) 100.0 >>> exact_match = datasets.load_metric(\"exact_match\") >>> refs = [\"The cat sat on the mat.\", \"Theaters are great.\", \"It's like comparing oranges and apples.\"] >>> preds = [\"The cat sat on the mat?\", \"Theaters are great.\", \"It's like comparing apples and oranges.\"] >>> results = exact_match.compute(references=refs, predictions=preds) >>> print(round(results[\"exact_match\"], 1)) 33.3 """ __UpperCamelCase : Any = """ """ @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class __SCREAMING_SNAKE_CASE( datasets.Metric ): def lowerCAmelCase_ ( self: List[str] ) -> Optional[Any]: return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { 'predictions': datasets.Value('string' , id='sequence' ), 'references': datasets.Value('string' , id='sequence' ), } ) , reference_urls=[] , ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: str , UpperCamelCase: str , UpperCamelCase: List[Any]=None , UpperCamelCase: Optional[int]=False , UpperCamelCase: Any=False , UpperCamelCase: Optional[int]=False , ) -> str: if regexes_to_ignore is not None: for s in regexes_to_ignore: snake_case__ = np.array([re.sub(UpperCamelCase , '' , UpperCamelCase ) for x in predictions] ) snake_case__ = np.array([re.sub(UpperCamelCase , '' , UpperCamelCase ) for x in references] ) else: snake_case__ = np.asarray(UpperCamelCase ) snake_case__ = np.asarray(UpperCamelCase ) if ignore_case: snake_case__ = np.char.lower(UpperCamelCase ) snake_case__ = np.char.lower(UpperCamelCase ) if ignore_punctuation: snake_case__ = string.punctuation.maketrans('' , '' , string.punctuation ) snake_case__ = np.char.translate(UpperCamelCase , table=UpperCamelCase ) snake_case__ = np.char.translate(UpperCamelCase , table=UpperCamelCase ) if ignore_numbers: snake_case__ = string.digits.maketrans('' , '' , string.digits ) snake_case__ = np.char.translate(UpperCamelCase , table=UpperCamelCase ) snake_case__ = np.char.translate(UpperCamelCase , table=UpperCamelCase ) snake_case__ = predictions == references return {"exact_match": np.mean(UpperCamelCase ) * 1_00}
307
import doctest from collections import deque import numpy as np class __SCREAMING_SNAKE_CASE: def __init__( self: Dict ) -> None: snake_case__ = [2, 1, 2, -1] snake_case__ = [1, 2, 3, 4] def lowerCAmelCase_ ( self: List[str] ) -> list[float]: snake_case__ = len(self.first_signal ) snake_case__ = len(self.second_signal ) snake_case__ = max(UpperCamelCase , UpperCamelCase ) # create a zero matrix of max_length x max_length snake_case__ = [[0] * max_length for i in range(UpperCamelCase )] # fills the smaller signal with zeros to make both signals of same length if length_first_signal < length_second_signal: self.first_signal += [0] * (max_length - length_first_signal) elif length_first_signal > length_second_signal: self.second_signal += [0] * (max_length - length_second_signal) for i in range(UpperCamelCase ): snake_case__ = deque(self.second_signal ) rotated_signal.rotate(UpperCamelCase ) for j, item in enumerate(UpperCamelCase ): matrix[i][j] += item # multiply the matrix with the first signal snake_case__ = np.matmul(np.transpose(UpperCamelCase ) , np.transpose(self.first_signal ) ) # rounding-off to two decimal places return [round(UpperCamelCase , 2 ) for i in final_signal] if __name__ == "__main__": doctest.testmod()
307
1
import math def a_ ( _A , _A ) -> int: """simple docstring""" snake_case__ = len(_A ) snake_case__ = int(math.floor(math.sqrt(_A ) ) ) snake_case__ = 0 while arr[min(_A , _A ) - 1] < x: snake_case__ = step step += int(math.floor(math.sqrt(_A ) ) ) if prev >= n: return -1 while arr[prev] < x: snake_case__ = prev + 1 if prev == min(_A , _A ): return -1 if arr[prev] == x: return prev return -1 if __name__ == "__main__": __UpperCamelCase : Optional[int] = input("""Enter numbers separated by a comma:\n""").strip() __UpperCamelCase : List[str] = [int(item) for item in user_input.split(""",""")] __UpperCamelCase : Optional[int] = int(input("""Enter the number to be searched:\n""")) __UpperCamelCase : Dict = jump_search(arr, x) if res == -1: print("""Number not found!""") else: print(f'''Number {x} is at index {res}''')
307
import math from collections import defaultdict from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import KarrasDiffusionSchedulers, SchedulerMixin, SchedulerOutput def a_ ( _A , _A=0.999 , _A="cosine" , ) -> Optional[int]: """simple docstring""" if alpha_transform_type == "cosine": def alpha_bar_fn(_A ): return math.cos((t + 0.008) / 1.008 * math.pi / 2 ) ** 2 elif alpha_transform_type == "exp": def alpha_bar_fn(_A ): return math.exp(t * -12.0 ) else: raise ValueError(f'''Unsupported alpha_tranform_type: {alpha_transform_type}''' ) snake_case__ = [] for i in range(_A ): snake_case__ = i / num_diffusion_timesteps snake_case__ = (i + 1) / num_diffusion_timesteps betas.append(min(1 - alpha_bar_fn(_A ) / alpha_bar_fn(_A ) , _A ) ) return torch.tensor(_A , dtype=torch.floataa ) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [e.name for e in KarrasDiffusionSchedulers] _UpperCAmelCase = 2 @register_to_config def __init__( self: Dict , UpperCamelCase: int = 10_00 , UpperCamelCase: float = 0.00_085 , UpperCamelCase: float = 0.012 , UpperCamelCase: str = "linear" , UpperCamelCase: Optional[Union[np.ndarray, List[float]]] = None , UpperCamelCase: str = "epsilon" , UpperCamelCase: Optional[bool] = False , UpperCamelCase: Optional[bool] = False , UpperCamelCase: float = 1.0 , UpperCamelCase: str = "linspace" , UpperCamelCase: int = 0 , ) -> str: if trained_betas is not None: snake_case__ = torch.tensor(UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "linear": snake_case__ = torch.linspace(UpperCamelCase , UpperCamelCase , UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "scaled_linear": # this schedule is very specific to the latent diffusion model. snake_case__ = ( torch.linspace(beta_start**0.5 , beta_end**0.5 , UpperCamelCase , dtype=torch.floataa ) ** 2 ) elif beta_schedule == "squaredcos_cap_v2": # Glide cosine schedule snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='cosine' ) elif beta_schedule == "exp": snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='exp' ) else: raise NotImplementedError(F'''{beta_schedule} does is not implemented for {self.__class__}''' ) snake_case__ = 1.0 - self.betas snake_case__ = torch.cumprod(self.alphas , dim=0 ) # set all values self.set_timesteps(UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = use_karras_sigmas def lowerCAmelCase_ ( self: str , UpperCamelCase: int , UpperCamelCase: Optional[int]=None ) -> str: if schedule_timesteps is None: snake_case__ = self.timesteps snake_case__ = (schedule_timesteps == timestep).nonzero() # The sigma index that is taken for the **very** first `step` # is always the second index (or the last index if there is only 1) # This way we can ensure we don't accidentally skip a sigma in # case we start in the middle of the denoising schedule (e.g. for image-to-image) if len(self._index_counter ) == 0: snake_case__ = 1 if len(UpperCamelCase ) > 1 else 0 else: snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep snake_case__ = self._index_counter[timestep_int] return indices[pos].item() @property def lowerCAmelCase_ ( self: Optional[Any] ) -> List[Any]: # standard deviation of the initial noise distribution if self.config.timestep_spacing in ["linspace", "trailing"]: return self.sigmas.max() return (self.sigmas.max() ** 2 + 1) ** 0.5 def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Union[float, torch.FloatTensor] , ) -> torch.FloatTensor: snake_case__ = self.index_for_timestep(UpperCamelCase ) snake_case__ = self.sigmas[step_index] snake_case__ = sample / ((sigma**2 + 1) ** 0.5) return sample def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int , UpperCamelCase: Union[str, torch.device] = None , UpperCamelCase: Optional[int] = None , ) -> str: snake_case__ = num_inference_steps snake_case__ = num_train_timesteps or self.config.num_train_timesteps # "linspace", "leading", "trailing" corresponds to annotation of Table 2. of https://arxiv.org/abs/2305.08891 if self.config.timestep_spacing == "linspace": snake_case__ = np.linspace(0 , num_train_timesteps - 1 , UpperCamelCase , dtype=UpperCamelCase )[::-1].copy() elif self.config.timestep_spacing == "leading": snake_case__ = num_train_timesteps // self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(0 , UpperCamelCase ) * step_ratio).round()[::-1].copy().astype(UpperCamelCase ) timesteps += self.config.steps_offset elif self.config.timestep_spacing == "trailing": snake_case__ = num_train_timesteps / self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(UpperCamelCase , 0 , -step_ratio )).round().copy().astype(UpperCamelCase ) timesteps -= 1 else: raise ValueError( F'''{self.config.timestep_spacing} is not supported. Please make sure to choose one of \'linspace\', \'leading\' or \'trailing\'.''' ) snake_case__ = np.array(((1 - self.alphas_cumprod) / self.alphas_cumprod) ** 0.5 ) snake_case__ = np.log(UpperCamelCase ) snake_case__ = np.interp(UpperCamelCase , np.arange(0 , len(UpperCamelCase ) ) , UpperCamelCase ) if self.config.use_karras_sigmas: snake_case__ = self._convert_to_karras(in_sigmas=UpperCamelCase , num_inference_steps=self.num_inference_steps ) snake_case__ = np.array([self._sigma_to_t(UpperCamelCase , UpperCamelCase ) for sigma in sigmas] ) snake_case__ = np.concatenate([sigmas, [0.0]] ).astype(np.floataa ) snake_case__ = torch.from_numpy(UpperCamelCase ).to(device=UpperCamelCase ) snake_case__ = torch.cat([sigmas[:1], sigmas[1:-1].repeat_interleave(2 ), sigmas[-1:]] ) snake_case__ = torch.from_numpy(UpperCamelCase ) snake_case__ = torch.cat([timesteps[:1], timesteps[1:].repeat_interleave(2 )] ) if str(UpperCamelCase ).startswith('mps' ): # mps does not support float64 snake_case__ = timesteps.to(UpperCamelCase , dtype=torch.floataa ) else: snake_case__ = timesteps.to(device=UpperCamelCase ) # empty dt and derivative snake_case__ = None snake_case__ = None # for exp beta schedules, such as the one for `pipeline_shap_e.py` # we need an index counter snake_case__ = defaultdict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Dict ) -> Tuple: # get log sigma snake_case__ = np.log(UpperCamelCase ) # get distribution snake_case__ = log_sigma - log_sigmas[:, np.newaxis] # get sigmas range snake_case__ = np.cumsum((dists >= 0) , axis=0 ).argmax(axis=0 ).clip(max=log_sigmas.shape[0] - 2 ) snake_case__ = low_idx + 1 snake_case__ = log_sigmas[low_idx] snake_case__ = log_sigmas[high_idx] # interpolate sigmas snake_case__ = (low - log_sigma) / (low - high) snake_case__ = np.clip(UpperCamelCase , 0 , 1 ) # transform interpolation to time range snake_case__ = (1 - w) * low_idx + w * high_idx snake_case__ = t.reshape(sigma.shape ) return t def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Dict ) -> torch.FloatTensor: snake_case__ = in_sigmas[-1].item() snake_case__ = in_sigmas[0].item() snake_case__ = 7.0 # 7.0 is the value used in the paper snake_case__ = np.linspace(0 , 1 , UpperCamelCase ) snake_case__ = sigma_min ** (1 / rho) snake_case__ = sigma_max ** (1 / rho) snake_case__ = (max_inv_rho + ramp * (min_inv_rho - max_inv_rho)) ** rho return sigmas @property def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.dt is None def lowerCAmelCase_ ( self: int , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: Union[float, torch.FloatTensor] , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: bool = True , ) -> Union[SchedulerOutput, Tuple]: snake_case__ = self.index_for_timestep(UpperCamelCase ) # advance index counter by 1 snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep self._index_counter[timestep_int] += 1 if self.state_in_first_order: snake_case__ = self.sigmas[step_index] snake_case__ = self.sigmas[step_index + 1] else: # 2nd order / Heun's method snake_case__ = self.sigmas[step_index - 1] snake_case__ = self.sigmas[step_index] # currently only gamma=0 is supported. This usually works best anyways. # We can support gamma in the future but then need to scale the timestep before # passing it to the model which requires a change in API snake_case__ = 0 snake_case__ = sigma * (gamma + 1) # Note: sigma_hat == sigma for now # 1. compute predicted original sample (x_0) from sigma-scaled predicted noise if self.config.prediction_type == "epsilon": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = sample - sigma_input * model_output elif self.config.prediction_type == "v_prediction": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = model_output * (-sigma_input / (sigma_input**2 + 1) ** 0.5) + ( sample / (sigma_input**2 + 1) ) elif self.config.prediction_type == "sample": snake_case__ = model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, or `v_prediction`''' ) if self.config.clip_sample: snake_case__ = pred_original_sample.clamp( -self.config.clip_sample_range , self.config.clip_sample_range ) if self.state_in_first_order: # 2. Convert to an ODE derivative for 1st order snake_case__ = (sample - pred_original_sample) / sigma_hat # 3. delta timestep snake_case__ = sigma_next - sigma_hat # store for 2nd order step snake_case__ = derivative snake_case__ = dt snake_case__ = sample else: # 2. 2nd order / Heun's method snake_case__ = (sample - pred_original_sample) / sigma_next snake_case__ = (self.prev_derivative + derivative) / 2 # 3. take prev timestep & sample snake_case__ = self.dt snake_case__ = self.sample # free dt and derivative # Note, this puts the scheduler in "first order mode" snake_case__ = None snake_case__ = None snake_case__ = None snake_case__ = sample + derivative * dt if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , ) -> torch.FloatTensor: # Make sure sigmas and timesteps have the same device and dtype as original_samples snake_case__ = self.sigmas.to(device=original_samples.device , dtype=original_samples.dtype ) if original_samples.device.type == "mps" and torch.is_floating_point(UpperCamelCase ): # mps does not support float64 snake_case__ = self.timesteps.to(original_samples.device , dtype=torch.floataa ) snake_case__ = timesteps.to(original_samples.device , dtype=torch.floataa ) else: snake_case__ = self.timesteps.to(original_samples.device ) snake_case__ = timesteps.to(original_samples.device ) snake_case__ = [self.index_for_timestep(UpperCamelCase , UpperCamelCase ) for t in timesteps] snake_case__ = sigmas[step_indices].flatten() while len(sigma.shape ) < len(original_samples.shape ): snake_case__ = sigma.unsqueeze(-1 ) snake_case__ = original_samples + noise * sigma return noisy_samples def __len__( self: List[Any] ) -> Union[str, Any]: return self.config.num_train_timesteps
307
1
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_sentencepiece_available, is_speech_available, is_tf_available, is_torch_available, ) __UpperCamelCase : List[Any] = { """configuration_speech_to_text""": ["""SPEECH_TO_TEXT_PRETRAINED_CONFIG_ARCHIVE_MAP""", """Speech2TextConfig"""], """processing_speech_to_text""": ["""Speech2TextProcessor"""], } try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Dict = ["""Speech2TextTokenizer"""] try: if not is_speech_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Union[str, Any] = ["""Speech2TextFeatureExtractor"""] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Any = [ """TF_SPEECH_TO_TEXT_PRETRAINED_MODEL_ARCHIVE_LIST""", """TFSpeech2TextForConditionalGeneration""", """TFSpeech2TextModel""", """TFSpeech2TextPreTrainedModel""", ] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : int = [ """SPEECH_TO_TEXT_PRETRAINED_MODEL_ARCHIVE_LIST""", """Speech2TextForConditionalGeneration""", """Speech2TextModel""", """Speech2TextPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_speech_to_text import SPEECH_TO_TEXT_PRETRAINED_CONFIG_ARCHIVE_MAP, SpeechaTextConfig from .processing_speech_to_text import SpeechaTextProcessor try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_speech_to_text import SpeechaTextTokenizer try: if not is_speech_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .feature_extraction_speech_to_text import SpeechaTextFeatureExtractor try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_speech_to_text import ( TF_SPEECH_TO_TEXT_PRETRAINED_MODEL_ARCHIVE_LIST, TFSpeechaTextForConditionalGeneration, TFSpeechaTextModel, TFSpeechaTextPreTrainedModel, ) try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_speech_to_text import ( SPEECH_TO_TEXT_PRETRAINED_MODEL_ARCHIVE_LIST, SpeechaTextForConditionalGeneration, SpeechaTextModel, SpeechaTextPreTrainedModel, ) else: import sys __UpperCamelCase : int = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
from typing import TYPE_CHECKING from ..utils import _LazyModule __UpperCamelCase : Tuple = { """config""": [ """EXTERNAL_DATA_FORMAT_SIZE_LIMIT""", """OnnxConfig""", """OnnxConfigWithPast""", """OnnxSeq2SeqConfigWithPast""", """PatchingSpec""", ], """convert""": ["""export""", """validate_model_outputs"""], """features""": ["""FeaturesManager"""], """utils""": ["""ParameterFormat""", """compute_serialized_parameters_size"""], } if TYPE_CHECKING: from .config import ( EXTERNAL_DATA_FORMAT_SIZE_LIMIT, OnnxConfig, OnnxConfigWithPast, OnnxSeqaSeqConfigWithPast, PatchingSpec, ) from .convert import export, validate_model_outputs from .features import FeaturesManager from .utils import ParameterFormat, compute_serialized_parameters_size else: import sys __UpperCamelCase : Dict = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import itertools import random import unittest import numpy as np from transformers import ASTFeatureExtractor from transformers.testing_utils import require_torch, require_torchaudio from transformers.utils.import_utils import is_torch_available from ...test_sequence_feature_extraction_common import SequenceFeatureExtractionTestMixin __UpperCamelCase : Optional[int] = random.Random() if is_torch_available(): import torch def a_ ( _A , _A=1.0 , _A=None , _A=None ) -> Dict: """simple docstring""" if rng is None: snake_case__ = global_rng snake_case__ = [] for batch_idx in range(shape[0] ): values.append([] ) for _ in range(shape[1] ): values[-1].append(rng.random() * scale ) return values class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def __init__( self: Tuple , UpperCamelCase: Optional[Any] , UpperCamelCase: Dict=7 , UpperCamelCase: Optional[int]=4_00 , UpperCamelCase: Dict=20_00 , UpperCamelCase: Optional[int]=1 , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: str=1_60_00 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , ) -> str: snake_case__ = parent snake_case__ = batch_size snake_case__ = min_seq_length snake_case__ = max_seq_length snake_case__ = (self.max_seq_length - self.min_seq_length) // (self.batch_size - 1) snake_case__ = feature_size snake_case__ = padding_value snake_case__ = sampling_rate snake_case__ = return_attention_mask snake_case__ = do_normalize def lowerCAmelCase_ ( self: Optional[int] ) -> str: return { "feature_size": self.feature_size, "padding_value": self.padding_value, "sampling_rate": self.sampling_rate, "return_attention_mask": self.return_attention_mask, "do_normalize": self.do_normalize, } def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Optional[int]=False , UpperCamelCase: str=False ) -> Any: def _flatten(UpperCamelCase: Union[str, Any] ): return list(itertools.chain(*UpperCamelCase ) ) if equal_length: snake_case__ = floats_list((self.batch_size, self.max_seq_length) ) else: # make sure that inputs increase in size snake_case__ = [ _flatten(floats_list((x, self.feature_size) ) ) for x in range(self.min_seq_length , self.max_seq_length , self.seq_length_diff ) ] if numpify: snake_case__ = [np.asarray(UpperCamelCase ) for x in speech_inputs] return speech_inputs @require_torch @require_torchaudio class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = ASTFeatureExtractor def lowerCAmelCase_ ( self: Optional[int] ) -> str: snake_case__ = ASTFeatureExtractionTester(self ) def lowerCAmelCase_ ( self: int ) -> Any: # Tests that all call wrap to encode_plus and batch_encode_plus snake_case__ = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) # create three inputs of length 800, 1000, and 1200 snake_case__ = [floats_list((1, x) )[0] for x in range(8_00 , 14_00 , 2_00 )] snake_case__ = [np.asarray(UpperCamelCase ) for speech_input in speech_inputs] # Test not batched input snake_case__ = feat_extract(speech_inputs[0] , return_tensors='np' ).input_values snake_case__ = feat_extract(np_speech_inputs[0] , return_tensors='np' ).input_values self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) # Test batched snake_case__ = feat_extract(UpperCamelCase , padding=UpperCamelCase , return_tensors='np' ).input_values snake_case__ = feat_extract(UpperCamelCase , padding=UpperCamelCase , return_tensors='np' ).input_values for enc_seq_a, enc_seq_a in zip(UpperCamelCase , UpperCamelCase ): self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) # Test 2-D numpy arrays are batched. snake_case__ = [floats_list((1, x) )[0] for x in (8_00, 8_00, 8_00)] snake_case__ = np.asarray(UpperCamelCase ) snake_case__ = feat_extract(UpperCamelCase , return_tensors='np' ).input_values snake_case__ = feat_extract(UpperCamelCase , return_tensors='np' ).input_values for enc_seq_a, enc_seq_a in zip(UpperCamelCase , UpperCamelCase ): self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) @require_torch def lowerCAmelCase_ ( self: int ) -> List[Any]: import torch snake_case__ = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) snake_case__ = np.random.rand(1_00 ).astype(np.floataa ) snake_case__ = np_speech_inputs.tolist() for inputs in [py_speech_inputs, np_speech_inputs]: snake_case__ = feature_extractor.pad([{'input_values': inputs}] , return_tensors='np' ) self.assertTrue(np_processed.input_values.dtype == np.floataa ) snake_case__ = feature_extractor.pad([{'input_values': inputs}] , return_tensors='pt' ) self.assertTrue(pt_processed.input_values.dtype == torch.floataa ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any ) -> Optional[int]: from datasets import load_dataset snake_case__ = load_dataset('hf-internal-testing/librispeech_asr_dummy' , 'clean' , split='validation' ) # automatic decoding with librispeech snake_case__ = ds.sort('id' ).select(range(UpperCamelCase ) )[:num_samples]['audio'] return [x["array"] for x in speech_samples] @require_torch def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: # fmt: off snake_case__ = torch.tensor( [-0.9_894, -1.2_776, -0.9_066, -1.2_776, -0.9_349, -1.2_609, -1.0_386, -1.2_776, -1.1_561, -1.2_776, -1.2_052, -1.2_723, -1.2_190, -1.2_132, -1.2_776, -1.1_133, -1.1_953, -1.1_343, -1.1_584, -1.2_203, -1.1_770, -1.2_474, -1.2_381, -1.1_936, -0.9_270, -0.8_317, -0.8_049, -0.7_706, -0.7_565, -0.7_869] ) # fmt: on snake_case__ = self._load_datasamples(1 ) snake_case__ = ASTFeatureExtractor() snake_case__ = feature_extractor(UpperCamelCase , return_tensors='pt' ).input_values self.assertEquals(input_values.shape , (1, 10_24, 1_28) ) self.assertTrue(torch.allclose(input_values[0, 0, :30] , UpperCamelCase , atol=1e-4 ) )
307
def a_ ( _A , _A ) -> int: """simple docstring""" return 1 if input_a == input_a else 0 def a_ ( ) -> None: """simple docstring""" assert xnor_gate(0 , 0 ) == 1 assert xnor_gate(0 , 1 ) == 0 assert xnor_gate(1 , 0 ) == 0 assert xnor_gate(1 , 1 ) == 1 if __name__ == "__main__": print(xnor_gate(0, 0)) print(xnor_gate(0, 1)) print(xnor_gate(1, 0)) print(xnor_gate(1, 1))
307
1
__UpperCamelCase : Optional[int] = [ [0, 16, 13, 0, 0, 0], [0, 0, 10, 12, 0, 0], [0, 4, 0, 0, 14, 0], [0, 0, 9, 0, 0, 20], [0, 0, 0, 7, 0, 4], [0, 0, 0, 0, 0, 0], ] def a_ ( _A , _A , _A , _A ) -> Dict: """simple docstring""" # Return True if there is node that has not iterated. snake_case__ = [False] * len(_A ) snake_case__ = [s] snake_case__ = True while queue: snake_case__ = queue.pop(0 ) for ind in range(len(graph[u] ) ): if visited[ind] is False and graph[u][ind] > 0: queue.append(_A ) snake_case__ = True snake_case__ = u return visited[t] def a_ ( _A , _A , _A ) -> Dict: """simple docstring""" snake_case__ = [-1] * (len(_A )) snake_case__ = 0 snake_case__ = [] snake_case__ = [i[:] for i in graph] # Record original cut, copy. while bfs(_A , _A , _A , _A ): snake_case__ = float('Inf' ) snake_case__ = sink while s != source: # Find the minimum value in select path snake_case__ = min(_A , graph[parent[s]][s] ) snake_case__ = parent[s] max_flow += path_flow snake_case__ = sink while v != source: snake_case__ = parent[v] graph[u][v] -= path_flow graph[v][u] += path_flow snake_case__ = parent[v] for i in range(len(_A ) ): for j in range(len(graph[0] ) ): if graph[i][j] == 0 and temp[i][j] > 0: res.append((i, j) ) return res if __name__ == "__main__": print(mincut(test_graph, source=0, sink=5))
307
import numpy as np from cva import COLOR_BGR2GRAY, cvtColor, imread from numpy import array, uinta from PIL import Image from digital_image_processing import change_contrast as cc from digital_image_processing import convert_to_negative as cn from digital_image_processing import sepia as sp from digital_image_processing.dithering import burkes as bs from digital_image_processing.edge_detection import canny from digital_image_processing.filters import convolve as conv from digital_image_processing.filters import gaussian_filter as gg from digital_image_processing.filters import local_binary_pattern as lbp from digital_image_processing.filters import median_filter as med from digital_image_processing.filters import sobel_filter as sob from digital_image_processing.resize import resize as rs __UpperCamelCase : int = imread(R"""digital_image_processing/image_data/lena_small.jpg""") __UpperCamelCase : List[Any] = cvtColor(img, COLOR_BGR2GRAY) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = cn.convert_to_negative(_A ) # assert negative_img array for at least one True assert negative_img.any() def a_ ( ) -> int: """simple docstring""" with Image.open('digital_image_processing/image_data/lena_small.jpg' ) as img: # Work around assertion for response assert str(cc.change_contrast(_A , 110 ) ).startswith( '<PIL.Image.Image image mode=RGB size=100x100 at' ) def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = canny.gen_gaussian_kernel(9 , sigma=1.4 ) # Assert ambiguous array assert resp.all() def a_ ( ) -> Dict: """simple docstring""" snake_case__ = imread('digital_image_processing/image_data/lena_small.jpg' , 0 ) # assert ambiguous array for all == True assert canny_img.all() snake_case__ = canny.canny(_A ) # assert canny array for at least one True assert canny_array.any() def a_ ( ) -> Optional[int]: """simple docstring""" assert gg.gaussian_filter(_A , 5 , sigma=0.9 ).all() def a_ ( ) -> Optional[Any]: """simple docstring""" # laplace diagonals snake_case__ = array([[0.25, 0.5, 0.25], [0.5, -3, 0.5], [0.25, 0.5, 0.25]] ) snake_case__ = conv.img_convolve(_A , _A ).astype(_A ) assert res.any() def a_ ( ) -> Dict: """simple docstring""" assert med.median_filter(_A , 3 ).any() def a_ ( ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = sob.sobel_filter(_A ) assert grad.any() and theta.any() def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = sp.make_sepia(_A , 20 ) assert sepia.all() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" ) -> Optional[int]: """simple docstring""" snake_case__ = bs.Burkes(imread(_A , 1 ) , 120 ) burkes.process() assert burkes.output_img.any() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" , ) -> Optional[Any]: """simple docstring""" snake_case__ = rs.NearestNeighbour(imread(_A , 1 ) , 400 , 200 ) nn.process() assert nn.output.any() def a_ ( ) -> Any: """simple docstring""" snake_case__ = 'digital_image_processing/image_data/lena.jpg' # Reading the image and converting it to grayscale. snake_case__ = imread(_A , 0 ) # Test for get_neighbors_pixel function() return not None snake_case__ = 0 snake_case__ = 0 snake_case__ = image[x_coordinate][y_coordinate] snake_case__ = lbp.get_neighbors_pixel( _A , _A , _A , _A ) assert neighbors_pixels is not None # Test for local_binary_pattern function() # Create a numpy array as the same height and width of read image snake_case__ = np.zeros((image.shape[0], image.shape[1]) ) # Iterating through the image and calculating the local binary pattern value # for each pixel. for i in range(0 , image.shape[0] ): for j in range(0 , image.shape[1] ): snake_case__ = lbp.local_binary_value(_A , _A , _A ) assert lbp_image.any()
307
1
def a_ ( _A = 1000 ) -> int: """simple docstring""" return sum(e for e in range(3 , _A ) if e % 3 == 0 or e % 5 == 0 ) if __name__ == "__main__": print(f'''{solution() = }''')
307
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __UpperCamelCase : Dict = { """configuration_jukebox""": [ """JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP""", """JukeboxConfig""", """JukeboxPriorConfig""", """JukeboxVQVAEConfig""", ], """tokenization_jukebox""": ["""JukeboxTokenizer"""], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Tuple = [ """JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST""", """JukeboxModel""", """JukeboxPreTrainedModel""", """JukeboxVQVAE""", """JukeboxPrior""", ] if TYPE_CHECKING: from .configuration_jukebox import ( JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP, JukeboxConfig, JukeboxPriorConfig, JukeboxVQVAEConfig, ) from .tokenization_jukebox import JukeboxTokenizer try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_jukebox import ( JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST, JukeboxModel, JukeboxPreTrainedModel, JukeboxPrior, JukeboxVQVAE, ) else: import sys __UpperCamelCase : str = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import gc import random import unittest import numpy as np import torch from transformers import ( CLIPImageProcessor, CLIPTextConfig, CLIPTextModelWithProjection, CLIPTokenizer, CLIPVisionConfig, CLIPVisionModelWithProjection, ) from diffusers import ( DiffusionPipeline, UnCLIPImageVariationPipeline, UnCLIPScheduler, UNetaDConditionModel, UNetaDModel, ) from diffusers.pipelines.unclip.text_proj import UnCLIPTextProjModel from diffusers.utils import floats_tensor, load_numpy, slow, torch_device from diffusers.utils.testing_utils import enable_full_determinism, load_image, require_torch_gpu, skip_mps from ..pipeline_params import IMAGE_VARIATION_BATCH_PARAMS, IMAGE_VARIATION_PARAMS from ..test_pipelines_common import PipelineTesterMixin, assert_mean_pixel_difference enable_full_determinism() class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = UnCLIPImageVariationPipeline _UpperCAmelCase = IMAGE_VARIATION_PARAMS - {"height", "width", "guidance_scale"} _UpperCAmelCase = IMAGE_VARIATION_BATCH_PARAMS _UpperCAmelCase = [ "generator", "return_dict", "decoder_num_inference_steps", "super_res_num_inference_steps", ] _UpperCAmelCase = False @property def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return 32 @property def lowerCAmelCase_ ( self: Optional[int] ) -> List[Any]: return 32 @property def lowerCAmelCase_ ( self: Dict ) -> List[str]: return self.time_input_dim @property def lowerCAmelCase_ ( self: List[str] ) -> str: return self.time_input_dim * 4 @property def lowerCAmelCase_ ( self: List[str] ) -> Optional[int]: return 1_00 @property def lowerCAmelCase_ ( self: Tuple ) -> Dict: snake_case__ = CLIPTokenizer.from_pretrained('hf-internal-testing/tiny-random-clip' ) return tokenizer @property def lowerCAmelCase_ ( self: Dict ) -> List[Any]: torch.manual_seed(0 ) snake_case__ = CLIPTextConfig( bos_token_id=0 , eos_token_id=2 , hidden_size=self.text_embedder_hidden_size , projection_dim=self.text_embedder_hidden_size , intermediate_size=37 , layer_norm_eps=1e-05 , num_attention_heads=4 , num_hidden_layers=5 , pad_token_id=1 , vocab_size=10_00 , ) return CLIPTextModelWithProjection(UpperCamelCase ) @property def lowerCAmelCase_ ( self: Optional[Any] ) -> Optional[Any]: torch.manual_seed(0 ) snake_case__ = CLIPVisionConfig( hidden_size=self.text_embedder_hidden_size , projection_dim=self.text_embedder_hidden_size , num_hidden_layers=5 , num_attention_heads=4 , image_size=32 , intermediate_size=37 , patch_size=1 , ) return CLIPVisionModelWithProjection(UpperCamelCase ) @property def lowerCAmelCase_ ( self: Tuple ) -> List[Any]: torch.manual_seed(0 ) snake_case__ = { 'clip_embeddings_dim': self.text_embedder_hidden_size, 'time_embed_dim': self.time_embed_dim, 'cross_attention_dim': self.cross_attention_dim, } snake_case__ = UnCLIPTextProjModel(**UpperCamelCase ) return model @property def lowerCAmelCase_ ( self: Tuple ) -> Union[str, Any]: torch.manual_seed(0 ) snake_case__ = { 'sample_size': 32, # RGB in channels 'in_channels': 3, # Out channels is double in channels because predicts mean and variance 'out_channels': 6, 'down_block_types': ('ResnetDownsampleBlock2D', 'SimpleCrossAttnDownBlock2D'), 'up_block_types': ('SimpleCrossAttnUpBlock2D', 'ResnetUpsampleBlock2D'), 'mid_block_type': 'UNetMidBlock2DSimpleCrossAttn', 'block_out_channels': (self.block_out_channels_a, self.block_out_channels_a * 2), 'layers_per_block': 1, 'cross_attention_dim': self.cross_attention_dim, 'attention_head_dim': 4, 'resnet_time_scale_shift': 'scale_shift', 'class_embed_type': 'identity', } snake_case__ = UNetaDConditionModel(**UpperCamelCase ) return model @property def lowerCAmelCase_ ( self: Dict ) -> Optional[int]: return { "sample_size": 64, "layers_per_block": 1, "down_block_types": ("ResnetDownsampleBlock2D", "ResnetDownsampleBlock2D"), "up_block_types": ("ResnetUpsampleBlock2D", "ResnetUpsampleBlock2D"), "block_out_channels": (self.block_out_channels_a, self.block_out_channels_a * 2), "in_channels": 6, "out_channels": 3, } @property def lowerCAmelCase_ ( self: str ) -> Any: torch.manual_seed(0 ) snake_case__ = UNetaDModel(**self.dummy_super_res_kwargs ) return model @property def lowerCAmelCase_ ( self: Optional[int] ) -> str: # seeded differently to get different unet than `self.dummy_super_res_first` torch.manual_seed(1 ) snake_case__ = UNetaDModel(**self.dummy_super_res_kwargs ) return model def lowerCAmelCase_ ( self: List[str] ) -> Union[str, Any]: snake_case__ = self.dummy_decoder snake_case__ = self.dummy_text_proj snake_case__ = self.dummy_text_encoder snake_case__ = self.dummy_tokenizer snake_case__ = self.dummy_super_res_first snake_case__ = self.dummy_super_res_last snake_case__ = UnCLIPScheduler( variance_type='learned_range' , prediction_type='epsilon' , num_train_timesteps=10_00 , ) snake_case__ = UnCLIPScheduler( variance_type='fixed_small_log' , prediction_type='epsilon' , num_train_timesteps=10_00 , ) snake_case__ = CLIPImageProcessor(crop_size=32 , size=32 ) snake_case__ = self.dummy_image_encoder return { "decoder": decoder, "text_encoder": text_encoder, "tokenizer": tokenizer, "text_proj": text_proj, "feature_extractor": feature_extractor, "image_encoder": image_encoder, "super_res_first": super_res_first, "super_res_last": super_res_last, "decoder_scheduler": decoder_scheduler, "super_res_scheduler": super_res_scheduler, } def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[Any] , UpperCamelCase: Optional[int]=0 , UpperCamelCase: str=True ) -> Any: snake_case__ = floats_tensor((1, 3, 32, 32) , rng=random.Random(UpperCamelCase ) ).to(UpperCamelCase ) if str(UpperCamelCase ).startswith('mps' ): snake_case__ = torch.manual_seed(UpperCamelCase ) else: snake_case__ = torch.Generator(device=UpperCamelCase ).manual_seed(UpperCamelCase ) if pil_image: snake_case__ = input_image * 0.5 + 0.5 snake_case__ = input_image.clamp(0 , 1 ) snake_case__ = input_image.cpu().permute(0 , 2 , 3 , 1 ).float().numpy() snake_case__ = DiffusionPipeline.numpy_to_pil(UpperCamelCase )[0] return { "image": input_image, "generator": generator, "decoder_num_inference_steps": 2, "super_res_num_inference_steps": 2, "output_type": "np", } def lowerCAmelCase_ ( self: str ) -> Dict: snake_case__ = 'cpu' snake_case__ = self.get_dummy_components() snake_case__ = self.pipeline_class(**UpperCamelCase ) snake_case__ = pipe.to(UpperCamelCase ) pipe.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = pipe(**UpperCamelCase ) snake_case__ = output.images snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = pipe( **UpperCamelCase , return_dict=UpperCamelCase , )[0] snake_case__ = image[0, -3:, -3:, -1] snake_case__ = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (1, 64, 64, 3) snake_case__ = np.array( [ 0.9_997, 0.0_002, 0.9_997, 0.9_997, 0.9_969, 0.0_023, 0.9_997, 0.9_969, 0.9_970, ] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 1e-2 def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'cpu' snake_case__ = self.get_dummy_components() snake_case__ = self.pipeline_class(**UpperCamelCase ) snake_case__ = pipe.to(UpperCamelCase ) pipe.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = pipe(**UpperCamelCase ) snake_case__ = output.images snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = pipe( **UpperCamelCase , return_dict=UpperCamelCase , )[0] snake_case__ = image[0, -3:, -3:, -1] snake_case__ = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (1, 64, 64, 3) snake_case__ = np.array([0.9_997, 0.0_003, 0.9_997, 0.9_997, 0.9_970, 0.0_024, 0.9_997, 0.9_971, 0.9_971] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 1e-2 def lowerCAmelCase_ ( self: Union[str, Any] ) -> List[str]: snake_case__ = 'cpu' snake_case__ = self.get_dummy_components() snake_case__ = self.pipeline_class(**UpperCamelCase ) snake_case__ = pipe.to(UpperCamelCase ) pipe.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = [ pipeline_inputs['image'], pipeline_inputs['image'], ] snake_case__ = pipe(**UpperCamelCase ) snake_case__ = output.images snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = [ tuple_pipeline_inputs['image'], tuple_pipeline_inputs['image'], ] snake_case__ = pipe( **UpperCamelCase , return_dict=UpperCamelCase , )[0] snake_case__ = image[0, -3:, -3:, -1] snake_case__ = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (2, 64, 64, 3) snake_case__ = np.array( [ 0.9_997, 0.9_989, 0.0_008, 0.0_021, 0.9_960, 0.0_018, 0.0_014, 0.0_002, 0.9_933, ] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 1e-2 def lowerCAmelCase_ ( self: str ) -> Tuple: snake_case__ = torch.device('cpu' ) class __SCREAMING_SNAKE_CASE: _UpperCAmelCase = 1 snake_case__ = self.get_dummy_components() snake_case__ = self.pipeline_class(**UpperCamelCase ) snake_case__ = pipe.to(UpperCamelCase ) pipe.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = torch.Generator(device=UpperCamelCase ).manual_seed(0 ) snake_case__ = pipe.decoder.dtype snake_case__ = 1 snake_case__ = ( batch_size, pipe.decoder.config.in_channels, pipe.decoder.config.sample_size, pipe.decoder.config.sample_size, ) snake_case__ = pipe.prepare_latents( UpperCamelCase , dtype=UpperCamelCase , device=UpperCamelCase , generator=UpperCamelCase , latents=UpperCamelCase , scheduler=DummyScheduler() ) snake_case__ = ( batch_size, pipe.super_res_first.config.in_channels // 2, pipe.super_res_first.config.sample_size, pipe.super_res_first.config.sample_size, ) snake_case__ = pipe.prepare_latents( UpperCamelCase , dtype=UpperCamelCase , device=UpperCamelCase , generator=UpperCamelCase , latents=UpperCamelCase , scheduler=DummyScheduler() ) snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) snake_case__ = pipe( **UpperCamelCase , decoder_latents=UpperCamelCase , super_res_latents=UpperCamelCase ).images snake_case__ = self.get_dummy_inputs(UpperCamelCase , pil_image=UpperCamelCase ) # Don't pass image, instead pass embedding snake_case__ = pipeline_inputs.pop('image' ) snake_case__ = pipe.image_encoder(UpperCamelCase ).image_embeds snake_case__ = pipe( **UpperCamelCase , decoder_latents=UpperCamelCase , super_res_latents=UpperCamelCase , image_embeddings=UpperCamelCase , ).images # make sure passing text embeddings manually is identical assert np.abs(img_out_a - img_out_a ).max() < 1e-4 @skip_mps def lowerCAmelCase_ ( self: Union[str, Any] ) -> Dict: snake_case__ = torch_device == 'cpu' # Check is relaxed because there is not a torch 2.0 sliced attention added kv processor snake_case__ = 1e-2 self._test_attention_slicing_forward_pass( test_max_difference=UpperCamelCase , expected_max_diff=UpperCamelCase ) @skip_mps def lowerCAmelCase_ ( self: List[Any] ) -> List[str]: snake_case__ = torch_device == 'cpu' snake_case__ = True snake_case__ = [ 'decoder_num_inference_steps', 'super_res_num_inference_steps', ] self._test_inference_batch_single_identical( test_max_difference=UpperCamelCase , relax_max_difference=UpperCamelCase , additional_params_copy_to_batched_inputs=UpperCamelCase , ) def lowerCAmelCase_ ( self: Dict ) -> List[Any]: snake_case__ = [ 'decoder_num_inference_steps', 'super_res_num_inference_steps', ] if torch_device == "mps": # TODO: MPS errors with larger batch sizes snake_case__ = [2, 3] self._test_inference_batch_consistent( batch_sizes=UpperCamelCase , additional_params_copy_to_batched_inputs=UpperCamelCase , ) else: self._test_inference_batch_consistent( additional_params_copy_to_batched_inputs=UpperCamelCase ) @skip_mps def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: return super().test_dict_tuple_outputs_equivalent() @skip_mps def lowerCAmelCase_ ( self: List[str] ) -> Optional[Any]: return super().test_save_load_local() @skip_mps def lowerCAmelCase_ ( self: Any ) -> Dict: return super().test_save_load_optional_components() @slow @require_torch_gpu class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def lowerCAmelCase_ ( self: Dict ) -> int: # clean up the VRAM after each test super().tearDown() gc.collect() torch.cuda.empty_cache() def lowerCAmelCase_ ( self: Optional[int] ) -> Union[str, Any]: snake_case__ = load_image( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/unclip/cat.png' ) snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main' '/unclip/karlo_v1_alpha_cat_variation_fp16.npy' ) snake_case__ = UnCLIPImageVariationPipeline.from_pretrained( 'kakaobrain/karlo-v1-alpha-image-variations' , torch_dtype=torch.floataa ) snake_case__ = pipeline.to(UpperCamelCase ) pipeline.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = pipeline( UpperCamelCase , generator=UpperCamelCase , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (2_56, 2_56, 3) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase , 15 )
307
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, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, logging __UpperCamelCase : Dict = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["pixel_values"] def __init__( self: List[Any] , UpperCamelCase: bool = True , UpperCamelCase: Optional[Dict[str, int]] = None , UpperCamelCase: PILImageResampling = PILImageResampling.BILINEAR , UpperCamelCase: bool = True , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[int, float] = 1 / 2_55 , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , **UpperCamelCase: Optional[int] , ) -> None: super().__init__(**UpperCamelCase ) snake_case__ = size if size is not None else {'shortest_edge': 2_56} snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = crop_size if crop_size is not None else {'height': 2_24, 'width': 2_24} snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_resize snake_case__ = size snake_case__ = resample snake_case__ = do_center_crop snake_case__ = crop_size snake_case__ = do_rescale snake_case__ = rescale_factor snake_case__ = do_normalize snake_case__ = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN snake_case__ = image_std if image_std is not None else IMAGENET_STANDARD_STD def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: PILImageResampling = PILImageResampling.BICUBIC , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) if "shortest_edge" not in size: raise ValueError(F'''The `size` parameter must contain the key `shortest_edge`. Got {size.keys()}''' ) snake_case__ = get_resize_output_image_size(UpperCamelCase , size=size['shortest_edge'] , default_to_square=UpperCamelCase ) return resize(UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: List[Any] , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase ) return center_crop(UpperCamelCase , size=(size['height'], size['width']) , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: np.ndarray , UpperCamelCase: float , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict ) -> np.ndarray: return rescale(UpperCamelCase , scale=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Any , ) -> np.ndarray: return normalize(UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: ImageInput , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: PILImageResampling = None , UpperCamelCase: bool = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[float] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[str, TensorType]] = None , UpperCamelCase: Union[str, ChannelDimension] = ChannelDimension.FIRST , **UpperCamelCase: Any , ) -> Optional[Any]: snake_case__ = do_resize if do_resize is not None else self.do_resize snake_case__ = size if size is not None else self.size snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = resample if resample is not None else self.resample snake_case__ = do_center_crop if do_center_crop is not None else self.do_center_crop snake_case__ = crop_size if crop_size is not None else self.crop_size snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_rescale if do_rescale is not None else self.do_rescale snake_case__ = rescale_factor if rescale_factor is not None else self.rescale_factor snake_case__ = do_normalize if do_normalize is not None else self.do_normalize snake_case__ = image_mean if image_mean is not None else self.image_mean snake_case__ = image_std if image_std is not None else self.image_std snake_case__ = make_list_of_images(UpperCamelCase ) if not valid_images(UpperCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None: raise ValueError('Size must be specified if do_resize is True.' ) if do_center_crop and crop_size is None: raise ValueError('Crop size must be specified if do_center_crop is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # All transformations expect numpy arrays. snake_case__ = [to_numpy_array(UpperCamelCase ) for image in images] if do_resize: snake_case__ = [self.resize(image=UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase ) for image in images] if do_center_crop: snake_case__ = [self.center_crop(image=UpperCamelCase , size=UpperCamelCase ) for image in images] if do_rescale: snake_case__ = [self.rescale(image=UpperCamelCase , scale=UpperCamelCase ) for image in images] if do_normalize: snake_case__ = [self.normalize(image=UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase ) for image in images] snake_case__ = [to_channel_dimension_format(UpperCamelCase , UpperCamelCase ) for image in images] snake_case__ = {'pixel_values': images} return BatchFeature(data=UpperCamelCase , tensor_type=UpperCamelCase )
307
1
import argparse import json from pathlib import Path import requests import timm import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import DeiTImageProcessor, ViTConfig, ViTForImageClassification, ViTImageProcessor, ViTModel from transformers.utils import logging logging.set_verbosity_info() __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) def a_ ( _A , _A=False ) -> Tuple: """simple docstring""" snake_case__ = [] for i in range(config.num_hidden_layers ): # encoder layers: output projection, 2 feedforward neural networks and 2 layernorms rename_keys.append((f'''blocks.{i}.norm1.weight''', f'''vit.encoder.layer.{i}.layernorm_before.weight''') ) rename_keys.append((f'''blocks.{i}.norm1.bias''', f'''vit.encoder.layer.{i}.layernorm_before.bias''') ) rename_keys.append((f'''blocks.{i}.attn.proj.weight''', f'''vit.encoder.layer.{i}.attention.output.dense.weight''') ) rename_keys.append((f'''blocks.{i}.attn.proj.bias''', f'''vit.encoder.layer.{i}.attention.output.dense.bias''') ) rename_keys.append((f'''blocks.{i}.norm2.weight''', f'''vit.encoder.layer.{i}.layernorm_after.weight''') ) rename_keys.append((f'''blocks.{i}.norm2.bias''', f'''vit.encoder.layer.{i}.layernorm_after.bias''') ) rename_keys.append((f'''blocks.{i}.mlp.fc1.weight''', f'''vit.encoder.layer.{i}.intermediate.dense.weight''') ) rename_keys.append((f'''blocks.{i}.mlp.fc1.bias''', f'''vit.encoder.layer.{i}.intermediate.dense.bias''') ) rename_keys.append((f'''blocks.{i}.mlp.fc2.weight''', f'''vit.encoder.layer.{i}.output.dense.weight''') ) rename_keys.append((f'''blocks.{i}.mlp.fc2.bias''', f'''vit.encoder.layer.{i}.output.dense.bias''') ) # projection layer + position embeddings rename_keys.extend( [ ('cls_token', 'vit.embeddings.cls_token'), ('patch_embed.proj.weight', 'vit.embeddings.patch_embeddings.projection.weight'), ('patch_embed.proj.bias', 'vit.embeddings.patch_embeddings.projection.bias'), ('pos_embed', 'vit.embeddings.position_embeddings'), ] ) if base_model: # layernorm + pooler rename_keys.extend( [ ('norm.weight', 'layernorm.weight'), ('norm.bias', 'layernorm.bias'), ('pre_logits.fc.weight', 'pooler.dense.weight'), ('pre_logits.fc.bias', 'pooler.dense.bias'), ] ) # if just the base model, we should remove "vit" from all keys that start with "vit" snake_case__ = [(pair[0], pair[1][4:]) if pair[1].startswith('vit' ) else pair for pair in rename_keys] else: # layernorm + classification head rename_keys.extend( [ ('norm.weight', 'vit.layernorm.weight'), ('norm.bias', 'vit.layernorm.bias'), ('head.weight', 'classifier.weight'), ('head.bias', 'classifier.bias'), ] ) return rename_keys def a_ ( _A , _A , _A=False ) -> int: """simple docstring""" for i in range(config.num_hidden_layers ): if base_model: snake_case__ = '' else: snake_case__ = 'vit.' # read in weights + bias of input projection layer (in timm, this is a single matrix + bias) snake_case__ = state_dict.pop(f'''blocks.{i}.attn.qkv.weight''' ) snake_case__ = state_dict.pop(f'''blocks.{i}.attn.qkv.bias''' ) # next, add query, keys and values (in that order) to the state dict snake_case__ = in_proj_weight[ : config.hidden_size, : ] snake_case__ = in_proj_bias[: config.hidden_size] snake_case__ = in_proj_weight[ config.hidden_size : config.hidden_size * 2, : ] snake_case__ = in_proj_bias[ config.hidden_size : config.hidden_size * 2 ] snake_case__ = in_proj_weight[ -config.hidden_size :, : ] snake_case__ = in_proj_bias[-config.hidden_size :] def a_ ( _A ) -> List[str]: """simple docstring""" snake_case__ = ['head.weight', 'head.bias'] for k in ignore_keys: state_dict.pop(_A , _A ) def a_ ( _A , _A , _A ) -> Tuple: """simple docstring""" snake_case__ = dct.pop(_A ) snake_case__ = val def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = 'http://images.cocodataset.org/val2017/000000039769.jpg' snake_case__ = Image.open(requests.get(_A , stream=_A ).raw ) return im @torch.no_grad() def a_ ( _A , _A ) -> Any: """simple docstring""" snake_case__ = ViTConfig() snake_case__ = False # dataset (ImageNet-21k only or also fine-tuned on ImageNet 2012), patch_size and image_size if vit_name[-5:] == "in21k": snake_case__ = True snake_case__ = int(vit_name[-12:-10] ) snake_case__ = int(vit_name[-9:-6] ) else: snake_case__ = 1000 snake_case__ = 'huggingface/label-files' snake_case__ = 'imagenet-1k-id2label.json' snake_case__ = json.load(open(hf_hub_download(_A , _A , repo_type='dataset' ) , 'r' ) ) snake_case__ = {int(_A ): v for k, v in idalabel.items()} snake_case__ = idalabel snake_case__ = {v: k for k, v in idalabel.items()} snake_case__ = int(vit_name[-6:-4] ) snake_case__ = int(vit_name[-3:] ) # size of the architecture if "deit" in vit_name: if vit_name[9:].startswith('tiny' ): snake_case__ = 192 snake_case__ = 768 snake_case__ = 12 snake_case__ = 3 elif vit_name[9:].startswith('small' ): snake_case__ = 384 snake_case__ = 1536 snake_case__ = 12 snake_case__ = 6 else: pass else: if vit_name[4:].startswith('small' ): snake_case__ = 768 snake_case__ = 2304 snake_case__ = 8 snake_case__ = 8 elif vit_name[4:].startswith('base' ): pass elif vit_name[4:].startswith('large' ): snake_case__ = 1024 snake_case__ = 4096 snake_case__ = 24 snake_case__ = 16 elif vit_name[4:].startswith('huge' ): snake_case__ = 1280 snake_case__ = 5120 snake_case__ = 32 snake_case__ = 16 # load original model from timm snake_case__ = timm.create_model(_A , pretrained=_A ) timm_model.eval() # load state_dict of original model, remove and rename some keys snake_case__ = timm_model.state_dict() if base_model: remove_classification_head_(_A ) snake_case__ = create_rename_keys(_A , _A ) for src, dest in rename_keys: rename_key(_A , _A , _A ) read_in_q_k_v(_A , _A , _A ) # load HuggingFace model if vit_name[-5:] == "in21k": snake_case__ = ViTModel(_A ).eval() else: snake_case__ = ViTForImageClassification(_A ).eval() model.load_state_dict(_A ) # Check outputs on an image, prepared by ViTImageProcessor/DeiTImageProcessor if "deit" in vit_name: snake_case__ = DeiTImageProcessor(size=config.image_size ) else: snake_case__ = ViTImageProcessor(size=config.image_size ) snake_case__ = image_processor(images=prepare_img() , return_tensors='pt' ) snake_case__ = encoding['pixel_values'] snake_case__ = model(_A ) if base_model: snake_case__ = timm_model.forward_features(_A ) assert timm_pooled_output.shape == outputs.pooler_output.shape assert torch.allclose(_A , outputs.pooler_output , atol=1e-3 ) else: snake_case__ = timm_model(_A ) assert timm_logits.shape == outputs.logits.shape assert torch.allclose(_A , outputs.logits , atol=1e-3 ) Path(_A ).mkdir(exist_ok=_A ) print(f'''Saving model {vit_name} to {pytorch_dump_folder_path}''' ) model.save_pretrained(_A ) print(f'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(_A ) if __name__ == "__main__": __UpperCamelCase : List[Any] = argparse.ArgumentParser() # Required parameters parser.add_argument( """--vit_name""", default="""vit_base_patch16_224""", type=str, help="""Name of the ViT timm model you'd like to convert.""", ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model directory.""" ) __UpperCamelCase : Any = parser.parse_args() convert_vit_checkpoint(args.vit_name, args.pytorch_dump_folder_path)
307
import random from typing import Any def a_ ( _A ) -> list[Any]: """simple docstring""" for _ in range(len(_A ) ): snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ , snake_case__ = data[b], data[a] return data if __name__ == "__main__": __UpperCamelCase : Dict = [0, 1, 2, 3, 4, 5, 6, 7] __UpperCamelCase : Any = ["""python""", """says""", """hello""", """!"""] print("""Fisher-Yates Shuffle:""") print("""List""", integers, strings) print("""FY Shuffle""", fisher_yates_shuffle(integers), fisher_yates_shuffle(strings))
307
1
def a_ ( _A , _A ) -> list: """simple docstring""" snake_case__ = word.split() def justify(_A , _A , _A ) -> str: snake_case__ = max_width - width snake_case__ = len(_A ) if len(_A ) == 1: # if there is only word in line # just insert overall_spaces_count for the remainder of line return line[0] + " " * overall_spaces_count else: snake_case__ = words_count - 1 # num_spaces_between_words_list[i] : tells you to insert # num_spaces_between_words_list[i] spaces # after word on line[i] snake_case__ = spaces_to_insert_between_words * [ overall_spaces_count // spaces_to_insert_between_words ] snake_case__ = ( overall_spaces_count % spaces_to_insert_between_words ) # distribute spaces via round robin to the left words for i in range(_A ): num_spaces_between_words_list[i] += 1 snake_case__ = [] for i in range(_A ): # add the word aligned_words_list.append(line[i] ) # add the spaces to insert aligned_words_list.append(num_spaces_between_words_list[i] * ' ' ) # just add the last word to the sentence aligned_words_list.append(line[-1] ) # join the aligned words list to form a justified line return "".join(_A ) snake_case__ = [] snake_case__ = [] snake_case__ = 0 for word in words: if width + len(_A ) + len(_A ) <= max_width: # keep adding words until we can fill out max_width # width = sum of length of all words (without overall_spaces_count) # len(word) = length of current word # len(line) = number of overall_spaces_count to insert between words line.append(_A ) width += len(_A ) else: # justify the line and add it to result answer.append(justify(_A , _A , _A ) ) # reset new line and new width snake_case__ , snake_case__ = [word], len(_A ) snake_case__ = max_width - width - len(_A ) answer.append(' '.join(_A ) + (remaining_spaces + 1) * ' ' ) return answer if __name__ == "__main__": from doctest import testmod testmod()
307
class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE: def __init__( self: List[str] ) -> Union[str, Any]: snake_case__ = [ [], [], [], ] def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: int , UpperCamelCase: int ) -> None: try: if len(self.queues[priority] ) >= 1_00: raise OverflowError('Maximum queue size is 100' ) self.queues[priority].append(UpperCamelCase ) except IndexError: raise ValueError('Valid priorities are 0, 1, and 2' ) def lowerCAmelCase_ ( self: List[Any] ) -> int: for queue in self.queues: if queue: return queue.pop(0 ) raise UnderFlowError('All queues are empty' ) def __str__( self: Union[str, Any] ) -> str: return "\n".join(F'''Priority {i}: {q}''' for i, q in enumerate(self.queues ) ) class __SCREAMING_SNAKE_CASE: def __init__( self: Union[str, Any] ) -> Any: snake_case__ = [] def lowerCAmelCase_ ( self: str , UpperCamelCase: int ) -> None: if len(self.queue ) == 1_00: raise OverFlowError('Maximum queue size is 100' ) self.queue.append(UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> int: if not self.queue: raise UnderFlowError('The queue is empty' ) else: snake_case__ = min(self.queue ) self.queue.remove(UpperCamelCase ) return data def __str__( self: Optional[Any] ) -> str: return str(self.queue ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = FixedPriorityQueue() fpq.enqueue(0 , 10 ) fpq.enqueue(1 , 70 ) fpq.enqueue(0 , 100 ) fpq.enqueue(2 , 1 ) fpq.enqueue(2 , 5 ) fpq.enqueue(1 , 7 ) fpq.enqueue(2 , 4 ) fpq.enqueue(1 , 64 ) fpq.enqueue(0 , 128 ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = ElementPriorityQueue() epq.enqueue(10 ) epq.enqueue(70 ) epq.enqueue(100 ) epq.enqueue(1 ) epq.enqueue(5 ) epq.enqueue(7 ) epq.enqueue(4 ) epq.enqueue(64 ) epq.enqueue(128 ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) if __name__ == "__main__": fixed_priority_queue() element_priority_queue()
307
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available, is_vision_available __UpperCamelCase : Any = { """configuration_conditional_detr""": [ """CONDITIONAL_DETR_PRETRAINED_CONFIG_ARCHIVE_MAP""", """ConditionalDetrConfig""", """ConditionalDetrOnnxConfig""", ] } try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Optional[int] = ["""ConditionalDetrFeatureExtractor"""] __UpperCamelCase : Dict = ["""ConditionalDetrImageProcessor"""] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Any = [ """CONDITIONAL_DETR_PRETRAINED_MODEL_ARCHIVE_LIST""", """ConditionalDetrForObjectDetection""", """ConditionalDetrForSegmentation""", """ConditionalDetrModel""", """ConditionalDetrPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_conditional_detr import ( CONDITIONAL_DETR_PRETRAINED_CONFIG_ARCHIVE_MAP, ConditionalDetrConfig, ConditionalDetrOnnxConfig, ) try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .feature_extraction_conditional_detr import ConditionalDetrFeatureExtractor from .image_processing_conditional_detr import ConditionalDetrImageProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_conditional_detr import ( CONDITIONAL_DETR_PRETRAINED_MODEL_ARCHIVE_LIST, ConditionalDetrForObjectDetection, ConditionalDetrForSegmentation, ConditionalDetrModel, ConditionalDetrPreTrainedModel, ) else: import sys __UpperCamelCase : Tuple = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
import warnings from typing import List, Optional, Union from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding, PaddingStrategy, PreTokenizedInput, TextInput, TruncationStrategy from ...utils import TensorType class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["image_processor", "tokenizer"] _UpperCAmelCase = "LayoutLMv2ImageProcessor" _UpperCAmelCase = ("LayoutXLMTokenizer", "LayoutXLMTokenizerFast") def __init__( self: int , UpperCamelCase: Optional[int]=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Union[str, Any] ) -> int: if "feature_extractor" in kwargs: warnings.warn( 'The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`' ' instead.' , UpperCamelCase , ) snake_case__ = kwargs.pop('feature_extractor' ) snake_case__ = 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__(UpperCamelCase , UpperCamelCase ) def __call__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Union[TextInput, PreTokenizedInput, List[TextInput], List[PreTokenizedInput]] = None , UpperCamelCase: Optional[Union[PreTokenizedInput, List[PreTokenizedInput]]] = None , UpperCamelCase: Union[List[List[int]], List[List[List[int]]]] = None , UpperCamelCase: Optional[Union[List[int], List[List[int]]]] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[bool, str, PaddingStrategy] = False , UpperCamelCase: Union[bool, str, TruncationStrategy] = None , UpperCamelCase: Optional[int] = None , UpperCamelCase: int = 0 , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[str, TensorType]] = None , **UpperCamelCase: Any , ) -> BatchEncoding: # verify input if self.image_processor.apply_ocr and (boxes is not None): raise ValueError( 'You cannot provide bounding boxes ' 'if you initialized the image processor with apply_ocr set to True.' ) if self.image_processor.apply_ocr and (word_labels is not None): raise ValueError( 'You cannot provide word labels if you initialized the image processor with apply_ocr set to True.' ) if return_overflowing_tokens is True and return_offsets_mapping is False: raise ValueError('You cannot return overflowing tokens without returning the offsets mapping.' ) # first, apply the image processor snake_case__ = self.image_processor(images=UpperCamelCase , return_tensors=UpperCamelCase ) # second, apply the tokenizer if text is not None and self.image_processor.apply_ocr and text_pair is None: if isinstance(UpperCamelCase , UpperCamelCase ): snake_case__ = [text] # add batch dimension (as the image processor always adds a batch dimension) snake_case__ = features['words'] snake_case__ = self.tokenizer( text=text if text is not None else features['words'] , text_pair=text_pair if text_pair is not None else None , boxes=boxes if boxes is not None else features['boxes'] , word_labels=UpperCamelCase , add_special_tokens=UpperCamelCase , padding=UpperCamelCase , truncation=UpperCamelCase , max_length=UpperCamelCase , stride=UpperCamelCase , pad_to_multiple_of=UpperCamelCase , return_token_type_ids=UpperCamelCase , return_attention_mask=UpperCamelCase , return_overflowing_tokens=UpperCamelCase , return_special_tokens_mask=UpperCamelCase , return_offsets_mapping=UpperCamelCase , return_length=UpperCamelCase , verbose=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase , ) # add pixel values snake_case__ = features.pop('pixel_values' ) if return_overflowing_tokens is True: snake_case__ = self.get_overflowing_images(UpperCamelCase , encoded_inputs['overflow_to_sample_mapping'] ) snake_case__ = images return encoded_inputs def lowerCAmelCase_ ( self: Any , UpperCamelCase: Optional[int] , UpperCamelCase: Any ) -> Tuple: # in case there's an overflow, ensure each `input_ids` sample is mapped to its corresponding image snake_case__ = [] for sample_idx in overflow_to_sample_mapping: images_with_overflow.append(images[sample_idx] ) if len(UpperCamelCase ) != len(UpperCamelCase ): raise ValueError( 'Expected length of images to be the same as the length of `overflow_to_sample_mapping`, but got' F''' {len(UpperCamelCase )} and {len(UpperCamelCase )}''' ) return images_with_overflow def lowerCAmelCase_ ( self: Dict , *UpperCamelCase: Dict , **UpperCamelCase: Optional[int] ) -> List[Any]: return self.tokenizer.batch_decode(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: int ) -> Optional[Any]: return self.tokenizer.decode(*UpperCamelCase , **UpperCamelCase ) @property def lowerCAmelCase_ ( self: str ) -> List[Any]: return ["input_ids", "bbox", "attention_mask", "image"] @property def lowerCAmelCase_ ( self: Any ) -> List[Any]: warnings.warn( '`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.' , UpperCamelCase , ) return self.image_processor_class @property def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: warnings.warn( '`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.' , UpperCamelCase , ) return self.image_processor
307
1
import torch from torch import nn class __SCREAMING_SNAKE_CASE( nn.Module ): def __init__( self: Optional[int] , UpperCamelCase: int , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Dict , UpperCamelCase: Optional[Any]=1 , UpperCamelCase: Dict=False ) -> Dict: super().__init__() snake_case__ = n_token snake_case__ = d_embed snake_case__ = d_proj snake_case__ = cutoffs + [n_token] snake_case__ = [0] + self.cutoffs snake_case__ = div_val snake_case__ = self.cutoffs[0] snake_case__ = len(self.cutoffs ) - 1 snake_case__ = self.shortlist_size + self.n_clusters if self.n_clusters > 0: snake_case__ = nn.Parameter(torch.zeros(self.n_clusters , self.d_embed ) ) snake_case__ = nn.Parameter(torch.zeros(self.n_clusters ) ) snake_case__ = nn.ModuleList() snake_case__ = nn.ParameterList() if div_val == 1: for i in range(len(self.cutoffs ) ): if d_proj != d_embed: self.out_projs.append(nn.Parameter(torch.FloatTensor(UpperCamelCase , UpperCamelCase ) ) ) else: self.out_projs.append(UpperCamelCase ) self.out_layers.append(nn.Linear(UpperCamelCase , UpperCamelCase ) ) else: for i in range(len(self.cutoffs ) ): snake_case__ , snake_case__ = self.cutoff_ends[i], self.cutoff_ends[i + 1] snake_case__ = d_embed // (div_val**i) self.out_projs.append(nn.Parameter(torch.FloatTensor(UpperCamelCase , UpperCamelCase ) ) ) self.out_layers.append(nn.Linear(UpperCamelCase , r_idx - l_idx ) ) snake_case__ = keep_order def lowerCAmelCase_ ( self: int , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] , UpperCamelCase: Optional[int] , UpperCamelCase: List[str] ) -> Union[str, Any]: if proj is None: snake_case__ = nn.functional.linear(UpperCamelCase , UpperCamelCase , bias=UpperCamelCase ) else: # if CUDA_MAJOR <= 9 and CUDA_MINOR <= 1: snake_case__ = nn.functional.linear(UpperCamelCase , proj.t().contiguous() ) snake_case__ = nn.functional.linear(UpperCamelCase , UpperCamelCase , bias=UpperCamelCase ) # else: # logit = torch.einsum('bd,de,ev->bv', (hidden, proj, weight.t())) # if bias is not None: # logit = logit + bias return logit def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[Any] , UpperCamelCase: str=None , UpperCamelCase: Optional[Any]=False ) -> str: if labels is not None: # Shift so that tokens < n predict n snake_case__ = hidden[..., :-1, :].contiguous() snake_case__ = labels[..., 1:].contiguous() snake_case__ = hidden.view(-1 , hidden.size(-1 ) ) snake_case__ = labels.view(-1 ) if hidden.size(0 ) != labels.size(0 ): raise RuntimeError('Input and labels should have the same size in the batch dimension.' ) else: snake_case__ = hidden.view(-1 , hidden.size(-1 ) ) if self.n_clusters == 0: snake_case__ = self._compute_logit(UpperCamelCase , self.out_layers[0].weight , self.out_layers[0].bias , self.out_projs[0] ) if labels is not None: snake_case__ = labels != -1_00 snake_case__ = torch.zeros_like(UpperCamelCase , dtype=hidden.dtype , device=hidden.device ) snake_case__ = ( -nn.functional.log_softmax(UpperCamelCase , dim=-1 )[mask].gather(1 , labels[mask].unsqueeze(1 ) ).squeeze(1 ) ) else: snake_case__ = nn.functional.log_softmax(UpperCamelCase , dim=-1 ) else: # construct weights and biases snake_case__ , snake_case__ = [], [] for i in range(len(self.cutoffs ) ): if self.div_val == 1: snake_case__ , snake_case__ = self.cutoff_ends[i], self.cutoff_ends[i + 1] snake_case__ = self.out_layers[0].weight[l_idx:r_idx] snake_case__ = self.out_layers[0].bias[l_idx:r_idx] else: snake_case__ = self.out_layers[i].weight snake_case__ = self.out_layers[i].bias if i == 0: snake_case__ = torch.cat([weight_i, self.cluster_weight] , dim=0 ) snake_case__ = torch.cat([bias_i, self.cluster_bias] , dim=0 ) weights.append(UpperCamelCase ) biases.append(UpperCamelCase ) snake_case__ , snake_case__ , snake_case__ = weights[0], biases[0], self.out_projs[0] snake_case__ = self._compute_logit(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = nn.functional.log_softmax(UpperCamelCase , dim=1 ) if labels is None: snake_case__ = hidden.new_empty((head_logit.size(0 ), self.n_token) ) else: snake_case__ = torch.zeros_like(UpperCamelCase , dtype=hidden.dtype , device=hidden.device ) snake_case__ = 0 snake_case__ = [0] + self.cutoffs for i in range(len(UpperCamelCase ) - 1 ): snake_case__ , snake_case__ = cutoff_values[i], cutoff_values[i + 1] if labels is not None: snake_case__ = (labels >= l_idx) & (labels < r_idx) snake_case__ = mask_i.nonzero().squeeze() if indices_i.numel() == 0: continue snake_case__ = labels.index_select(0 , UpperCamelCase ) - l_idx snake_case__ = head_logprob.index_select(0 , UpperCamelCase ) snake_case__ = hidden.index_select(0 , UpperCamelCase ) else: snake_case__ = hidden if i == 0: if labels is not None: snake_case__ = head_logprob_i.gather(1 , target_i[:, None] ).squeeze(1 ) else: snake_case__ = head_logprob[:, : self.cutoffs[0]] else: snake_case__ , snake_case__ , snake_case__ = weights[i], biases[i], self.out_projs[i] snake_case__ = self._compute_logit(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = nn.functional.log_softmax(UpperCamelCase , dim=1 ) snake_case__ = self.cutoffs[0] + i - 1 # No probability for the head cluster if labels is not None: snake_case__ = head_logprob_i[:, cluster_prob_idx] + tail_logprob_i.gather( 1 , target_i[:, None] ).squeeze(1 ) else: snake_case__ = head_logprob[:, cluster_prob_idx, None] + tail_logprob_i snake_case__ = logprob_i if labels is not None: if (hasattr(self , 'keep_order' ) and self.keep_order) or keep_order: out.index_copy_(0 , UpperCamelCase , -logprob_i ) else: out[offset : offset + logprob_i.size(0 )].copy_(-logprob_i ) offset += logprob_i.size(0 ) return out def lowerCAmelCase_ ( self: Dict , UpperCamelCase: Any ) -> Optional[Any]: if self.n_clusters == 0: snake_case__ = self._compute_logit(UpperCamelCase , self.out_layers[0].weight , self.out_layers[0].bias , self.out_projs[0] ) return nn.functional.log_softmax(UpperCamelCase , dim=-1 ) else: # construct weights and biases snake_case__ , snake_case__ = [], [] for i in range(len(self.cutoffs ) ): if self.div_val == 1: snake_case__ , snake_case__ = self.cutoff_ends[i], self.cutoff_ends[i + 1] snake_case__ = self.out_layers[0].weight[l_idx:r_idx] snake_case__ = self.out_layers[0].bias[l_idx:r_idx] else: snake_case__ = self.out_layers[i].weight snake_case__ = self.out_layers[i].bias if i == 0: snake_case__ = torch.cat([weight_i, self.cluster_weight] , dim=0 ) snake_case__ = torch.cat([bias_i, self.cluster_bias] , dim=0 ) weights.append(UpperCamelCase ) biases.append(UpperCamelCase ) snake_case__ , snake_case__ , snake_case__ = weights[0], biases[0], self.out_projs[0] snake_case__ = self._compute_logit(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = hidden.new_empty((head_logit.size(0 ), self.n_token) ) snake_case__ = nn.functional.log_softmax(UpperCamelCase , dim=1 ) snake_case__ = [0] + self.cutoffs for i in range(len(UpperCamelCase ) - 1 ): snake_case__ , snake_case__ = cutoff_values[i], cutoff_values[i + 1] if i == 0: snake_case__ = head_logprob[:, : self.cutoffs[0]] else: snake_case__ , snake_case__ , snake_case__ = weights[i], biases[i], self.out_projs[i] snake_case__ = self._compute_logit(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = nn.functional.log_softmax(UpperCamelCase , dim=1 ) snake_case__ = head_logprob[:, -i] + tail_logprob_i snake_case__ = logprob_i return out
307
def a_ ( _A = 1000 ) -> int: """simple docstring""" return sum(e for e in range(3 , _A ) if e % 3 == 0 or e % 5 == 0 ) if __name__ == "__main__": print(f'''{solution() = }''')
307
1
import argparse import json import torch from diffusers import DDPMScheduler, LDMPipeline, UNetaDModel, VQModel def a_ ( _A , _A=1 ) -> Optional[int]: """simple docstring""" if n_shave_prefix_segments >= 0: return ".".join(path.split('.' )[n_shave_prefix_segments:] ) else: return ".".join(path.split('.' )[:n_shave_prefix_segments] ) def a_ ( _A , _A=0 ) -> Tuple: """simple docstring""" snake_case__ = [] for old_item in old_list: snake_case__ = old_item.replace('in_layers.0' , 'norm1' ) snake_case__ = new_item.replace('in_layers.2' , 'conv1' ) snake_case__ = new_item.replace('out_layers.0' , 'norm2' ) snake_case__ = new_item.replace('out_layers.3' , 'conv2' ) snake_case__ = new_item.replace('emb_layers.1' , 'time_emb_proj' ) snake_case__ = new_item.replace('skip_connection' , 'conv_shortcut' ) snake_case__ = shave_segments(_A , n_shave_prefix_segments=_A ) mapping.append({'old': old_item, 'new': new_item} ) return mapping def a_ ( _A , _A=0 ) -> int: """simple docstring""" snake_case__ = [] for old_item in old_list: snake_case__ = old_item snake_case__ = new_item.replace('norm.weight' , 'group_norm.weight' ) snake_case__ = new_item.replace('norm.bias' , 'group_norm.bias' ) snake_case__ = new_item.replace('proj_out.weight' , 'proj_attn.weight' ) snake_case__ = new_item.replace('proj_out.bias' , 'proj_attn.bias' ) snake_case__ = shave_segments(_A , n_shave_prefix_segments=_A ) mapping.append({'old': old_item, 'new': new_item} ) return mapping def a_ ( _A , _A , _A , _A=None , _A=None , _A=None ) -> Optional[int]: """simple docstring""" assert isinstance(_A , _A ), "Paths should be a list of dicts containing 'old' and 'new' keys." # Splits the attention layers into three variables. if attention_paths_to_split is not None: for path, path_map in attention_paths_to_split.items(): snake_case__ = old_checkpoint[path] snake_case__ = old_tensor.shape[0] // 3 snake_case__ = (-1, channels) if len(old_tensor.shape ) == 3 else (-1) snake_case__ = old_tensor.shape[0] // config['num_head_channels'] // 3 snake_case__ = old_tensor.reshape((num_heads, 3 * channels // num_heads) + old_tensor.shape[1:] ) snake_case__ , snake_case__ , snake_case__ = old_tensor.split(channels // num_heads , dim=1 ) snake_case__ = query.reshape(_A ) snake_case__ = key.reshape(_A ) snake_case__ = value.reshape(_A ) for path in paths: snake_case__ = path['new'] # These have already been assigned if attention_paths_to_split is not None and new_path in attention_paths_to_split: continue # Global renaming happens here snake_case__ = new_path.replace('middle_block.0' , 'mid_block.resnets.0' ) snake_case__ = new_path.replace('middle_block.1' , 'mid_block.attentions.0' ) snake_case__ = new_path.replace('middle_block.2' , 'mid_block.resnets.1' ) if additional_replacements is not None: for replacement in additional_replacements: snake_case__ = new_path.replace(replacement['old'] , replacement['new'] ) # proj_attn.weight has to be converted from conv 1D to linear if "proj_attn.weight" in new_path: snake_case__ = old_checkpoint[path['old']][:, :, 0] else: snake_case__ = old_checkpoint[path['old']] def a_ ( _A , _A ) -> Any: """simple docstring""" snake_case__ = {} snake_case__ = checkpoint['time_embed.0.weight'] snake_case__ = checkpoint['time_embed.0.bias'] snake_case__ = checkpoint['time_embed.2.weight'] snake_case__ = checkpoint['time_embed.2.bias'] snake_case__ = checkpoint['input_blocks.0.0.weight'] snake_case__ = checkpoint['input_blocks.0.0.bias'] snake_case__ = checkpoint['out.0.weight'] snake_case__ = checkpoint['out.0.bias'] snake_case__ = checkpoint['out.2.weight'] snake_case__ = checkpoint['out.2.bias'] # Retrieves the keys for the input blocks only snake_case__ = len({'.'.join(layer.split('.' )[:2] ) for layer in checkpoint if 'input_blocks' in layer} ) snake_case__ = { layer_id: [key for key in checkpoint if f'''input_blocks.{layer_id}''' in key] for layer_id in range(_A ) } # Retrieves the keys for the middle blocks only snake_case__ = len({'.'.join(layer.split('.' )[:2] ) for layer in checkpoint if 'middle_block' in layer} ) snake_case__ = { layer_id: [key for key in checkpoint if f'''middle_block.{layer_id}''' in key] for layer_id in range(_A ) } # Retrieves the keys for the output blocks only snake_case__ = len({'.'.join(layer.split('.' )[:2] ) for layer in checkpoint if 'output_blocks' in layer} ) snake_case__ = { layer_id: [key for key in checkpoint if f'''output_blocks.{layer_id}''' in key] for layer_id in range(_A ) } for i in range(1 , _A ): snake_case__ = (i - 1) // (config['num_res_blocks'] + 1) snake_case__ = (i - 1) % (config['num_res_blocks'] + 1) snake_case__ = [key for key in input_blocks[i] if f'''input_blocks.{i}.0''' in key] snake_case__ = [key for key in input_blocks[i] if f'''input_blocks.{i}.1''' in key] if f'''input_blocks.{i}.0.op.weight''' in checkpoint: snake_case__ = checkpoint[ f'''input_blocks.{i}.0.op.weight''' ] snake_case__ = checkpoint[ f'''input_blocks.{i}.0.op.bias''' ] continue snake_case__ = renew_resnet_paths(_A ) snake_case__ = {'old': f'''input_blocks.{i}.0''', 'new': f'''down_blocks.{block_id}.resnets.{layer_in_block_id}'''} snake_case__ = {'old': 'resnets.2.op', 'new': 'downsamplers.0.op'} assign_to_checkpoint( _A , _A , _A , additional_replacements=[meta_path, resnet_op] , config=_A ) if len(_A ): snake_case__ = renew_attention_paths(_A ) snake_case__ = { 'old': f'''input_blocks.{i}.1''', 'new': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}''', } snake_case__ = { f'''input_blocks.{i}.1.qkv.bias''': { 'key': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}.key.bias''', 'query': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}.query.bias''', 'value': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}.value.bias''', }, f'''input_blocks.{i}.1.qkv.weight''': { 'key': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}.key.weight''', 'query': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}.query.weight''', 'value': f'''down_blocks.{block_id}.attentions.{layer_in_block_id}.value.weight''', }, } assign_to_checkpoint( _A , _A , _A , additional_replacements=[meta_path] , attention_paths_to_split=_A , config=_A , ) snake_case__ = middle_blocks[0] snake_case__ = middle_blocks[1] snake_case__ = middle_blocks[2] snake_case__ = renew_resnet_paths(_A ) assign_to_checkpoint(_A , _A , _A , config=_A ) snake_case__ = renew_resnet_paths(_A ) assign_to_checkpoint(_A , _A , _A , config=_A ) snake_case__ = renew_attention_paths(_A ) snake_case__ = { 'middle_block.1.qkv.bias': { 'key': 'mid_block.attentions.0.key.bias', 'query': 'mid_block.attentions.0.query.bias', 'value': 'mid_block.attentions.0.value.bias', }, 'middle_block.1.qkv.weight': { 'key': 'mid_block.attentions.0.key.weight', 'query': 'mid_block.attentions.0.query.weight', 'value': 'mid_block.attentions.0.value.weight', }, } assign_to_checkpoint( _A , _A , _A , attention_paths_to_split=_A , config=_A ) for i in range(_A ): snake_case__ = i // (config['num_res_blocks'] + 1) snake_case__ = i % (config['num_res_blocks'] + 1) snake_case__ = [shave_segments(_A , 2 ) for name in output_blocks[i]] snake_case__ = {} for layer in output_block_layers: snake_case__ , snake_case__ = layer.split('.' )[0], shave_segments(_A , 1 ) if layer_id in output_block_list: output_block_list[layer_id].append(_A ) else: snake_case__ = [layer_name] if len(_A ) > 1: snake_case__ = [key for key in output_blocks[i] if f'''output_blocks.{i}.0''' in key] snake_case__ = [key for key in output_blocks[i] if f'''output_blocks.{i}.1''' in key] snake_case__ = renew_resnet_paths(_A ) snake_case__ = renew_resnet_paths(_A ) snake_case__ = {'old': f'''output_blocks.{i}.0''', 'new': f'''up_blocks.{block_id}.resnets.{layer_in_block_id}'''} assign_to_checkpoint(_A , _A , _A , additional_replacements=[meta_path] , config=_A ) if ["conv.weight", "conv.bias"] in output_block_list.values(): snake_case__ = list(output_block_list.values() ).index(['conv.weight', 'conv.bias'] ) snake_case__ = checkpoint[ f'''output_blocks.{i}.{index}.conv.weight''' ] snake_case__ = checkpoint[ f'''output_blocks.{i}.{index}.conv.bias''' ] # Clear attentions as they have been attributed above. if len(_A ) == 2: snake_case__ = [] if len(_A ): snake_case__ = renew_attention_paths(_A ) snake_case__ = { 'old': f'''output_blocks.{i}.1''', 'new': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}''', } snake_case__ = { f'''output_blocks.{i}.1.qkv.bias''': { 'key': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}.key.bias''', 'query': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}.query.bias''', 'value': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}.value.bias''', }, f'''output_blocks.{i}.1.qkv.weight''': { 'key': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}.key.weight''', 'query': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}.query.weight''', 'value': f'''up_blocks.{block_id}.attentions.{layer_in_block_id}.value.weight''', }, } assign_to_checkpoint( _A , _A , _A , additional_replacements=[meta_path] , attention_paths_to_split=to_split if any('qkv' in key for key in attentions ) else None , config=_A , ) else: snake_case__ = renew_resnet_paths(_A , n_shave_prefix_segments=1 ) for path in resnet_0_paths: snake_case__ = '.'.join(['output_blocks', str(_A ), path['old']] ) snake_case__ = '.'.join(['up_blocks', str(_A ), 'resnets', str(_A ), path['new']] ) snake_case__ = checkpoint[old_path] return new_checkpoint if __name__ == "__main__": __UpperCamelCase : str = argparse.ArgumentParser() parser.add_argument( """--checkpoint_path""", default=None, type=str, required=True, help="""Path to the checkpoint to convert.""" ) parser.add_argument( """--config_file""", default=None, type=str, required=True, help="""The config json file corresponding to the architecture.""", ) parser.add_argument("""--dump_path""", default=None, type=str, required=True, help="""Path to the output model.""") __UpperCamelCase : Tuple = parser.parse_args() __UpperCamelCase : int = torch.load(args.checkpoint_path) with open(args.config_file) as f: __UpperCamelCase : List[Any] = json.loads(f.read()) __UpperCamelCase : Dict = convert_ldm_checkpoint(checkpoint, config) if "ldm" in config: del config["ldm"] __UpperCamelCase : Dict = UNetaDModel(**config) model.load_state_dict(converted_checkpoint) try: __UpperCamelCase : int = DDPMScheduler.from_config("""/""".join(args.checkpoint_path.split("""/""")[:-1])) __UpperCamelCase : Union[str, Any] = VQModel.from_pretrained("""/""".join(args.checkpoint_path.split("""/""")[:-1])) __UpperCamelCase : Dict = LDMPipeline(unet=model, scheduler=scheduler, vae=vqvae) pipe.save_pretrained(args.dump_path) except: # noqa: E722 model.save_pretrained(args.dump_path)
307
import os def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = os.path.join(os.path.dirname(_A ) , 'num.txt' ) with open(_A ) as file_hand: return str(sum(int(_A ) for line in file_hand ) )[:10] if __name__ == "__main__": print(solution())
307
1
import os import time import warnings from dataclasses import dataclass, field from enum import Enum from typing import List, Optional, Union import torch from filelock import FileLock from torch.utils.data import Dataset from ...tokenization_utils_base import PreTrainedTokenizerBase from ...utils import logging from ..processors.glue import glue_convert_examples_to_features, glue_output_modes, glue_processors from ..processors.utils import InputFeatures __UpperCamelCase : Optional[Any] = logging.get_logger(__name__) @dataclass class __SCREAMING_SNAKE_CASE: _UpperCAmelCase = field(metadata={"help": "The name of the task to train on: " + ", ".join(glue_processors.keys() )} ) _UpperCAmelCase = field( metadata={"help": "The input data dir. Should contain the .tsv files (or other data files) for the task."} ) _UpperCAmelCase = field( default=1_2_8 , metadata={ "help": ( "The maximum total input sequence length after tokenization. Sequences longer " "than this will be truncated, sequences shorter will be padded." ) } , ) _UpperCAmelCase = field( default=a_ , metadata={"help": "Overwrite the cached training and evaluation sets"} ) def lowerCAmelCase_ ( self: Dict ) -> str: snake_case__ = self.task_name.lower() class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "train" _UpperCAmelCase = "dev" _UpperCAmelCase = "test" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = 42 _UpperCAmelCase = 42 _UpperCAmelCase = 42 def __init__( self: List[Any] , UpperCamelCase: GlueDataTrainingArguments , UpperCamelCase: PreTrainedTokenizerBase , UpperCamelCase: Optional[int] = None , UpperCamelCase: Union[str, Split] = Split.train , UpperCamelCase: Optional[str] = None , ) -> str: warnings.warn( 'This dataset will be removed from the library soon, preprocessing should be handled with the 🤗 Datasets ' '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' , UpperCamelCase , ) snake_case__ = args snake_case__ = glue_processors[args.task_name]() snake_case__ = glue_output_modes[args.task_name] if isinstance(UpperCamelCase , UpperCamelCase ): try: snake_case__ = Split[mode] except KeyError: raise KeyError('mode is not a valid split name' ) # Load data features from cache or dataset file snake_case__ = os.path.join( cache_dir if cache_dir is not None else args.data_dir , F'''cached_{mode.value}_{tokenizer.__class__.__name__}_{args.max_seq_length}_{args.task_name}''' , ) snake_case__ = self.processor.get_labels() if args.task_name in ["mnli", "mnli-mm"] and tokenizer.__class__.__name__ in ( "RobertaTokenizer", "RobertaTokenizerFast", "XLMRobertaTokenizer", "BartTokenizer", "BartTokenizerFast", ): # HACK(label indices are swapped in RoBERTa pretrained model) snake_case__ , snake_case__ = label_list[2], label_list[1] snake_case__ = label_list # Make sure only the first process in distributed training processes the dataset, # and the others will use the cache. snake_case__ = cached_features_file + '.lock' with FileLock(UpperCamelCase ): if os.path.exists(UpperCamelCase ) and not args.overwrite_cache: snake_case__ = time.time() snake_case__ = torch.load(UpperCamelCase ) logger.info( F'''Loading features from cached file {cached_features_file} [took %.3f s]''' , time.time() - start ) else: logger.info(F'''Creating features from dataset file at {args.data_dir}''' ) if mode == Split.dev: snake_case__ = self.processor.get_dev_examples(args.data_dir ) elif mode == Split.test: snake_case__ = self.processor.get_test_examples(args.data_dir ) else: snake_case__ = self.processor.get_train_examples(args.data_dir ) if limit_length is not None: snake_case__ = examples[:limit_length] snake_case__ = glue_convert_examples_to_features( UpperCamelCase , UpperCamelCase , max_length=args.max_seq_length , label_list=UpperCamelCase , output_mode=self.output_mode , ) snake_case__ = time.time() torch.save(self.features , UpperCamelCase ) # ^ This seems to take a lot of time so I want to investigate why and how we can improve. logger.info( F'''Saving features into cached file {cached_features_file} [took {time.time() - start:.3f} s]''' ) def __len__( self: List[str] ) -> int: return len(self.features ) def __getitem__( self: Tuple , UpperCamelCase: Optional[int] ) -> InputFeatures: return self.features[i] def lowerCAmelCase_ ( self: int ) -> Union[str, Any]: return self.label_list
307
import os import sys from contextlib import contextmanager # Windows only if os.name == "nt": import ctypes import msvcrt # noqa class __SCREAMING_SNAKE_CASE( ctypes.Structure ): # _fields is a specific attr expected by ctypes _UpperCAmelCase = [("size", ctypes.c_int), ("visible", ctypes.c_byte)] def a_ ( ) -> Any: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = False ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25l' ) sys.stdout.flush() def a_ ( ) -> Tuple: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = True ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25h' ) sys.stdout.flush() @contextmanager def a_ ( ) -> str: """simple docstring""" try: hide_cursor() yield finally: show_cursor()
307
1
import warnings from ...utils import logging from .image_processing_glpn import GLPNImageProcessor __UpperCamelCase : Tuple = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): def __init__( self: Optional[int] , *UpperCamelCase: Optional[int] , **UpperCamelCase: List[str] ) -> None: warnings.warn( 'The class GLPNFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use GLPNImageProcessor instead.' , UpperCamelCase , ) super().__init__(*UpperCamelCase , **UpperCamelCase )
307
import argparse import gc import json import os import shutil import warnings import torch from transformers import LlamaConfig, LlamaForCausalLM, LlamaTokenizer try: from transformers import LlamaTokenizerFast except ImportError as e: warnings.warn(e) warnings.warn( """The converted tokenizer will be the `slow` tokenizer. To use the fast, update your `tokenizers` library and re-run the tokenizer conversion""" ) __UpperCamelCase : Union[str, Any] = None __UpperCamelCase : Any = { """7B""": 11008, """13B""": 13824, """30B""": 17920, """65B""": 22016, """70B""": 28672, } __UpperCamelCase : Optional[Any] = { """7B""": 1, """7Bf""": 1, """13B""": 2, """13Bf""": 2, """30B""": 4, """65B""": 8, """70B""": 8, """70Bf""": 8, } def a_ ( _A , _A=1 , _A=256 ) -> str: """simple docstring""" return multiple_of * ((int(ffn_dim_multiplier * int(8 * n / 3 ) ) + multiple_of - 1) // multiple_of) def a_ ( _A ) -> int: """simple docstring""" with open(_A , 'r' ) as f: return json.load(_A ) def a_ ( _A , _A ) -> int: """simple docstring""" with open(_A , 'w' ) as f: json.dump(_A , _A ) def a_ ( _A , _A , _A , _A=True ) -> List[str]: """simple docstring""" os.makedirs(_A , exist_ok=_A ) snake_case__ = os.path.join(_A , 'tmp' ) os.makedirs(_A , exist_ok=_A ) snake_case__ = read_json(os.path.join(_A , 'params.json' ) ) snake_case__ = NUM_SHARDS[model_size] snake_case__ = params['n_layers'] snake_case__ = params['n_heads'] snake_case__ = n_heads // num_shards snake_case__ = params['dim'] snake_case__ = dim // n_heads snake_case__ = 10000.0 snake_case__ = 1.0 / (base ** (torch.arange(0 , _A , 2 ).float() / dims_per_head)) if "n_kv_heads" in params: snake_case__ = params['n_kv_heads'] # for GQA / MQA snake_case__ = n_heads_per_shard // num_key_value_heads snake_case__ = dim // num_key_value_heads else: # compatibility with other checkpoints snake_case__ = n_heads snake_case__ = n_heads_per_shard snake_case__ = dim # permute for sliced rotary def permute(_A , _A=n_heads , _A=dim , _A=dim ): return w.view(_A , dima // n_heads // 2 , 2 , _A ).transpose(1 , 2 ).reshape(_A , _A ) print(f'''Fetching all parameters from the checkpoint at {input_base_path}.''' ) # Load weights if model_size == "7B": # Not sharded # (The sharded implementation would also work, but this is simpler.) snake_case__ = torch.load(os.path.join(_A , 'consolidated.00.pth' ) , map_location='cpu' ) else: # Sharded snake_case__ = [ torch.load(os.path.join(_A , f'''consolidated.{i:02d}.pth''' ) , map_location='cpu' ) for i in range(_A ) ] snake_case__ = 0 snake_case__ = {'weight_map': {}} for layer_i in range(_A ): snake_case__ = f'''pytorch_model-{layer_i + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { f'''model.layers.{layer_i}.self_attn.q_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wq.weight'''] ), f'''model.layers.{layer_i}.self_attn.k_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wk.weight'''] ), f'''model.layers.{layer_i}.self_attn.v_proj.weight''': loaded[f'''layers.{layer_i}.attention.wv.weight'''], f'''model.layers.{layer_i}.self_attn.o_proj.weight''': loaded[f'''layers.{layer_i}.attention.wo.weight'''], f'''model.layers.{layer_i}.mlp.gate_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w1.weight'''], f'''model.layers.{layer_i}.mlp.down_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w2.weight'''], f'''model.layers.{layer_i}.mlp.up_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w3.weight'''], f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[f'''layers.{layer_i}.attention_norm.weight'''], f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[f'''layers.{layer_i}.ffn_norm.weight'''], } else: # Sharded # Note that attention.w{q,k,v,o}, feed_fordward.w[1,2,3], attention_norm.weight and ffn_norm.weight share # the same storage object, saving attention_norm and ffn_norm will save other weights too, which is # redundant as other weights will be stitched from multiple shards. To avoid that, they are cloned. snake_case__ = { f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.attention_norm.weight''' ].clone(), f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.ffn_norm.weight''' ].clone(), } snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wq.weight'''].view(_A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) ) snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wk.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) , _A , _A , _A , ) snake_case__ = torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wv.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.attention.wo.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w1.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w2.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w3.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = inv_freq for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) snake_case__ = f'''pytorch_model-{n_layers + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { 'model.embed_tokens.weight': loaded['tok_embeddings.weight'], 'model.norm.weight': loaded['norm.weight'], 'lm_head.weight': loaded['output.weight'], } else: snake_case__ = { 'model.norm.weight': loaded[0]['norm.weight'], 'model.embed_tokens.weight': torch.cat( [loaded[i]['tok_embeddings.weight'] for i in range(_A )] , dim=1 ), 'lm_head.weight': torch.cat([loaded[i]['output.weight'] for i in range(_A )] , dim=0 ), } for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) # Write configs snake_case__ = {'total_size': param_count * 2} write_json(_A , os.path.join(_A , 'pytorch_model.bin.index.json' ) ) snake_case__ = params['ffn_dim_multiplier'] if 'ffn_dim_multiplier' in params else 1 snake_case__ = params['multiple_of'] if 'multiple_of' in params else 256 snake_case__ = LlamaConfig( hidden_size=_A , intermediate_size=compute_intermediate_size(_A , _A , _A ) , num_attention_heads=params['n_heads'] , num_hidden_layers=params['n_layers'] , rms_norm_eps=params['norm_eps'] , num_key_value_heads=_A , ) config.save_pretrained(_A ) # Make space so we can load the model properly now. del state_dict del loaded gc.collect() print('Loading the checkpoint in a Llama model.' ) snake_case__ = LlamaForCausalLM.from_pretrained(_A , torch_dtype=torch.floataa , low_cpu_mem_usage=_A ) # Avoid saving this as part of the config. del model.config._name_or_path print('Saving in the Transformers format.' ) model.save_pretrained(_A , safe_serialization=_A ) shutil.rmtree(_A ) def a_ ( _A , _A ) -> Tuple: """simple docstring""" # Initialize the tokenizer based on the `spm` model snake_case__ = LlamaTokenizer if LlamaTokenizerFast is None else LlamaTokenizerFast print(f'''Saving a {tokenizer_class.__name__} to {tokenizer_path}.''' ) snake_case__ = tokenizer_class(_A ) tokenizer.save_pretrained(_A ) def a_ ( ) -> str: """simple docstring""" snake_case__ = argparse.ArgumentParser() parser.add_argument( '--input_dir' , help='Location of LLaMA weights, which contains tokenizer.model and model folders' , ) parser.add_argument( '--model_size' , choices=['7B', '7Bf', '13B', '13Bf', '30B', '65B', '70B', '70Bf', 'tokenizer_only'] , ) parser.add_argument( '--output_dir' , help='Location to write HF model and tokenizer' , ) parser.add_argument('--safe_serialization' , type=_A , help='Whether or not to save using `safetensors`.' ) snake_case__ = parser.parse_args() if args.model_size != "tokenizer_only": write_model( model_path=args.output_dir , input_base_path=os.path.join(args.input_dir , args.model_size ) , model_size=args.model_size , safe_serialization=args.safe_serialization , ) snake_case__ = os.path.join(args.input_dir , 'tokenizer.model' ) write_tokenizer(args.output_dir , _A ) if __name__ == "__main__": main()
307
1
import qiskit def a_ ( _A , _A ) -> qiskit.result.counts.Counts: """simple docstring""" snake_case__ = qiskit.Aer.get_backend('aer_simulator' ) snake_case__ = qiskit.QuantumCircuit(4 , 2 ) # encode inputs in qubits 0 and 1 if bita == 1: qc_ha.x(0 ) if bita == 1: qc_ha.x(1 ) qc_ha.barrier() # use cnots to write XOR of the inputs on qubit2 qc_ha.cx(0 , 2 ) qc_ha.cx(1 , 2 ) # use ccx / toffoli gate to write AND of the inputs on qubit3 qc_ha.ccx(0 , 1 , 3 ) qc_ha.barrier() # extract outputs qc_ha.measure(2 , 0 ) # extract XOR value qc_ha.measure(3 , 1 ) # extract AND value # Execute the circuit on the qasm simulator snake_case__ = qiskit.execute(_A , _A , shots=1000 ) # Return the histogram data of the results of the experiment return job.result().get_counts(_A ) if __name__ == "__main__": __UpperCamelCase : Union[str, Any] = half_adder(1, 1) print(f'''Half Adder Output Qubit Counts: {counts}''')
307
import os import string import sys __UpperCamelCase : List[Any] = 1 << 8 __UpperCamelCase : Union[str, Any] = { """tab""": ord("""\t"""), """newline""": ord("""\r"""), """esc""": 27, """up""": 65 + ARROW_KEY_FLAG, """down""": 66 + ARROW_KEY_FLAG, """right""": 67 + ARROW_KEY_FLAG, """left""": 68 + ARROW_KEY_FLAG, """mod_int""": 91, """undefined""": sys.maxsize, """interrupt""": 3, """insert""": 50, """delete""": 51, """pg_up""": 53, """pg_down""": 54, } __UpperCamelCase : Optional[Any] = KEYMAP["""up"""] __UpperCamelCase : Tuple = KEYMAP["""left"""] if sys.platform == "win32": __UpperCamelCase : List[Any] = [] __UpperCamelCase : int = { b"""\xe0H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\x00H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\xe0P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\x00P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\xe0M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\x00M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\xe0K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, b"""\x00K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, } for i in range(10): __UpperCamelCase : List[str] = ord(str(i)) def a_ ( ) -> Optional[int]: """simple docstring""" if os.name == "nt": import msvcrt snake_case__ = 'mbcs' # Flush the keyboard buffer while msvcrt.kbhit(): msvcrt.getch() if len(_A ) == 0: # Read the keystroke snake_case__ = msvcrt.getch() # If it is a prefix char, get second part if ch in (b"\x00", b"\xe0"): snake_case__ = ch + msvcrt.getch() # Translate actual Win chars to bullet char types try: snake_case__ = chr(WIN_KEYMAP[cha] ) WIN_CH_BUFFER.append(chr(KEYMAP['mod_int'] ) ) WIN_CH_BUFFER.append(_A ) if ord(_A ) in ( KEYMAP["insert"] - 1 << 9, KEYMAP["delete"] - 1 << 9, KEYMAP["pg_up"] - 1 << 9, KEYMAP["pg_down"] - 1 << 9, ): WIN_CH_BUFFER.append(chr(126 ) ) snake_case__ = chr(KEYMAP['esc'] ) except KeyError: snake_case__ = cha[1] else: snake_case__ = ch.decode(_A ) else: snake_case__ = WIN_CH_BUFFER.pop(0 ) elif os.name == "posix": import termios import tty snake_case__ = sys.stdin.fileno() snake_case__ = termios.tcgetattr(_A ) try: tty.setraw(_A ) snake_case__ = sys.stdin.read(1 ) finally: termios.tcsetattr(_A , termios.TCSADRAIN , _A ) return ch def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = get_raw_chars() if ord(_A ) in [KEYMAP["interrupt"], KEYMAP["newline"]]: return char elif ord(_A ) == KEYMAP["esc"]: snake_case__ = get_raw_chars() if ord(_A ) == KEYMAP["mod_int"]: snake_case__ = get_raw_chars() if ord(_A ) >= KEYMAP["arrow_begin"] - ARROW_KEY_FLAG and ord(_A ) <= KEYMAP["arrow_end"] - ARROW_KEY_FLAG: return chr(ord(_A ) + ARROW_KEY_FLAG ) else: return KEYMAP["undefined"] else: return get_raw_chars() else: if char in string.printable: return char else: return KEYMAP["undefined"]
307
1
from arguments import InitializationArguments from transformers import AutoConfig, AutoModelForCausalLM, AutoTokenizer, HfArgumentParser # Configuration __UpperCamelCase : Any = HfArgumentParser(InitializationArguments) __UpperCamelCase : Tuple = parser.parse_args() # Load codeparrot tokenizer trained for Python code tokenization __UpperCamelCase : Union[str, Any] = AutoTokenizer.from_pretrained(args.tokenizer_name) # Config: "scale_attn_by_layer_idx" and "reorder_and_upcast_attn" are Mistral stability tweaks __UpperCamelCase : str = { """vocab_size""": len(tokenizer), """scale_attn_by_inverse_layer_idx""": True, """reorder_and_upcast_attn""": True, } # Load model config (GPT-2 large in this case) __UpperCamelCase : List[Any] = AutoConfig.from_pretrained(args.config_name, **config_kwargs) # Initialize new model with config __UpperCamelCase : str = AutoModelForCausalLM.from_config(config) # Save model to the hub model.save_pretrained(args.model_name, push_to_hub=args.push_to_hub)
307
from ...configuration_utils import PretrainedConfig from ...utils import logging __UpperCamelCase : int = logging.get_logger(__name__) __UpperCamelCase : List[Any] = { """tanreinama/GPTSAN-2.8B-spout_is_uniform""": ( """https://huggingface.co/tanreinama/GPTSAN-2.8B-spout_is_uniform/resolve/main/config.json""" ), } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "gptsan-japanese" _UpperCAmelCase = [ "past_key_values", ] _UpperCAmelCase = { "hidden_size": "d_model", "num_attention_heads": "num_heads", "num_hidden_layers": "num_layers", } def __init__( self: Optional[Any] , UpperCamelCase: List[str]=3_60_00 , UpperCamelCase: List[str]=12_80 , UpperCamelCase: List[Any]=10_24 , UpperCamelCase: Any=81_92 , UpperCamelCase: Dict=40_96 , UpperCamelCase: Optional[int]=1_28 , UpperCamelCase: Any=10 , UpperCamelCase: List[Any]=0 , UpperCamelCase: Dict=16 , UpperCamelCase: Tuple=16 , UpperCamelCase: Union[str, Any]=1_28 , UpperCamelCase: List[Any]=0.0 , UpperCamelCase: Union[str, Any]=1e-5 , UpperCamelCase: int=False , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: Dict="float32" , UpperCamelCase: Any=False , UpperCamelCase: Dict=False , UpperCamelCase: List[str]=False , UpperCamelCase: Union[str, Any]=0.002 , UpperCamelCase: int=False , UpperCamelCase: str=True , UpperCamelCase: Dict=3_59_98 , UpperCamelCase: Optional[Any]=3_59_95 , UpperCamelCase: Optional[Any]=3_59_99 , **UpperCamelCase: Optional[int] , ) -> Optional[int]: snake_case__ = vocab_size snake_case__ = max_position_embeddings snake_case__ = d_model snake_case__ = d_ff snake_case__ = d_ext snake_case__ = d_spout snake_case__ = num_switch_layers snake_case__ = num_ext_layers snake_case__ = num_switch_layers + num_ext_layers snake_case__ = num_heads snake_case__ = num_experts snake_case__ = expert_capacity snake_case__ = dropout_rate snake_case__ = layer_norm_epsilon snake_case__ = router_bias snake_case__ = router_jitter_noise snake_case__ = router_dtype snake_case__ = router_ignore_padding_tokens snake_case__ = output_hidden_states snake_case__ = output_attentions snake_case__ = initializer_factor snake_case__ = output_router_logits snake_case__ = use_cache super().__init__( separator_token_id=UpperCamelCase , pad_token_id=UpperCamelCase , eos_token_id=UpperCamelCase , **UpperCamelCase , )
307
1
__UpperCamelCase : Union[str, Any] = """ABCDEFGHIJKLMNOPQRSTUVWXYZ""" def a_ ( ) -> None: """simple docstring""" snake_case__ = input('Enter message: ' ) snake_case__ = input('Enter key [alphanumeric]: ' ) snake_case__ = input('Encrypt/Decrypt [e/d]: ' ) if mode.lower().startswith('e' ): snake_case__ = 'encrypt' snake_case__ = encrypt_message(_A , _A ) elif mode.lower().startswith('d' ): snake_case__ = 'decrypt' snake_case__ = decrypt_message(_A , _A ) print(f'''\n{mode.title()}ed message:''' ) print(_A ) def a_ ( _A , _A ) -> str: """simple docstring""" return translate_message(_A , _A , 'encrypt' ) def a_ ( _A , _A ) -> str: """simple docstring""" return translate_message(_A , _A , 'decrypt' ) def a_ ( _A , _A , _A ) -> str: """simple docstring""" snake_case__ = [] snake_case__ = 0 snake_case__ = key.upper() for symbol in message: snake_case__ = LETTERS.find(symbol.upper() ) if num != -1: if mode == "encrypt": num += LETTERS.find(key[key_index] ) elif mode == "decrypt": num -= LETTERS.find(key[key_index] ) num %= len(_A ) if symbol.isupper(): translated.append(LETTERS[num] ) elif symbol.islower(): translated.append(LETTERS[num].lower() ) key_index += 1 if key_index == len(_A ): snake_case__ = 0 else: translated.append(_A ) return "".join(_A ) if __name__ == "__main__": main()
307
from math import sqrt import numpy as np from sympy import symbols # Coefficient # Speed of light (m/s) __UpperCamelCase : int = 299792458 # Symbols __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Optional[int] = symbols("""ct x y z""") def a_ ( _A ) -> float: """simple docstring""" if velocity > c: raise ValueError('Speed must not exceed light speed 299,792,458 [m/s]!' ) elif velocity < 1: # Usually the speed should be much higher than 1 (c order of magnitude) raise ValueError('Speed must be greater than or equal to 1!' ) return velocity / c def a_ ( _A ) -> float: """simple docstring""" return 1 / sqrt(1 - beta(_A ) ** 2 ) def a_ ( _A ) -> np.ndarray: """simple docstring""" return np.array( [ [gamma(_A ), -gamma(_A ) * beta(_A ), 0, 0], [-gamma(_A ) * beta(_A ), gamma(_A ), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], ] ) def a_ ( _A , _A = None ) -> np.ndarray: """simple docstring""" # Ensure event is not empty if event is None: snake_case__ = np.array([ct, x, y, z] ) # Symbolic four vector else: event[0] *= c # x0 is ct (speed of light * time) return transformation_matrix(_A ) @ event if __name__ == "__main__": import doctest doctest.testmod() # Example of symbolic vector: __UpperCamelCase : List[Any] = transform(29979245) print("""Example of four vector: """) print(f'''ct\' = {four_vector[0]}''') print(f'''x\' = {four_vector[1]}''') print(f'''y\' = {four_vector[2]}''') print(f'''z\' = {four_vector[3]}''') # Substitute symbols with numerical values __UpperCamelCase : List[Any] = {ct: c, x: 1, y: 1, z: 1} __UpperCamelCase : Tuple = [four_vector[i].subs(sub_dict) for i in range(4)] print(f'''\n{numerical_vector}''')
307
1
import os def a_ ( ) -> Tuple: """simple docstring""" with open(os.path.dirname(_A ) + '/grid.txt' ) as f: snake_case__ = [] # noqa: E741 for _ in range(20 ): l.append([int(_A ) for x in f.readline().split()] ) snake_case__ = 0 # right for i in range(20 ): for j in range(17 ): snake_case__ = l[i][j] * l[i][j + 1] * l[i][j + 2] * l[i][j + 3] if temp > maximum: snake_case__ = temp # down for i in range(17 ): for j in range(20 ): snake_case__ = l[i][j] * l[i + 1][j] * l[i + 2][j] * l[i + 3][j] if temp > maximum: snake_case__ = temp # diagonal 1 for i in range(17 ): for j in range(17 ): snake_case__ = l[i][j] * l[i + 1][j + 1] * l[i + 2][j + 2] * l[i + 3][j + 3] if temp > maximum: snake_case__ = temp # diagonal 2 for i in range(17 ): for j in range(3 , 20 ): snake_case__ = l[i][j] * l[i + 1][j - 1] * l[i + 2][j - 2] * l[i + 3][j - 3] if temp > maximum: snake_case__ = temp return maximum if __name__ == "__main__": print(solution())
307
from typing import TYPE_CHECKING from ...utils import _LazyModule __UpperCamelCase : Any = {"""tokenization_byt5""": ["""ByT5Tokenizer"""]} if TYPE_CHECKING: from .tokenization_byta import ByTaTokenizer else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
from __future__ import annotations from collections.abc import Iterator from typing import Any class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: Any ) -> int: snake_case__ = data snake_case__ = None class __SCREAMING_SNAKE_CASE: def __init__( self: Union[str, Any] ) -> int: snake_case__ = None snake_case__ = None def __iter__( self: List[Any] ) -> Iterator[Any]: snake_case__ = self.head while self.head: yield node.data snake_case__ = node.next if node == self.head: break def __len__( self: Optional[int] ) -> int: return sum(1 for _ in self ) def __repr__( self: Tuple ) -> Dict: return "->".join(str(UpperCamelCase ) for item in iter(self ) ) def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> None: self.insert_nth(len(self ) , UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any ) -> None: self.insert_nth(0 , UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: int , UpperCamelCase: Any ) -> None: if index < 0 or index > len(self ): raise IndexError('list index out of range.' ) snake_case__ = Node(UpperCamelCase ) if self.head is None: snake_case__ = new_node # first node points itself snake_case__ = snake_case__ = new_node elif index == 0: # insert at head snake_case__ = self.head snake_case__ = snake_case__ = new_node else: snake_case__ = self.head for _ in range(index - 1 ): snake_case__ = temp.next snake_case__ = temp.next snake_case__ = new_node if index == len(self ) - 1: # insert at tail snake_case__ = new_node def lowerCAmelCase_ ( self: str ) -> Any: return self.delete_nth(0 ) def lowerCAmelCase_ ( self: Dict ) -> Any: return self.delete_nth(len(self ) - 1 ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: int = 0 ) -> Any: if not 0 <= index < len(self ): raise IndexError('list index out of range.' ) snake_case__ = self.head if self.head == self.tail: # just one node snake_case__ = snake_case__ = None elif index == 0: # delete head node snake_case__ = self.tail.next.next snake_case__ = self.head.next else: snake_case__ = self.head for _ in range(index - 1 ): snake_case__ = temp.next snake_case__ = temp.next snake_case__ = temp.next.next if index == len(self ) - 1: # delete at tail snake_case__ = temp return delete_node.data def lowerCAmelCase_ ( self: Optional[Any] ) -> bool: return len(self ) == 0 def a_ ( ) -> None: """simple docstring""" snake_case__ = CircularLinkedList() assert len(_A ) == 0 assert circular_linked_list.is_empty() is True assert str(_A ) == "" try: circular_linked_list.delete_front() raise AssertionError # This should not happen except IndexError: assert True # This should happen try: circular_linked_list.delete_tail() raise AssertionError # This should not happen except IndexError: assert True # This should happen try: circular_linked_list.delete_nth(-1 ) raise AssertionError except IndexError: assert True try: circular_linked_list.delete_nth(0 ) raise AssertionError except IndexError: assert True assert circular_linked_list.is_empty() is True for i in range(5 ): assert len(_A ) == i circular_linked_list.insert_nth(_A , i + 1 ) assert str(_A ) == "->".join(str(_A ) for i in range(1 , 6 ) ) circular_linked_list.insert_tail(6 ) assert str(_A ) == "->".join(str(_A ) for i in range(1 , 7 ) ) circular_linked_list.insert_head(0 ) assert str(_A ) == "->".join(str(_A ) for i in range(0 , 7 ) ) assert circular_linked_list.delete_front() == 0 assert circular_linked_list.delete_tail() == 6 assert str(_A ) == "->".join(str(_A ) for i in range(1 , 6 ) ) assert circular_linked_list.delete_nth(2 ) == 3 circular_linked_list.insert_nth(2 , 3 ) assert str(_A ) == "->".join(str(_A ) for i in range(1 , 6 ) ) assert circular_linked_list.is_empty() is False if __name__ == "__main__": import doctest doctest.testmod()
307
import os import re import warnings from shutil import copyfile from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer if TYPE_CHECKING: from ...tokenization_utils_base import TextInput from ...utils import logging __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) __UpperCamelCase : int = {"""vocab_file""": """spiece.model"""} __UpperCamelCase : Any = { """vocab_file""": { """t5-small""": """https://huggingface.co/t5-small/resolve/main/spiece.model""", """t5-base""": """https://huggingface.co/t5-base/resolve/main/spiece.model""", """t5-large""": """https://huggingface.co/t5-large/resolve/main/spiece.model""", """t5-3b""": """https://huggingface.co/t5-3b/resolve/main/spiece.model""", """t5-11b""": """https://huggingface.co/t5-11b/resolve/main/spiece.model""", } } # TODO(PVP) - this should be removed in Transformers v5 __UpperCamelCase : Tuple = { """t5-small""": 512, """t5-base""": 512, """t5-large""": 512, """t5-3b""": 512, """t5-11b""": 512, } __UpperCamelCase : Optional[Any] = """▁""" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any]="</s>" , UpperCamelCase: Tuple="<unk>" , UpperCamelCase: Optional[int]="<pad>" , UpperCamelCase: List[str]=1_00 , UpperCamelCase: Dict=None , UpperCamelCase: Optional[Dict[str, Any]] = None , UpperCamelCase: Tuple=True , **UpperCamelCase: Dict , ) -> None: # Add extra_ids to the special token list if extra_ids > 0 and additional_special_tokens is None: snake_case__ = [F'''<extra_id_{i}>''' for i in range(UpperCamelCase )] elif extra_ids > 0 and additional_special_tokens is not None: # Check that we have the right number of extra_id special tokens snake_case__ = len(set(filter(lambda UpperCamelCase : bool('extra_id' in str(UpperCamelCase ) ) , UpperCamelCase ) ) ) if extra_tokens != extra_ids: raise ValueError( F'''Both extra_ids ({extra_ids}) and additional_special_tokens ({additional_special_tokens}) are''' ' provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids' ' tokens' ) if legacy: logger.warning_once( F'''You are using the legacy behaviour of the {self.__class__}. This means that tokens that come after special tokens will not be properly handled. We recommend you to''' ' read the related pull request available at https://github.com/huggingface/transformers/pull/24565' ) snake_case__ = legacy snake_case__ = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( eos_token=UpperCamelCase , unk_token=UpperCamelCase , pad_token=UpperCamelCase , extra_ids=UpperCamelCase , additional_special_tokens=UpperCamelCase , sp_model_kwargs=self.sp_model_kwargs , legacy=UpperCamelCase , **UpperCamelCase , ) snake_case__ = vocab_file snake_case__ = extra_ids snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] ) -> Any: if pretrained_model_name_or_path in TaTokenizer.max_model_input_sizes: snake_case__ = TaTokenizer.max_model_input_sizes[pretrained_model_name_or_path] if init_max_model_length is not None and init_max_model_length != max_model_length: return init_max_model_length elif init_max_model_length is None: warnings.warn( 'This tokenizer was incorrectly instantiated with a model max length of' F''' {deprecated_max_model_length} which will be corrected in Transformers v5.\nFor now, this''' ' behavior is kept to avoid breaking backwards compatibility when padding/encoding with' ' `truncation is True`.\n- Be aware that you SHOULD NOT rely on' F''' {pretrained_model_name_or_path} automatically truncating your input to''' F''' {deprecated_max_model_length} when padding/encoding.\n- If you want to encode/pad to sequences''' F''' longer than {deprecated_max_model_length} you can either instantiate this tokenizer with''' ' `model_max_length` or pass `max_length` when encoding/padding.\n- To avoid this warning, please' ' instantiate this tokenizer with `model_max_length` set to your preferred value.' , UpperCamelCase , ) return max_model_length @property def lowerCAmelCase_ ( self: Tuple ) -> List[str]: return self.sp_model.get_piece_size() + self._extra_ids def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = {self.convert_ids_to_tokens(UpperCamelCase ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None , UpperCamelCase: bool = False ) -> List[int]: if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase , token_ids_a=UpperCamelCase , already_has_special_tokens=UpperCamelCase ) # normal case: some special tokens if token_ids_a is None: return ([0] * len(UpperCamelCase )) + [1] return ([0] * len(UpperCamelCase )) + [1] + ([0] * len(UpperCamelCase )) + [1] def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: return list( set(filter(lambda UpperCamelCase : bool(re.search(R'<extra_id_\d+>' , UpperCamelCase ) ) is not None , self.additional_special_tokens ) ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return [self._convert_token_to_id(UpperCamelCase ) for token in self.get_sentinel_tokens()] def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[int] ) -> List[int]: if len(UpperCamelCase ) > 0 and token_ids[-1] == self.eos_token_id: warnings.warn( F'''This sequence already has {self.eos_token}. In future versions this behavior may lead to duplicated''' ' eos tokens being added.' ) return token_ids else: return token_ids + [self.eos_token_id] def lowerCAmelCase_ ( self: str , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.eos_token_id] if token_ids_a is None: return len(token_ids_a + eos ) * [0] return len(token_ids_a + eos + token_ids_a + eos ) * [0] def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) if token_ids_a is None: return token_ids_a else: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) return token_ids_a + token_ids_a def __getstate__( self: Union[str, Any] ) -> List[str]: snake_case__ = self.__dict__.copy() snake_case__ = None return state def __setstate__( self: Optional[int] , UpperCamelCase: int ) -> List[str]: snake_case__ = d # for backward compatibility if not hasattr(self , 'sp_model_kwargs' ): snake_case__ = {} snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(self.vocab_file ) def lowerCAmelCase_ ( self: str , UpperCamelCase: "TextInput" , **UpperCamelCase: Dict ) -> List[str]: # Replace the SPIECE_UNDERLINE with a space to make sure SPIECE_UNDERLINE is only used at # the beginning of the text if not self.legacy: snake_case__ = SPIECE_UNDERLINE + text.replace(UpperCamelCase , ' ' ) return super().tokenize(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , **UpperCamelCase: str ) -> str: if not self.legacy: snake_case__ = text.startswith(UpperCamelCase ) if is_first: snake_case__ = text[1:] snake_case__ = self.sp_model.encode(UpperCamelCase , out_type=UpperCamelCase ) if not self.legacy and not is_first and not text.startswith(' ' ) and tokens[0].startswith(UpperCamelCase ): snake_case__ = ([tokens[0][1:]] if len(tokens[0] ) > 1 else []) + tokens[1:] return tokens def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[int] ) -> Dict: if token.startswith('<extra_id_' ): snake_case__ = re.match(R'<extra_id_(\d+)>' , UpperCamelCase ) snake_case__ = int(match.group(1 ) ) return self.vocab_size - num - 1 return self.sp_model.piece_to_id(UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: str ) -> Tuple: if index < self.sp_model.get_piece_size(): snake_case__ = self.sp_model.IdToPiece(UpperCamelCase ) else: snake_case__ = F'''<extra_id_{self.vocab_size - 1 - index}>''' return token def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> Dict: snake_case__ = [] snake_case__ = '' snake_case__ = False for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: if not prev_is_special: out_string += " " out_string += self.sp_model.decode(UpperCamelCase ) + token snake_case__ = True snake_case__ = [] else: current_sub_tokens.append(UpperCamelCase ) snake_case__ = False out_string += self.sp_model.decode(UpperCamelCase ) return out_string.strip() def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: if not os.path.isdir(UpperCamelCase ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase , 'wb' ) as fi: snake_case__ = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase ) return (out_vocab_file,)
307
1
import unittest from transformers import BigBirdTokenizer, BigBirdTokenizerFast from transformers.testing_utils import get_tests_dir, require_sentencepiece, require_tokenizers, require_torch, slow from transformers.utils import cached_property from ...test_tokenization_common import TokenizerTesterMixin __UpperCamelCase : Optional[Any] = """▁""" __UpperCamelCase : List[str] = get_tests_dir("""fixtures/test_sentencepiece.model""") @require_sentencepiece @require_tokenizers class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = BigBirdTokenizer _UpperCAmelCase = BigBirdTokenizerFast _UpperCAmelCase = True _UpperCAmelCase = True def lowerCAmelCase_ ( self: Union[str, Any] ) -> Union[str, Any]: super().setUp() snake_case__ = self.tokenizer_class(UpperCamelCase , keep_accents=UpperCamelCase ) tokenizer.save_pretrained(self.tmpdirname ) def lowerCAmelCase_ ( self: int ) -> Any: snake_case__ = '<s>' snake_case__ = 1 self.assertEqual(self.get_tokenizer()._convert_token_to_id(UpperCamelCase ) , UpperCamelCase ) self.assertEqual(self.get_tokenizer()._convert_id_to_token(UpperCamelCase ) , UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> Tuple: snake_case__ = list(self.get_tokenizer().get_vocab().keys() ) self.assertEqual(vocab_keys[0] , '<unk>' ) self.assertEqual(vocab_keys[1] , '<s>' ) self.assertEqual(vocab_keys[-1] , '[MASK]' ) self.assertEqual(len(UpperCamelCase ) , 10_04 ) def lowerCAmelCase_ ( self: Optional[Any] ) -> List[str]: self.assertEqual(self.get_tokenizer().vocab_size , 10_00 ) def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: if not self.test_rust_tokenizer: return snake_case__ = self.get_tokenizer() snake_case__ = self.get_rust_tokenizer() snake_case__ = 'I was born in 92000, and this is falsé.' snake_case__ = tokenizer.tokenize(UpperCamelCase ) snake_case__ = rust_tokenizer.tokenize(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) snake_case__ = tokenizer.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) snake_case__ = rust_tokenizer.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) snake_case__ = self.get_rust_tokenizer() snake_case__ = tokenizer.encode(UpperCamelCase ) snake_case__ = rust_tokenizer.encode(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] ) -> Any: snake_case__ = BigBirdTokenizer(UpperCamelCase , keep_accents=UpperCamelCase ) snake_case__ = tokenizer.tokenize('This is a test' ) self.assertListEqual(UpperCamelCase , ['▁This', '▁is', '▁a', '▁t', 'est'] ) self.assertListEqual( tokenizer.convert_tokens_to_ids(UpperCamelCase ) , [2_85, 46, 10, 1_70, 3_82] , ) snake_case__ = tokenizer.tokenize('I was born in 92000, and this is falsé.' ) self.assertListEqual( UpperCamelCase , [ SPIECE_UNDERLINE + 'I', SPIECE_UNDERLINE + 'was', SPIECE_UNDERLINE + 'b', 'or', 'n', SPIECE_UNDERLINE + 'in', SPIECE_UNDERLINE + '', '9', '2', '0', '0', '0', ',', SPIECE_UNDERLINE + 'and', SPIECE_UNDERLINE + 'this', SPIECE_UNDERLINE + 'is', SPIECE_UNDERLINE + 'f', 'al', 's', 'é', '.', ] , ) snake_case__ = tokenizer.convert_tokens_to_ids(UpperCamelCase ) self.assertListEqual( UpperCamelCase , [8, 21, 84, 55, 24, 19, 7, 0, 6_02, 3_47, 3_47, 3_47, 3, 12, 66, 46, 72, 80, 6, 0, 4] , ) snake_case__ = tokenizer.convert_ids_to_tokens(UpperCamelCase ) self.assertListEqual( UpperCamelCase , [ SPIECE_UNDERLINE + 'I', SPIECE_UNDERLINE + 'was', SPIECE_UNDERLINE + 'b', 'or', 'n', SPIECE_UNDERLINE + 'in', SPIECE_UNDERLINE + '', '<unk>', '2', '0', '0', '0', ',', SPIECE_UNDERLINE + 'and', SPIECE_UNDERLINE + 'this', SPIECE_UNDERLINE + 'is', SPIECE_UNDERLINE + 'f', 'al', 's', '<unk>', '.', ] , ) @cached_property def lowerCAmelCase_ ( self: List[str] ) -> Any: return BigBirdTokenizer.from_pretrained('google/bigbird-roberta-base' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = 'Hello World!' snake_case__ = [65, 1_85_36, 22_60, 1_01, 66] self.assertListEqual(UpperCamelCase , self.big_tokenizer.encode(UpperCamelCase ) ) @slow def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ = ( 'This is a very long text with a lot of weird characters, such as: . , ~ ? ( ) " [ ] ! : - . Also we will' ' add words that should not exsist and be tokenized to <unk>, such as saoneuhaoesuth' ) # fmt: off snake_case__ = [65, 8_71, 4_19, 3_58, 9_46, 9_91, 25_21, 4_52, 3_58, 13_57, 3_87, 77_51, 35_36, 1_12, 9_85, 4_56, 1_26, 8_65, 9_38, 54_00, 57_34, 4_58, 13_68, 4_67, 7_86, 24_62, 52_46, 11_59, 6_33, 8_65, 45_19, 4_57, 5_82, 8_52, 25_57, 4_27, 9_16, 5_08, 4_05, 3_43_24, 4_97, 3_91, 4_08, 1_13_42, 12_44, 3_85, 1_00, 9_38, 9_85, 4_56, 5_74, 3_62, 1_25_97, 32_00, 31_29, 11_72, 66] # noqa: E231 # fmt: on self.assertListEqual(UpperCamelCase , self.big_tokenizer.encode(UpperCamelCase ) ) @require_torch @slow def lowerCAmelCase_ ( self: List[str] ) -> Dict: import torch from transformers import BigBirdConfig, BigBirdModel # Build sequence snake_case__ = list(self.big_tokenizer.get_vocab().keys() )[:10] snake_case__ = ' '.join(UpperCamelCase ) snake_case__ = self.big_tokenizer.encode_plus(UpperCamelCase , return_tensors='pt' , return_token_type_ids=UpperCamelCase ) snake_case__ = self.big_tokenizer.batch_encode_plus( [sequence + ' ' + sequence] , return_tensors='pt' , return_token_type_ids=UpperCamelCase ) snake_case__ = BigBirdConfig(attention_type='original_full' ) snake_case__ = BigBirdModel(UpperCamelCase ) assert model.get_input_embeddings().weight.shape[0] >= self.big_tokenizer.vocab_size with torch.no_grad(): model(**UpperCamelCase ) model(**UpperCamelCase ) @slow def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: snake_case__ = BigBirdTokenizer.from_pretrained('google/bigbird-roberta-base' ) snake_case__ = tokenizer.decode(tokenizer('Paris is the [MASK].' ).input_ids ) self.assertTrue(decoded_text == '[CLS] Paris is the[MASK].[SEP]' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Union[str, Any]: # fmt: off snake_case__ = {'input_ids': [[65, 3_92_86, 4_58, 3_63_35, 20_01, 4_56, 1_30_73, 1_32_66, 4_55, 1_13, 77_46, 17_41, 1_11_57, 3_91, 1_30_73, 1_32_66, 4_55, 1_13, 39_67, 3_54_12, 1_13, 49_36, 1_09, 38_70, 23_77, 1_13, 3_00_84, 4_57_20, 4_58, 1_34, 1_74_96, 1_12, 5_03, 1_16_72, 1_13, 1_18, 1_12, 56_65, 1_33_47, 3_86_87, 1_12, 14_96, 3_13_89, 1_12, 32_68, 4_72_64, 1_34, 9_62, 1_12, 1_63_77, 80_35, 2_31_30, 4_30, 1_21_69, 1_55_18, 2_85_92, 4_58, 1_46, 4_16_97, 1_09, 3_91, 1_21_69, 1_55_18, 1_66_89, 4_58, 1_46, 4_13_58, 1_09, 4_52, 7_26, 40_34, 1_11, 7_63, 3_54_12, 50_82, 3_88, 19_03, 1_11, 90_51, 3_91, 28_70, 4_89_18, 19_00, 11_23, 5_50, 9_98, 1_12, 95_86, 1_59_85, 4_55, 3_91, 4_10, 2_29_55, 3_76_36, 1_14, 66], [65, 4_48, 1_74_96, 4_19, 36_63, 3_85, 7_63, 1_13, 2_75_33, 28_70, 32_83, 1_30_43, 16_39, 2_47_13, 5_23, 6_56, 2_40_13, 1_85_50, 25_21, 5_17, 2_70_14, 2_12_44, 4_20, 12_12, 14_65, 3_91, 9_27, 48_33, 3_88, 5_78, 1_17_86, 1_14, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [65, 4_84, 21_69, 76_87, 2_19_32, 1_81_46, 7_26, 3_63, 1_70_32, 33_91, 1_14, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], 'attention_mask': [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]} # noqa: E501 # fmt: on self.tokenizer_integration_test_util( expected_encoding=UpperCamelCase , model_name='google/bigbird-roberta-base' , revision='215c99f1600e06f83acce68422f2035b2b5c3510' , )
307
import unittest from parameterized import parameterized from transformers import LlamaConfig, is_torch_available, set_seed from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import LlamaForCausalLM, LlamaForSequenceClassification, LlamaModel, LlamaTokenizer class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: List[str] , UpperCamelCase: str=13 , UpperCamelCase: int=7 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , UpperCamelCase: Dict=False , UpperCamelCase: Optional[int]=True , UpperCamelCase: Dict=99 , UpperCamelCase: Dict=32 , UpperCamelCase: Optional[Any]=5 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: List[str]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Union[str, Any]=5_12 , UpperCamelCase: str=16 , UpperCamelCase: int=2 , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Dict=4 , UpperCamelCase: List[str]=None , ) -> List[str]: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_input_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_labels snake_case__ = num_choices snake_case__ = scope def lowerCAmelCase_ ( self: List[str] ) -> Dict: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_input_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = None snake_case__ = None snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case__ = ids_tensor([self.batch_size] , self.num_choices ) snake_case__ = self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: return LlamaConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: Dict , UpperCamelCase: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: str ) -> Dict: snake_case__ = LlamaModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[Any] , ) -> str: snake_case__ = True snake_case__ = LlamaModel(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , ) snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Any , UpperCamelCase: int , UpperCamelCase: Optional[Any] , ) -> Any: snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: List[str] , ) -> Union[str, Any]: snake_case__ = True snake_case__ = True snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() # first forward pass snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , use_cache=UpperCamelCase , ) snake_case__ = outputs.past_key_values # create hypothetical multiple next token and extent to next_input_ids snake_case__ = ids_tensor((self.batch_size, 3) , config.vocab_size ) snake_case__ = ids_tensor((self.batch_size, 3) , vocab_size=2 ) # append to next input_ids and snake_case__ = torch.cat([input_ids, next_tokens] , dim=-1 ) snake_case__ = torch.cat([input_mask, next_mask] , dim=-1 ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , past_key_values=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] # select random slice snake_case__ = ids_tensor((1,) , output_from_past.shape[-1] ).item() snake_case__ = output_from_no_past[:, -3:, random_slice_idx].detach() snake_case__ = output_from_past[:, :, random_slice_idx].detach() self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1] ) # test that outputs are equal for slice self.parent.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: int ) -> Dict: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'input_ids': input_ids, 'attention_mask': input_mask} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , a_ , unittest.TestCase ): _UpperCAmelCase = (LlamaModel, LlamaForCausalLM, LlamaForSequenceClassification) if is_torch_available() else () _UpperCAmelCase = (LlamaForCausalLM,) if is_torch_available() else () _UpperCAmelCase = ( { "feature-extraction": LlamaModel, "text-classification": LlamaForSequenceClassification, "text-generation": LlamaForCausalLM, "zero-shot": LlamaForSequenceClassification, } if is_torch_available() else {} ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = LlamaModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: self.config_tester.run_common_tests() def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> str: snake_case__ = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: snake_case__ = type self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'single_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: Dict ) -> int: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'multi_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor( [self.model_tester.batch_size, config.num_labels] , self.model_tester.type_sequence_label_size ).to(torch.float ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) @unittest.skip('LLaMA buffers include complex numbers, which breaks this test' ) def lowerCAmelCase_ ( self: Dict ) -> Any: pass @parameterized.expand([('linear',), ('dynamic',)] ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> List[str]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = ids_tensor([1, 10] , config.vocab_size ) snake_case__ = ids_tensor([1, int(config.max_position_embeddings * 1.5 )] , config.vocab_size ) set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = LlamaModel(UpperCamelCase ) original_model.to(UpperCamelCase ) original_model.eval() snake_case__ = original_model(UpperCamelCase ).last_hidden_state snake_case__ = original_model(UpperCamelCase ).last_hidden_state set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = {'type': scaling_type, 'factor': 10.0} snake_case__ = LlamaModel(UpperCamelCase ) scaled_model.to(UpperCamelCase ) scaled_model.eval() snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state # Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original # maximum sequence length, so the outputs for the short input should match. if scaling_type == "dynamic": self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) else: self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) # The output should be different for long inputs self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) @require_torch class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> str: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor([input_ids] ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-6.6_550, -4.1_227, -4.9_859, -3.2_406, 0.8_262, -3.0_033, 1.2_964, -3.3_699]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-12.8_281, -7.4_453, -0.4_639, -8.0_625, -7.2_500, -8.0_000, -6.4_883, -7.7_695, -7.8_438, -7.0_312, -6.2_188, -7.1_328, -1.8_496, 1.9_961, -8.6_250, -6.7_227, -12.8_281, -6.9_492, -7.0_742, -7.7_852, -7.5_820, -7.9_062, -6.9_375, -7.9_805, -8.3_438, -8.1_562, -8.0_469, -7.6_250, -7.7_422, -7.3_398,] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-2.0_622, -1.2_794, -1.1_638, -0.9_788, -1.4_603, -1.0_238, -1.7_893, -1.4_411]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-8.1_406, -8.0_547, 2.7_461, -1.2_344, -0.1_448, -1.8_262, -1.0_020, -1.8_154, -1.6_895, -1.8_516, -2.3_574, -0.9_277, 3.7_598, 6.5_742, -1.2_998, -0.1_177, -8.1_406, -2.9_688, -2.9_199, -3.1_699, -3.5_254, -2.3_555, -2.7_988, -3.4_141, -2.8_262, -4.5_195, -3.3_379, -3.3_164, -2.7_832, -3.0_273] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-chat-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-0.8_562, -1.8_520, -0.7_551, -0.4_162, -1.5_161, -1.2_038, -2.4_823, -2.3_254]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-2.2_227, 4.8_828, 0.9_023, -0.4_578, -0.7_871, -0.1_033, -0.6_221, -0.5_786, -0.7_803, -1.0_674, -1.2_920, -0.1_570, 0.8_008, 2.0_723, -0.9_497, 0.2_771, -2.2_227, -0.7_612, -1.4_346, -1.2_061, -1.6_426, -0.3_000, -0.7_139, -1.1_934, -1.8_691, -1.6_973, -1.5_947, -1.2_705, -0.3_523, -0.5_513] ) # fmt: on torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) @unittest.skip( 'Logits are not exactly the same, once we fix the instabalities somehow, will update! Also it is gonna be a `too_slow` test' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-70b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) snake_case__ = torch.tensor( [[-4.2_327, -3.3_360, -4.6_665, -4.7_631, -1.8_180, -3.4_170, -1.4_211, -3.1_810]] , dtype=torch.floataa ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # fmt: off snake_case__ = torch.tensor([-9.4_922, -3.9_551, 1.7_998, -5.6_758, -5.1_055, -5.8_984, -4.8_320, -6.8_086, -6.5_391, -5.6_172, -5.5_820, -5.5_352, 1.7_881, 3.6_289, -6.5_117, -3.4_785, -9.5_000, -6.0_352, -6.8_125, -6.0_195, -6.6_836, -5.4_727, -6.2_812, -6.0_391, -7.3_398, -7.4_297, -7.4_844, -6.5_820, -5.8_789, -5.5_312] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Model is curently gated' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'Simply put, the theory of relativity states that 1) the laws of physics are the same everywhere in the universe and 2) the passage of time and the length of objects can vary depending on the observer\'s frame of reference.\n\nThe first part of the theory, that the laws of physics are the same everywhere, is known as the "princi' snake_case__ = 'Simply put, the theory of relativity states that ' snake_case__ = LlamaTokenizer.from_pretrained('meta-llama/Llama-2-13b-chat-hf' ) snake_case__ = tokenizer.encode(UpperCamelCase , return_tensors='pt' ) snake_case__ = LlamaForCausalLM.from_pretrained( 'meta-llama/Llama-2-13b-chat-hf' , device_map='sequential' , use_safetensors=UpperCamelCase ) # greedy generation outputs snake_case__ = model.generate(UpperCamelCase , max_new_tokens=64 , top_p=UpperCamelCase , temperature=1 , do_sample=UpperCamelCase ) snake_case__ = tokenizer.decode(generated_ids[0] , skip_special_tokens=UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase )
307
1
import argparse import json import subprocess def a_ ( _A , _A ) -> Optional[int]: """simple docstring""" snake_case__ = [] snake_case__ = ( f'''curl -H "Accept: application/vnd.github+json" -H "Authorization: Bearer {token}"''' ' https://api.github.com/repos/huggingface/transformers/actions/runners' ) snake_case__ = subprocess.run(_A , shell=_A , stdout=subprocess.PIPE ) snake_case__ = output.stdout.decode('utf-8' ) snake_case__ = json.loads(_A ) snake_case__ = status['runners'] for runner in runners: if runner["name"] in target_runners: if runner["status"] == "offline": offline_runners.append(_A ) # save the result so we can report them on Slack with open('offline_runners.txt' , 'w' ) as fp: fp.write(json.dumps(_A ) ) if len(_A ) > 0: snake_case__ = '\n'.join([x['name'] for x in offline_runners] ) raise ValueError(f'''The following runners are offline:\n{failed}''' ) if __name__ == "__main__": def a_ ( _A ) -> str: """simple docstring""" return values.split(',' ) __UpperCamelCase : Optional[Any] = argparse.ArgumentParser() # Required parameters parser.add_argument( """--target_runners""", default=None, type=list_str, required=True, help="""Comma-separated list of runners to check status.""", ) parser.add_argument( """--token""", default=None, type=str, required=True, help="""A token that has actions:read permission.""" ) __UpperCamelCase : Dict = parser.parse_args() get_runner_status(args.target_runners, args.token)
307
from math import isclose, sqrt def a_ ( _A , _A , _A ) -> tuple[float, float, float]: """simple docstring""" snake_case__ = point_y / 4 / point_x snake_case__ = 2 * normal_gradient / (1 + normal_gradient * normal_gradient) snake_case__ = (1 - normal_gradient * normal_gradient) / ( 1 + normal_gradient * normal_gradient ) snake_case__ = (sa - ca * incoming_gradient) / (ca + sa * incoming_gradient) # to find the next point, solve the simultaeneous equations: # y^2 + 4x^2 = 100 # y - b = m * (x - a) # ==> A x^2 + B x + C = 0 snake_case__ = outgoing_gradient**2 + 4 snake_case__ = 2 * outgoing_gradient * (point_y - outgoing_gradient * point_x) snake_case__ = (point_y - outgoing_gradient * point_x) ** 2 - 100 snake_case__ = ( -linear_term - sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) snake_case__ = ( -linear_term + sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) # two solutions, one of which is our input point snake_case__ = x_minus if isclose(_A , _A ) else x_plus snake_case__ = point_y + outgoing_gradient * (next_x - point_x) return next_x, next_y, outgoing_gradient def a_ ( _A = 1.4 , _A = -9.6 ) -> int: """simple docstring""" snake_case__ = 0 snake_case__ = first_x_coord snake_case__ = first_y_coord snake_case__ = (10.1 - point_y) / (0.0 - point_x) while not (-0.01 <= point_x <= 0.01 and point_y > 0): snake_case__ , snake_case__ , snake_case__ = next_point(_A , _A , _A ) num_reflections += 1 return num_reflections if __name__ == "__main__": print(f'''{solution() = }''')
307
1
import unittest from transformers import GPTSwaTokenizer from transformers.testing_utils import get_tests_dir, require_sentencepiece, require_tokenizers, slow from ...test_tokenization_common import TokenizerTesterMixin __UpperCamelCase : str = get_tests_dir("""fixtures/test_sentencepiece_with_bytefallback.model""") @require_sentencepiece @require_tokenizers class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = GPTSwaTokenizer _UpperCAmelCase = False _UpperCAmelCase = True _UpperCAmelCase = False def lowerCAmelCase_ ( self: List[Any] ) -> Any: super().setUp() # We have a SentencePiece fixture for testing snake_case__ = GPTSwaTokenizer(UpperCamelCase , eos_token='<unk>' , bos_token='<unk>' , pad_token='<unk>' ) tokenizer.save_pretrained(self.tmpdirname ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> Any: snake_case__ = 'This is a test' snake_case__ = 'This is a test' return input_text, output_text def lowerCAmelCase_ ( self: Optional[int] ) -> Tuple: snake_case__ = '<s>' snake_case__ = 1 self.assertEqual(self.get_tokenizer()._convert_token_to_id(UpperCamelCase ) , UpperCamelCase ) self.assertEqual(self.get_tokenizer()._convert_id_to_token(UpperCamelCase ) , UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> List[str]: snake_case__ = list(self.get_tokenizer().get_vocab().keys() ) self.assertEqual(vocab_keys[0] , '<unk>' ) self.assertEqual(vocab_keys[1] , '<s>' ) self.assertEqual(vocab_keys[-1] , 'j' ) self.assertEqual(len(UpperCamelCase ) , 20_00 ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> int: self.assertEqual(self.get_tokenizer().vocab_size , 20_00 ) def lowerCAmelCase_ ( self: Any ) -> Optional[int]: snake_case__ = GPTSwaTokenizer(UpperCamelCase ) snake_case__ = tokenizer.tokenize('This is a test' ) self.assertListEqual(UpperCamelCase , ['▁This', '▁is', '▁a', '▁t', 'est'] ) self.assertListEqual(tokenizer.convert_tokens_to_ids(UpperCamelCase ) , [4_65, 2_87, 2_65, 6_31, 8_42] ) snake_case__ = tokenizer.tokenize('I was born in 92000, and this is falsé.' ) # fmt: off self.assertListEqual( UpperCamelCase , ['▁I', '▁was', '▁bor', 'n', '▁in', '▁', '<0x39>', '2', '0', '0', '0', ',', '▁and', '▁this', '▁is', '▁f', 'al', 's', '<0xC3>', '<0xA9>', '.'] , ) # fmt: on snake_case__ = tokenizer.convert_tokens_to_ids(UpperCamelCase ) self.assertListEqual( UpperCamelCase , [2_62, 2_72, 15_25, 2_86, 2_71, 2_68, 60, 9_16, 6_33, 6_33, 6_33, 2_59, 2_66, 3_01, 2_87, 3_84, 3_67, 2_63, 1_98, 1_72, 2_60] , ) snake_case__ = tokenizer.convert_ids_to_tokens(UpperCamelCase ) # fmt: off self.assertListEqual( UpperCamelCase , ['▁I', '▁was', '▁bor', 'n', '▁in', '▁', '<0x39>', '2', '0', '0', '0', ',', '▁and', '▁this', '▁is', '▁f', 'al', 's', '<0xC3>', '<0xA9>', '.'] ) # fmt: on def lowerCAmelCase_ ( self: List[str] ) -> str: snake_case__ = GPTSwaTokenizer(UpperCamelCase ) snake_case__ = ['This is a test', 'I was born in 92000, and this is falsé.'] snake_case__ = [ [4_65, 2_87, 2_65, 6_31, 8_42], [2_62, 2_72, 15_25, 2_86, 2_71, 2_68, 60, 9_16, 6_33, 6_33, 6_33, 2_59, 2_66, 3_01, 2_87, 3_84, 3_67, 2_63, 1_98, 1_72, 2_60], ] # Test that encode_fast returns the same as tokenize + convert_tokens_to_ids for text, expected_ids in zip(UpperCamelCase , UpperCamelCase ): self.assertListEqual(tokenizer.encode_fast(UpperCamelCase ) , UpperCamelCase ) # Test that decode_fast returns the input text for text, token_ids in zip(UpperCamelCase , UpperCamelCase ): self.assertEqual(tokenizer.decode_fast(UpperCamelCase ) , UpperCamelCase ) @slow def lowerCAmelCase_ ( self: Any ) -> Optional[Any]: snake_case__ = [ '<|python|>def fibonacci(n)\n if n < 0:\n print(\'Incorrect input\')', 'Hey there, how are you doing this fine day?', 'This is a text with a trailing spaces followed by a dot .', 'Häj sväjs lillebrör! =)', 'Det är inget fel på Mr. Cool', ] # fmt: off snake_case__ = {'input_ids': [[6_34_23, 5, 68_11, 1_49_54, 2_82, 8_16, 38_21, 6_34_66, 6_34_25, 6_34_62, 18, 6_39_78, 6_78, 3_01, 13_20, 6_34_23, 6_34_55, 6_34_58, 18, 6_39_82, 42_46, 39_40, 19_01, 4_77_89, 55_47, 1_89_94], [1_96_30, 11_00, 6_34_46, 13_42, 6_33, 5_44, 44_88, 5_93, 51_02, 24_16, 6_34_95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [16_52, 4_28, 2_68, 19_36, 5_15, 2_68, 5_85_93, 2_24_13, 91_06, 5_46, 2_68, 3_32_13, 6_39_79, 6_98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5_51_30, 6_34_50, 9_24, 6_34_49, 22_49, 40_62, 15_58, 3_18, 6_35_04, 2_14_98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [5_09, 3_77, 28_27, 25_59, 3_32, 65_75, 6_34_43, 2_68_01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], 'token_type_ids': [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], 'attention_mask': [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]} # fmt: on self.tokenizer_integration_test_util( expected_encoding=UpperCamelCase , model_name='AI-Sweden/gpt-sw3-126m' , sequences=UpperCamelCase , )
307
# Lint as: python3 import sys from collections.abc import Mapping from typing import TYPE_CHECKING import numpy as np import pyarrow as pa from .. import config from ..utils.py_utils import map_nested from .formatting import TensorFormatter if TYPE_CHECKING: import torch class __SCREAMING_SNAKE_CASE( TensorFormatter[Mapping, "torch.Tensor", Mapping] ): def __init__( self: Any , UpperCamelCase: Optional[int]=None , **UpperCamelCase: Union[str, Any] ) -> int: super().__init__(features=UpperCamelCase ) snake_case__ = torch_tensor_kwargs import torch # noqa import torch at initialization def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any ) -> List[str]: import torch if isinstance(UpperCamelCase , UpperCamelCase ) and column: if all( isinstance(UpperCamelCase , torch.Tensor ) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column ): return torch.stack(UpperCamelCase ) return column def lowerCAmelCase_ ( self: str , UpperCamelCase: Dict ) -> Union[str, Any]: import torch if isinstance(UpperCamelCase , (str, bytes, type(UpperCamelCase )) ): return value elif isinstance(UpperCamelCase , (np.character, np.ndarray) ) and np.issubdtype(value.dtype , np.character ): return value.tolist() snake_case__ = {} if isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.integer ): snake_case__ = {'dtype': torch.intaa} elif isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.floating ): snake_case__ = {'dtype': torch.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = np.asarray(UpperCamelCase ) return torch.tensor(UpperCamelCase , **{**default_dtype, **self.torch_tensor_kwargs} ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: str ) -> Any: import torch # support for torch, tf, jax etc. if hasattr(UpperCamelCase , '__array__' ) and not isinstance(UpperCamelCase , torch.Tensor ): snake_case__ = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(UpperCamelCase , np.ndarray ): if data_struct.dtype == object: # torch tensors cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) elif isinstance(UpperCamelCase , (list, tuple) ): return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) return self._tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: dict ) -> List[str]: return map_nested(self._recursive_tensorize , UpperCamelCase , map_list=UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_row(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_row(UpperCamelCase ) return self.recursive_tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: pa.Table ) -> "torch.Tensor": snake_case__ = self.numpy_arrow_extractor().extract_column(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_column(UpperCamelCase , pa_table.column_names[0] ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) snake_case__ = self._consolidate(UpperCamelCase ) return column def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_batch(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_batch(UpperCamelCase ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) for column_name in batch: snake_case__ = self._consolidate(batch[column_name] ) return batch
307
1
from math import pi def a_ ( _A , _A ) -> float: """simple docstring""" return 2 * pi * radius * (angle / 360) if __name__ == "__main__": print(arc_length(90, 10))
307
import doctest from collections import deque import numpy as np class __SCREAMING_SNAKE_CASE: def __init__( self: Dict ) -> None: snake_case__ = [2, 1, 2, -1] snake_case__ = [1, 2, 3, 4] def lowerCAmelCase_ ( self: List[str] ) -> list[float]: snake_case__ = len(self.first_signal ) snake_case__ = len(self.second_signal ) snake_case__ = max(UpperCamelCase , UpperCamelCase ) # create a zero matrix of max_length x max_length snake_case__ = [[0] * max_length for i in range(UpperCamelCase )] # fills the smaller signal with zeros to make both signals of same length if length_first_signal < length_second_signal: self.first_signal += [0] * (max_length - length_first_signal) elif length_first_signal > length_second_signal: self.second_signal += [0] * (max_length - length_second_signal) for i in range(UpperCamelCase ): snake_case__ = deque(self.second_signal ) rotated_signal.rotate(UpperCamelCase ) for j, item in enumerate(UpperCamelCase ): matrix[i][j] += item # multiply the matrix with the first signal snake_case__ = np.matmul(np.transpose(UpperCamelCase ) , np.transpose(self.first_signal ) ) # rounding-off to two decimal places return [round(UpperCamelCase , 2 ) for i in final_signal] if __name__ == "__main__": doctest.testmod()
307
1
import random def a_ ( _A , _A ) -> tuple: """simple docstring""" snake_case__ , snake_case__ , snake_case__ = [], [], [] for element in data: if element < pivot: less.append(_A ) elif element > pivot: greater.append(_A ) else: equal.append(_A ) return less, equal, greater def a_ ( _A , _A ) -> Optional[int]: """simple docstring""" # index = len(items) // 2 when trying to find the median # (value of index when items is sorted) # invalid input if index >= len(_A ) or index < 0: return None snake_case__ = items[random.randint(0 , len(_A ) - 1 )] snake_case__ = 0 snake_case__ , snake_case__ , snake_case__ = _partition(_A , _A ) snake_case__ = len(_A ) snake_case__ = len(_A ) # index is the pivot if m <= index < m + count: return pivot # must be in smaller elif m > index: return quick_select(_A , _A ) # must be in larger else: return quick_select(_A , index - (m + count) )
307
import math from collections import defaultdict from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import KarrasDiffusionSchedulers, SchedulerMixin, SchedulerOutput def a_ ( _A , _A=0.999 , _A="cosine" , ) -> Optional[int]: """simple docstring""" if alpha_transform_type == "cosine": def alpha_bar_fn(_A ): return math.cos((t + 0.008) / 1.008 * math.pi / 2 ) ** 2 elif alpha_transform_type == "exp": def alpha_bar_fn(_A ): return math.exp(t * -12.0 ) else: raise ValueError(f'''Unsupported alpha_tranform_type: {alpha_transform_type}''' ) snake_case__ = [] for i in range(_A ): snake_case__ = i / num_diffusion_timesteps snake_case__ = (i + 1) / num_diffusion_timesteps betas.append(min(1 - alpha_bar_fn(_A ) / alpha_bar_fn(_A ) , _A ) ) return torch.tensor(_A , dtype=torch.floataa ) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [e.name for e in KarrasDiffusionSchedulers] _UpperCAmelCase = 2 @register_to_config def __init__( self: Dict , UpperCamelCase: int = 10_00 , UpperCamelCase: float = 0.00_085 , UpperCamelCase: float = 0.012 , UpperCamelCase: str = "linear" , UpperCamelCase: Optional[Union[np.ndarray, List[float]]] = None , UpperCamelCase: str = "epsilon" , UpperCamelCase: Optional[bool] = False , UpperCamelCase: Optional[bool] = False , UpperCamelCase: float = 1.0 , UpperCamelCase: str = "linspace" , UpperCamelCase: int = 0 , ) -> str: if trained_betas is not None: snake_case__ = torch.tensor(UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "linear": snake_case__ = torch.linspace(UpperCamelCase , UpperCamelCase , UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "scaled_linear": # this schedule is very specific to the latent diffusion model. snake_case__ = ( torch.linspace(beta_start**0.5 , beta_end**0.5 , UpperCamelCase , dtype=torch.floataa ) ** 2 ) elif beta_schedule == "squaredcos_cap_v2": # Glide cosine schedule snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='cosine' ) elif beta_schedule == "exp": snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='exp' ) else: raise NotImplementedError(F'''{beta_schedule} does is not implemented for {self.__class__}''' ) snake_case__ = 1.0 - self.betas snake_case__ = torch.cumprod(self.alphas , dim=0 ) # set all values self.set_timesteps(UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = use_karras_sigmas def lowerCAmelCase_ ( self: str , UpperCamelCase: int , UpperCamelCase: Optional[int]=None ) -> str: if schedule_timesteps is None: snake_case__ = self.timesteps snake_case__ = (schedule_timesteps == timestep).nonzero() # The sigma index that is taken for the **very** first `step` # is always the second index (or the last index if there is only 1) # This way we can ensure we don't accidentally skip a sigma in # case we start in the middle of the denoising schedule (e.g. for image-to-image) if len(self._index_counter ) == 0: snake_case__ = 1 if len(UpperCamelCase ) > 1 else 0 else: snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep snake_case__ = self._index_counter[timestep_int] return indices[pos].item() @property def lowerCAmelCase_ ( self: Optional[Any] ) -> List[Any]: # standard deviation of the initial noise distribution if self.config.timestep_spacing in ["linspace", "trailing"]: return self.sigmas.max() return (self.sigmas.max() ** 2 + 1) ** 0.5 def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Union[float, torch.FloatTensor] , ) -> torch.FloatTensor: snake_case__ = self.index_for_timestep(UpperCamelCase ) snake_case__ = self.sigmas[step_index] snake_case__ = sample / ((sigma**2 + 1) ** 0.5) return sample def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int , UpperCamelCase: Union[str, torch.device] = None , UpperCamelCase: Optional[int] = None , ) -> str: snake_case__ = num_inference_steps snake_case__ = num_train_timesteps or self.config.num_train_timesteps # "linspace", "leading", "trailing" corresponds to annotation of Table 2. of https://arxiv.org/abs/2305.08891 if self.config.timestep_spacing == "linspace": snake_case__ = np.linspace(0 , num_train_timesteps - 1 , UpperCamelCase , dtype=UpperCamelCase )[::-1].copy() elif self.config.timestep_spacing == "leading": snake_case__ = num_train_timesteps // self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(0 , UpperCamelCase ) * step_ratio).round()[::-1].copy().astype(UpperCamelCase ) timesteps += self.config.steps_offset elif self.config.timestep_spacing == "trailing": snake_case__ = num_train_timesteps / self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(UpperCamelCase , 0 , -step_ratio )).round().copy().astype(UpperCamelCase ) timesteps -= 1 else: raise ValueError( F'''{self.config.timestep_spacing} is not supported. Please make sure to choose one of \'linspace\', \'leading\' or \'trailing\'.''' ) snake_case__ = np.array(((1 - self.alphas_cumprod) / self.alphas_cumprod) ** 0.5 ) snake_case__ = np.log(UpperCamelCase ) snake_case__ = np.interp(UpperCamelCase , np.arange(0 , len(UpperCamelCase ) ) , UpperCamelCase ) if self.config.use_karras_sigmas: snake_case__ = self._convert_to_karras(in_sigmas=UpperCamelCase , num_inference_steps=self.num_inference_steps ) snake_case__ = np.array([self._sigma_to_t(UpperCamelCase , UpperCamelCase ) for sigma in sigmas] ) snake_case__ = np.concatenate([sigmas, [0.0]] ).astype(np.floataa ) snake_case__ = torch.from_numpy(UpperCamelCase ).to(device=UpperCamelCase ) snake_case__ = torch.cat([sigmas[:1], sigmas[1:-1].repeat_interleave(2 ), sigmas[-1:]] ) snake_case__ = torch.from_numpy(UpperCamelCase ) snake_case__ = torch.cat([timesteps[:1], timesteps[1:].repeat_interleave(2 )] ) if str(UpperCamelCase ).startswith('mps' ): # mps does not support float64 snake_case__ = timesteps.to(UpperCamelCase , dtype=torch.floataa ) else: snake_case__ = timesteps.to(device=UpperCamelCase ) # empty dt and derivative snake_case__ = None snake_case__ = None # for exp beta schedules, such as the one for `pipeline_shap_e.py` # we need an index counter snake_case__ = defaultdict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Dict ) -> Tuple: # get log sigma snake_case__ = np.log(UpperCamelCase ) # get distribution snake_case__ = log_sigma - log_sigmas[:, np.newaxis] # get sigmas range snake_case__ = np.cumsum((dists >= 0) , axis=0 ).argmax(axis=0 ).clip(max=log_sigmas.shape[0] - 2 ) snake_case__ = low_idx + 1 snake_case__ = log_sigmas[low_idx] snake_case__ = log_sigmas[high_idx] # interpolate sigmas snake_case__ = (low - log_sigma) / (low - high) snake_case__ = np.clip(UpperCamelCase , 0 , 1 ) # transform interpolation to time range snake_case__ = (1 - w) * low_idx + w * high_idx snake_case__ = t.reshape(sigma.shape ) return t def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Dict ) -> torch.FloatTensor: snake_case__ = in_sigmas[-1].item() snake_case__ = in_sigmas[0].item() snake_case__ = 7.0 # 7.0 is the value used in the paper snake_case__ = np.linspace(0 , 1 , UpperCamelCase ) snake_case__ = sigma_min ** (1 / rho) snake_case__ = sigma_max ** (1 / rho) snake_case__ = (max_inv_rho + ramp * (min_inv_rho - max_inv_rho)) ** rho return sigmas @property def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.dt is None def lowerCAmelCase_ ( self: int , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: Union[float, torch.FloatTensor] , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: bool = True , ) -> Union[SchedulerOutput, Tuple]: snake_case__ = self.index_for_timestep(UpperCamelCase ) # advance index counter by 1 snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep self._index_counter[timestep_int] += 1 if self.state_in_first_order: snake_case__ = self.sigmas[step_index] snake_case__ = self.sigmas[step_index + 1] else: # 2nd order / Heun's method snake_case__ = self.sigmas[step_index - 1] snake_case__ = self.sigmas[step_index] # currently only gamma=0 is supported. This usually works best anyways. # We can support gamma in the future but then need to scale the timestep before # passing it to the model which requires a change in API snake_case__ = 0 snake_case__ = sigma * (gamma + 1) # Note: sigma_hat == sigma for now # 1. compute predicted original sample (x_0) from sigma-scaled predicted noise if self.config.prediction_type == "epsilon": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = sample - sigma_input * model_output elif self.config.prediction_type == "v_prediction": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = model_output * (-sigma_input / (sigma_input**2 + 1) ** 0.5) + ( sample / (sigma_input**2 + 1) ) elif self.config.prediction_type == "sample": snake_case__ = model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, or `v_prediction`''' ) if self.config.clip_sample: snake_case__ = pred_original_sample.clamp( -self.config.clip_sample_range , self.config.clip_sample_range ) if self.state_in_first_order: # 2. Convert to an ODE derivative for 1st order snake_case__ = (sample - pred_original_sample) / sigma_hat # 3. delta timestep snake_case__ = sigma_next - sigma_hat # store for 2nd order step snake_case__ = derivative snake_case__ = dt snake_case__ = sample else: # 2. 2nd order / Heun's method snake_case__ = (sample - pred_original_sample) / sigma_next snake_case__ = (self.prev_derivative + derivative) / 2 # 3. take prev timestep & sample snake_case__ = self.dt snake_case__ = self.sample # free dt and derivative # Note, this puts the scheduler in "first order mode" snake_case__ = None snake_case__ = None snake_case__ = None snake_case__ = sample + derivative * dt if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , ) -> torch.FloatTensor: # Make sure sigmas and timesteps have the same device and dtype as original_samples snake_case__ = self.sigmas.to(device=original_samples.device , dtype=original_samples.dtype ) if original_samples.device.type == "mps" and torch.is_floating_point(UpperCamelCase ): # mps does not support float64 snake_case__ = self.timesteps.to(original_samples.device , dtype=torch.floataa ) snake_case__ = timesteps.to(original_samples.device , dtype=torch.floataa ) else: snake_case__ = self.timesteps.to(original_samples.device ) snake_case__ = timesteps.to(original_samples.device ) snake_case__ = [self.index_for_timestep(UpperCamelCase , UpperCamelCase ) for t in timesteps] snake_case__ = sigmas[step_indices].flatten() while len(sigma.shape ) < len(original_samples.shape ): snake_case__ = sigma.unsqueeze(-1 ) snake_case__ = original_samples + noise * sigma return noisy_samples def __len__( self: List[Any] ) -> Union[str, Any]: return self.config.num_train_timesteps
307
1
# We ignore warnings about stepping the scheduler since we step it ourselves during gradient accumulation import warnings from .state import AcceleratorState, GradientState warnings.filterwarnings("""ignore""", category=UserWarning, module="""torch.optim.lr_scheduler""") class __SCREAMING_SNAKE_CASE: def __init__( self: List[str] , UpperCamelCase: Tuple , UpperCamelCase: str , UpperCamelCase: bool = True , UpperCamelCase: bool = False ) -> Tuple: snake_case__ = scheduler snake_case__ = optimizers if isinstance(UpperCamelCase , (list, tuple) ) else [optimizers] snake_case__ = split_batches snake_case__ = step_with_optimizer snake_case__ = GradientState() def lowerCAmelCase_ ( self: Tuple , *UpperCamelCase: Optional[int] , **UpperCamelCase: Union[str, Any] ) -> Union[str, Any]: if not self.step_with_optimizer: # No link between scheduler and optimizer -> just step self.scheduler.step(*UpperCamelCase , **UpperCamelCase ) return # Otherwise, first make sure the optimizer was stepped. if not self.gradient_state.sync_gradients: if self.gradient_state.adjust_scheduler: self.scheduler._step_count += 1 return for opt in self.optimizers: if opt.step_was_skipped: return if self.split_batches: # Split batches -> the training dataloader batch size is not changed so one step per training step self.scheduler.step(*UpperCamelCase , **UpperCamelCase ) else: # Otherwise the training dataloader batch size was multiplied by `num_processes`, so we need to do # num_processes steps per training step snake_case__ = AcceleratorState().num_processes for _ in range(UpperCamelCase ): # Special case when using OneCycle and `drop_last` was not used if hasattr(self.scheduler , 'total_steps' ): if self.scheduler._step_count <= self.scheduler.total_steps: self.scheduler.step(*UpperCamelCase , **UpperCamelCase ) else: self.scheduler.step(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.scheduler.get_last_lr() def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[int]: return self.scheduler.state_dict() def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int ) -> List[Any]: self.scheduler.load_state_dict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] ) -> Any: return self.scheduler.get_lr() def lowerCAmelCase_ ( self: str , *UpperCamelCase: Optional[Any] , **UpperCamelCase: int ) -> str: return self.scheduler.print_lr(*UpperCamelCase , **UpperCamelCase )
307
from typing import TYPE_CHECKING from ..utils import _LazyModule __UpperCamelCase : Tuple = { """config""": [ """EXTERNAL_DATA_FORMAT_SIZE_LIMIT""", """OnnxConfig""", """OnnxConfigWithPast""", """OnnxSeq2SeqConfigWithPast""", """PatchingSpec""", ], """convert""": ["""export""", """validate_model_outputs"""], """features""": ["""FeaturesManager"""], """utils""": ["""ParameterFormat""", """compute_serialized_parameters_size"""], } if TYPE_CHECKING: from .config import ( EXTERNAL_DATA_FORMAT_SIZE_LIMIT, OnnxConfig, OnnxConfigWithPast, OnnxSeqaSeqConfigWithPast, PatchingSpec, ) from .convert import export, validate_model_outputs from .features import FeaturesManager from .utils import ParameterFormat, compute_serialized_parameters_size else: import sys __UpperCamelCase : Dict = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging __UpperCamelCase : Optional[int] = logging.get_logger(__name__) __UpperCamelCase : Optional[int] = { """andreasmadsen/efficient_mlm_m0.40""": ( """https://huggingface.co/andreasmadsen/efficient_mlm_m0.40/resolve/main/config.json""" ), } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "roberta-prelayernorm" def __init__( self: Tuple , UpperCamelCase: Optional[int]=5_02_65 , UpperCamelCase: List[Any]=7_68 , UpperCamelCase: Optional[int]=12 , UpperCamelCase: Dict=12 , UpperCamelCase: List[Any]=30_72 , UpperCamelCase: Tuple="gelu" , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Optional[int]=0.1 , UpperCamelCase: Dict=5_12 , UpperCamelCase: Optional[int]=2 , UpperCamelCase: str=0.02 , UpperCamelCase: Union[str, Any]=1e-12 , UpperCamelCase: Optional[int]=1 , UpperCamelCase: List[Any]=0 , UpperCamelCase: str=2 , UpperCamelCase: Optional[Any]="absolute" , UpperCamelCase: Tuple=True , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Union[str, Any] , ) -> int: super().__init__(pad_token_id=UpperCamelCase , bos_token_id=UpperCamelCase , eos_token_id=UpperCamelCase , **UpperCamelCase ) snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = hidden_act snake_case__ = intermediate_size snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = initializer_range snake_case__ = layer_norm_eps snake_case__ = position_embedding_type snake_case__ = use_cache snake_case__ = classifier_dropout class __SCREAMING_SNAKE_CASE( a_ ): @property def lowerCAmelCase_ ( self: Optional[Any] ) -> Mapping[str, Mapping[int, str]]: if self.task == "multiple-choice": snake_case__ = {0: 'batch', 1: 'choice', 2: 'sequence'} else: snake_case__ = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ] )
307
def a_ ( _A , _A ) -> int: """simple docstring""" return 1 if input_a == input_a else 0 def a_ ( ) -> None: """simple docstring""" assert xnor_gate(0 , 0 ) == 1 assert xnor_gate(0 , 1 ) == 0 assert xnor_gate(1 , 0 ) == 0 assert xnor_gate(1 , 1 ) == 1 if __name__ == "__main__": print(xnor_gate(0, 0)) print(xnor_gate(0, 1)) print(xnor_gate(1, 0)) print(xnor_gate(1, 1))
307
1
import os from math import logaa def a_ ( _A = "base_exp.txt" ) -> int: """simple docstring""" snake_case__ = 0 snake_case__ = 0 for i, line in enumerate(open(os.path.join(os.path.dirname(_A ) , _A ) ) ): snake_case__ , snake_case__ = list(map(_A , line.split(',' ) ) ) if x * logaa(_A ) > largest: snake_case__ = x * logaa(_A ) snake_case__ = i + 1 return result if __name__ == "__main__": print(solution())
307
import numpy as np from cva import COLOR_BGR2GRAY, cvtColor, imread from numpy import array, uinta from PIL import Image from digital_image_processing import change_contrast as cc from digital_image_processing import convert_to_negative as cn from digital_image_processing import sepia as sp from digital_image_processing.dithering import burkes as bs from digital_image_processing.edge_detection import canny from digital_image_processing.filters import convolve as conv from digital_image_processing.filters import gaussian_filter as gg from digital_image_processing.filters import local_binary_pattern as lbp from digital_image_processing.filters import median_filter as med from digital_image_processing.filters import sobel_filter as sob from digital_image_processing.resize import resize as rs __UpperCamelCase : int = imread(R"""digital_image_processing/image_data/lena_small.jpg""") __UpperCamelCase : List[Any] = cvtColor(img, COLOR_BGR2GRAY) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = cn.convert_to_negative(_A ) # assert negative_img array for at least one True assert negative_img.any() def a_ ( ) -> int: """simple docstring""" with Image.open('digital_image_processing/image_data/lena_small.jpg' ) as img: # Work around assertion for response assert str(cc.change_contrast(_A , 110 ) ).startswith( '<PIL.Image.Image image mode=RGB size=100x100 at' ) def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = canny.gen_gaussian_kernel(9 , sigma=1.4 ) # Assert ambiguous array assert resp.all() def a_ ( ) -> Dict: """simple docstring""" snake_case__ = imread('digital_image_processing/image_data/lena_small.jpg' , 0 ) # assert ambiguous array for all == True assert canny_img.all() snake_case__ = canny.canny(_A ) # assert canny array for at least one True assert canny_array.any() def a_ ( ) -> Optional[int]: """simple docstring""" assert gg.gaussian_filter(_A , 5 , sigma=0.9 ).all() def a_ ( ) -> Optional[Any]: """simple docstring""" # laplace diagonals snake_case__ = array([[0.25, 0.5, 0.25], [0.5, -3, 0.5], [0.25, 0.5, 0.25]] ) snake_case__ = conv.img_convolve(_A , _A ).astype(_A ) assert res.any() def a_ ( ) -> Dict: """simple docstring""" assert med.median_filter(_A , 3 ).any() def a_ ( ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = sob.sobel_filter(_A ) assert grad.any() and theta.any() def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = sp.make_sepia(_A , 20 ) assert sepia.all() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" ) -> Optional[int]: """simple docstring""" snake_case__ = bs.Burkes(imread(_A , 1 ) , 120 ) burkes.process() assert burkes.output_img.any() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" , ) -> Optional[Any]: """simple docstring""" snake_case__ = rs.NearestNeighbour(imread(_A , 1 ) , 400 , 200 ) nn.process() assert nn.output.any() def a_ ( ) -> Any: """simple docstring""" snake_case__ = 'digital_image_processing/image_data/lena.jpg' # Reading the image and converting it to grayscale. snake_case__ = imread(_A , 0 ) # Test for get_neighbors_pixel function() return not None snake_case__ = 0 snake_case__ = 0 snake_case__ = image[x_coordinate][y_coordinate] snake_case__ = lbp.get_neighbors_pixel( _A , _A , _A , _A ) assert neighbors_pixels is not None # Test for local_binary_pattern function() # Create a numpy array as the same height and width of read image snake_case__ = np.zeros((image.shape[0], image.shape[1]) ) # Iterating through the image and calculating the local binary pattern value # for each pixel. for i in range(0 , image.shape[0] ): for j in range(0 , image.shape[1] ): snake_case__ = lbp.local_binary_value(_A , _A , _A ) assert lbp_image.any()
307
1
import argparse import json from pathlib import Path import requests import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import ViTConfig, ViTForImageClassification, ViTImageProcessor, ViTModel from transformers.utils import logging logging.set_verbosity_info() __UpperCamelCase : Any = logging.get_logger(__name__) def a_ ( _A , _A=False ) -> str: """simple docstring""" snake_case__ = [] for i in range(config.num_hidden_layers ): # encoder layers: output projection, 2 feedforward neural networks and 2 layernorms rename_keys.append((f'''blocks.{i}.norm1.weight''', f'''vit.encoder.layer.{i}.layernorm_before.weight''') ) rename_keys.append((f'''blocks.{i}.norm1.bias''', f'''vit.encoder.layer.{i}.layernorm_before.bias''') ) rename_keys.append((f'''blocks.{i}.attn.proj.weight''', f'''vit.encoder.layer.{i}.attention.output.dense.weight''') ) rename_keys.append((f'''blocks.{i}.attn.proj.bias''', f'''vit.encoder.layer.{i}.attention.output.dense.bias''') ) rename_keys.append((f'''blocks.{i}.norm2.weight''', f'''vit.encoder.layer.{i}.layernorm_after.weight''') ) rename_keys.append((f'''blocks.{i}.norm2.bias''', f'''vit.encoder.layer.{i}.layernorm_after.bias''') ) rename_keys.append((f'''blocks.{i}.mlp.fc1.weight''', f'''vit.encoder.layer.{i}.intermediate.dense.weight''') ) rename_keys.append((f'''blocks.{i}.mlp.fc1.bias''', f'''vit.encoder.layer.{i}.intermediate.dense.bias''') ) rename_keys.append((f'''blocks.{i}.mlp.fc2.weight''', f'''vit.encoder.layer.{i}.output.dense.weight''') ) rename_keys.append((f'''blocks.{i}.mlp.fc2.bias''', f'''vit.encoder.layer.{i}.output.dense.bias''') ) # projection layer + position embeddings rename_keys.extend( [ ('cls_token', 'vit.embeddings.cls_token'), ('patch_embed.proj.weight', 'vit.embeddings.patch_embeddings.projection.weight'), ('patch_embed.proj.bias', 'vit.embeddings.patch_embeddings.projection.bias'), ('pos_embed', 'vit.embeddings.position_embeddings'), ] ) if base_model: # layernorm + pooler rename_keys.extend( [ ('norm.weight', 'layernorm.weight'), ('norm.bias', 'layernorm.bias'), ] ) # if just the base model, we should remove "vit" from all keys that start with "vit" snake_case__ = [(pair[0], pair[1][4:]) if pair[1].startswith('vit' ) else pair for pair in rename_keys] else: # layernorm + classification head rename_keys.extend( [ ('norm.weight', 'vit.layernorm.weight'), ('norm.bias', 'vit.layernorm.bias'), ('head.weight', 'classifier.weight'), ('head.bias', 'classifier.bias'), ] ) return rename_keys def a_ ( _A , _A , _A=False ) -> Union[str, Any]: """simple docstring""" for i in range(config.num_hidden_layers ): if base_model: snake_case__ = '' else: snake_case__ = 'vit.' # read in weights + bias of input projection layer (in timm, this is a single matrix + bias) snake_case__ = state_dict.pop(f'''blocks.{i}.attn.qkv.weight''' ) snake_case__ = state_dict.pop(f'''blocks.{i}.attn.qkv.bias''' ) # next, add query, keys and values (in that order) to the state dict snake_case__ = in_proj_weight[ : config.hidden_size, : ] snake_case__ = in_proj_bias[: config.hidden_size] snake_case__ = in_proj_weight[ config.hidden_size : config.hidden_size * 2, : ] snake_case__ = in_proj_bias[ config.hidden_size : config.hidden_size * 2 ] snake_case__ = in_proj_weight[ -config.hidden_size :, : ] snake_case__ = in_proj_bias[-config.hidden_size :] def a_ ( _A ) -> Optional[Any]: """simple docstring""" snake_case__ = ['head.weight', 'head.bias'] for k in ignore_keys: state_dict.pop(_A , _A ) def a_ ( _A , _A , _A ) -> Union[str, Any]: """simple docstring""" snake_case__ = dct.pop(_A ) snake_case__ = val def a_ ( ) -> Dict: """simple docstring""" snake_case__ = 'http://images.cocodataset.org/val2017/000000039769.jpg' snake_case__ = Image.open(requests.get(_A , stream=_A ).raw ) return im @torch.no_grad() def a_ ( _A , _A , _A=True ) -> List[str]: """simple docstring""" snake_case__ = ViTConfig() # patch_size if model_name[-1] == "8": snake_case__ = 8 # set labels if required if not base_model: snake_case__ = 1000 snake_case__ = 'huggingface/label-files' snake_case__ = 'imagenet-1k-id2label.json' snake_case__ = json.load(open(hf_hub_download(_A , _A , repo_type='dataset' ) , 'r' ) ) snake_case__ = {int(_A ): v for k, v in idalabel.items()} snake_case__ = idalabel snake_case__ = {v: k for k, v in idalabel.items()} # size of the architecture if model_name in ["dino_vits8", "dino_vits16"]: snake_case__ = 384 snake_case__ = 1536 snake_case__ = 12 snake_case__ = 6 # load original model from torch hub snake_case__ = torch.hub.load('facebookresearch/dino:main' , _A ) original_model.eval() # load state_dict of original model, remove and rename some keys snake_case__ = original_model.state_dict() if base_model: remove_classification_head_(_A ) snake_case__ = create_rename_keys(_A , base_model=_A ) for src, dest in rename_keys: rename_key(_A , _A , _A ) read_in_q_k_v(_A , _A , _A ) # load HuggingFace model if base_model: snake_case__ = ViTModel(_A , add_pooling_layer=_A ).eval() else: snake_case__ = ViTForImageClassification(_A ).eval() model.load_state_dict(_A ) # Check outputs on an image, prepared by ViTImageProcessor snake_case__ = ViTImageProcessor() snake_case__ = image_processor(images=prepare_img() , return_tensors='pt' ) snake_case__ = encoding['pixel_values'] snake_case__ = model(_A ) if base_model: snake_case__ = original_model(_A ) assert torch.allclose(_A , outputs.last_hidden_state[:, 0, :] , atol=1e-1 ) else: snake_case__ = original_model(_A ) assert logits.shape == outputs.logits.shape assert torch.allclose(_A , outputs.logits , atol=1e-3 ) Path(_A ).mkdir(exist_ok=_A ) print(f'''Saving model {model_name} to {pytorch_dump_folder_path}''' ) model.save_pretrained(_A ) print(f'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(_A ) if __name__ == "__main__": __UpperCamelCase : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument( """--model_name""", default="""dino_vitb16""", type=str, help="""Name of the model trained with DINO you'd like to convert.""", ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, help="""Path to the output PyTorch model directory.""" ) parser.add_argument( """--base_model""", action="""store_true""", help="""Whether to only convert the base model (no projection head weights).""", ) parser.set_defaults(base_model=True) __UpperCamelCase : Optional[int] = parser.parse_args() convert_vit_checkpoint(args.model_name, args.pytorch_dump_folder_path, args.base_model)
307
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __UpperCamelCase : Dict = { """configuration_jukebox""": [ """JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP""", """JukeboxConfig""", """JukeboxPriorConfig""", """JukeboxVQVAEConfig""", ], """tokenization_jukebox""": ["""JukeboxTokenizer"""], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Tuple = [ """JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST""", """JukeboxModel""", """JukeboxPreTrainedModel""", """JukeboxVQVAE""", """JukeboxPrior""", ] if TYPE_CHECKING: from .configuration_jukebox import ( JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP, JukeboxConfig, JukeboxPriorConfig, JukeboxVQVAEConfig, ) from .tokenization_jukebox import JukeboxTokenizer try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_jukebox import ( JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST, JukeboxModel, JukeboxPreTrainedModel, JukeboxPrior, JukeboxVQVAE, ) else: import sys __UpperCamelCase : str = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
from __future__ import annotations class __SCREAMING_SNAKE_CASE: def __init__( self: List[Any] , UpperCamelCase: int ) -> None: snake_case__ = data snake_case__ = None snake_case__ = None def a_ ( _A ) -> None: # In Order traversal of the tree """simple docstring""" if tree: display(tree.left ) print(tree.data ) display(tree.right ) def a_ ( _A ) -> int: """simple docstring""" return 1 + max(depth_of_tree(tree.left ) , depth_of_tree(tree.right ) ) if tree else 0 def a_ ( _A ) -> bool: """simple docstring""" if not tree: return True if tree.left and tree.right: return is_full_binary_tree(tree.left ) and is_full_binary_tree(tree.right ) else: return not tree.left and not tree.right def a_ ( ) -> None: # Main function for testing. """simple docstring""" snake_case__ = Node(1 ) snake_case__ = Node(2 ) snake_case__ = Node(3 ) snake_case__ = Node(4 ) snake_case__ = Node(5 ) snake_case__ = Node(6 ) snake_case__ = Node(7 ) snake_case__ = Node(8 ) snake_case__ = Node(9 ) print(is_full_binary_tree(_A ) ) print(depth_of_tree(_A ) ) print('Tree is: ' ) display(_A ) if __name__ == "__main__": main()
307
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, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, logging __UpperCamelCase : Dict = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["pixel_values"] def __init__( self: List[Any] , UpperCamelCase: bool = True , UpperCamelCase: Optional[Dict[str, int]] = None , UpperCamelCase: PILImageResampling = PILImageResampling.BILINEAR , UpperCamelCase: bool = True , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[int, float] = 1 / 2_55 , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , **UpperCamelCase: Optional[int] , ) -> None: super().__init__(**UpperCamelCase ) snake_case__ = size if size is not None else {'shortest_edge': 2_56} snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = crop_size if crop_size is not None else {'height': 2_24, 'width': 2_24} snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_resize snake_case__ = size snake_case__ = resample snake_case__ = do_center_crop snake_case__ = crop_size snake_case__ = do_rescale snake_case__ = rescale_factor snake_case__ = do_normalize snake_case__ = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN snake_case__ = image_std if image_std is not None else IMAGENET_STANDARD_STD def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: PILImageResampling = PILImageResampling.BICUBIC , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) if "shortest_edge" not in size: raise ValueError(F'''The `size` parameter must contain the key `shortest_edge`. Got {size.keys()}''' ) snake_case__ = get_resize_output_image_size(UpperCamelCase , size=size['shortest_edge'] , default_to_square=UpperCamelCase ) return resize(UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: List[Any] , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase ) return center_crop(UpperCamelCase , size=(size['height'], size['width']) , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: np.ndarray , UpperCamelCase: float , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict ) -> np.ndarray: return rescale(UpperCamelCase , scale=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Any , ) -> np.ndarray: return normalize(UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: ImageInput , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: PILImageResampling = None , UpperCamelCase: bool = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[float] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[str, TensorType]] = None , UpperCamelCase: Union[str, ChannelDimension] = ChannelDimension.FIRST , **UpperCamelCase: Any , ) -> Optional[Any]: snake_case__ = do_resize if do_resize is not None else self.do_resize snake_case__ = size if size is not None else self.size snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = resample if resample is not None else self.resample snake_case__ = do_center_crop if do_center_crop is not None else self.do_center_crop snake_case__ = crop_size if crop_size is not None else self.crop_size snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_rescale if do_rescale is not None else self.do_rescale snake_case__ = rescale_factor if rescale_factor is not None else self.rescale_factor snake_case__ = do_normalize if do_normalize is not None else self.do_normalize snake_case__ = image_mean if image_mean is not None else self.image_mean snake_case__ = image_std if image_std is not None else self.image_std snake_case__ = make_list_of_images(UpperCamelCase ) if not valid_images(UpperCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None: raise ValueError('Size must be specified if do_resize is True.' ) if do_center_crop and crop_size is None: raise ValueError('Crop size must be specified if do_center_crop is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # All transformations expect numpy arrays. snake_case__ = [to_numpy_array(UpperCamelCase ) for image in images] if do_resize: snake_case__ = [self.resize(image=UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase ) for image in images] if do_center_crop: snake_case__ = [self.center_crop(image=UpperCamelCase , size=UpperCamelCase ) for image in images] if do_rescale: snake_case__ = [self.rescale(image=UpperCamelCase , scale=UpperCamelCase ) for image in images] if do_normalize: snake_case__ = [self.normalize(image=UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase ) for image in images] snake_case__ = [to_channel_dimension_format(UpperCamelCase , UpperCamelCase ) for image in images] snake_case__ = {'pixel_values': images} return BatchFeature(data=UpperCamelCase , tensor_type=UpperCamelCase )
307
1
import unittest from transformers import BigBirdConfig, is_flax_available from transformers.testing_utils import require_flax, slow from ...test_modeling_flax_common import FlaxModelTesterMixin, ids_tensor, random_attention_mask if is_flax_available(): import jax from transformers.models.big_bird.modeling_flax_big_bird import ( FlaxBigBirdForCausalLM, FlaxBigBirdForMaskedLM, FlaxBigBirdForMultipleChoice, FlaxBigBirdForPreTraining, FlaxBigBirdForQuestionAnswering, FlaxBigBirdForSequenceClassification, FlaxBigBirdForTokenClassification, FlaxBigBirdModel, ) class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def __init__( self: Optional[Any] , UpperCamelCase: Tuple , UpperCamelCase: Dict=2 , UpperCamelCase: Optional[int]=56 , UpperCamelCase: Optional[int]=True , UpperCamelCase: str=True , UpperCamelCase: Dict=True , UpperCamelCase: int=True , UpperCamelCase: str=99 , UpperCamelCase: Any=32 , UpperCamelCase: Union[str, Any]=2 , UpperCamelCase: Dict=2 , UpperCamelCase: Union[str, Any]=7 , UpperCamelCase: Dict="gelu_new" , UpperCamelCase: Optional[int]=0.1 , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: int=5_12 , UpperCamelCase: str=16 , UpperCamelCase: Optional[int]=2 , UpperCamelCase: Optional[Any]=0.02 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: Dict="block_sparse" , UpperCamelCase: str=True , UpperCamelCase: Dict=False , UpperCamelCase: int=2 , UpperCamelCase: Optional[Any]=3 , ) -> Dict: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_attention_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_choices snake_case__ = rescale_embeddings snake_case__ = attention_type snake_case__ = use_bias snake_case__ = block_size snake_case__ = num_random_blocks def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_attention_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = BigBirdConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , attention_type=self.attention_type , block_size=self.block_size , num_random_blocks=self.num_random_blocks , use_bias=self.use_bias , rescale_embeddings=self.rescale_embeddings , ) return config, input_ids, token_type_ids, attention_mask def lowerCAmelCase_ ( self: List[str] ) -> Optional[int]: snake_case__ = self.prepare_config_and_inputs() snake_case__ , snake_case__ , snake_case__ , snake_case__ = config_and_inputs snake_case__ = { 'input_ids': input_ids, 'token_type_ids': token_type_ids, 'attention_mask': attention_mask, } return config, inputs_dict @require_flax class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = ( ( FlaxBigBirdForCausalLM, FlaxBigBirdModel, FlaxBigBirdForPreTraining, FlaxBigBirdForMaskedLM, FlaxBigBirdForMultipleChoice, FlaxBigBirdForQuestionAnswering, FlaxBigBirdForSequenceClassification, FlaxBigBirdForTokenClassification, ) if is_flax_available() else () ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: Dict ) -> List[Any]: snake_case__ = FlaxBigBirdModelTester(self ) @slow # copied from `test_modeling_flax_common` because it takes much longer than other models def lowerCAmelCase_ ( self: List[Any] ) -> List[Any]: super().test_from_pretrained_save_pretrained() @slow # copied from `test_modeling_flax_common` because it takes much longer than other models def lowerCAmelCase_ ( self: Dict ) -> List[Any]: super().test_from_pretrained_with_no_automatic_init() @slow # copied from `test_modeling_flax_common` because it takes much longer than other models def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[int]: super().test_no_automatic_init() @slow # copied from `test_modeling_flax_common` because it takes much longer than other models def lowerCAmelCase_ ( self: int ) -> List[Any]: super().test_hidden_states_output() @slow def lowerCAmelCase_ ( self: str ) -> List[str]: for model_class_name in self.all_model_classes: snake_case__ = model_class_name.from_pretrained('google/bigbird-roberta-base' ) self.assertIsNotNone(UpperCamelCase ) def lowerCAmelCase_ ( self: str ) -> Optional[int]: if self.test_attn_probs: super().test_attention_outputs() @slow # copied from `test_modeling_flax_common` because it takes much longer than other models def lowerCAmelCase_ ( self: Tuple ) -> List[Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: with self.subTest(model_class.__name__ ): snake_case__ = self._prepare_for_class(UpperCamelCase , UpperCamelCase ) snake_case__ = model_class(UpperCamelCase ) @jax.jit def model_jitted(UpperCamelCase: Any , UpperCamelCase: Tuple=None , **UpperCamelCase: List[Any] ): return model(input_ids=UpperCamelCase , attention_mask=UpperCamelCase , **UpperCamelCase ) with self.subTest('JIT Enabled' ): snake_case__ = model_jitted(**UpperCamelCase ).to_tuple() with self.subTest('JIT Disabled' ): with jax.disable_jit(): snake_case__ = model_jitted(**UpperCamelCase ).to_tuple() self.assertEqual(len(UpperCamelCase ) , len(UpperCamelCase ) ) for jitted_output, output in zip(UpperCamelCase , UpperCamelCase ): self.assertEqual(jitted_output.shape , output.shape ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Union[str, Any] , UpperCamelCase: int=1e-5 , UpperCamelCase: Union[str, Any]="outputs" , UpperCamelCase: Union[str, Any]=None ) -> int: # `bigbird_block_sparse_attention` in `FlaxBigBird` returns `attention_probs = None`, while in PyTorch version, # an effort was done to return `attention_probs` (yet to be verified). if name.startswith('outputs.attentions' ): return else: super().check_pt_flax_outputs(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase )
307
import random from typing import Any def a_ ( _A ) -> list[Any]: """simple docstring""" for _ in range(len(_A ) ): snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ , snake_case__ = data[b], data[a] return data if __name__ == "__main__": __UpperCamelCase : Dict = [0, 1, 2, 3, 4, 5, 6, 7] __UpperCamelCase : Any = ["""python""", """says""", """hello""", """!"""] print("""Fisher-Yates Shuffle:""") print("""List""", integers, strings) print("""FY Shuffle""", fisher_yates_shuffle(integers), fisher_yates_shuffle(strings))
307
1
import json from typing import List, Optional, Tuple from tokenizers import normalizers from ...tokenization_utils_fast import PreTrainedTokenizerFast from ...utils import logging from .tokenization_bert import BertTokenizer __UpperCamelCase : Optional[Any] = logging.get_logger(__name__) __UpperCamelCase : Optional[Any] = {"""vocab_file""": """vocab.txt""", """tokenizer_file""": """tokenizer.json"""} __UpperCamelCase : int = { """vocab_file""": { """bert-base-uncased""": """https://huggingface.co/bert-base-uncased/resolve/main/vocab.txt""", """bert-large-uncased""": """https://huggingface.co/bert-large-uncased/resolve/main/vocab.txt""", """bert-base-cased""": """https://huggingface.co/bert-base-cased/resolve/main/vocab.txt""", """bert-large-cased""": """https://huggingface.co/bert-large-cased/resolve/main/vocab.txt""", """bert-base-multilingual-uncased""": ( """https://huggingface.co/bert-base-multilingual-uncased/resolve/main/vocab.txt""" ), """bert-base-multilingual-cased""": """https://huggingface.co/bert-base-multilingual-cased/resolve/main/vocab.txt""", """bert-base-chinese""": """https://huggingface.co/bert-base-chinese/resolve/main/vocab.txt""", """bert-base-german-cased""": """https://huggingface.co/bert-base-german-cased/resolve/main/vocab.txt""", """bert-large-uncased-whole-word-masking""": ( """https://huggingface.co/bert-large-uncased-whole-word-masking/resolve/main/vocab.txt""" ), """bert-large-cased-whole-word-masking""": ( """https://huggingface.co/bert-large-cased-whole-word-masking/resolve/main/vocab.txt""" ), """bert-large-uncased-whole-word-masking-finetuned-squad""": ( """https://huggingface.co/bert-large-uncased-whole-word-masking-finetuned-squad/resolve/main/vocab.txt""" ), """bert-large-cased-whole-word-masking-finetuned-squad""": ( """https://huggingface.co/bert-large-cased-whole-word-masking-finetuned-squad/resolve/main/vocab.txt""" ), """bert-base-cased-finetuned-mrpc""": ( """https://huggingface.co/bert-base-cased-finetuned-mrpc/resolve/main/vocab.txt""" ), """bert-base-german-dbmdz-cased""": """https://huggingface.co/bert-base-german-dbmdz-cased/resolve/main/vocab.txt""", """bert-base-german-dbmdz-uncased""": ( """https://huggingface.co/bert-base-german-dbmdz-uncased/resolve/main/vocab.txt""" ), """TurkuNLP/bert-base-finnish-cased-v1""": ( """https://huggingface.co/TurkuNLP/bert-base-finnish-cased-v1/resolve/main/vocab.txt""" ), """TurkuNLP/bert-base-finnish-uncased-v1""": ( """https://huggingface.co/TurkuNLP/bert-base-finnish-uncased-v1/resolve/main/vocab.txt""" ), """wietsedv/bert-base-dutch-cased""": ( """https://huggingface.co/wietsedv/bert-base-dutch-cased/resolve/main/vocab.txt""" ), }, """tokenizer_file""": { """bert-base-uncased""": """https://huggingface.co/bert-base-uncased/resolve/main/tokenizer.json""", """bert-large-uncased""": """https://huggingface.co/bert-large-uncased/resolve/main/tokenizer.json""", """bert-base-cased""": """https://huggingface.co/bert-base-cased/resolve/main/tokenizer.json""", """bert-large-cased""": """https://huggingface.co/bert-large-cased/resolve/main/tokenizer.json""", """bert-base-multilingual-uncased""": ( """https://huggingface.co/bert-base-multilingual-uncased/resolve/main/tokenizer.json""" ), """bert-base-multilingual-cased""": ( """https://huggingface.co/bert-base-multilingual-cased/resolve/main/tokenizer.json""" ), """bert-base-chinese""": """https://huggingface.co/bert-base-chinese/resolve/main/tokenizer.json""", """bert-base-german-cased""": """https://huggingface.co/bert-base-german-cased/resolve/main/tokenizer.json""", """bert-large-uncased-whole-word-masking""": ( """https://huggingface.co/bert-large-uncased-whole-word-masking/resolve/main/tokenizer.json""" ), """bert-large-cased-whole-word-masking""": ( """https://huggingface.co/bert-large-cased-whole-word-masking/resolve/main/tokenizer.json""" ), """bert-large-uncased-whole-word-masking-finetuned-squad""": ( """https://huggingface.co/bert-large-uncased-whole-word-masking-finetuned-squad/resolve/main/tokenizer.json""" ), """bert-large-cased-whole-word-masking-finetuned-squad""": ( """https://huggingface.co/bert-large-cased-whole-word-masking-finetuned-squad/resolve/main/tokenizer.json""" ), """bert-base-cased-finetuned-mrpc""": ( """https://huggingface.co/bert-base-cased-finetuned-mrpc/resolve/main/tokenizer.json""" ), """bert-base-german-dbmdz-cased""": ( """https://huggingface.co/bert-base-german-dbmdz-cased/resolve/main/tokenizer.json""" ), """bert-base-german-dbmdz-uncased""": ( """https://huggingface.co/bert-base-german-dbmdz-uncased/resolve/main/tokenizer.json""" ), """TurkuNLP/bert-base-finnish-cased-v1""": ( """https://huggingface.co/TurkuNLP/bert-base-finnish-cased-v1/resolve/main/tokenizer.json""" ), """TurkuNLP/bert-base-finnish-uncased-v1""": ( """https://huggingface.co/TurkuNLP/bert-base-finnish-uncased-v1/resolve/main/tokenizer.json""" ), """wietsedv/bert-base-dutch-cased""": ( """https://huggingface.co/wietsedv/bert-base-dutch-cased/resolve/main/tokenizer.json""" ), }, } __UpperCamelCase : List[Any] = { """bert-base-uncased""": 512, """bert-large-uncased""": 512, """bert-base-cased""": 512, """bert-large-cased""": 512, """bert-base-multilingual-uncased""": 512, """bert-base-multilingual-cased""": 512, """bert-base-chinese""": 512, """bert-base-german-cased""": 512, """bert-large-uncased-whole-word-masking""": 512, """bert-large-cased-whole-word-masking""": 512, """bert-large-uncased-whole-word-masking-finetuned-squad""": 512, """bert-large-cased-whole-word-masking-finetuned-squad""": 512, """bert-base-cased-finetuned-mrpc""": 512, """bert-base-german-dbmdz-cased""": 512, """bert-base-german-dbmdz-uncased""": 512, """TurkuNLP/bert-base-finnish-cased-v1""": 512, """TurkuNLP/bert-base-finnish-uncased-v1""": 512, """wietsedv/bert-base-dutch-cased""": 512, } __UpperCamelCase : Union[str, Any] = { """bert-base-uncased""": {"""do_lower_case""": True}, """bert-large-uncased""": {"""do_lower_case""": True}, """bert-base-cased""": {"""do_lower_case""": False}, """bert-large-cased""": {"""do_lower_case""": False}, """bert-base-multilingual-uncased""": {"""do_lower_case""": True}, """bert-base-multilingual-cased""": {"""do_lower_case""": False}, """bert-base-chinese""": {"""do_lower_case""": False}, """bert-base-german-cased""": {"""do_lower_case""": False}, """bert-large-uncased-whole-word-masking""": {"""do_lower_case""": True}, """bert-large-cased-whole-word-masking""": {"""do_lower_case""": False}, """bert-large-uncased-whole-word-masking-finetuned-squad""": {"""do_lower_case""": True}, """bert-large-cased-whole-word-masking-finetuned-squad""": {"""do_lower_case""": False}, """bert-base-cased-finetuned-mrpc""": {"""do_lower_case""": False}, """bert-base-german-dbmdz-cased""": {"""do_lower_case""": False}, """bert-base-german-dbmdz-uncased""": {"""do_lower_case""": True}, """TurkuNLP/bert-base-finnish-cased-v1""": {"""do_lower_case""": False}, """TurkuNLP/bert-base-finnish-uncased-v1""": {"""do_lower_case""": True}, """wietsedv/bert-base-dutch-cased""": {"""do_lower_case""": False}, } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_INIT_CONFIGURATION _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = BertTokenizer def __init__( self: Union[str, Any] , UpperCamelCase: Optional[Any]=None , UpperCamelCase: str=None , UpperCamelCase: Union[str, Any]=True , UpperCamelCase: str="[UNK]" , UpperCamelCase: int="[SEP]" , UpperCamelCase: Any="[PAD]" , UpperCamelCase: Tuple="[CLS]" , UpperCamelCase: Dict="[MASK]" , UpperCamelCase: Tuple=True , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: int , ) -> Union[str, Any]: super().__init__( UpperCamelCase , tokenizer_file=UpperCamelCase , do_lower_case=UpperCamelCase , unk_token=UpperCamelCase , sep_token=UpperCamelCase , pad_token=UpperCamelCase , cls_token=UpperCamelCase , mask_token=UpperCamelCase , tokenize_chinese_chars=UpperCamelCase , strip_accents=UpperCamelCase , **UpperCamelCase , ) snake_case__ = json.loads(self.backend_tokenizer.normalizer.__getstate__() ) if ( normalizer_state.get('lowercase' , UpperCamelCase ) != do_lower_case or normalizer_state.get('strip_accents' , UpperCamelCase ) != strip_accents or normalizer_state.get('handle_chinese_chars' , UpperCamelCase ) != tokenize_chinese_chars ): snake_case__ = getattr(UpperCamelCase , normalizer_state.pop('type' ) ) snake_case__ = do_lower_case snake_case__ = strip_accents snake_case__ = tokenize_chinese_chars snake_case__ = normalizer_class(**UpperCamelCase ) snake_case__ = do_lower_case def lowerCAmelCase_ ( self: int , UpperCamelCase: Any , UpperCamelCase: Tuple=None ) -> int: snake_case__ = [self.cls_token_id] + token_ids_a + [self.sep_token_id] if token_ids_a: output += token_ids_a + [self.sep_token_id] return output def lowerCAmelCase_ ( self: int , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.sep_token_id] snake_case__ = [self.cls_token_id] if token_ids_a is None: return len(cls + token_ids_a + sep ) * [0] return len(cls + token_ids_a + sep ) * [0] + len(token_ids_a + sep ) * [1] def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: snake_case__ = self._tokenizer.model.save(UpperCamelCase , name=UpperCamelCase ) return tuple(UpperCamelCase )
307
class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE: def __init__( self: List[str] ) -> Union[str, Any]: snake_case__ = [ [], [], [], ] def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: int , UpperCamelCase: int ) -> None: try: if len(self.queues[priority] ) >= 1_00: raise OverflowError('Maximum queue size is 100' ) self.queues[priority].append(UpperCamelCase ) except IndexError: raise ValueError('Valid priorities are 0, 1, and 2' ) def lowerCAmelCase_ ( self: List[Any] ) -> int: for queue in self.queues: if queue: return queue.pop(0 ) raise UnderFlowError('All queues are empty' ) def __str__( self: Union[str, Any] ) -> str: return "\n".join(F'''Priority {i}: {q}''' for i, q in enumerate(self.queues ) ) class __SCREAMING_SNAKE_CASE: def __init__( self: Union[str, Any] ) -> Any: snake_case__ = [] def lowerCAmelCase_ ( self: str , UpperCamelCase: int ) -> None: if len(self.queue ) == 1_00: raise OverFlowError('Maximum queue size is 100' ) self.queue.append(UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> int: if not self.queue: raise UnderFlowError('The queue is empty' ) else: snake_case__ = min(self.queue ) self.queue.remove(UpperCamelCase ) return data def __str__( self: Optional[Any] ) -> str: return str(self.queue ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = FixedPriorityQueue() fpq.enqueue(0 , 10 ) fpq.enqueue(1 , 70 ) fpq.enqueue(0 , 100 ) fpq.enqueue(2 , 1 ) fpq.enqueue(2 , 5 ) fpq.enqueue(1 , 7 ) fpq.enqueue(2 , 4 ) fpq.enqueue(1 , 64 ) fpq.enqueue(0 , 128 ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = ElementPriorityQueue() epq.enqueue(10 ) epq.enqueue(70 ) epq.enqueue(100 ) epq.enqueue(1 ) epq.enqueue(5 ) epq.enqueue(7 ) epq.enqueue(4 ) epq.enqueue(64 ) epq.enqueue(128 ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) if __name__ == "__main__": fixed_priority_queue() element_priority_queue()
307
1
import warnings from typing import List, Optional, Union from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding, PaddingStrategy, PreTokenizedInput, TextInput, TruncationStrategy from ...utils import TensorType class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["image_processor", "tokenizer"] _UpperCAmelCase = "LayoutLMv2ImageProcessor" _UpperCAmelCase = ("LayoutXLMTokenizer", "LayoutXLMTokenizerFast") def __init__( self: int , UpperCamelCase: Optional[int]=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Union[str, Any] ) -> int: if "feature_extractor" in kwargs: warnings.warn( 'The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`' ' instead.' , UpperCamelCase , ) snake_case__ = kwargs.pop('feature_extractor' ) snake_case__ = 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__(UpperCamelCase , UpperCamelCase ) def __call__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Union[TextInput, PreTokenizedInput, List[TextInput], List[PreTokenizedInput]] = None , UpperCamelCase: Optional[Union[PreTokenizedInput, List[PreTokenizedInput]]] = None , UpperCamelCase: Union[List[List[int]], List[List[List[int]]]] = None , UpperCamelCase: Optional[Union[List[int], List[List[int]]]] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[bool, str, PaddingStrategy] = False , UpperCamelCase: Union[bool, str, TruncationStrategy] = None , UpperCamelCase: Optional[int] = None , UpperCamelCase: int = 0 , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[str, TensorType]] = None , **UpperCamelCase: Any , ) -> BatchEncoding: # verify input if self.image_processor.apply_ocr and (boxes is not None): raise ValueError( 'You cannot provide bounding boxes ' 'if you initialized the image processor with apply_ocr set to True.' ) if self.image_processor.apply_ocr and (word_labels is not None): raise ValueError( 'You cannot provide word labels if you initialized the image processor with apply_ocr set to True.' ) if return_overflowing_tokens is True and return_offsets_mapping is False: raise ValueError('You cannot return overflowing tokens without returning the offsets mapping.' ) # first, apply the image processor snake_case__ = self.image_processor(images=UpperCamelCase , return_tensors=UpperCamelCase ) # second, apply the tokenizer if text is not None and self.image_processor.apply_ocr and text_pair is None: if isinstance(UpperCamelCase , UpperCamelCase ): snake_case__ = [text] # add batch dimension (as the image processor always adds a batch dimension) snake_case__ = features['words'] snake_case__ = self.tokenizer( text=text if text is not None else features['words'] , text_pair=text_pair if text_pair is not None else None , boxes=boxes if boxes is not None else features['boxes'] , word_labels=UpperCamelCase , add_special_tokens=UpperCamelCase , padding=UpperCamelCase , truncation=UpperCamelCase , max_length=UpperCamelCase , stride=UpperCamelCase , pad_to_multiple_of=UpperCamelCase , return_token_type_ids=UpperCamelCase , return_attention_mask=UpperCamelCase , return_overflowing_tokens=UpperCamelCase , return_special_tokens_mask=UpperCamelCase , return_offsets_mapping=UpperCamelCase , return_length=UpperCamelCase , verbose=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase , ) # add pixel values snake_case__ = features.pop('pixel_values' ) if return_overflowing_tokens is True: snake_case__ = self.get_overflowing_images(UpperCamelCase , encoded_inputs['overflow_to_sample_mapping'] ) snake_case__ = images return encoded_inputs def lowerCAmelCase_ ( self: Any , UpperCamelCase: Optional[int] , UpperCamelCase: Any ) -> Tuple: # in case there's an overflow, ensure each `input_ids` sample is mapped to its corresponding image snake_case__ = [] for sample_idx in overflow_to_sample_mapping: images_with_overflow.append(images[sample_idx] ) if len(UpperCamelCase ) != len(UpperCamelCase ): raise ValueError( 'Expected length of images to be the same as the length of `overflow_to_sample_mapping`, but got' F''' {len(UpperCamelCase )} and {len(UpperCamelCase )}''' ) return images_with_overflow def lowerCAmelCase_ ( self: Dict , *UpperCamelCase: Dict , **UpperCamelCase: Optional[int] ) -> List[Any]: return self.tokenizer.batch_decode(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: int ) -> Optional[Any]: return self.tokenizer.decode(*UpperCamelCase , **UpperCamelCase ) @property def lowerCAmelCase_ ( self: str ) -> List[Any]: return ["input_ids", "bbox", "attention_mask", "image"] @property def lowerCAmelCase_ ( self: Any ) -> List[Any]: warnings.warn( '`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.' , UpperCamelCase , ) return self.image_processor_class @property def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: warnings.warn( '`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.' , UpperCamelCase , ) return self.image_processor
307
import warnings from typing import List, Optional, Union from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding, PaddingStrategy, PreTokenizedInput, TextInput, TruncationStrategy from ...utils import TensorType class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["image_processor", "tokenizer"] _UpperCAmelCase = "LayoutLMv2ImageProcessor" _UpperCAmelCase = ("LayoutXLMTokenizer", "LayoutXLMTokenizerFast") def __init__( self: int , UpperCamelCase: Optional[int]=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Union[str, Any] ) -> int: if "feature_extractor" in kwargs: warnings.warn( 'The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`' ' instead.' , UpperCamelCase , ) snake_case__ = kwargs.pop('feature_extractor' ) snake_case__ = 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__(UpperCamelCase , UpperCamelCase ) def __call__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Union[TextInput, PreTokenizedInput, List[TextInput], List[PreTokenizedInput]] = None , UpperCamelCase: Optional[Union[PreTokenizedInput, List[PreTokenizedInput]]] = None , UpperCamelCase: Union[List[List[int]], List[List[List[int]]]] = None , UpperCamelCase: Optional[Union[List[int], List[List[int]]]] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[bool, str, PaddingStrategy] = False , UpperCamelCase: Union[bool, str, TruncationStrategy] = None , UpperCamelCase: Optional[int] = None , UpperCamelCase: int = 0 , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[str, TensorType]] = None , **UpperCamelCase: Any , ) -> BatchEncoding: # verify input if self.image_processor.apply_ocr and (boxes is not None): raise ValueError( 'You cannot provide bounding boxes ' 'if you initialized the image processor with apply_ocr set to True.' ) if self.image_processor.apply_ocr and (word_labels is not None): raise ValueError( 'You cannot provide word labels if you initialized the image processor with apply_ocr set to True.' ) if return_overflowing_tokens is True and return_offsets_mapping is False: raise ValueError('You cannot return overflowing tokens without returning the offsets mapping.' ) # first, apply the image processor snake_case__ = self.image_processor(images=UpperCamelCase , return_tensors=UpperCamelCase ) # second, apply the tokenizer if text is not None and self.image_processor.apply_ocr and text_pair is None: if isinstance(UpperCamelCase , UpperCamelCase ): snake_case__ = [text] # add batch dimension (as the image processor always adds a batch dimension) snake_case__ = features['words'] snake_case__ = self.tokenizer( text=text if text is not None else features['words'] , text_pair=text_pair if text_pair is not None else None , boxes=boxes if boxes is not None else features['boxes'] , word_labels=UpperCamelCase , add_special_tokens=UpperCamelCase , padding=UpperCamelCase , truncation=UpperCamelCase , max_length=UpperCamelCase , stride=UpperCamelCase , pad_to_multiple_of=UpperCamelCase , return_token_type_ids=UpperCamelCase , return_attention_mask=UpperCamelCase , return_overflowing_tokens=UpperCamelCase , return_special_tokens_mask=UpperCamelCase , return_offsets_mapping=UpperCamelCase , return_length=UpperCamelCase , verbose=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase , ) # add pixel values snake_case__ = features.pop('pixel_values' ) if return_overflowing_tokens is True: snake_case__ = self.get_overflowing_images(UpperCamelCase , encoded_inputs['overflow_to_sample_mapping'] ) snake_case__ = images return encoded_inputs def lowerCAmelCase_ ( self: Any , UpperCamelCase: Optional[int] , UpperCamelCase: Any ) -> Tuple: # in case there's an overflow, ensure each `input_ids` sample is mapped to its corresponding image snake_case__ = [] for sample_idx in overflow_to_sample_mapping: images_with_overflow.append(images[sample_idx] ) if len(UpperCamelCase ) != len(UpperCamelCase ): raise ValueError( 'Expected length of images to be the same as the length of `overflow_to_sample_mapping`, but got' F''' {len(UpperCamelCase )} and {len(UpperCamelCase )}''' ) return images_with_overflow def lowerCAmelCase_ ( self: Dict , *UpperCamelCase: Dict , **UpperCamelCase: Optional[int] ) -> List[Any]: return self.tokenizer.batch_decode(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: int ) -> Optional[Any]: return self.tokenizer.decode(*UpperCamelCase , **UpperCamelCase ) @property def lowerCAmelCase_ ( self: str ) -> List[Any]: return ["input_ids", "bbox", "attention_mask", "image"] @property def lowerCAmelCase_ ( self: Any ) -> List[Any]: warnings.warn( '`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.' , UpperCamelCase , ) return self.image_processor_class @property def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: warnings.warn( '`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.' , UpperCamelCase , ) return self.image_processor
307
1
import copy from typing import Any, Dict, List, Optional, Union import numpy as np from ...audio_utils import mel_filter_bank, spectrogram, window_function from ...feature_extraction_sequence_utils import SequenceFeatureExtractor from ...feature_extraction_utils import BatchFeature from ...utils import TensorType, logging __UpperCamelCase : Any = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["input_features"] def __init__( self: Optional[int] , UpperCamelCase: int=80 , UpperCamelCase: List[str]=1_60_00 , UpperCamelCase: Optional[int]=1_60 , UpperCamelCase: Optional[Any]=30 , UpperCamelCase: Dict=4_00 , UpperCamelCase: Any=0.0 , UpperCamelCase: Any=False , **UpperCamelCase: Any , ) -> Union[str, Any]: super().__init__( feature_size=UpperCamelCase , sampling_rate=UpperCamelCase , padding_value=UpperCamelCase , return_attention_mask=UpperCamelCase , **UpperCamelCase , ) snake_case__ = n_fft snake_case__ = hop_length snake_case__ = chunk_length snake_case__ = chunk_length * sampling_rate snake_case__ = self.n_samples // hop_length snake_case__ = sampling_rate snake_case__ = mel_filter_bank( num_frequency_bins=1 + n_fft // 2 , num_mel_filters=UpperCamelCase , min_frequency=0.0 , max_frequency=8_000.0 , sampling_rate=UpperCamelCase , norm='slaney' , mel_scale='slaney' , ) def lowerCAmelCase_ ( self: str , UpperCamelCase: np.array ) -> np.ndarray: snake_case__ = spectrogram( UpperCamelCase , window_function(self.n_fft , 'hann' ) , frame_length=self.n_fft , hop_length=self.hop_length , power=2.0 , mel_filters=self.mel_filters , log_mel='log10' , ) snake_case__ = log_spec[:, :-1] snake_case__ = np.maximum(UpperCamelCase , log_spec.max() - 8.0 ) snake_case__ = (log_spec + 4.0) / 4.0 return log_spec @staticmethod # Copied from transformers.models.wav2vec2.feature_extraction_wav2vec2.Wav2Vec2FeatureExtractor.zero_mean_unit_var_norm def lowerCAmelCase_ ( UpperCamelCase: List[np.ndarray] , UpperCamelCase: List[np.ndarray] , UpperCamelCase: float = 0.0 ) -> List[np.ndarray]: if attention_mask is not None: snake_case__ = np.array(UpperCamelCase , np.intaa ) snake_case__ = [] for vector, length in zip(UpperCamelCase , attention_mask.sum(-1 ) ): snake_case__ = (vector - vector[:length].mean()) / np.sqrt(vector[:length].var() + 1e-7 ) if length < normed_slice.shape[0]: snake_case__ = padding_value normed_input_values.append(UpperCamelCase ) else: snake_case__ = [(x - x.mean()) / np.sqrt(x.var() + 1e-7 ) for x in input_values] return normed_input_values def __call__( self: Optional[Any] , UpperCamelCase: Union[np.ndarray, List[float], List[np.ndarray], List[List[float]]] , UpperCamelCase: bool = True , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[Union[str, TensorType]] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[str] = "max_length" , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[bool] = None , **UpperCamelCase: Dict , ) -> BatchFeature: if sampling_rate is not None: if sampling_rate != self.sampling_rate: raise ValueError( F'''The model corresponding to this feature extractor: {self.__class__.__name__} was trained using a''' F''' sampling rate of {self.sampling_rate}. Please make sure that the provided `raw_speech` input''' F''' was sampled with {self.sampling_rate} and not {sampling_rate}.''' ) else: logger.warning( 'It is strongly recommended to pass the `sampling_rate` argument to this function. ' 'Failing to do so can result in silent errors that might be hard to debug.' ) snake_case__ = isinstance(UpperCamelCase , np.ndarray ) and len(raw_speech.shape ) > 1 if is_batched_numpy and len(raw_speech.shape ) > 2: raise ValueError(F'''Only mono-channel audio is supported for input to {self}''' ) snake_case__ = is_batched_numpy or ( isinstance(UpperCamelCase , (list, tuple) ) and (isinstance(raw_speech[0] , (np.ndarray, tuple, list) )) ) if is_batched: snake_case__ = [np.asarray([speech] , dtype=np.floataa ).T for speech in raw_speech] elif not is_batched and not isinstance(UpperCamelCase , np.ndarray ): snake_case__ = np.asarray(UpperCamelCase , dtype=np.floataa ) elif isinstance(UpperCamelCase , np.ndarray ) and raw_speech.dtype is np.dtype(np.floataa ): snake_case__ = raw_speech.astype(np.floataa ) # always return batch if not is_batched: snake_case__ = [np.asarray([raw_speech] ).T] snake_case__ = BatchFeature({'input_features': raw_speech} ) # convert into correct format for padding snake_case__ = self.pad( UpperCamelCase , padding=UpperCamelCase , max_length=max_length if max_length else self.n_samples , truncation=UpperCamelCase , pad_to_multiple_of=UpperCamelCase , return_attention_mask=return_attention_mask or do_normalize , ) # zero-mean and unit-variance normalization if do_normalize: snake_case__ = self.zero_mean_unit_var_norm( padded_inputs['input_features'] , attention_mask=padded_inputs['attention_mask'] , padding_value=self.padding_value , ) snake_case__ = np.stack(padded_inputs['input_features'] , axis=0 ) # make sure list is in array format snake_case__ = padded_inputs.get('input_features' ).transpose(2 , 0 , 1 ) snake_case__ = [self._np_extract_fbank_features(UpperCamelCase ) for waveform in input_features[0]] if isinstance(input_features[0] , UpperCamelCase ): snake_case__ = [np.asarray(UpperCamelCase , dtype=np.floataa ) for feature in input_features] else: snake_case__ = input_features if return_attention_mask: # rescale from sample (48000) to feature (3000) snake_case__ = padded_inputs['attention_mask'][:, :: self.hop_length] if return_tensors is not None: snake_case__ = padded_inputs.convert_to_tensors(UpperCamelCase ) return padded_inputs def lowerCAmelCase_ ( self: Optional[int] ) -> Dict[str, Any]: snake_case__ = copy.deepcopy(self.__dict__ ) snake_case__ = self.__class__.__name__ if "mel_filters" in output: del output["mel_filters"] return output
307
def a_ ( _A = 1000 ) -> int: """simple docstring""" return sum(e for e in range(3 , _A ) if e % 3 == 0 or e % 5 == 0 ) if __name__ == "__main__": print(f'''{solution() = }''')
307
1
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 __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["image_processor", "tokenizer"] _UpperCAmelCase = "OwlViTImageProcessor" _UpperCAmelCase = ("CLIPTokenizer", "CLIPTokenizerFast") def __init__( self: str , UpperCamelCase: Optional[int]=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Dict ) -> Dict: snake_case__ = None if "feature_extractor" in kwargs: warnings.warn( 'The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`' ' instead.' , UpperCamelCase , ) snake_case__ = kwargs.pop('feature_extractor' ) snake_case__ = 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__(UpperCamelCase , UpperCamelCase ) def __call__( self: str , UpperCamelCase: Union[str, Any]=None , UpperCamelCase: List[Any]=None , UpperCamelCase: List[str]=None , UpperCamelCase: str="max_length" , UpperCamelCase: Dict="np" , **UpperCamelCase: List[str] ) -> List[str]: 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(UpperCamelCase , UpperCamelCase ) or (isinstance(UpperCamelCase , UpperCamelCase ) and not isinstance(text[0] , UpperCamelCase )): snake_case__ = [self.tokenizer(UpperCamelCase , padding=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase )] elif isinstance(UpperCamelCase , UpperCamelCase ) and isinstance(text[0] , UpperCamelCase ): snake_case__ = [] # Maximum number of queries across batch snake_case__ = max([len(UpperCamelCase ) for t in text] ) # Pad all batch samples to max number of text queries for t in text: if len(UpperCamelCase ) != max_num_queries: snake_case__ = t + [' '] * (max_num_queries - len(UpperCamelCase )) snake_case__ = self.tokenizer(UpperCamelCase , padding=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase ) encodings.append(UpperCamelCase ) else: raise TypeError('Input text should be a string, a list of strings or a nested list of strings' ) if return_tensors == "np": snake_case__ = np.concatenate([encoding['input_ids'] for encoding in encodings] , axis=0 ) snake_case__ = np.concatenate([encoding['attention_mask'] for encoding in encodings] , axis=0 ) elif return_tensors == "jax" and is_flax_available(): import jax.numpy as jnp snake_case__ = jnp.concatenate([encoding['input_ids'] for encoding in encodings] , axis=0 ) snake_case__ = jnp.concatenate([encoding['attention_mask'] for encoding in encodings] , axis=0 ) elif return_tensors == "pt" and is_torch_available(): import torch snake_case__ = torch.cat([encoding['input_ids'] for encoding in encodings] , dim=0 ) snake_case__ = torch.cat([encoding['attention_mask'] for encoding in encodings] , dim=0 ) elif return_tensors == "tf" and is_tf_available(): import tensorflow as tf snake_case__ = tf.stack([encoding['input_ids'] for encoding in encodings] , axis=0 ) snake_case__ = tf.stack([encoding['attention_mask'] for encoding in encodings] , axis=0 ) else: raise ValueError('Target return tensor type could not be returned' ) snake_case__ = BatchEncoding() snake_case__ = input_ids snake_case__ = attention_mask if query_images is not None: snake_case__ = BatchEncoding() snake_case__ = self.image_processor( UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase ).pixel_values snake_case__ = query_pixel_values if images is not None: snake_case__ = self.image_processor(UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase ) if text is not None and images is not None: snake_case__ = image_features.pixel_values return encoding elif query_images is not None and images is not None: snake_case__ = image_features.pixel_values return encoding elif text is not None or query_images is not None: return encoding else: return BatchEncoding(data=dict(**UpperCamelCase ) , tensor_type=UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: Any ) -> Tuple: return self.image_processor.post_process(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Any , *UpperCamelCase: List[Any] , **UpperCamelCase: Any ) -> Tuple: return self.image_processor.post_process_object_detection(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] , *UpperCamelCase: Union[str, Any] , **UpperCamelCase: Dict ) -> str: return self.image_processor.post_process_image_guided_detection(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , *UpperCamelCase: Optional[int] , **UpperCamelCase: Optional[Any] ) -> Dict: return self.tokenizer.batch_decode(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Any , *UpperCamelCase: int , **UpperCamelCase: List[str] ) -> List[str]: return self.tokenizer.decode(*UpperCamelCase , **UpperCamelCase ) @property def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: warnings.warn( '`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.' , UpperCamelCase , ) return self.image_processor_class @property def lowerCAmelCase_ ( self: List[Any] ) -> List[str]: warnings.warn( '`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.' , UpperCamelCase , ) return self.image_processor
307
import os def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = os.path.join(os.path.dirname(_A ) , 'num.txt' ) with open(_A ) as file_hand: return str(sum(int(_A ) for line in file_hand ) )[:10] if __name__ == "__main__": print(solution())
307
1
class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE: def __init__( self: List[str] ) -> Union[str, Any]: snake_case__ = [ [], [], [], ] def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: int , UpperCamelCase: int ) -> None: try: if len(self.queues[priority] ) >= 1_00: raise OverflowError('Maximum queue size is 100' ) self.queues[priority].append(UpperCamelCase ) except IndexError: raise ValueError('Valid priorities are 0, 1, and 2' ) def lowerCAmelCase_ ( self: List[Any] ) -> int: for queue in self.queues: if queue: return queue.pop(0 ) raise UnderFlowError('All queues are empty' ) def __str__( self: Union[str, Any] ) -> str: return "\n".join(F'''Priority {i}: {q}''' for i, q in enumerate(self.queues ) ) class __SCREAMING_SNAKE_CASE: def __init__( self: Union[str, Any] ) -> Any: snake_case__ = [] def lowerCAmelCase_ ( self: str , UpperCamelCase: int ) -> None: if len(self.queue ) == 1_00: raise OverFlowError('Maximum queue size is 100' ) self.queue.append(UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> int: if not self.queue: raise UnderFlowError('The queue is empty' ) else: snake_case__ = min(self.queue ) self.queue.remove(UpperCamelCase ) return data def __str__( self: Optional[Any] ) -> str: return str(self.queue ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = FixedPriorityQueue() fpq.enqueue(0 , 10 ) fpq.enqueue(1 , 70 ) fpq.enqueue(0 , 100 ) fpq.enqueue(2 , 1 ) fpq.enqueue(2 , 5 ) fpq.enqueue(1 , 7 ) fpq.enqueue(2 , 4 ) fpq.enqueue(1 , 64 ) fpq.enqueue(0 , 128 ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = ElementPriorityQueue() epq.enqueue(10 ) epq.enqueue(70 ) epq.enqueue(100 ) epq.enqueue(1 ) epq.enqueue(5 ) epq.enqueue(7 ) epq.enqueue(4 ) epq.enqueue(64 ) epq.enqueue(128 ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) if __name__ == "__main__": fixed_priority_queue() element_priority_queue()
307
import os import sys from contextlib import contextmanager # Windows only if os.name == "nt": import ctypes import msvcrt # noqa class __SCREAMING_SNAKE_CASE( ctypes.Structure ): # _fields is a specific attr expected by ctypes _UpperCAmelCase = [("size", ctypes.c_int), ("visible", ctypes.c_byte)] def a_ ( ) -> Any: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = False ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25l' ) sys.stdout.flush() def a_ ( ) -> Tuple: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = True ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25h' ) sys.stdout.flush() @contextmanager def a_ ( ) -> str: """simple docstring""" try: hide_cursor() yield finally: show_cursor()
307
1
from collections.abc import Callable def a_ ( _A , _A , _A ) -> float: """simple docstring""" snake_case__ = a snake_case__ = b if function(_A ) == 0: # one of the a or b is a root for the function return a elif function(_A ) == 0: return b elif ( function(_A ) * function(_A ) > 0 ): # if none of these are root and they are both positive or negative, # then this algorithm can't find the root raise ValueError('could not find root in given interval.' ) else: snake_case__ = start + (end - start) / 2.0 while abs(start - mid ) > 10**-7: # until precisely equals to 10^-7 if function(_A ) == 0: return mid elif function(_A ) * function(_A ) < 0: snake_case__ = mid else: snake_case__ = mid snake_case__ = start + (end - start) / 2.0 return mid def a_ ( _A ) -> float: """simple docstring""" return x**3 - 2 * x - 5 if __name__ == "__main__": print(bisection(f, 1, 1000)) import doctest doctest.testmod()
307
import argparse import gc import json import os import shutil import warnings import torch from transformers import LlamaConfig, LlamaForCausalLM, LlamaTokenizer try: from transformers import LlamaTokenizerFast except ImportError as e: warnings.warn(e) warnings.warn( """The converted tokenizer will be the `slow` tokenizer. To use the fast, update your `tokenizers` library and re-run the tokenizer conversion""" ) __UpperCamelCase : Union[str, Any] = None __UpperCamelCase : Any = { """7B""": 11008, """13B""": 13824, """30B""": 17920, """65B""": 22016, """70B""": 28672, } __UpperCamelCase : Optional[Any] = { """7B""": 1, """7Bf""": 1, """13B""": 2, """13Bf""": 2, """30B""": 4, """65B""": 8, """70B""": 8, """70Bf""": 8, } def a_ ( _A , _A=1 , _A=256 ) -> str: """simple docstring""" return multiple_of * ((int(ffn_dim_multiplier * int(8 * n / 3 ) ) + multiple_of - 1) // multiple_of) def a_ ( _A ) -> int: """simple docstring""" with open(_A , 'r' ) as f: return json.load(_A ) def a_ ( _A , _A ) -> int: """simple docstring""" with open(_A , 'w' ) as f: json.dump(_A , _A ) def a_ ( _A , _A , _A , _A=True ) -> List[str]: """simple docstring""" os.makedirs(_A , exist_ok=_A ) snake_case__ = os.path.join(_A , 'tmp' ) os.makedirs(_A , exist_ok=_A ) snake_case__ = read_json(os.path.join(_A , 'params.json' ) ) snake_case__ = NUM_SHARDS[model_size] snake_case__ = params['n_layers'] snake_case__ = params['n_heads'] snake_case__ = n_heads // num_shards snake_case__ = params['dim'] snake_case__ = dim // n_heads snake_case__ = 10000.0 snake_case__ = 1.0 / (base ** (torch.arange(0 , _A , 2 ).float() / dims_per_head)) if "n_kv_heads" in params: snake_case__ = params['n_kv_heads'] # for GQA / MQA snake_case__ = n_heads_per_shard // num_key_value_heads snake_case__ = dim // num_key_value_heads else: # compatibility with other checkpoints snake_case__ = n_heads snake_case__ = n_heads_per_shard snake_case__ = dim # permute for sliced rotary def permute(_A , _A=n_heads , _A=dim , _A=dim ): return w.view(_A , dima // n_heads // 2 , 2 , _A ).transpose(1 , 2 ).reshape(_A , _A ) print(f'''Fetching all parameters from the checkpoint at {input_base_path}.''' ) # Load weights if model_size == "7B": # Not sharded # (The sharded implementation would also work, but this is simpler.) snake_case__ = torch.load(os.path.join(_A , 'consolidated.00.pth' ) , map_location='cpu' ) else: # Sharded snake_case__ = [ torch.load(os.path.join(_A , f'''consolidated.{i:02d}.pth''' ) , map_location='cpu' ) for i in range(_A ) ] snake_case__ = 0 snake_case__ = {'weight_map': {}} for layer_i in range(_A ): snake_case__ = f'''pytorch_model-{layer_i + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { f'''model.layers.{layer_i}.self_attn.q_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wq.weight'''] ), f'''model.layers.{layer_i}.self_attn.k_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wk.weight'''] ), f'''model.layers.{layer_i}.self_attn.v_proj.weight''': loaded[f'''layers.{layer_i}.attention.wv.weight'''], f'''model.layers.{layer_i}.self_attn.o_proj.weight''': loaded[f'''layers.{layer_i}.attention.wo.weight'''], f'''model.layers.{layer_i}.mlp.gate_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w1.weight'''], f'''model.layers.{layer_i}.mlp.down_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w2.weight'''], f'''model.layers.{layer_i}.mlp.up_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w3.weight'''], f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[f'''layers.{layer_i}.attention_norm.weight'''], f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[f'''layers.{layer_i}.ffn_norm.weight'''], } else: # Sharded # Note that attention.w{q,k,v,o}, feed_fordward.w[1,2,3], attention_norm.weight and ffn_norm.weight share # the same storage object, saving attention_norm and ffn_norm will save other weights too, which is # redundant as other weights will be stitched from multiple shards. To avoid that, they are cloned. snake_case__ = { f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.attention_norm.weight''' ].clone(), f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.ffn_norm.weight''' ].clone(), } snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wq.weight'''].view(_A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) ) snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wk.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) , _A , _A , _A , ) snake_case__ = torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wv.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.attention.wo.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w1.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w2.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w3.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = inv_freq for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) snake_case__ = f'''pytorch_model-{n_layers + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { 'model.embed_tokens.weight': loaded['tok_embeddings.weight'], 'model.norm.weight': loaded['norm.weight'], 'lm_head.weight': loaded['output.weight'], } else: snake_case__ = { 'model.norm.weight': loaded[0]['norm.weight'], 'model.embed_tokens.weight': torch.cat( [loaded[i]['tok_embeddings.weight'] for i in range(_A )] , dim=1 ), 'lm_head.weight': torch.cat([loaded[i]['output.weight'] for i in range(_A )] , dim=0 ), } for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) # Write configs snake_case__ = {'total_size': param_count * 2} write_json(_A , os.path.join(_A , 'pytorch_model.bin.index.json' ) ) snake_case__ = params['ffn_dim_multiplier'] if 'ffn_dim_multiplier' in params else 1 snake_case__ = params['multiple_of'] if 'multiple_of' in params else 256 snake_case__ = LlamaConfig( hidden_size=_A , intermediate_size=compute_intermediate_size(_A , _A , _A ) , num_attention_heads=params['n_heads'] , num_hidden_layers=params['n_layers'] , rms_norm_eps=params['norm_eps'] , num_key_value_heads=_A , ) config.save_pretrained(_A ) # Make space so we can load the model properly now. del state_dict del loaded gc.collect() print('Loading the checkpoint in a Llama model.' ) snake_case__ = LlamaForCausalLM.from_pretrained(_A , torch_dtype=torch.floataa , low_cpu_mem_usage=_A ) # Avoid saving this as part of the config. del model.config._name_or_path print('Saving in the Transformers format.' ) model.save_pretrained(_A , safe_serialization=_A ) shutil.rmtree(_A ) def a_ ( _A , _A ) -> Tuple: """simple docstring""" # Initialize the tokenizer based on the `spm` model snake_case__ = LlamaTokenizer if LlamaTokenizerFast is None else LlamaTokenizerFast print(f'''Saving a {tokenizer_class.__name__} to {tokenizer_path}.''' ) snake_case__ = tokenizer_class(_A ) tokenizer.save_pretrained(_A ) def a_ ( ) -> str: """simple docstring""" snake_case__ = argparse.ArgumentParser() parser.add_argument( '--input_dir' , help='Location of LLaMA weights, which contains tokenizer.model and model folders' , ) parser.add_argument( '--model_size' , choices=['7B', '7Bf', '13B', '13Bf', '30B', '65B', '70B', '70Bf', 'tokenizer_only'] , ) parser.add_argument( '--output_dir' , help='Location to write HF model and tokenizer' , ) parser.add_argument('--safe_serialization' , type=_A , help='Whether or not to save using `safetensors`.' ) snake_case__ = parser.parse_args() if args.model_size != "tokenizer_only": write_model( model_path=args.output_dir , input_base_path=os.path.join(args.input_dir , args.model_size ) , model_size=args.model_size , safe_serialization=args.safe_serialization , ) snake_case__ = os.path.join(args.input_dir , 'tokenizer.model' ) write_tokenizer(args.output_dir , _A ) if __name__ == "__main__": main()
307
1
import unittest import numpy as np from transformers.file_utils import is_torch_available, is_vision_available from transformers.testing_utils import require_torch, require_vision 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 DPTImageProcessor class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def __init__( self: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Optional[int]=7 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: List[str]=18 , UpperCamelCase: List[str]=30 , UpperCamelCase: Any=4_00 , UpperCamelCase: Union[str, Any]=True , UpperCamelCase: List[Any]=None , UpperCamelCase: str=True , UpperCamelCase: Optional[int]=[0.5, 0.5, 0.5] , UpperCamelCase: Optional[Any]=[0.5, 0.5, 0.5] , ) -> Tuple: snake_case__ = size if size is not None else {'height': 18, 'width': 18} snake_case__ = parent snake_case__ = batch_size snake_case__ = num_channels snake_case__ = image_size snake_case__ = min_resolution snake_case__ = max_resolution snake_case__ = do_resize snake_case__ = size snake_case__ = do_normalize snake_case__ = image_mean snake_case__ = image_std def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: return { "image_mean": self.image_mean, "image_std": self.image_std, "do_normalize": self.do_normalize, "do_resize": self.do_resize, "size": self.size, } @require_torch @require_vision class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = DPTImageProcessor if is_vision_available() else None def lowerCAmelCase_ ( self: List[str] ) -> List[str]: snake_case__ = DPTImageProcessingTester(self ) @property def lowerCAmelCase_ ( self: Dict ) -> List[str]: return self.image_processor_tester.prepare_image_processor_dict() def lowerCAmelCase_ ( self: Optional[Any] ) -> Dict: snake_case__ = self.image_processing_class(**self.image_processor_dict ) self.assertTrue(hasattr(UpperCamelCase , 'image_mean' ) ) self.assertTrue(hasattr(UpperCamelCase , 'image_std' ) ) self.assertTrue(hasattr(UpperCamelCase , 'do_normalize' ) ) self.assertTrue(hasattr(UpperCamelCase , 'do_resize' ) ) self.assertTrue(hasattr(UpperCamelCase , 'size' ) ) def lowerCAmelCase_ ( self: Any ) -> Union[str, Any]: snake_case__ = self.image_processing_class.from_dict(self.image_processor_dict ) self.assertEqual(image_processor.size , {'height': 18, 'width': 18} ) snake_case__ = self.image_processing_class.from_dict(self.image_processor_dict , size=42 ) self.assertEqual(image_processor.size , {'height': 42, 'width': 42} ) def lowerCAmelCase_ ( self: List[str] ) -> Tuple: # Initialize image_processing snake_case__ = self.image_processing_class(**self.image_processor_dict ) # create random PIL images snake_case__ = prepare_image_inputs(self.image_processor_tester , equal_resolution=UpperCamelCase ) for image in image_inputs: self.assertIsInstance(UpperCamelCase , Image.Image ) # Test not batched input 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.size['height'], self.image_processor_tester.size['width'], ) , ) # Test batched snake_case__ = image_processing(UpperCamelCase , return_tensors='pt' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, self.image_processor_tester.size['height'], self.image_processor_tester.size['width'], ) , ) def lowerCAmelCase_ ( self: List[str] ) -> Optional[int]: # Initialize image_processing snake_case__ = self.image_processing_class(**self.image_processor_dict ) # create random numpy tensors snake_case__ = prepare_image_inputs(self.image_processor_tester , equal_resolution=UpperCamelCase , numpify=UpperCamelCase ) for image in image_inputs: self.assertIsInstance(UpperCamelCase , np.ndarray ) # Test not batched input 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.size['height'], self.image_processor_tester.size['width'], ) , ) # Test batched snake_case__ = image_processing(UpperCamelCase , return_tensors='pt' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, self.image_processor_tester.size['height'], self.image_processor_tester.size['width'], ) , ) def lowerCAmelCase_ ( self: str ) -> List[Any]: # Initialize image_processing snake_case__ = self.image_processing_class(**self.image_processor_dict ) # create random PyTorch tensors snake_case__ = prepare_image_inputs(self.image_processor_tester , equal_resolution=UpperCamelCase , torchify=UpperCamelCase ) for image in image_inputs: self.assertIsInstance(UpperCamelCase , torch.Tensor ) # Test not batched input 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.size['height'], self.image_processor_tester.size['width'], ) , ) # Test batched snake_case__ = image_processing(UpperCamelCase , return_tensors='pt' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processor_tester.batch_size, self.image_processor_tester.num_channels, self.image_processor_tester.size['height'], self.image_processor_tester.size['width'], ) , )
307
import os import string import sys __UpperCamelCase : List[Any] = 1 << 8 __UpperCamelCase : Union[str, Any] = { """tab""": ord("""\t"""), """newline""": ord("""\r"""), """esc""": 27, """up""": 65 + ARROW_KEY_FLAG, """down""": 66 + ARROW_KEY_FLAG, """right""": 67 + ARROW_KEY_FLAG, """left""": 68 + ARROW_KEY_FLAG, """mod_int""": 91, """undefined""": sys.maxsize, """interrupt""": 3, """insert""": 50, """delete""": 51, """pg_up""": 53, """pg_down""": 54, } __UpperCamelCase : Optional[Any] = KEYMAP["""up"""] __UpperCamelCase : Tuple = KEYMAP["""left"""] if sys.platform == "win32": __UpperCamelCase : List[Any] = [] __UpperCamelCase : int = { b"""\xe0H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\x00H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\xe0P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\x00P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\xe0M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\x00M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\xe0K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, b"""\x00K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, } for i in range(10): __UpperCamelCase : List[str] = ord(str(i)) def a_ ( ) -> Optional[int]: """simple docstring""" if os.name == "nt": import msvcrt snake_case__ = 'mbcs' # Flush the keyboard buffer while msvcrt.kbhit(): msvcrt.getch() if len(_A ) == 0: # Read the keystroke snake_case__ = msvcrt.getch() # If it is a prefix char, get second part if ch in (b"\x00", b"\xe0"): snake_case__ = ch + msvcrt.getch() # Translate actual Win chars to bullet char types try: snake_case__ = chr(WIN_KEYMAP[cha] ) WIN_CH_BUFFER.append(chr(KEYMAP['mod_int'] ) ) WIN_CH_BUFFER.append(_A ) if ord(_A ) in ( KEYMAP["insert"] - 1 << 9, KEYMAP["delete"] - 1 << 9, KEYMAP["pg_up"] - 1 << 9, KEYMAP["pg_down"] - 1 << 9, ): WIN_CH_BUFFER.append(chr(126 ) ) snake_case__ = chr(KEYMAP['esc'] ) except KeyError: snake_case__ = cha[1] else: snake_case__ = ch.decode(_A ) else: snake_case__ = WIN_CH_BUFFER.pop(0 ) elif os.name == "posix": import termios import tty snake_case__ = sys.stdin.fileno() snake_case__ = termios.tcgetattr(_A ) try: tty.setraw(_A ) snake_case__ = sys.stdin.read(1 ) finally: termios.tcsetattr(_A , termios.TCSADRAIN , _A ) return ch def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = get_raw_chars() if ord(_A ) in [KEYMAP["interrupt"], KEYMAP["newline"]]: return char elif ord(_A ) == KEYMAP["esc"]: snake_case__ = get_raw_chars() if ord(_A ) == KEYMAP["mod_int"]: snake_case__ = get_raw_chars() if ord(_A ) >= KEYMAP["arrow_begin"] - ARROW_KEY_FLAG and ord(_A ) <= KEYMAP["arrow_end"] - ARROW_KEY_FLAG: return chr(ord(_A ) + ARROW_KEY_FLAG ) else: return KEYMAP["undefined"] else: return get_raw_chars() else: if char in string.printable: return char else: return KEYMAP["undefined"]
307
1
import argparse import os import evaluate import torch from datasets import load_dataset from torch.optim import AdamW from torch.utils.data import DataLoader from transformers import AutoModelForSequenceClassification, AutoTokenizer, get_linear_schedule_with_warmup, set_seed from accelerate import Accelerator, DistributedType ######################################################################## # This is a fully working simple example to use Accelerate, # specifically showcasing how to properly calculate the metrics on the # validation dataset when in a distributed system, and builds off the # `nlp_example.py` script. # # This example trains a Bert base model on GLUE MRPC # in any of the following settings (with the same script): # - single CPU or single GPU # - multi GPUS (using PyTorch distributed mode) # - (multi) TPUs # - fp16 (mixed-precision) or fp32 (normal precision) # # To help focus on the differences in the code, building `DataLoaders` # was refactored into its own function. # New additions from the base script can be found quickly by # looking for the # New Code # tags # # To run it in each of these various modes, follow the instructions # in the readme for examples: # https://github.com/huggingface/accelerate/tree/main/examples # ######################################################################## __UpperCamelCase : List[str] = 16 __UpperCamelCase : int = 32 def a_ ( _A , _A = 16 ) -> List[str]: """simple docstring""" snake_case__ = AutoTokenizer.from_pretrained('bert-base-cased' ) snake_case__ = load_dataset('glue' , 'mrpc' ) def tokenize_function(_A ): # max_length=None => use the model max length (it's actually the default) snake_case__ = tokenizer(examples['sentence1'] , examples['sentence2'] , truncation=_A , max_length=_A ) return outputs # Apply the method we just defined to all the examples in all the splits of the dataset # starting with the main process first: with accelerator.main_process_first(): snake_case__ = datasets.map( _A , batched=_A , remove_columns=['idx', 'sentence1', 'sentence2'] , ) # We also rename the 'label' column to 'labels' which is the expected name for labels by the models of the # transformers library snake_case__ = tokenized_datasets.rename_column('label' , 'labels' ) def collate_fn(_A ): # On TPU it's best to pad everything to the same length or training will be very slow. snake_case__ = 128 if accelerator.distributed_type == DistributedType.TPU else None # When using mixed precision we want round multiples of 8/16 if accelerator.mixed_precision == "fp8": snake_case__ = 16 elif accelerator.mixed_precision != "no": snake_case__ = 8 else: snake_case__ = None return tokenizer.pad( _A , padding='longest' , max_length=_A , pad_to_multiple_of=_A , return_tensors='pt' , ) # Instantiate dataloaders. snake_case__ = DataLoader( tokenized_datasets['train'] , shuffle=_A , collate_fn=_A , batch_size=_A ) snake_case__ = DataLoader( tokenized_datasets['validation'] , shuffle=_A , collate_fn=_A , batch_size=_A ) return train_dataloader, eval_dataloader # For testing only if os.environ.get("""TESTING_MOCKED_DATALOADERS""", None) == "1": from accelerate.test_utils.training import mocked_dataloaders __UpperCamelCase : Tuple = mocked_dataloaders # noqa: F811 def a_ ( _A , _A ) -> Tuple: """simple docstring""" # For testing only if os.environ.get('TESTING_MOCKED_DATALOADERS' , _A ) == "1": snake_case__ = 2 # Initialize accelerator snake_case__ = Accelerator(cpu=args.cpu , mixed_precision=args.mixed_precision ) # Sample hyper-parameters for learning rate, batch size, seed and a few other HPs snake_case__ = config['lr'] snake_case__ = int(config['num_epochs'] ) snake_case__ = int(config['seed'] ) snake_case__ = int(config['batch_size'] ) snake_case__ = evaluate.load('glue' , 'mrpc' ) # If the batch size is too big we use gradient accumulation snake_case__ = 1 if batch_size > MAX_GPU_BATCH_SIZE and accelerator.distributed_type != DistributedType.TPU: snake_case__ = batch_size // MAX_GPU_BATCH_SIZE snake_case__ = MAX_GPU_BATCH_SIZE set_seed(_A ) snake_case__ , snake_case__ = get_dataloaders(_A , _A ) # Instantiate the model (we build the model here so that the seed also control new weights initialization) snake_case__ = AutoModelForSequenceClassification.from_pretrained('bert-base-cased' , return_dict=_A ) # We could avoid this line since the accelerator is set with `device_placement=True` (default value). # Note that if you are placing tensors on devices manually, this line absolutely needs to be before the optimizer # creation otherwise training will not work on TPU (`accelerate` will kindly throw an error to make us aware of that). snake_case__ = model.to(accelerator.device ) # Instantiate optimizer snake_case__ = AdamW(params=model.parameters() , lr=_A ) # Instantiate scheduler snake_case__ = get_linear_schedule_with_warmup( optimizer=_A , num_warmup_steps=100 , num_training_steps=(len(_A ) * num_epochs) // gradient_accumulation_steps , ) # Prepare everything # There is no specific order to remember, we just need to unpack the objects in the same order we gave them to the # prepare method. snake_case__ , snake_case__ , snake_case__ , snake_case__ , snake_case__ = accelerator.prepare( _A , _A , _A , _A , _A ) # Now we train the model for epoch in range(_A ): model.train() for step, batch in enumerate(_A ): # We could avoid this line since we set the accelerator with `device_placement=True`. batch.to(accelerator.device ) snake_case__ = model(**_A ) snake_case__ = outputs.loss snake_case__ = loss / gradient_accumulation_steps accelerator.backward(_A ) if step % gradient_accumulation_steps == 0: optimizer.step() lr_scheduler.step() optimizer.zero_grad() model.eval() snake_case__ = 0 for step, batch in enumerate(_A ): # We could avoid this line since we set the accelerator with `device_placement=True`. batch.to(accelerator.device ) with torch.no_grad(): snake_case__ = model(**_A ) snake_case__ = outputs.logits.argmax(dim=-1 ) snake_case__ , snake_case__ = accelerator.gather((predictions, batch['labels']) ) # New Code # # First we check if it's a distributed system if accelerator.use_distributed: # Then see if we're on the last batch of our eval dataloader if step == len(_A ) - 1: # Last batch needs to be truncated on distributed systems as it contains additional samples snake_case__ = predictions[: len(eval_dataloader.dataset ) - samples_seen] snake_case__ = references[: len(eval_dataloader.dataset ) - samples_seen] else: # Otherwise we add the number of samples seen samples_seen += references.shape[0] # All of this can be avoided if you use `Accelerator.gather_for_metrics` instead of `Accelerator.gather`: # accelerator.gather_for_metrics((predictions, batch["labels"])) metric.add_batch( predictions=_A , references=_A , ) snake_case__ = metric.compute() # Use accelerator.print to print only on the main process. accelerator.print(f'''epoch {epoch}:''' , _A ) def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = argparse.ArgumentParser(description='Simple example of training script.' ) parser.add_argument( '--mixed_precision' , type=_A , default=_A , choices=['no', 'fp16', 'bf16', 'fp8'] , help='Whether to use mixed precision. Choose' 'between fp16 and bf16 (bfloat16). Bf16 requires PyTorch >= 1.10.' 'and an Nvidia Ampere GPU.' , ) parser.add_argument('--cpu' , action='store_true' , help='If passed, will train on the CPU.' ) snake_case__ = parser.parse_args() snake_case__ = {'lr': 2e-5, 'num_epochs': 3, 'seed': 42, 'batch_size': 16} training_function(_A , _A ) if __name__ == "__main__": main()
307
from ...configuration_utils import PretrainedConfig from ...utils import logging __UpperCamelCase : int = logging.get_logger(__name__) __UpperCamelCase : List[Any] = { """tanreinama/GPTSAN-2.8B-spout_is_uniform""": ( """https://huggingface.co/tanreinama/GPTSAN-2.8B-spout_is_uniform/resolve/main/config.json""" ), } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "gptsan-japanese" _UpperCAmelCase = [ "past_key_values", ] _UpperCAmelCase = { "hidden_size": "d_model", "num_attention_heads": "num_heads", "num_hidden_layers": "num_layers", } def __init__( self: Optional[Any] , UpperCamelCase: List[str]=3_60_00 , UpperCamelCase: List[str]=12_80 , UpperCamelCase: List[Any]=10_24 , UpperCamelCase: Any=81_92 , UpperCamelCase: Dict=40_96 , UpperCamelCase: Optional[int]=1_28 , UpperCamelCase: Any=10 , UpperCamelCase: List[Any]=0 , UpperCamelCase: Dict=16 , UpperCamelCase: Tuple=16 , UpperCamelCase: Union[str, Any]=1_28 , UpperCamelCase: List[Any]=0.0 , UpperCamelCase: Union[str, Any]=1e-5 , UpperCamelCase: int=False , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: Dict="float32" , UpperCamelCase: Any=False , UpperCamelCase: Dict=False , UpperCamelCase: List[str]=False , UpperCamelCase: Union[str, Any]=0.002 , UpperCamelCase: int=False , UpperCamelCase: str=True , UpperCamelCase: Dict=3_59_98 , UpperCamelCase: Optional[Any]=3_59_95 , UpperCamelCase: Optional[Any]=3_59_99 , **UpperCamelCase: Optional[int] , ) -> Optional[int]: snake_case__ = vocab_size snake_case__ = max_position_embeddings snake_case__ = d_model snake_case__ = d_ff snake_case__ = d_ext snake_case__ = d_spout snake_case__ = num_switch_layers snake_case__ = num_ext_layers snake_case__ = num_switch_layers + num_ext_layers snake_case__ = num_heads snake_case__ = num_experts snake_case__ = expert_capacity snake_case__ = dropout_rate snake_case__ = layer_norm_epsilon snake_case__ = router_bias snake_case__ = router_jitter_noise snake_case__ = router_dtype snake_case__ = router_ignore_padding_tokens snake_case__ = output_hidden_states snake_case__ = output_attentions snake_case__ = initializer_factor snake_case__ = output_router_logits snake_case__ = use_cache super().__init__( separator_token_id=UpperCamelCase , pad_token_id=UpperCamelCase , eos_token_id=UpperCamelCase , **UpperCamelCase , )
307
1
import math from collections import defaultdict from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import KarrasDiffusionSchedulers, SchedulerMixin, SchedulerOutput def a_ ( _A , _A=0.999 , _A="cosine" , ) -> Optional[int]: """simple docstring""" if alpha_transform_type == "cosine": def alpha_bar_fn(_A ): return math.cos((t + 0.008) / 1.008 * math.pi / 2 ) ** 2 elif alpha_transform_type == "exp": def alpha_bar_fn(_A ): return math.exp(t * -12.0 ) else: raise ValueError(f'''Unsupported alpha_tranform_type: {alpha_transform_type}''' ) snake_case__ = [] for i in range(_A ): snake_case__ = i / num_diffusion_timesteps snake_case__ = (i + 1) / num_diffusion_timesteps betas.append(min(1 - alpha_bar_fn(_A ) / alpha_bar_fn(_A ) , _A ) ) return torch.tensor(_A , dtype=torch.floataa ) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [e.name for e in KarrasDiffusionSchedulers] _UpperCAmelCase = 2 @register_to_config def __init__( self: Dict , UpperCamelCase: int = 10_00 , UpperCamelCase: float = 0.00_085 , UpperCamelCase: float = 0.012 , UpperCamelCase: str = "linear" , UpperCamelCase: Optional[Union[np.ndarray, List[float]]] = None , UpperCamelCase: str = "epsilon" , UpperCamelCase: Optional[bool] = False , UpperCamelCase: Optional[bool] = False , UpperCamelCase: float = 1.0 , UpperCamelCase: str = "linspace" , UpperCamelCase: int = 0 , ) -> str: if trained_betas is not None: snake_case__ = torch.tensor(UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "linear": snake_case__ = torch.linspace(UpperCamelCase , UpperCamelCase , UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "scaled_linear": # this schedule is very specific to the latent diffusion model. snake_case__ = ( torch.linspace(beta_start**0.5 , beta_end**0.5 , UpperCamelCase , dtype=torch.floataa ) ** 2 ) elif beta_schedule == "squaredcos_cap_v2": # Glide cosine schedule snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='cosine' ) elif beta_schedule == "exp": snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='exp' ) else: raise NotImplementedError(F'''{beta_schedule} does is not implemented for {self.__class__}''' ) snake_case__ = 1.0 - self.betas snake_case__ = torch.cumprod(self.alphas , dim=0 ) # set all values self.set_timesteps(UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = use_karras_sigmas def lowerCAmelCase_ ( self: str , UpperCamelCase: int , UpperCamelCase: Optional[int]=None ) -> str: if schedule_timesteps is None: snake_case__ = self.timesteps snake_case__ = (schedule_timesteps == timestep).nonzero() # The sigma index that is taken for the **very** first `step` # is always the second index (or the last index if there is only 1) # This way we can ensure we don't accidentally skip a sigma in # case we start in the middle of the denoising schedule (e.g. for image-to-image) if len(self._index_counter ) == 0: snake_case__ = 1 if len(UpperCamelCase ) > 1 else 0 else: snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep snake_case__ = self._index_counter[timestep_int] return indices[pos].item() @property def lowerCAmelCase_ ( self: Optional[Any] ) -> List[Any]: # standard deviation of the initial noise distribution if self.config.timestep_spacing in ["linspace", "trailing"]: return self.sigmas.max() return (self.sigmas.max() ** 2 + 1) ** 0.5 def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Union[float, torch.FloatTensor] , ) -> torch.FloatTensor: snake_case__ = self.index_for_timestep(UpperCamelCase ) snake_case__ = self.sigmas[step_index] snake_case__ = sample / ((sigma**2 + 1) ** 0.5) return sample def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int , UpperCamelCase: Union[str, torch.device] = None , UpperCamelCase: Optional[int] = None , ) -> str: snake_case__ = num_inference_steps snake_case__ = num_train_timesteps or self.config.num_train_timesteps # "linspace", "leading", "trailing" corresponds to annotation of Table 2. of https://arxiv.org/abs/2305.08891 if self.config.timestep_spacing == "linspace": snake_case__ = np.linspace(0 , num_train_timesteps - 1 , UpperCamelCase , dtype=UpperCamelCase )[::-1].copy() elif self.config.timestep_spacing == "leading": snake_case__ = num_train_timesteps // self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(0 , UpperCamelCase ) * step_ratio).round()[::-1].copy().astype(UpperCamelCase ) timesteps += self.config.steps_offset elif self.config.timestep_spacing == "trailing": snake_case__ = num_train_timesteps / self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(UpperCamelCase , 0 , -step_ratio )).round().copy().astype(UpperCamelCase ) timesteps -= 1 else: raise ValueError( F'''{self.config.timestep_spacing} is not supported. Please make sure to choose one of \'linspace\', \'leading\' or \'trailing\'.''' ) snake_case__ = np.array(((1 - self.alphas_cumprod) / self.alphas_cumprod) ** 0.5 ) snake_case__ = np.log(UpperCamelCase ) snake_case__ = np.interp(UpperCamelCase , np.arange(0 , len(UpperCamelCase ) ) , UpperCamelCase ) if self.config.use_karras_sigmas: snake_case__ = self._convert_to_karras(in_sigmas=UpperCamelCase , num_inference_steps=self.num_inference_steps ) snake_case__ = np.array([self._sigma_to_t(UpperCamelCase , UpperCamelCase ) for sigma in sigmas] ) snake_case__ = np.concatenate([sigmas, [0.0]] ).astype(np.floataa ) snake_case__ = torch.from_numpy(UpperCamelCase ).to(device=UpperCamelCase ) snake_case__ = torch.cat([sigmas[:1], sigmas[1:-1].repeat_interleave(2 ), sigmas[-1:]] ) snake_case__ = torch.from_numpy(UpperCamelCase ) snake_case__ = torch.cat([timesteps[:1], timesteps[1:].repeat_interleave(2 )] ) if str(UpperCamelCase ).startswith('mps' ): # mps does not support float64 snake_case__ = timesteps.to(UpperCamelCase , dtype=torch.floataa ) else: snake_case__ = timesteps.to(device=UpperCamelCase ) # empty dt and derivative snake_case__ = None snake_case__ = None # for exp beta schedules, such as the one for `pipeline_shap_e.py` # we need an index counter snake_case__ = defaultdict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Dict ) -> Tuple: # get log sigma snake_case__ = np.log(UpperCamelCase ) # get distribution snake_case__ = log_sigma - log_sigmas[:, np.newaxis] # get sigmas range snake_case__ = np.cumsum((dists >= 0) , axis=0 ).argmax(axis=0 ).clip(max=log_sigmas.shape[0] - 2 ) snake_case__ = low_idx + 1 snake_case__ = log_sigmas[low_idx] snake_case__ = log_sigmas[high_idx] # interpolate sigmas snake_case__ = (low - log_sigma) / (low - high) snake_case__ = np.clip(UpperCamelCase , 0 , 1 ) # transform interpolation to time range snake_case__ = (1 - w) * low_idx + w * high_idx snake_case__ = t.reshape(sigma.shape ) return t def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Dict ) -> torch.FloatTensor: snake_case__ = in_sigmas[-1].item() snake_case__ = in_sigmas[0].item() snake_case__ = 7.0 # 7.0 is the value used in the paper snake_case__ = np.linspace(0 , 1 , UpperCamelCase ) snake_case__ = sigma_min ** (1 / rho) snake_case__ = sigma_max ** (1 / rho) snake_case__ = (max_inv_rho + ramp * (min_inv_rho - max_inv_rho)) ** rho return sigmas @property def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.dt is None def lowerCAmelCase_ ( self: int , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: Union[float, torch.FloatTensor] , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: bool = True , ) -> Union[SchedulerOutput, Tuple]: snake_case__ = self.index_for_timestep(UpperCamelCase ) # advance index counter by 1 snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep self._index_counter[timestep_int] += 1 if self.state_in_first_order: snake_case__ = self.sigmas[step_index] snake_case__ = self.sigmas[step_index + 1] else: # 2nd order / Heun's method snake_case__ = self.sigmas[step_index - 1] snake_case__ = self.sigmas[step_index] # currently only gamma=0 is supported. This usually works best anyways. # We can support gamma in the future but then need to scale the timestep before # passing it to the model which requires a change in API snake_case__ = 0 snake_case__ = sigma * (gamma + 1) # Note: sigma_hat == sigma for now # 1. compute predicted original sample (x_0) from sigma-scaled predicted noise if self.config.prediction_type == "epsilon": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = sample - sigma_input * model_output elif self.config.prediction_type == "v_prediction": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = model_output * (-sigma_input / (sigma_input**2 + 1) ** 0.5) + ( sample / (sigma_input**2 + 1) ) elif self.config.prediction_type == "sample": snake_case__ = model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, or `v_prediction`''' ) if self.config.clip_sample: snake_case__ = pred_original_sample.clamp( -self.config.clip_sample_range , self.config.clip_sample_range ) if self.state_in_first_order: # 2. Convert to an ODE derivative for 1st order snake_case__ = (sample - pred_original_sample) / sigma_hat # 3. delta timestep snake_case__ = sigma_next - sigma_hat # store for 2nd order step snake_case__ = derivative snake_case__ = dt snake_case__ = sample else: # 2. 2nd order / Heun's method snake_case__ = (sample - pred_original_sample) / sigma_next snake_case__ = (self.prev_derivative + derivative) / 2 # 3. take prev timestep & sample snake_case__ = self.dt snake_case__ = self.sample # free dt and derivative # Note, this puts the scheduler in "first order mode" snake_case__ = None snake_case__ = None snake_case__ = None snake_case__ = sample + derivative * dt if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , ) -> torch.FloatTensor: # Make sure sigmas and timesteps have the same device and dtype as original_samples snake_case__ = self.sigmas.to(device=original_samples.device , dtype=original_samples.dtype ) if original_samples.device.type == "mps" and torch.is_floating_point(UpperCamelCase ): # mps does not support float64 snake_case__ = self.timesteps.to(original_samples.device , dtype=torch.floataa ) snake_case__ = timesteps.to(original_samples.device , dtype=torch.floataa ) else: snake_case__ = self.timesteps.to(original_samples.device ) snake_case__ = timesteps.to(original_samples.device ) snake_case__ = [self.index_for_timestep(UpperCamelCase , UpperCamelCase ) for t in timesteps] snake_case__ = sigmas[step_indices].flatten() while len(sigma.shape ) < len(original_samples.shape ): snake_case__ = sigma.unsqueeze(-1 ) snake_case__ = original_samples + noise * sigma return noisy_samples def __len__( self: List[Any] ) -> Union[str, Any]: return self.config.num_train_timesteps
307
from math import sqrt import numpy as np from sympy import symbols # Coefficient # Speed of light (m/s) __UpperCamelCase : int = 299792458 # Symbols __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Optional[int] = symbols("""ct x y z""") def a_ ( _A ) -> float: """simple docstring""" if velocity > c: raise ValueError('Speed must not exceed light speed 299,792,458 [m/s]!' ) elif velocity < 1: # Usually the speed should be much higher than 1 (c order of magnitude) raise ValueError('Speed must be greater than or equal to 1!' ) return velocity / c def a_ ( _A ) -> float: """simple docstring""" return 1 / sqrt(1 - beta(_A ) ** 2 ) def a_ ( _A ) -> np.ndarray: """simple docstring""" return np.array( [ [gamma(_A ), -gamma(_A ) * beta(_A ), 0, 0], [-gamma(_A ) * beta(_A ), gamma(_A ), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], ] ) def a_ ( _A , _A = None ) -> np.ndarray: """simple docstring""" # Ensure event is not empty if event is None: snake_case__ = np.array([ct, x, y, z] ) # Symbolic four vector else: event[0] *= c # x0 is ct (speed of light * time) return transformation_matrix(_A ) @ event if __name__ == "__main__": import doctest doctest.testmod() # Example of symbolic vector: __UpperCamelCase : List[Any] = transform(29979245) print("""Example of four vector: """) print(f'''ct\' = {four_vector[0]}''') print(f'''x\' = {four_vector[1]}''') print(f'''y\' = {four_vector[2]}''') print(f'''z\' = {four_vector[3]}''') # Substitute symbols with numerical values __UpperCamelCase : List[Any] = {ct: c, x: 1, y: 1, z: 1} __UpperCamelCase : Tuple = [four_vector[i].subs(sub_dict) for i in range(4)] print(f'''\n{numerical_vector}''')
307
1
import argparse import re from typing import Dict import torch from datasets import Audio, Dataset, load_dataset, load_metric from transformers import AutoFeatureExtractor, pipeline def a_ ( _A , _A ) -> str: """simple docstring""" snake_case__ = args.log_outputs snake_case__ = '_'.join(args.dataset.split('/' ) + [args.config, args.split] ) # load metric snake_case__ = load_metric('wer' ) snake_case__ = load_metric('cer' ) # compute metrics snake_case__ = wer.compute(references=result['target'] , predictions=result['prediction'] ) snake_case__ = cer.compute(references=result['target'] , predictions=result['prediction'] ) # print & log results snake_case__ = f'''WER: {wer_result}\nCER: {cer_result}''' print(_A ) with open(f'''{dataset_id}_eval_results.txt''' , 'w' ) as f: f.write(_A ) # log all results in text file. Possibly interesting for analysis if log_outputs is not None: snake_case__ = f'''log_{dataset_id}_predictions.txt''' snake_case__ = f'''log_{dataset_id}_targets.txt''' with open(_A , 'w' ) as p, open(_A , 'w' ) as t: # mapping function to write output def write_to_file(_A , _A ): p.write(f'''{i}''' + '\n' ) p.write(batch['prediction'] + '\n' ) t.write(f'''{i}''' + '\n' ) t.write(batch['target'] + '\n' ) result.map(_A , with_indices=_A ) def a_ ( _A ) -> str: """simple docstring""" snake_case__ = '[,?.!\-\;\:"“%‘”�—’…–]' # noqa: W605 IMPORTANT: this should correspond to the chars that were ignored during training snake_case__ = re.sub(_A , '' , text.lower() ) # In addition, we can normalize the target text, e.g. removing new lines characters etc... # note that order is important here! snake_case__ = ['\n\n', '\n', ' ', ' '] for t in token_sequences_to_ignore: snake_case__ = ' '.join(text.split(_A ) ) return text def a_ ( _A ) -> Optional[Any]: """simple docstring""" # load dataset snake_case__ = load_dataset(args.dataset , args.config , split=args.split , use_auth_token=_A ) # for testing: only process the first two examples as a test # dataset = dataset.select(range(10)) # load processor snake_case__ = AutoFeatureExtractor.from_pretrained(args.model_id ) snake_case__ = feature_extractor.sampling_rate # resample audio snake_case__ = dataset.cast_column('audio' , Audio(sampling_rate=_A ) ) # load eval pipeline if args.device is None: snake_case__ = 0 if torch.cuda.is_available() else -1 snake_case__ = pipeline('automatic-speech-recognition' , model=args.model_id , device=args.device ) # map function to decode audio def map_to_pred(_A ): snake_case__ = asr( batch['audio']['array'] , chunk_length_s=args.chunk_length_s , stride_length_s=args.stride_length_s ) snake_case__ = prediction['text'] snake_case__ = normalize_text(batch['sentence'] ) return batch # run inference on all examples snake_case__ = dataset.map(_A , remove_columns=dataset.column_names ) # compute and log_results # do not change function below log_results(_A , _A ) if __name__ == "__main__": __UpperCamelCase : Union[str, Any] = argparse.ArgumentParser() parser.add_argument( """--model_id""", type=str, required=True, help="""Model identifier. Should be loadable with 🤗 Transformers""" ) parser.add_argument( """--dataset""", type=str, required=True, help="""Dataset name to evaluate the `model_id`. Should be loadable with 🤗 Datasets""", ) parser.add_argument( """--config""", type=str, required=True, help="""Config of the dataset. *E.g.* `'en'` for Common Voice""" ) parser.add_argument("""--split""", type=str, required=True, help="""Split of the dataset. *E.g.* `'test'`""") parser.add_argument( """--chunk_length_s""", type=float, default=None, help="""Chunk length in seconds. Defaults to 5 seconds.""" ) parser.add_argument( """--stride_length_s""", type=float, default=None, help="""Stride of the audio chunks. Defaults to 1 second.""" ) parser.add_argument( """--log_outputs""", action="""store_true""", help="""If defined, write outputs to log file for analysis.""" ) parser.add_argument( """--device""", type=int, default=None, help="""The device to run the pipeline on. -1 for CPU (default), 0 for the first GPU and so on.""", ) __UpperCamelCase : Optional[int] = parser.parse_args() main(args)
307
from typing import TYPE_CHECKING from ...utils import _LazyModule __UpperCamelCase : Any = {"""tokenization_byt5""": ["""ByT5Tokenizer"""]} if TYPE_CHECKING: from .tokenization_byta import ByTaTokenizer else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import numpy # List of input, output pairs __UpperCamelCase : Optional[Any] = ( ((5, 2, 3), 15), ((6, 5, 9), 25), ((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41), ) __UpperCamelCase : str = (((515, 22, 13), 555), ((61, 35, 49), 150)) __UpperCamelCase : Optional[Any] = [2, 4, 1, 5] __UpperCamelCase : Optional[Any] = len(train_data) __UpperCamelCase : Optional[int] = 0.0_0_9 def a_ ( _A , _A="train" ) -> Tuple: """simple docstring""" return calculate_hypothesis_value(_A , _A ) - output( _A , _A ) def a_ ( _A ) -> Any: """simple docstring""" snake_case__ = 0 for i in range(len(_A ) - 1 ): hyp_val += data_input_tuple[i] * parameter_vector[i + 1] hyp_val += parameter_vector[0] return hyp_val def a_ ( _A , _A ) -> Optional[int]: """simple docstring""" if data_set == "train": return train_data[example_no][1] elif data_set == "test": return test_data[example_no][1] return None def a_ ( _A , _A ) -> Optional[Any]: """simple docstring""" if data_set == "train": return _hypothesis_value(train_data[example_no][0] ) elif data_set == "test": return _hypothesis_value(test_data[example_no][0] ) return None def a_ ( _A , _A=m ) -> List[Any]: """simple docstring""" snake_case__ = 0 for i in range(_A ): if index == -1: summation_value += _error(_A ) else: summation_value += _error(_A ) * train_data[i][0][index] return summation_value def a_ ( _A ) -> Optional[int]: """simple docstring""" snake_case__ = summation_of_cost_derivative(_A , _A ) / m return cost_derivative_value def a_ ( ) -> Dict: """simple docstring""" global parameter_vector # Tune these values to set a tolerance value for predicted output snake_case__ = 0.000002 snake_case__ = 0 snake_case__ = 0 while True: j += 1 snake_case__ = [0, 0, 0, 0] for i in range(0 , len(_A ) ): snake_case__ = get_cost_derivative(i - 1 ) snake_case__ = ( parameter_vector[i] - LEARNING_RATE * cost_derivative ) if numpy.allclose( _A , _A , atol=_A , rtol=_A , ): break snake_case__ = temp_parameter_vector print(('Number of iterations:', j) ) def a_ ( ) -> List[str]: """simple docstring""" for i in range(len(_A ) ): print(('Actual output value:', output(_A , 'test' )) ) print(('Hypothesis output:', calculate_hypothesis_value(_A , 'test' )) ) if __name__ == "__main__": run_gradient_descent() print("""\nTesting gradient descent for a linear hypothesis function.\n""") test_gradient_descent()
307
import os import re import warnings from shutil import copyfile from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer if TYPE_CHECKING: from ...tokenization_utils_base import TextInput from ...utils import logging __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) __UpperCamelCase : int = {"""vocab_file""": """spiece.model"""} __UpperCamelCase : Any = { """vocab_file""": { """t5-small""": """https://huggingface.co/t5-small/resolve/main/spiece.model""", """t5-base""": """https://huggingface.co/t5-base/resolve/main/spiece.model""", """t5-large""": """https://huggingface.co/t5-large/resolve/main/spiece.model""", """t5-3b""": """https://huggingface.co/t5-3b/resolve/main/spiece.model""", """t5-11b""": """https://huggingface.co/t5-11b/resolve/main/spiece.model""", } } # TODO(PVP) - this should be removed in Transformers v5 __UpperCamelCase : Tuple = { """t5-small""": 512, """t5-base""": 512, """t5-large""": 512, """t5-3b""": 512, """t5-11b""": 512, } __UpperCamelCase : Optional[Any] = """▁""" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any]="</s>" , UpperCamelCase: Tuple="<unk>" , UpperCamelCase: Optional[int]="<pad>" , UpperCamelCase: List[str]=1_00 , UpperCamelCase: Dict=None , UpperCamelCase: Optional[Dict[str, Any]] = None , UpperCamelCase: Tuple=True , **UpperCamelCase: Dict , ) -> None: # Add extra_ids to the special token list if extra_ids > 0 and additional_special_tokens is None: snake_case__ = [F'''<extra_id_{i}>''' for i in range(UpperCamelCase )] elif extra_ids > 0 and additional_special_tokens is not None: # Check that we have the right number of extra_id special tokens snake_case__ = len(set(filter(lambda UpperCamelCase : bool('extra_id' in str(UpperCamelCase ) ) , UpperCamelCase ) ) ) if extra_tokens != extra_ids: raise ValueError( F'''Both extra_ids ({extra_ids}) and additional_special_tokens ({additional_special_tokens}) are''' ' provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids' ' tokens' ) if legacy: logger.warning_once( F'''You are using the legacy behaviour of the {self.__class__}. This means that tokens that come after special tokens will not be properly handled. We recommend you to''' ' read the related pull request available at https://github.com/huggingface/transformers/pull/24565' ) snake_case__ = legacy snake_case__ = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( eos_token=UpperCamelCase , unk_token=UpperCamelCase , pad_token=UpperCamelCase , extra_ids=UpperCamelCase , additional_special_tokens=UpperCamelCase , sp_model_kwargs=self.sp_model_kwargs , legacy=UpperCamelCase , **UpperCamelCase , ) snake_case__ = vocab_file snake_case__ = extra_ids snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] ) -> Any: if pretrained_model_name_or_path in TaTokenizer.max_model_input_sizes: snake_case__ = TaTokenizer.max_model_input_sizes[pretrained_model_name_or_path] if init_max_model_length is not None and init_max_model_length != max_model_length: return init_max_model_length elif init_max_model_length is None: warnings.warn( 'This tokenizer was incorrectly instantiated with a model max length of' F''' {deprecated_max_model_length} which will be corrected in Transformers v5.\nFor now, this''' ' behavior is kept to avoid breaking backwards compatibility when padding/encoding with' ' `truncation is True`.\n- Be aware that you SHOULD NOT rely on' F''' {pretrained_model_name_or_path} automatically truncating your input to''' F''' {deprecated_max_model_length} when padding/encoding.\n- If you want to encode/pad to sequences''' F''' longer than {deprecated_max_model_length} you can either instantiate this tokenizer with''' ' `model_max_length` or pass `max_length` when encoding/padding.\n- To avoid this warning, please' ' instantiate this tokenizer with `model_max_length` set to your preferred value.' , UpperCamelCase , ) return max_model_length @property def lowerCAmelCase_ ( self: Tuple ) -> List[str]: return self.sp_model.get_piece_size() + self._extra_ids def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = {self.convert_ids_to_tokens(UpperCamelCase ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None , UpperCamelCase: bool = False ) -> List[int]: if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase , token_ids_a=UpperCamelCase , already_has_special_tokens=UpperCamelCase ) # normal case: some special tokens if token_ids_a is None: return ([0] * len(UpperCamelCase )) + [1] return ([0] * len(UpperCamelCase )) + [1] + ([0] * len(UpperCamelCase )) + [1] def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: return list( set(filter(lambda UpperCamelCase : bool(re.search(R'<extra_id_\d+>' , UpperCamelCase ) ) is not None , self.additional_special_tokens ) ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return [self._convert_token_to_id(UpperCamelCase ) for token in self.get_sentinel_tokens()] def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[int] ) -> List[int]: if len(UpperCamelCase ) > 0 and token_ids[-1] == self.eos_token_id: warnings.warn( F'''This sequence already has {self.eos_token}. In future versions this behavior may lead to duplicated''' ' eos tokens being added.' ) return token_ids else: return token_ids + [self.eos_token_id] def lowerCAmelCase_ ( self: str , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.eos_token_id] if token_ids_a is None: return len(token_ids_a + eos ) * [0] return len(token_ids_a + eos + token_ids_a + eos ) * [0] def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) if token_ids_a is None: return token_ids_a else: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) return token_ids_a + token_ids_a def __getstate__( self: Union[str, Any] ) -> List[str]: snake_case__ = self.__dict__.copy() snake_case__ = None return state def __setstate__( self: Optional[int] , UpperCamelCase: int ) -> List[str]: snake_case__ = d # for backward compatibility if not hasattr(self , 'sp_model_kwargs' ): snake_case__ = {} snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(self.vocab_file ) def lowerCAmelCase_ ( self: str , UpperCamelCase: "TextInput" , **UpperCamelCase: Dict ) -> List[str]: # Replace the SPIECE_UNDERLINE with a space to make sure SPIECE_UNDERLINE is only used at # the beginning of the text if not self.legacy: snake_case__ = SPIECE_UNDERLINE + text.replace(UpperCamelCase , ' ' ) return super().tokenize(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , **UpperCamelCase: str ) -> str: if not self.legacy: snake_case__ = text.startswith(UpperCamelCase ) if is_first: snake_case__ = text[1:] snake_case__ = self.sp_model.encode(UpperCamelCase , out_type=UpperCamelCase ) if not self.legacy and not is_first and not text.startswith(' ' ) and tokens[0].startswith(UpperCamelCase ): snake_case__ = ([tokens[0][1:]] if len(tokens[0] ) > 1 else []) + tokens[1:] return tokens def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[int] ) -> Dict: if token.startswith('<extra_id_' ): snake_case__ = re.match(R'<extra_id_(\d+)>' , UpperCamelCase ) snake_case__ = int(match.group(1 ) ) return self.vocab_size - num - 1 return self.sp_model.piece_to_id(UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: str ) -> Tuple: if index < self.sp_model.get_piece_size(): snake_case__ = self.sp_model.IdToPiece(UpperCamelCase ) else: snake_case__ = F'''<extra_id_{self.vocab_size - 1 - index}>''' return token def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> Dict: snake_case__ = [] snake_case__ = '' snake_case__ = False for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: if not prev_is_special: out_string += " " out_string += self.sp_model.decode(UpperCamelCase ) + token snake_case__ = True snake_case__ = [] else: current_sub_tokens.append(UpperCamelCase ) snake_case__ = False out_string += self.sp_model.decode(UpperCamelCase ) return out_string.strip() def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: if not os.path.isdir(UpperCamelCase ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase , 'wb' ) as fi: snake_case__ = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase ) return (out_vocab_file,)
307
1
from ...configuration_utils import PretrainedConfig from ...utils import logging from ...utils.backbone_utils import BackboneConfigMixin, get_aligned_output_features_output_indices __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = "maskformer-swin" _UpperCAmelCase = { "num_attention_heads": "num_heads", "num_hidden_layers": "num_layers", } def __init__( self: List[Any] , UpperCamelCase: Any=2_24 , UpperCamelCase: int=4 , UpperCamelCase: str=3 , UpperCamelCase: List[Any]=96 , UpperCamelCase: List[str]=[2, 2, 6, 2] , UpperCamelCase: str=[3, 6, 12, 24] , UpperCamelCase: Any=7 , UpperCamelCase: List[Any]=4.0 , UpperCamelCase: List[str]=True , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: Tuple=0.1 , UpperCamelCase: str="gelu" , UpperCamelCase: Tuple=False , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Tuple=1e-5 , UpperCamelCase: int=None , UpperCamelCase: int=None , **UpperCamelCase: Optional[Any] , ) -> Optional[Any]: super().__init__(**UpperCamelCase ) snake_case__ = image_size snake_case__ = patch_size snake_case__ = num_channels snake_case__ = embed_dim snake_case__ = depths snake_case__ = len(UpperCamelCase ) snake_case__ = num_heads snake_case__ = window_size snake_case__ = mlp_ratio snake_case__ = qkv_bias snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = drop_path_rate snake_case__ = hidden_act snake_case__ = use_absolute_embeddings snake_case__ = layer_norm_eps snake_case__ = initializer_range # we set the hidden_size attribute in order to make Swin work with VisionEncoderDecoderModel # this indicates the channel dimension after the last stage of the model snake_case__ = int(embed_dim * 2 ** (len(UpperCamelCase ) - 1) ) snake_case__ = ['stem'] + [F'''stage{idx}''' for idx in range(1 , len(UpperCamelCase ) + 1 )] snake_case__ , snake_case__ = get_aligned_output_features_output_indices( out_features=UpperCamelCase , out_indices=UpperCamelCase , stage_names=self.stage_names )
307
import unittest from parameterized import parameterized from transformers import LlamaConfig, is_torch_available, set_seed from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import LlamaForCausalLM, LlamaForSequenceClassification, LlamaModel, LlamaTokenizer class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: List[str] , UpperCamelCase: str=13 , UpperCamelCase: int=7 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , UpperCamelCase: Dict=False , UpperCamelCase: Optional[int]=True , UpperCamelCase: Dict=99 , UpperCamelCase: Dict=32 , UpperCamelCase: Optional[Any]=5 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: List[str]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Union[str, Any]=5_12 , UpperCamelCase: str=16 , UpperCamelCase: int=2 , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Dict=4 , UpperCamelCase: List[str]=None , ) -> List[str]: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_input_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_labels snake_case__ = num_choices snake_case__ = scope def lowerCAmelCase_ ( self: List[str] ) -> Dict: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_input_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = None snake_case__ = None snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case__ = ids_tensor([self.batch_size] , self.num_choices ) snake_case__ = self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: return LlamaConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: Dict , UpperCamelCase: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: str ) -> Dict: snake_case__ = LlamaModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[Any] , ) -> str: snake_case__ = True snake_case__ = LlamaModel(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , ) snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Any , UpperCamelCase: int , UpperCamelCase: Optional[Any] , ) -> Any: snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: List[str] , ) -> Union[str, Any]: snake_case__ = True snake_case__ = True snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() # first forward pass snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , use_cache=UpperCamelCase , ) snake_case__ = outputs.past_key_values # create hypothetical multiple next token and extent to next_input_ids snake_case__ = ids_tensor((self.batch_size, 3) , config.vocab_size ) snake_case__ = ids_tensor((self.batch_size, 3) , vocab_size=2 ) # append to next input_ids and snake_case__ = torch.cat([input_ids, next_tokens] , dim=-1 ) snake_case__ = torch.cat([input_mask, next_mask] , dim=-1 ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , past_key_values=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] # select random slice snake_case__ = ids_tensor((1,) , output_from_past.shape[-1] ).item() snake_case__ = output_from_no_past[:, -3:, random_slice_idx].detach() snake_case__ = output_from_past[:, :, random_slice_idx].detach() self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1] ) # test that outputs are equal for slice self.parent.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: int ) -> Dict: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'input_ids': input_ids, 'attention_mask': input_mask} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , a_ , unittest.TestCase ): _UpperCAmelCase = (LlamaModel, LlamaForCausalLM, LlamaForSequenceClassification) if is_torch_available() else () _UpperCAmelCase = (LlamaForCausalLM,) if is_torch_available() else () _UpperCAmelCase = ( { "feature-extraction": LlamaModel, "text-classification": LlamaForSequenceClassification, "text-generation": LlamaForCausalLM, "zero-shot": LlamaForSequenceClassification, } if is_torch_available() else {} ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = LlamaModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: self.config_tester.run_common_tests() def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> str: snake_case__ = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: snake_case__ = type self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'single_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: Dict ) -> int: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'multi_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor( [self.model_tester.batch_size, config.num_labels] , self.model_tester.type_sequence_label_size ).to(torch.float ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) @unittest.skip('LLaMA buffers include complex numbers, which breaks this test' ) def lowerCAmelCase_ ( self: Dict ) -> Any: pass @parameterized.expand([('linear',), ('dynamic',)] ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> List[str]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = ids_tensor([1, 10] , config.vocab_size ) snake_case__ = ids_tensor([1, int(config.max_position_embeddings * 1.5 )] , config.vocab_size ) set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = LlamaModel(UpperCamelCase ) original_model.to(UpperCamelCase ) original_model.eval() snake_case__ = original_model(UpperCamelCase ).last_hidden_state snake_case__ = original_model(UpperCamelCase ).last_hidden_state set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = {'type': scaling_type, 'factor': 10.0} snake_case__ = LlamaModel(UpperCamelCase ) scaled_model.to(UpperCamelCase ) scaled_model.eval() snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state # Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original # maximum sequence length, so the outputs for the short input should match. if scaling_type == "dynamic": self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) else: self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) # The output should be different for long inputs self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) @require_torch class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> str: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor([input_ids] ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-6.6_550, -4.1_227, -4.9_859, -3.2_406, 0.8_262, -3.0_033, 1.2_964, -3.3_699]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-12.8_281, -7.4_453, -0.4_639, -8.0_625, -7.2_500, -8.0_000, -6.4_883, -7.7_695, -7.8_438, -7.0_312, -6.2_188, -7.1_328, -1.8_496, 1.9_961, -8.6_250, -6.7_227, -12.8_281, -6.9_492, -7.0_742, -7.7_852, -7.5_820, -7.9_062, -6.9_375, -7.9_805, -8.3_438, -8.1_562, -8.0_469, -7.6_250, -7.7_422, -7.3_398,] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-2.0_622, -1.2_794, -1.1_638, -0.9_788, -1.4_603, -1.0_238, -1.7_893, -1.4_411]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-8.1_406, -8.0_547, 2.7_461, -1.2_344, -0.1_448, -1.8_262, -1.0_020, -1.8_154, -1.6_895, -1.8_516, -2.3_574, -0.9_277, 3.7_598, 6.5_742, -1.2_998, -0.1_177, -8.1_406, -2.9_688, -2.9_199, -3.1_699, -3.5_254, -2.3_555, -2.7_988, -3.4_141, -2.8_262, -4.5_195, -3.3_379, -3.3_164, -2.7_832, -3.0_273] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-chat-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-0.8_562, -1.8_520, -0.7_551, -0.4_162, -1.5_161, -1.2_038, -2.4_823, -2.3_254]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-2.2_227, 4.8_828, 0.9_023, -0.4_578, -0.7_871, -0.1_033, -0.6_221, -0.5_786, -0.7_803, -1.0_674, -1.2_920, -0.1_570, 0.8_008, 2.0_723, -0.9_497, 0.2_771, -2.2_227, -0.7_612, -1.4_346, -1.2_061, -1.6_426, -0.3_000, -0.7_139, -1.1_934, -1.8_691, -1.6_973, -1.5_947, -1.2_705, -0.3_523, -0.5_513] ) # fmt: on torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) @unittest.skip( 'Logits are not exactly the same, once we fix the instabalities somehow, will update! Also it is gonna be a `too_slow` test' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-70b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) snake_case__ = torch.tensor( [[-4.2_327, -3.3_360, -4.6_665, -4.7_631, -1.8_180, -3.4_170, -1.4_211, -3.1_810]] , dtype=torch.floataa ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # fmt: off snake_case__ = torch.tensor([-9.4_922, -3.9_551, 1.7_998, -5.6_758, -5.1_055, -5.8_984, -4.8_320, -6.8_086, -6.5_391, -5.6_172, -5.5_820, -5.5_352, 1.7_881, 3.6_289, -6.5_117, -3.4_785, -9.5_000, -6.0_352, -6.8_125, -6.0_195, -6.6_836, -5.4_727, -6.2_812, -6.0_391, -7.3_398, -7.4_297, -7.4_844, -6.5_820, -5.8_789, -5.5_312] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Model is curently gated' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'Simply put, the theory of relativity states that 1) the laws of physics are the same everywhere in the universe and 2) the passage of time and the length of objects can vary depending on the observer\'s frame of reference.\n\nThe first part of the theory, that the laws of physics are the same everywhere, is known as the "princi' snake_case__ = 'Simply put, the theory of relativity states that ' snake_case__ = LlamaTokenizer.from_pretrained('meta-llama/Llama-2-13b-chat-hf' ) snake_case__ = tokenizer.encode(UpperCamelCase , return_tensors='pt' ) snake_case__ = LlamaForCausalLM.from_pretrained( 'meta-llama/Llama-2-13b-chat-hf' , device_map='sequential' , use_safetensors=UpperCamelCase ) # greedy generation outputs snake_case__ = model.generate(UpperCamelCase , max_new_tokens=64 , top_p=UpperCamelCase , temperature=1 , do_sample=UpperCamelCase ) snake_case__ = tokenizer.decode(generated_ids[0] , skip_special_tokens=UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase )
307
1
from .testing import ( are_the_same_tensors, execute_subprocess_async, require_bnb, require_cpu, require_cuda, require_huggingface_suite, require_mps, require_multi_gpu, require_multi_xpu, require_safetensors, require_single_gpu, require_single_xpu, require_torch_min_version, require_tpu, require_xpu, skip, slow, ) from .training import RegressionDataset, RegressionModel, RegressionModelaXPU from .scripts import test_script, test_sync, test_ops # isort: skip
307
from math import isclose, sqrt def a_ ( _A , _A , _A ) -> tuple[float, float, float]: """simple docstring""" snake_case__ = point_y / 4 / point_x snake_case__ = 2 * normal_gradient / (1 + normal_gradient * normal_gradient) snake_case__ = (1 - normal_gradient * normal_gradient) / ( 1 + normal_gradient * normal_gradient ) snake_case__ = (sa - ca * incoming_gradient) / (ca + sa * incoming_gradient) # to find the next point, solve the simultaeneous equations: # y^2 + 4x^2 = 100 # y - b = m * (x - a) # ==> A x^2 + B x + C = 0 snake_case__ = outgoing_gradient**2 + 4 snake_case__ = 2 * outgoing_gradient * (point_y - outgoing_gradient * point_x) snake_case__ = (point_y - outgoing_gradient * point_x) ** 2 - 100 snake_case__ = ( -linear_term - sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) snake_case__ = ( -linear_term + sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) # two solutions, one of which is our input point snake_case__ = x_minus if isclose(_A , _A ) else x_plus snake_case__ = point_y + outgoing_gradient * (next_x - point_x) return next_x, next_y, outgoing_gradient def a_ ( _A = 1.4 , _A = -9.6 ) -> int: """simple docstring""" snake_case__ = 0 snake_case__ = first_x_coord snake_case__ = first_y_coord snake_case__ = (10.1 - point_y) / (0.0 - point_x) while not (-0.01 <= point_x <= 0.01 and point_y > 0): snake_case__ , snake_case__ , snake_case__ = next_point(_A , _A , _A ) num_reflections += 1 return num_reflections if __name__ == "__main__": print(f'''{solution() = }''')
307
1
from ...configuration_utils import PretrainedConfig from ...utils import logging __UpperCamelCase : Dict = logging.get_logger(__name__) __UpperCamelCase : Optional[int] = { """RWKV/rwkv-4-169m-pile""": """https://huggingface.co/RWKV/rwkv-4-169m-pile/resolve/main/config.json""", """RWKV/rwkv-4-430m-pile""": """https://huggingface.co/RWKV/rwkv-4-430m-pile/resolve/main/config.json""", """RWKV/rwkv-4-1b5-pile""": """https://huggingface.co/RWKV/rwkv-4-1b5-pile/resolve/main/config.json""", """RWKV/rwkv-4-3b-pile""": """https://huggingface.co/RWKV/rwkv-4-3b-pile/resolve/main/config.json""", """RWKV/rwkv-4-7b-pile""": """https://huggingface.co/RWKV/rwkv-4-7b-pile/resolve/main/config.json""", """RWKV/rwkv-4-14b-pile""": """https://huggingface.co/RWKV/rwkv-4-14b-pile/resolve/main/config.json""", """RWKV/rwkv-raven-1b5""": """https://huggingface.co/RWKV/rwkv-raven-1b5/resolve/main/config.json""", """RWKV/rwkv-raven-3b""": """https://huggingface.co/RWKV/rwkv-raven-3b/resolve/main/config.json""", """RWKV/rwkv-raven-7b""": """https://huggingface.co/RWKV/rwkv-raven-7b/resolve/main/config.json""", """RWKV/rwkv-raven-14b""": """https://huggingface.co/RWKV/rwkv-raven-14b/resolve/main/config.json""", } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "rwkv" _UpperCAmelCase = {"max_position_embeddings": "context_length"} def __init__( self: List[str] , UpperCamelCase: List[str]=5_02_77 , UpperCamelCase: int=10_24 , UpperCamelCase: Any=40_96 , UpperCamelCase: Tuple=32 , UpperCamelCase: Optional[int]=None , UpperCamelCase: List[Any]=None , UpperCamelCase: int=1e-5 , UpperCamelCase: List[str]=0 , UpperCamelCase: str=0 , UpperCamelCase: Dict=6 , UpperCamelCase: Optional[Any]=False , UpperCamelCase: Union[str, Any]=True , **UpperCamelCase: Tuple , ) -> Union[str, Any]: snake_case__ = vocab_size snake_case__ = context_length snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = attention_hidden_size if attention_hidden_size is not None else hidden_size snake_case__ = intermediate_size if intermediate_size is not None else 4 * hidden_size snake_case__ = layer_norm_epsilon snake_case__ = rescale_every snake_case__ = use_cache snake_case__ = bos_token_id snake_case__ = eos_token_id super().__init__( tie_word_embeddings=UpperCamelCase , bos_token_id=UpperCamelCase , eos_token_id=UpperCamelCase , **UpperCamelCase )
307
# Lint as: python3 import sys from collections.abc import Mapping from typing import TYPE_CHECKING import numpy as np import pyarrow as pa from .. import config from ..utils.py_utils import map_nested from .formatting import TensorFormatter if TYPE_CHECKING: import torch class __SCREAMING_SNAKE_CASE( TensorFormatter[Mapping, "torch.Tensor", Mapping] ): def __init__( self: Any , UpperCamelCase: Optional[int]=None , **UpperCamelCase: Union[str, Any] ) -> int: super().__init__(features=UpperCamelCase ) snake_case__ = torch_tensor_kwargs import torch # noqa import torch at initialization def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any ) -> List[str]: import torch if isinstance(UpperCamelCase , UpperCamelCase ) and column: if all( isinstance(UpperCamelCase , torch.Tensor ) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column ): return torch.stack(UpperCamelCase ) return column def lowerCAmelCase_ ( self: str , UpperCamelCase: Dict ) -> Union[str, Any]: import torch if isinstance(UpperCamelCase , (str, bytes, type(UpperCamelCase )) ): return value elif isinstance(UpperCamelCase , (np.character, np.ndarray) ) and np.issubdtype(value.dtype , np.character ): return value.tolist() snake_case__ = {} if isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.integer ): snake_case__ = {'dtype': torch.intaa} elif isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.floating ): snake_case__ = {'dtype': torch.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = np.asarray(UpperCamelCase ) return torch.tensor(UpperCamelCase , **{**default_dtype, **self.torch_tensor_kwargs} ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: str ) -> Any: import torch # support for torch, tf, jax etc. if hasattr(UpperCamelCase , '__array__' ) and not isinstance(UpperCamelCase , torch.Tensor ): snake_case__ = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(UpperCamelCase , np.ndarray ): if data_struct.dtype == object: # torch tensors cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) elif isinstance(UpperCamelCase , (list, tuple) ): return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) return self._tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: dict ) -> List[str]: return map_nested(self._recursive_tensorize , UpperCamelCase , map_list=UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_row(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_row(UpperCamelCase ) return self.recursive_tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: pa.Table ) -> "torch.Tensor": snake_case__ = self.numpy_arrow_extractor().extract_column(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_column(UpperCamelCase , pa_table.column_names[0] ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) snake_case__ = self._consolidate(UpperCamelCase ) return column def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_batch(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_batch(UpperCamelCase ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) for column_name in batch: snake_case__ = self._consolidate(batch[column_name] ) return batch
307
1
import numpy as np from nltk.translate import meteor_score import datasets from datasets.config import importlib_metadata, version __UpperCamelCase : Union[str, Any] = version.parse(importlib_metadata.version("""nltk""")) if NLTK_VERSION >= version.Version("""3.6.4"""): from nltk import word_tokenize __UpperCamelCase : Tuple = """\ @inproceedings{banarjee2005, title = {{METEOR}: An Automatic Metric for {MT} Evaluation with Improved Correlation with Human Judgments}, author = {Banerjee, Satanjeev and Lavie, Alon}, booktitle = {Proceedings of the {ACL} Workshop on Intrinsic and Extrinsic Evaluation Measures for Machine Translation and/or Summarization}, month = jun, year = {2005}, address = {Ann Arbor, Michigan}, publisher = {Association for Computational Linguistics}, url = {https://www.aclweb.org/anthology/W05-0909}, pages = {65--72}, } """ __UpperCamelCase : Optional[int] = """\ METEOR, an automatic metric for machine translation evaluation that is based on a generalized concept of unigram matching between the machine-produced translation and human-produced reference translations. Unigrams can be matched based on their surface forms, stemmed forms, and meanings; furthermore, METEOR can be easily extended to include more advanced matching strategies. Once all generalized unigram matches between the two strings have been found, METEOR computes a score for this matching using a combination of unigram-precision, unigram-recall, and a measure of fragmentation that is designed to directly capture how well-ordered the matched words in the machine translation are in relation to the reference. METEOR gets an R correlation value of 0.347 with human evaluation on the Arabic data and 0.331 on the Chinese data. This is shown to be an improvement on using simply unigram-precision, unigram-recall and their harmonic F1 combination. """ __UpperCamelCase : int = """ Computes METEOR score of translated segments against one or more references. Args: predictions: list of predictions to score. Each prediction should be a string with tokens separated by spaces. references: list of reference for each prediction. Each reference should be a string with tokens separated by spaces. alpha: Parameter for controlling relative weights of precision and recall. default: 0.9 beta: Parameter for controlling shape of penalty as a function of fragmentation. default: 3 gamma: Relative weight assigned to fragmentation penalty. default: 0.5 Returns: 'meteor': meteor score. Examples: >>> meteor = datasets.load_metric('meteor') >>> predictions = [\"It is a guide to action which ensures that the military always obeys the commands of the party\"] >>> references = [\"It is a guide to action that ensures that the military will forever heed Party commands\"] >>> results = meteor.compute(predictions=predictions, references=references) >>> print(round(results[\"meteor\"], 4)) 0.6944 """ @datasets.utils.file_utils.add_start_docstrings(_DESCRIPTION , _KWARGS_DESCRIPTION ) class __SCREAMING_SNAKE_CASE( datasets.Metric ): def lowerCAmelCase_ ( self: str ) -> Any: return datasets.MetricInfo( description=_DESCRIPTION , citation=_CITATION , inputs_description=_KWARGS_DESCRIPTION , features=datasets.Features( { 'predictions': datasets.Value('string' , id='sequence' ), 'references': datasets.Value('string' , id='sequence' ), } ) , codebase_urls=['https://github.com/nltk/nltk/blob/develop/nltk/translate/meteor_score.py'] , reference_urls=[ 'https://www.nltk.org/api/nltk.translate.html#module-nltk.translate.meteor_score', 'https://en.wikipedia.org/wiki/METEOR', ] , ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[Any] ) -> Optional[int]: import nltk nltk.download('wordnet' ) if NLTK_VERSION >= version.Version('3.6.5' ): nltk.download('punkt' ) if NLTK_VERSION >= version.Version('3.6.6' ): nltk.download('omw-1.4' ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[int] , UpperCamelCase: Dict=0.9 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Tuple=0.5 ) -> int: if NLTK_VERSION >= version.Version('3.6.5' ): snake_case__ = [ meteor_score.single_meteor_score( word_tokenize(UpperCamelCase ) , word_tokenize(UpperCamelCase ) , alpha=UpperCamelCase , beta=UpperCamelCase , gamma=UpperCamelCase ) for ref, pred in zip(UpperCamelCase , UpperCamelCase ) ] else: snake_case__ = [ meteor_score.single_meteor_score(UpperCamelCase , UpperCamelCase , alpha=UpperCamelCase , beta=UpperCamelCase , gamma=UpperCamelCase ) for ref, pred in zip(UpperCamelCase , UpperCamelCase ) ] return {"meteor": np.mean(UpperCamelCase )}
307
import doctest from collections import deque import numpy as np class __SCREAMING_SNAKE_CASE: def __init__( self: Dict ) -> None: snake_case__ = [2, 1, 2, -1] snake_case__ = [1, 2, 3, 4] def lowerCAmelCase_ ( self: List[str] ) -> list[float]: snake_case__ = len(self.first_signal ) snake_case__ = len(self.second_signal ) snake_case__ = max(UpperCamelCase , UpperCamelCase ) # create a zero matrix of max_length x max_length snake_case__ = [[0] * max_length for i in range(UpperCamelCase )] # fills the smaller signal with zeros to make both signals of same length if length_first_signal < length_second_signal: self.first_signal += [0] * (max_length - length_first_signal) elif length_first_signal > length_second_signal: self.second_signal += [0] * (max_length - length_second_signal) for i in range(UpperCamelCase ): snake_case__ = deque(self.second_signal ) rotated_signal.rotate(UpperCamelCase ) for j, item in enumerate(UpperCamelCase ): matrix[i][j] += item # multiply the matrix with the first signal snake_case__ = np.matmul(np.transpose(UpperCamelCase ) , np.transpose(self.first_signal ) ) # rounding-off to two decimal places return [round(UpperCamelCase , 2 ) for i in final_signal] if __name__ == "__main__": doctest.testmod()
307
1
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) __UpperCamelCase : Optional[int] = {"""configuration_opt""": ["""OPT_PRETRAINED_CONFIG_ARCHIVE_MAP""", """OPTConfig"""]} try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : str = [ """OPT_PRETRAINED_MODEL_ARCHIVE_LIST""", """OPTForCausalLM""", """OPTModel""", """OPTPreTrainedModel""", """OPTForSequenceClassification""", """OPTForQuestionAnswering""", ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : List[Any] = ["""TFOPTForCausalLM""", """TFOPTModel""", """TFOPTPreTrainedModel"""] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : List[Any] = [ """FlaxOPTForCausalLM""", """FlaxOPTModel""", """FlaxOPTPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_opt import OPT_PRETRAINED_CONFIG_ARCHIVE_MAP, OPTConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_opt import ( OPT_PRETRAINED_MODEL_ARCHIVE_LIST, OPTForCausalLM, OPTForQuestionAnswering, OPTForSequenceClassification, OPTModel, OPTPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_opt import TFOPTForCausalLM, TFOPTModel, TFOPTPreTrainedModel try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_opt import FlaxOPTForCausalLM, FlaxOPTModel, FlaxOPTPreTrainedModel else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
import math from collections import defaultdict from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import KarrasDiffusionSchedulers, SchedulerMixin, SchedulerOutput def a_ ( _A , _A=0.999 , _A="cosine" , ) -> Optional[int]: """simple docstring""" if alpha_transform_type == "cosine": def alpha_bar_fn(_A ): return math.cos((t + 0.008) / 1.008 * math.pi / 2 ) ** 2 elif alpha_transform_type == "exp": def alpha_bar_fn(_A ): return math.exp(t * -12.0 ) else: raise ValueError(f'''Unsupported alpha_tranform_type: {alpha_transform_type}''' ) snake_case__ = [] for i in range(_A ): snake_case__ = i / num_diffusion_timesteps snake_case__ = (i + 1) / num_diffusion_timesteps betas.append(min(1 - alpha_bar_fn(_A ) / alpha_bar_fn(_A ) , _A ) ) return torch.tensor(_A , dtype=torch.floataa ) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [e.name for e in KarrasDiffusionSchedulers] _UpperCAmelCase = 2 @register_to_config def __init__( self: Dict , UpperCamelCase: int = 10_00 , UpperCamelCase: float = 0.00_085 , UpperCamelCase: float = 0.012 , UpperCamelCase: str = "linear" , UpperCamelCase: Optional[Union[np.ndarray, List[float]]] = None , UpperCamelCase: str = "epsilon" , UpperCamelCase: Optional[bool] = False , UpperCamelCase: Optional[bool] = False , UpperCamelCase: float = 1.0 , UpperCamelCase: str = "linspace" , UpperCamelCase: int = 0 , ) -> str: if trained_betas is not None: snake_case__ = torch.tensor(UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "linear": snake_case__ = torch.linspace(UpperCamelCase , UpperCamelCase , UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "scaled_linear": # this schedule is very specific to the latent diffusion model. snake_case__ = ( torch.linspace(beta_start**0.5 , beta_end**0.5 , UpperCamelCase , dtype=torch.floataa ) ** 2 ) elif beta_schedule == "squaredcos_cap_v2": # Glide cosine schedule snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='cosine' ) elif beta_schedule == "exp": snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='exp' ) else: raise NotImplementedError(F'''{beta_schedule} does is not implemented for {self.__class__}''' ) snake_case__ = 1.0 - self.betas snake_case__ = torch.cumprod(self.alphas , dim=0 ) # set all values self.set_timesteps(UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = use_karras_sigmas def lowerCAmelCase_ ( self: str , UpperCamelCase: int , UpperCamelCase: Optional[int]=None ) -> str: if schedule_timesteps is None: snake_case__ = self.timesteps snake_case__ = (schedule_timesteps == timestep).nonzero() # The sigma index that is taken for the **very** first `step` # is always the second index (or the last index if there is only 1) # This way we can ensure we don't accidentally skip a sigma in # case we start in the middle of the denoising schedule (e.g. for image-to-image) if len(self._index_counter ) == 0: snake_case__ = 1 if len(UpperCamelCase ) > 1 else 0 else: snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep snake_case__ = self._index_counter[timestep_int] return indices[pos].item() @property def lowerCAmelCase_ ( self: Optional[Any] ) -> List[Any]: # standard deviation of the initial noise distribution if self.config.timestep_spacing in ["linspace", "trailing"]: return self.sigmas.max() return (self.sigmas.max() ** 2 + 1) ** 0.5 def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Union[float, torch.FloatTensor] , ) -> torch.FloatTensor: snake_case__ = self.index_for_timestep(UpperCamelCase ) snake_case__ = self.sigmas[step_index] snake_case__ = sample / ((sigma**2 + 1) ** 0.5) return sample def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int , UpperCamelCase: Union[str, torch.device] = None , UpperCamelCase: Optional[int] = None , ) -> str: snake_case__ = num_inference_steps snake_case__ = num_train_timesteps or self.config.num_train_timesteps # "linspace", "leading", "trailing" corresponds to annotation of Table 2. of https://arxiv.org/abs/2305.08891 if self.config.timestep_spacing == "linspace": snake_case__ = np.linspace(0 , num_train_timesteps - 1 , UpperCamelCase , dtype=UpperCamelCase )[::-1].copy() elif self.config.timestep_spacing == "leading": snake_case__ = num_train_timesteps // self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(0 , UpperCamelCase ) * step_ratio).round()[::-1].copy().astype(UpperCamelCase ) timesteps += self.config.steps_offset elif self.config.timestep_spacing == "trailing": snake_case__ = num_train_timesteps / self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(UpperCamelCase , 0 , -step_ratio )).round().copy().astype(UpperCamelCase ) timesteps -= 1 else: raise ValueError( F'''{self.config.timestep_spacing} is not supported. Please make sure to choose one of \'linspace\', \'leading\' or \'trailing\'.''' ) snake_case__ = np.array(((1 - self.alphas_cumprod) / self.alphas_cumprod) ** 0.5 ) snake_case__ = np.log(UpperCamelCase ) snake_case__ = np.interp(UpperCamelCase , np.arange(0 , len(UpperCamelCase ) ) , UpperCamelCase ) if self.config.use_karras_sigmas: snake_case__ = self._convert_to_karras(in_sigmas=UpperCamelCase , num_inference_steps=self.num_inference_steps ) snake_case__ = np.array([self._sigma_to_t(UpperCamelCase , UpperCamelCase ) for sigma in sigmas] ) snake_case__ = np.concatenate([sigmas, [0.0]] ).astype(np.floataa ) snake_case__ = torch.from_numpy(UpperCamelCase ).to(device=UpperCamelCase ) snake_case__ = torch.cat([sigmas[:1], sigmas[1:-1].repeat_interleave(2 ), sigmas[-1:]] ) snake_case__ = torch.from_numpy(UpperCamelCase ) snake_case__ = torch.cat([timesteps[:1], timesteps[1:].repeat_interleave(2 )] ) if str(UpperCamelCase ).startswith('mps' ): # mps does not support float64 snake_case__ = timesteps.to(UpperCamelCase , dtype=torch.floataa ) else: snake_case__ = timesteps.to(device=UpperCamelCase ) # empty dt and derivative snake_case__ = None snake_case__ = None # for exp beta schedules, such as the one for `pipeline_shap_e.py` # we need an index counter snake_case__ = defaultdict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Dict ) -> Tuple: # get log sigma snake_case__ = np.log(UpperCamelCase ) # get distribution snake_case__ = log_sigma - log_sigmas[:, np.newaxis] # get sigmas range snake_case__ = np.cumsum((dists >= 0) , axis=0 ).argmax(axis=0 ).clip(max=log_sigmas.shape[0] - 2 ) snake_case__ = low_idx + 1 snake_case__ = log_sigmas[low_idx] snake_case__ = log_sigmas[high_idx] # interpolate sigmas snake_case__ = (low - log_sigma) / (low - high) snake_case__ = np.clip(UpperCamelCase , 0 , 1 ) # transform interpolation to time range snake_case__ = (1 - w) * low_idx + w * high_idx snake_case__ = t.reshape(sigma.shape ) return t def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Dict ) -> torch.FloatTensor: snake_case__ = in_sigmas[-1].item() snake_case__ = in_sigmas[0].item() snake_case__ = 7.0 # 7.0 is the value used in the paper snake_case__ = np.linspace(0 , 1 , UpperCamelCase ) snake_case__ = sigma_min ** (1 / rho) snake_case__ = sigma_max ** (1 / rho) snake_case__ = (max_inv_rho + ramp * (min_inv_rho - max_inv_rho)) ** rho return sigmas @property def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.dt is None def lowerCAmelCase_ ( self: int , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: Union[float, torch.FloatTensor] , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: bool = True , ) -> Union[SchedulerOutput, Tuple]: snake_case__ = self.index_for_timestep(UpperCamelCase ) # advance index counter by 1 snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep self._index_counter[timestep_int] += 1 if self.state_in_first_order: snake_case__ = self.sigmas[step_index] snake_case__ = self.sigmas[step_index + 1] else: # 2nd order / Heun's method snake_case__ = self.sigmas[step_index - 1] snake_case__ = self.sigmas[step_index] # currently only gamma=0 is supported. This usually works best anyways. # We can support gamma in the future but then need to scale the timestep before # passing it to the model which requires a change in API snake_case__ = 0 snake_case__ = sigma * (gamma + 1) # Note: sigma_hat == sigma for now # 1. compute predicted original sample (x_0) from sigma-scaled predicted noise if self.config.prediction_type == "epsilon": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = sample - sigma_input * model_output elif self.config.prediction_type == "v_prediction": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = model_output * (-sigma_input / (sigma_input**2 + 1) ** 0.5) + ( sample / (sigma_input**2 + 1) ) elif self.config.prediction_type == "sample": snake_case__ = model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, or `v_prediction`''' ) if self.config.clip_sample: snake_case__ = pred_original_sample.clamp( -self.config.clip_sample_range , self.config.clip_sample_range ) if self.state_in_first_order: # 2. Convert to an ODE derivative for 1st order snake_case__ = (sample - pred_original_sample) / sigma_hat # 3. delta timestep snake_case__ = sigma_next - sigma_hat # store for 2nd order step snake_case__ = derivative snake_case__ = dt snake_case__ = sample else: # 2. 2nd order / Heun's method snake_case__ = (sample - pred_original_sample) / sigma_next snake_case__ = (self.prev_derivative + derivative) / 2 # 3. take prev timestep & sample snake_case__ = self.dt snake_case__ = self.sample # free dt and derivative # Note, this puts the scheduler in "first order mode" snake_case__ = None snake_case__ = None snake_case__ = None snake_case__ = sample + derivative * dt if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , ) -> torch.FloatTensor: # Make sure sigmas and timesteps have the same device and dtype as original_samples snake_case__ = self.sigmas.to(device=original_samples.device , dtype=original_samples.dtype ) if original_samples.device.type == "mps" and torch.is_floating_point(UpperCamelCase ): # mps does not support float64 snake_case__ = self.timesteps.to(original_samples.device , dtype=torch.floataa ) snake_case__ = timesteps.to(original_samples.device , dtype=torch.floataa ) else: snake_case__ = self.timesteps.to(original_samples.device ) snake_case__ = timesteps.to(original_samples.device ) snake_case__ = [self.index_for_timestep(UpperCamelCase , UpperCamelCase ) for t in timesteps] snake_case__ = sigmas[step_indices].flatten() while len(sigma.shape ) < len(original_samples.shape ): snake_case__ = sigma.unsqueeze(-1 ) snake_case__ = original_samples + noise * sigma return noisy_samples def __len__( self: List[Any] ) -> Union[str, Any]: return self.config.num_train_timesteps
307
1
from ..utils import DummyObject, requires_backends class __SCREAMING_SNAKE_CASE( metaclass=a_ ): _UpperCAmelCase = ["torch", "transformers", "onnx"] def __init__( self: Optional[Any] , *UpperCamelCase: Union[str, Any] , **UpperCamelCase: List[Any] ) -> int: requires_backends(self , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Tuple , *UpperCamelCase: Optional[int] , **UpperCamelCase: Any ) -> Dict: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: int , *UpperCamelCase: List[Any] , **UpperCamelCase: int ) -> List[str]: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) class __SCREAMING_SNAKE_CASE( metaclass=a_ ): _UpperCAmelCase = ["torch", "transformers", "onnx"] def __init__( self: str , *UpperCamelCase: Any , **UpperCamelCase: Optional[Any] ) -> Tuple: requires_backends(self , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: str , *UpperCamelCase: str , **UpperCamelCase: Optional[Any] ) -> str: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Any , *UpperCamelCase: List[Any] , **UpperCamelCase: Tuple ) -> int: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) class __SCREAMING_SNAKE_CASE( metaclass=a_ ): _UpperCAmelCase = ["torch", "transformers", "onnx"] def __init__( self: Tuple , *UpperCamelCase: Dict , **UpperCamelCase: Optional[int] ) -> List[Any]: requires_backends(self , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Union[str, Any] , *UpperCamelCase: List[str] , **UpperCamelCase: Any ) -> Optional[int]: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: int , *UpperCamelCase: Dict , **UpperCamelCase: Dict ) -> str: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) class __SCREAMING_SNAKE_CASE( metaclass=a_ ): _UpperCAmelCase = ["torch", "transformers", "onnx"] def __init__( self: Dict , *UpperCamelCase: str , **UpperCamelCase: Any ) -> Optional[int]: requires_backends(self , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Any , *UpperCamelCase: Optional[int] , **UpperCamelCase: List[str] ) -> int: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: List[str] , *UpperCamelCase: List[Any] , **UpperCamelCase: int ) -> Optional[int]: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) class __SCREAMING_SNAKE_CASE( metaclass=a_ ): _UpperCAmelCase = ["torch", "transformers", "onnx"] def __init__( self: List[Any] , *UpperCamelCase: int , **UpperCamelCase: List[Any] ) -> Union[str, Any]: requires_backends(self , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: List[Any] , *UpperCamelCase: str , **UpperCamelCase: Tuple ) -> str: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Dict , *UpperCamelCase: Tuple , **UpperCamelCase: Tuple ) -> List[Any]: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) class __SCREAMING_SNAKE_CASE( metaclass=a_ ): _UpperCAmelCase = ["torch", "transformers", "onnx"] def __init__( self: str , *UpperCamelCase: List[str] , **UpperCamelCase: int ) -> Dict: requires_backends(self , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Any , *UpperCamelCase: str , **UpperCamelCase: Any ) -> Optional[Any]: requires_backends(cls , ['torch', 'transformers', 'onnx'] ) @classmethod def lowerCAmelCase_ ( cls: Optional[int] , *UpperCamelCase: List[Any] , **UpperCamelCase: Tuple ) -> Union[str, Any]: requires_backends(cls , ['torch', 'transformers', 'onnx'] )
307
from typing import TYPE_CHECKING from ..utils import _LazyModule __UpperCamelCase : Tuple = { """config""": [ """EXTERNAL_DATA_FORMAT_SIZE_LIMIT""", """OnnxConfig""", """OnnxConfigWithPast""", """OnnxSeq2SeqConfigWithPast""", """PatchingSpec""", ], """convert""": ["""export""", """validate_model_outputs"""], """features""": ["""FeaturesManager"""], """utils""": ["""ParameterFormat""", """compute_serialized_parameters_size"""], } if TYPE_CHECKING: from .config import ( EXTERNAL_DATA_FORMAT_SIZE_LIMIT, OnnxConfig, OnnxConfigWithPast, OnnxSeqaSeqConfigWithPast, PatchingSpec, ) from .convert import export, validate_model_outputs from .features import FeaturesManager from .utils import ParameterFormat, compute_serialized_parameters_size else: import sys __UpperCamelCase : Dict = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import collections import json import os import re from typing import TYPE_CHECKING, List, Optional, Tuple import numpy as np from ...tokenization_utils_fast import PreTrainedTokenizer from ...utils import logging if TYPE_CHECKING: from transformers.pipelines.conversational import Conversation __UpperCamelCase : Dict = logging.get_logger(__name__) __UpperCamelCase : Dict = {"""vocab_file""": """vocab.txt""", """emoji_file""": """emoji.json"""} __UpperCamelCase : Optional[int] = { """vocab_file""": { """abeja/gpt-neox-japanese-2.7b""": """https://huggingface.co/abeja/gpt-neox-japanese-2.7b/resolve/main/vocab.txt""", }, """emoji_file""": { """abeja/gpt-neox-japanese-2.7b""": """https://huggingface.co/abeja/gpt-neox-japanese-2.7b/resolve/main/emoji.json""", }, } __UpperCamelCase : List[str] = { """abeja/gpt-neox-japanese-2.7b""": 2048, } def a_ ( _A , _A ) -> Optional[int]: """simple docstring""" with open(_A , 'r' , encoding='utf-8' ) as f: snake_case__ = json.loads(f.read() ) snake_case__ = collections.OrderedDict() snake_case__ = collections.OrderedDict() snake_case__ = collections.OrderedDict() with open(_A , 'r' , encoding='utf-8' ) as f: snake_case__ = f.readlines() snake_case__ = [[t.rstrip('\n' )] if (t == ',' or ',' not in t) else t.rstrip('\n' ).split(',' ) for t in token] for idx, b in enumerate(_A ): snake_case__ = b snake_case__ = idx for wd in b: snake_case__ = idx return vocab, raw_vocab, ids_to_tokens, emoji class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: Optional[Any]="<|endoftext|>" , UpperCamelCase: Optional[Any]="<|endoftext|>" , UpperCamelCase: str="<|startoftext|>" , UpperCamelCase: int="<|endoftext|>" , UpperCamelCase: str=False , **UpperCamelCase: Dict , ) -> Dict: super().__init__( unk_token=UpperCamelCase , pad_token=UpperCamelCase , bos_token=UpperCamelCase , eos_token=UpperCamelCase , do_clean_text=UpperCamelCase , **UpperCamelCase , ) if not os.path.isfile(UpperCamelCase ): raise ValueError( F'''Can\'t find a vocabulary file at path \'{vocab_file}\'. To load the vocabulary from a Google pretrained''' ' model use `tokenizer = GPTNeoXJapaneseokenizer.from_pretrained(PRETRAINED_MODEL_NAME)`' ) if not os.path.isfile(UpperCamelCase ): raise ValueError( F'''Can\'t find a emoji file at path \'{emoji_file}\'. To load the emoji information from a Google''' ' pretrained model use `tokenizer = GPTNeoXJapaneseokenizer.from_pretrained(PRETRAINED_MODEL_NAME)`' ) snake_case__ = do_clean_text snake_case__ , snake_case__ , snake_case__ , snake_case__ = load_vocab_and_emoji(UpperCamelCase , UpperCamelCase ) snake_case__ = SubWordJapaneseTokenizer( vocab=self.vocab , ids_to_tokens=self.ids_to_tokens , emoji=self.emoji ) @property def lowerCAmelCase_ ( self: Tuple ) -> int: # self.vocab contains support for character fluctuation unique to Japanese, and has a large number of vocab return len(self.raw_vocab ) def lowerCAmelCase_ ( self: Tuple ) -> Dict: return dict(self.raw_vocab , **self.added_tokens_encoder ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: List[str] ) -> Optional[int]: return self.subword_tokenizer.tokenize(UpperCamelCase , clean=self.do_clean_text ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Optional[Any] ) -> Tuple: return self.vocab.get(UpperCamelCase , self.vocab.get(self.unk_token ) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] ) -> int: return self.subword_tokenizer.convert_id_to_token(UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: List[Any] ) -> List[str]: snake_case__ = ''.join(UpperCamelCase ).strip() return out_string def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: "Conversation" ) -> List[int]: snake_case__ = [] for is_user, text in conversation.iter_texts(): input_ids.extend(self.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) + [self.eos_token_id] ) if len(UpperCamelCase ) > self.model_max_length: snake_case__ = input_ids[-self.model_max_length :] return input_ids def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: snake_case__ = 0 if os.path.isdir(UpperCamelCase ): snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['emoji_file'] ) else: snake_case__ = ( (filename_prefix + '-' if filename_prefix else '') + save_directory + VOCAB_FILES_NAMES['vocab_file'] ) snake_case__ = ( (filename_prefix + '-' if filename_prefix else '') + save_directory + VOCAB_FILES_NAMES['emoji_file'] ) with open(UpperCamelCase , 'w' , encoding='utf-8' ) as writer: for token_index, token in self.ids_to_tokens.items(): if index != token_index: logger.warning( F'''Saving vocabulary to {vocab_file}: vocabulary indices are not consecutive.''' ' Please check that the vocabulary is not corrupted!' ) snake_case__ = token_index writer.write(','.join(UpperCamelCase ) + '\n' ) index += 1 with open(UpperCamelCase , 'w' , encoding='utf-8' ) as writer: json.dump(self.emoji , UpperCamelCase ) return vocab_file, emoji_file class __SCREAMING_SNAKE_CASE( a_ ): def __init__( self: Optional[int] , UpperCamelCase: List[str] , UpperCamelCase: Dict , UpperCamelCase: Dict ) -> int: snake_case__ = vocab # same as swe snake_case__ = ids_to_tokens # same as bpe snake_case__ = emoji snake_case__ = np.max([len(UpperCamelCase ) for w in self.vocab.keys()] ) snake_case__ = re.compile(R'(https?|ftp)(:\/\/[-_\.!~*\'()a-zA-Z0-9;\/?:\@&=\+$,%#]+)' ) snake_case__ = re.compile(R'[A-Za-z0-9\._+]*@[\-_0-9A-Za-z]+(\.[A-Za-z]+)*' ) snake_case__ = re.compile(R'[\(]{0,1}[0-9]{2,4}[\)\-\(]{0,1}[0-9]{2,4}[\)\-]{0,1}[0-9]{3,4}' ) snake_case__ = re.compile( R'([12]\d{3}[/\-年])*(0?[1-9]|1[0-2])[/\-月]((0?[1-9]|[12][0-9]|3[01])日?)*(\d{1,2}|:|\d{1,2}時|\d{1,2}分|\(日\)|\(月\)|\(火\)|\(水\)|\(木\)|\(金\)|\(土\)|㈰|㈪|㈫|㈬|㈭|㈮|㈯)*' ) snake_case__ = re.compile( R'(明治|大正|昭和|平成|令和|㍾|㍽|㍼|㍻|\u32ff)\d{1,2}年(0?[1-9]|1[0-2])月(0?[1-9]|[12][0-9]|3[01])日(\d{1,2}|:|\d{1,2}時|\d{1,2}分|\(日\)|\(月\)|\(火\)|\(水\)|\(木\)|\(金\)|\(土\)|㈰|㈪|㈫|㈬|㈭|㈮|㈯)*' ) snake_case__ = re.compile( R'((0|[1-9]\d*|[1-9]\d{0,2}(,\d{3})+)*億)*((0|[1-9]\d*|[1-9]\d{0,2}(,\d{3})+)*万)*((0|[1-9]\d*|[1-9]\d{0,2}(,\d{3})+)*千)*(0|[1-9]\d*|[1-9]\d{0,2}(,\d{3})+)*(千円|万円|千万円|円|千ドル|万ドル|千万ドル|ドル|千ユーロ|万ユーロ|千万ユーロ|ユーロ)+(\(税込\)|\(税抜\)|\+tax)*' ) snake_case__ = '─━│┃┄┅┆┇┈┉┊┋┌┍┎┏┐┑┒┓└┕┖┗┘┙┚┛├┝┞┟┠┡┢┣┤┥┦┧┨┩┪┫┬┭┮┯┰┱┲┳┴┵┶┷┸┹┺┻┼┽┾┿╀╁╂╃╄╅╆╇╈╉╊╋╌╍╎╏═║╒╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡╢╣╤╥╦╧╨╩╪╫╬╭╮╯╰╱╲╳╴╵╶╷╸╹╺╻╼╽╾╿' snake_case__ = '▀▁▂▃▄▅▆▇█▉▊▋▌▍▎▏▐░▒▓▔▕▖▗▘▙▚▛▜▝▞▟' snake_case__ = str.maketrans({k: '<BLOCK>' for k in keisen + blocks} ) def __len__( self: Tuple ) -> int: return len(self.ids_to_tokens ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] ) -> Dict: snake_case__ = self.content_repattera.sub('<URL>' , UpperCamelCase ) snake_case__ = self.content_repattera.sub('<EMAIL>' , UpperCamelCase ) snake_case__ = self.content_repattera.sub('<TEL>' , UpperCamelCase ) snake_case__ = self.content_repattera.sub('<DATE>' , UpperCamelCase ) snake_case__ = self.content_repattera.sub('<DATE>' , UpperCamelCase ) snake_case__ = self.content_repattera.sub('<PRICE>' , UpperCamelCase ) snake_case__ = content.translate(self.content_transa ) while "<BLOCK><BLOCK>" in content: snake_case__ = content.replace('<BLOCK><BLOCK>' , '<BLOCK>' ) return content def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Tuple , UpperCamelCase: Optional[int]=False ) -> Optional[int]: snake_case__ = text.replace(' ' , '<SP>' ) snake_case__ = text.replace(' ' , '<SP>' ) snake_case__ = text.replace('\r\n' , '<BR>' ) snake_case__ = text.replace('\n' , '<BR>' ) snake_case__ = text.replace('\r' , '<BR>' ) snake_case__ = text.replace('\t' , '<TAB>' ) snake_case__ = text.replace('—' , 'ー' ) snake_case__ = text.replace('−' , 'ー' ) for k, v in self.emoji["emoji"].items(): if k in text: snake_case__ = text.replace(UpperCamelCase , UpperCamelCase ) if clean: snake_case__ = self.clean_text(UpperCamelCase ) def check_simbol(UpperCamelCase: List[str] ): snake_case__ = x.encode() if len(UpperCamelCase ) == 1 and len(UpperCamelCase ) == 2: snake_case__ = (int(e[0] ) << 8) + int(e[1] ) if ( (c >= 0XC2_A1 and c <= 0XC2_BF) or (c >= 0XC7_80 and c <= 0XC7_83) or (c >= 0XCA_B9 and c <= 0XCB_BF) or (c >= 0XCC_80 and c <= 0XCD_A2) ): return True return False def checkuae(UpperCamelCase: List[str] ): snake_case__ = x.encode() if len(UpperCamelCase ) == 1 and len(UpperCamelCase ) == 3: snake_case__ = (int(e[0] ) << 16) + (int(e[1] ) << 8) + int(e[2] ) if c >= 0XE2_80_80 and c <= 0XE2_B0_7F: return True return False snake_case__ = 0 snake_case__ = [] while pos < len(UpperCamelCase ): snake_case__ = min(len(UpperCamelCase ) , pos + self.maxlen + 1 ) if text[pos] == '<' else pos + 3 snake_case__ = [] # (token_id, token, pos) for e in range(UpperCamelCase , UpperCamelCase , -1 ): snake_case__ = text[pos:e] if wd in self.vocab: if wd[0] == "<" and len(UpperCamelCase ) > 2: snake_case__ = [(self.vocab[wd], wd, e)] break else: candidates.append((self.vocab[wd], wd, e) ) if len(UpperCamelCase ) > 0: # the smallest token_id is adopted snake_case__ , snake_case__ , snake_case__ = sorted(UpperCamelCase , key=lambda UpperCamelCase : x[0] )[0] result.append(UpperCamelCase ) snake_case__ = e else: snake_case__ = pos + 1 snake_case__ = text[pos:end] if check_simbol(UpperCamelCase ): result.append('<KIGOU>' ) elif checkuae(UpperCamelCase ): result.append('<U2000U2BFF>' ) else: for i in wd.encode('utf-8' ): result.append('<|byte%d|>' % i ) snake_case__ = end return result def lowerCAmelCase_ ( self: int , UpperCamelCase: str , UpperCamelCase: List[str]="\n" ) -> List[str]: snake_case__ = [] snake_case__ = [] snake_case__ = self.ids_to_tokens[index][0] if word[:6] == "<|byte" and word[-2:] == "|>": byte_tokens.append(int(word[6:-2] ) ) else: if len(UpperCamelCase ) > 0: words.append(bytearray(UpperCamelCase ).decode('utf-8' , errors='replace' ) ) snake_case__ = [] if word[:7] == "<|emoji" and word[-2:] == "|>": words.append(self.emoji['emoji_inv'][word] ) elif word == "<SP>": words.append(' ' ) elif word == "<BR>": words.append(UpperCamelCase ) elif word == "<TAB>": words.append('\t' ) elif word == "<BLOCK>": words.append('▀' ) elif word == "<KIGOU>": words.append('ǀ' ) elif word == "<U2000U2BFF>": words.append('‖' ) else: words.append(UpperCamelCase ) if len(UpperCamelCase ) > 0: words.append(bytearray(UpperCamelCase ).decode('utf-8' , errors='replace' ) ) snake_case__ = ''.join(UpperCamelCase ) return text
307
def a_ ( _A , _A ) -> int: """simple docstring""" return 1 if input_a == input_a else 0 def a_ ( ) -> None: """simple docstring""" assert xnor_gate(0 , 0 ) == 1 assert xnor_gate(0 , 1 ) == 0 assert xnor_gate(1 , 0 ) == 0 assert xnor_gate(1 , 1 ) == 1 if __name__ == "__main__": print(xnor_gate(0, 0)) print(xnor_gate(0, 1)) print(xnor_gate(1, 0)) print(xnor_gate(1, 1))
307
1
import argparse from pathlib import Path from transformers import AutoConfig, AutoTokenizer, RagConfig, RagSequenceForGeneration, RagTokenForGeneration def a_ ( _A , _A , _A , _A , _A = None , _A = None , _A = None , ) -> Dict: """simple docstring""" if config_name_or_path is None: snake_case__ = 'facebook/rag-token-base' if model_type == 'rag_token' else 'facebook/rag-sequence-base' if generator_tokenizer_name_or_path is None: snake_case__ = generator_name_or_path if question_encoder_tokenizer_name_or_path is None: snake_case__ = question_encoder_name_or_path snake_case__ = RagTokenForGeneration if model_type == 'rag_token' else RagSequenceForGeneration # Save model. snake_case__ = RagConfig.from_pretrained(_A ) snake_case__ = AutoConfig.from_pretrained(_A ) snake_case__ = AutoConfig.from_pretrained(_A ) snake_case__ = gen_config snake_case__ = question_encoder_config snake_case__ = model_class.from_pretrained_question_encoder_generator( _A , _A , config=_A ) rag_model.save_pretrained(_A ) # Sanity check. model_class.from_pretrained(_A ) # Save tokenizers. snake_case__ = AutoTokenizer.from_pretrained(_A ) gen_tokenizer.save_pretrained(dest_dir / 'generator_tokenizer/' ) snake_case__ = AutoTokenizer.from_pretrained(_A ) question_encoder_tokenizer.save_pretrained(dest_dir / 'question_encoder_tokenizer/' ) if __name__ == "__main__": __UpperCamelCase : Union[str, Any] = argparse.ArgumentParser() parser.add_argument( """--model_type""", choices=["""rag_sequence""", """rag_token"""], required=True, type=str, help="""RAG model type: rag_sequence, rag_token""", ) parser.add_argument("""--dest""", type=str, required=True, help="""Path to the output checkpoint directory.""") parser.add_argument("""--generator_name_or_path""", type=str, required=True, help="""Generator model identifier""") parser.add_argument( """--question_encoder_name_or_path""", type=str, required=True, help="""Question encoder model identifier""" ) parser.add_argument( """--generator_tokenizer_name_or_path""", type=str, help="""Generator tokenizer identifier, if not specified, resolves to ``generator_name_or_path``""", ) parser.add_argument( """--question_encoder_tokenizer_name_or_path""", type=str, help="""Question encoder tokenizer identifier, if not specified, resolves to ``question_encoder_name_or_path``""", ) parser.add_argument( """--config_name_or_path""", type=str, help=( """Identifier of the model config to use, if not provided, resolves to a base config for a given""" """ ``model_type``""" ), ) __UpperCamelCase : List[str] = parser.parse_args() __UpperCamelCase : Tuple = Path(args.dest) dest_dir.mkdir(exist_ok=True) consolidate( args.model_type, args.generator_name_or_path, args.question_encoder_name_or_path, dest_dir, args.config_name_or_path, args.generator_tokenizer_name_or_path, args.question_encoder_tokenizer_name_or_path, )
307
import numpy as np from cva import COLOR_BGR2GRAY, cvtColor, imread from numpy import array, uinta from PIL import Image from digital_image_processing import change_contrast as cc from digital_image_processing import convert_to_negative as cn from digital_image_processing import sepia as sp from digital_image_processing.dithering import burkes as bs from digital_image_processing.edge_detection import canny from digital_image_processing.filters import convolve as conv from digital_image_processing.filters import gaussian_filter as gg from digital_image_processing.filters import local_binary_pattern as lbp from digital_image_processing.filters import median_filter as med from digital_image_processing.filters import sobel_filter as sob from digital_image_processing.resize import resize as rs __UpperCamelCase : int = imread(R"""digital_image_processing/image_data/lena_small.jpg""") __UpperCamelCase : List[Any] = cvtColor(img, COLOR_BGR2GRAY) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = cn.convert_to_negative(_A ) # assert negative_img array for at least one True assert negative_img.any() def a_ ( ) -> int: """simple docstring""" with Image.open('digital_image_processing/image_data/lena_small.jpg' ) as img: # Work around assertion for response assert str(cc.change_contrast(_A , 110 ) ).startswith( '<PIL.Image.Image image mode=RGB size=100x100 at' ) def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = canny.gen_gaussian_kernel(9 , sigma=1.4 ) # Assert ambiguous array assert resp.all() def a_ ( ) -> Dict: """simple docstring""" snake_case__ = imread('digital_image_processing/image_data/lena_small.jpg' , 0 ) # assert ambiguous array for all == True assert canny_img.all() snake_case__ = canny.canny(_A ) # assert canny array for at least one True assert canny_array.any() def a_ ( ) -> Optional[int]: """simple docstring""" assert gg.gaussian_filter(_A , 5 , sigma=0.9 ).all() def a_ ( ) -> Optional[Any]: """simple docstring""" # laplace diagonals snake_case__ = array([[0.25, 0.5, 0.25], [0.5, -3, 0.5], [0.25, 0.5, 0.25]] ) snake_case__ = conv.img_convolve(_A , _A ).astype(_A ) assert res.any() def a_ ( ) -> Dict: """simple docstring""" assert med.median_filter(_A , 3 ).any() def a_ ( ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = sob.sobel_filter(_A ) assert grad.any() and theta.any() def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = sp.make_sepia(_A , 20 ) assert sepia.all() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" ) -> Optional[int]: """simple docstring""" snake_case__ = bs.Burkes(imread(_A , 1 ) , 120 ) burkes.process() assert burkes.output_img.any() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" , ) -> Optional[Any]: """simple docstring""" snake_case__ = rs.NearestNeighbour(imread(_A , 1 ) , 400 , 200 ) nn.process() assert nn.output.any() def a_ ( ) -> Any: """simple docstring""" snake_case__ = 'digital_image_processing/image_data/lena.jpg' # Reading the image and converting it to grayscale. snake_case__ = imread(_A , 0 ) # Test for get_neighbors_pixel function() return not None snake_case__ = 0 snake_case__ = 0 snake_case__ = image[x_coordinate][y_coordinate] snake_case__ = lbp.get_neighbors_pixel( _A , _A , _A , _A ) assert neighbors_pixels is not None # Test for local_binary_pattern function() # Create a numpy array as the same height and width of read image snake_case__ = np.zeros((image.shape[0], image.shape[1]) ) # Iterating through the image and calculating the local binary pattern value # for each pixel. for i in range(0 , image.shape[0] ): for j in range(0 , image.shape[1] ): snake_case__ = lbp.local_binary_value(_A , _A , _A ) assert lbp_image.any()
307
1
import tempfile import unittest from transformers import AutoModelForSeqaSeqLM, AutoTokenizer from transformers.testing_utils import ( is_torch_available, require_optimum, require_torch, slow, ) if is_torch_available(): import torch @require_torch @require_optimum @slow class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def lowerCAmelCase_ ( self: Union[str, Any] ) -> Dict: snake_case__ = 'hf-internal-testing/tiny-random-t5' snake_case__ = AutoTokenizer.from_pretrained(UpperCamelCase ) snake_case__ = AutoModelForSeqaSeqLM.from_pretrained(UpperCamelCase ) snake_case__ = tokenizer('This is me' , return_tensors='pt' ) snake_case__ = model.to_bettertransformer() self.assertTrue(any('BetterTransformer' in mod.__class__.__name__ for _, mod in model.named_modules() ) ) snake_case__ = model.generate(**UpperCamelCase ) snake_case__ = model.reverse_bettertransformer() self.assertFalse(any('BetterTransformer' in mod.__class__.__name__ for _, mod in model.named_modules() ) ) with tempfile.TemporaryDirectory() as tmpdirname: model.save_pretrained(UpperCamelCase ) snake_case__ = AutoModelForSeqaSeqLM.from_pretrained(UpperCamelCase ) self.assertFalse( any('BetterTransformer' in mod.__class__.__name__ for _, mod in model_reloaded.named_modules() ) ) snake_case__ = model_reloaded.generate(**UpperCamelCase ) self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase ) ) def lowerCAmelCase_ ( self: int ) -> Optional[Any]: snake_case__ = 'hf-internal-testing/tiny-random-t5' snake_case__ = AutoModelForSeqaSeqLM.from_pretrained(UpperCamelCase ) snake_case__ = model.to_bettertransformer() with tempfile.TemporaryDirectory() as tmpdirname: with self.assertRaises(UpperCamelCase ): model.save_pretrained(UpperCamelCase ) snake_case__ = model.reverse_bettertransformer() model.save_pretrained(UpperCamelCase )
307
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __UpperCamelCase : Dict = { """configuration_jukebox""": [ """JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP""", """JukeboxConfig""", """JukeboxPriorConfig""", """JukeboxVQVAEConfig""", ], """tokenization_jukebox""": ["""JukeboxTokenizer"""], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Tuple = [ """JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST""", """JukeboxModel""", """JukeboxPreTrainedModel""", """JukeboxVQVAE""", """JukeboxPrior""", ] if TYPE_CHECKING: from .configuration_jukebox import ( JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP, JukeboxConfig, JukeboxPriorConfig, JukeboxVQVAEConfig, ) from .tokenization_jukebox import JukeboxTokenizer try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_jukebox import ( JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST, JukeboxModel, JukeboxPreTrainedModel, JukeboxPrior, JukeboxVQVAE, ) else: import sys __UpperCamelCase : str = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import argparse import os import evaluate import torch from datasets import load_dataset from torch.optim import AdamW from torch.utils.data import DataLoader from transformers import AutoModelForSequenceClassification, AutoTokenizer, get_linear_schedule_with_warmup, set_seed from accelerate import Accelerator, DistributedType ######################################################################## # This is a fully working simple example to use Accelerate, # specifically showcasing the experiment tracking capability, # and builds off the `nlp_example.py` script. # # This example trains a Bert base model on GLUE MRPC # in any of the following settings (with the same script): # - single CPU or single GPU # - multi GPUS (using PyTorch distributed mode) # - (multi) TPUs # - fp16 (mixed-precision) or fp32 (normal precision) # # To help focus on the differences in the code, building `DataLoaders` # was refactored into its own function. # New additions from the base script can be found quickly by # looking for the # New Code # tags # # To run it in each of these various modes, follow the instructions # in the readme for examples: # https://github.com/huggingface/accelerate/tree/main/examples # ######################################################################## __UpperCamelCase : int = 16 __UpperCamelCase : Tuple = 32 def a_ ( _A , _A = 16 ) -> Dict: """simple docstring""" snake_case__ = AutoTokenizer.from_pretrained('bert-base-cased' ) snake_case__ = load_dataset('glue' , 'mrpc' ) def tokenize_function(_A ): # max_length=None => use the model max length (it's actually the default) snake_case__ = tokenizer(examples['sentence1'] , examples['sentence2'] , truncation=_A , max_length=_A ) return outputs # Apply the method we just defined to all the examples in all the splits of the dataset # starting with the main process first: with accelerator.main_process_first(): snake_case__ = datasets.map( _A , batched=_A , remove_columns=['idx', 'sentence1', 'sentence2'] , ) # We also rename the 'label' column to 'labels' which is the expected name for labels by the models of the # transformers library snake_case__ = tokenized_datasets.rename_column('label' , 'labels' ) def collate_fn(_A ): # On TPU it's best to pad everything to the same length or training will be very slow. snake_case__ = 128 if accelerator.distributed_type == DistributedType.TPU else None # When using mixed precision we want round multiples of 8/16 if accelerator.mixed_precision == "fp8": snake_case__ = 16 elif accelerator.mixed_precision != "no": snake_case__ = 8 else: snake_case__ = None return tokenizer.pad( _A , padding='longest' , max_length=_A , pad_to_multiple_of=_A , return_tensors='pt' , ) # Instantiate dataloaders. snake_case__ = DataLoader( tokenized_datasets['train'] , shuffle=_A , collate_fn=_A , batch_size=_A ) snake_case__ = DataLoader( tokenized_datasets['validation'] , shuffle=_A , collate_fn=_A , batch_size=_A ) return train_dataloader, eval_dataloader # For testing only if os.environ.get("""TESTING_MOCKED_DATALOADERS""", None) == "1": from accelerate.test_utils.training import mocked_dataloaders __UpperCamelCase : Optional[Any] = mocked_dataloaders # noqa: F811 def a_ ( _A , _A ) -> Optional[Any]: """simple docstring""" # For testing only if os.environ.get('TESTING_MOCKED_DATALOADERS' , _A ) == "1": snake_case__ = 2 # Initialize Accelerator # New Code # # We pass in "all" to `log_with` to grab all available trackers in the environment # Note: If using a custom `Tracker` class, should be passed in here such as: # >>> log_with = ["all", MyCustomTrackerClassInstance()] if args.with_tracking: snake_case__ = Accelerator( cpu=args.cpu , mixed_precision=args.mixed_precision , log_with='all' , project_dir=args.project_dir ) else: snake_case__ = Accelerator(cpu=args.cpu , mixed_precision=args.mixed_precision ) # Sample hyper-parameters for learning rate, batch size, seed and a few other HPs snake_case__ = config['lr'] snake_case__ = int(config['num_epochs'] ) snake_case__ = int(config['seed'] ) snake_case__ = int(config['batch_size'] ) set_seed(_A ) snake_case__ , snake_case__ = get_dataloaders(_A , _A ) snake_case__ = evaluate.load('glue' , 'mrpc' ) # If the batch size is too big we use gradient accumulation snake_case__ = 1 if batch_size > MAX_GPU_BATCH_SIZE and accelerator.distributed_type != DistributedType.TPU: snake_case__ = batch_size // MAX_GPU_BATCH_SIZE snake_case__ = MAX_GPU_BATCH_SIZE # Instantiate the model (we build the model here so that the seed also control new weights initialization) snake_case__ = AutoModelForSequenceClassification.from_pretrained('bert-base-cased' , return_dict=_A ) # We could avoid this line since the accelerator is set with `device_placement=True` (default value). # Note that if you are placing tensors on devices manually, this line absolutely needs to be before the optimizer # creation otherwise training will not work on TPU (`accelerate` will kindly throw an error to make us aware of that). snake_case__ = model.to(accelerator.device ) # Instantiate optimizer snake_case__ = AdamW(params=model.parameters() , lr=_A ) # Instantiate scheduler snake_case__ = get_linear_schedule_with_warmup( optimizer=_A , num_warmup_steps=100 , num_training_steps=(len(_A ) * num_epochs) // gradient_accumulation_steps , ) # Prepare everything # There is no specific order to remember, we just need to unpack the objects in the same order we gave them to the # prepare method. snake_case__ , snake_case__ , snake_case__ , snake_case__ , snake_case__ = accelerator.prepare( _A , _A , _A , _A , _A ) # New Code # # We need to initialize the trackers we use. Overall configurations can also be stored if args.with_tracking: snake_case__ = os.path.split(_A )[-1].split('.' )[0] accelerator.init_trackers(_A , _A ) # Now we train the model for epoch in range(_A ): model.train() # New Code # # For our tracking example, we will log the total loss of each epoch if args.with_tracking: snake_case__ = 0 for step, batch in enumerate(_A ): # We could avoid this line since we set the accelerator with `device_placement=True`. batch.to(accelerator.device ) snake_case__ = model(**_A ) snake_case__ = outputs.loss # New Code # if args.with_tracking: total_loss += loss.detach().float() snake_case__ = loss / gradient_accumulation_steps accelerator.backward(_A ) if step % gradient_accumulation_steps == 0: optimizer.step() lr_scheduler.step() optimizer.zero_grad() model.eval() for step, batch in enumerate(_A ): # We could avoid this line since we set the accelerator with `device_placement=True` (the default). batch.to(accelerator.device ) with torch.no_grad(): snake_case__ = model(**_A ) snake_case__ = outputs.logits.argmax(dim=-1 ) snake_case__ , snake_case__ = accelerator.gather_for_metrics((predictions, batch['labels']) ) metric.add_batch( predictions=_A , references=_A , ) snake_case__ = metric.compute() # Use accelerator.print to print only on the main process. accelerator.print(f'''epoch {epoch}:''' , _A ) # New Code # # To actually log, we call `Accelerator.log` # The values passed can be of `str`, `int`, `float` or `dict` of `str` to `float`/`int` if args.with_tracking: accelerator.log( { 'accuracy': eval_metric['accuracy'], 'f1': eval_metric['f1'], 'train_loss': total_loss.item() / len(_A ), 'epoch': epoch, } , step=_A , ) # New Code # # When a run is finished, you should call `accelerator.end_training()` # to close all of the open trackers if args.with_tracking: accelerator.end_training() def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = argparse.ArgumentParser(description='Simple example of training script.' ) parser.add_argument( '--mixed_precision' , type=_A , default=_A , choices=['no', 'fp16', 'bf16', 'fp8'] , help='Whether to use mixed precision. Choose' 'between fp16 and bf16 (bfloat16). Bf16 requires PyTorch >= 1.10.' 'and an Nvidia Ampere GPU.' , ) parser.add_argument('--cpu' , action='store_true' , help='If passed, will train on the CPU.' ) parser.add_argument( '--with_tracking' , action='store_true' , help='Whether to load in all available experiment trackers from the environment and use them for logging.' , ) parser.add_argument( '--project_dir' , type=_A , default='logs' , help='Location on where to store experiment tracking logs` and relevent project information' , ) snake_case__ = parser.parse_args() snake_case__ = {'lr': 2e-5, 'num_epochs': 3, 'seed': 42, 'batch_size': 16} training_function(_A , _A ) if __name__ == "__main__": main()
307
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, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, logging __UpperCamelCase : Dict = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["pixel_values"] def __init__( self: List[Any] , UpperCamelCase: bool = True , UpperCamelCase: Optional[Dict[str, int]] = None , UpperCamelCase: PILImageResampling = PILImageResampling.BILINEAR , UpperCamelCase: bool = True , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[int, float] = 1 / 2_55 , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , **UpperCamelCase: Optional[int] , ) -> None: super().__init__(**UpperCamelCase ) snake_case__ = size if size is not None else {'shortest_edge': 2_56} snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = crop_size if crop_size is not None else {'height': 2_24, 'width': 2_24} snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_resize snake_case__ = size snake_case__ = resample snake_case__ = do_center_crop snake_case__ = crop_size snake_case__ = do_rescale snake_case__ = rescale_factor snake_case__ = do_normalize snake_case__ = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN snake_case__ = image_std if image_std is not None else IMAGENET_STANDARD_STD def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: PILImageResampling = PILImageResampling.BICUBIC , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) if "shortest_edge" not in size: raise ValueError(F'''The `size` parameter must contain the key `shortest_edge`. Got {size.keys()}''' ) snake_case__ = get_resize_output_image_size(UpperCamelCase , size=size['shortest_edge'] , default_to_square=UpperCamelCase ) return resize(UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: List[Any] , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase ) return center_crop(UpperCamelCase , size=(size['height'], size['width']) , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: np.ndarray , UpperCamelCase: float , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict ) -> np.ndarray: return rescale(UpperCamelCase , scale=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Any , ) -> np.ndarray: return normalize(UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: ImageInput , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: PILImageResampling = None , UpperCamelCase: bool = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[float] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[str, TensorType]] = None , UpperCamelCase: Union[str, ChannelDimension] = ChannelDimension.FIRST , **UpperCamelCase: Any , ) -> Optional[Any]: snake_case__ = do_resize if do_resize is not None else self.do_resize snake_case__ = size if size is not None else self.size snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = resample if resample is not None else self.resample snake_case__ = do_center_crop if do_center_crop is not None else self.do_center_crop snake_case__ = crop_size if crop_size is not None else self.crop_size snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_rescale if do_rescale is not None else self.do_rescale snake_case__ = rescale_factor if rescale_factor is not None else self.rescale_factor snake_case__ = do_normalize if do_normalize is not None else self.do_normalize snake_case__ = image_mean if image_mean is not None else self.image_mean snake_case__ = image_std if image_std is not None else self.image_std snake_case__ = make_list_of_images(UpperCamelCase ) if not valid_images(UpperCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None: raise ValueError('Size must be specified if do_resize is True.' ) if do_center_crop and crop_size is None: raise ValueError('Crop size must be specified if do_center_crop is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # All transformations expect numpy arrays. snake_case__ = [to_numpy_array(UpperCamelCase ) for image in images] if do_resize: snake_case__ = [self.resize(image=UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase ) for image in images] if do_center_crop: snake_case__ = [self.center_crop(image=UpperCamelCase , size=UpperCamelCase ) for image in images] if do_rescale: snake_case__ = [self.rescale(image=UpperCamelCase , scale=UpperCamelCase ) for image in images] if do_normalize: snake_case__ = [self.normalize(image=UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase ) for image in images] snake_case__ = [to_channel_dimension_format(UpperCamelCase , UpperCamelCase ) for image in images] snake_case__ = {'pixel_values': images} return BatchFeature(data=UpperCamelCase , tensor_type=UpperCamelCase )
307
1
import gc import random import unittest import torch from diffusers import ( IFImgaImgPipeline, IFImgaImgSuperResolutionPipeline, IFInpaintingPipeline, IFInpaintingSuperResolutionPipeline, IFPipeline, IFSuperResolutionPipeline, ) from diffusers.models.attention_processor import AttnAddedKVProcessor from diffusers.utils.import_utils import is_xformers_available from diffusers.utils.testing_utils import floats_tensor, load_numpy, require_torch_gpu, skip_mps, slow, torch_device from ..pipeline_params import TEXT_TO_IMAGE_BATCH_PARAMS, TEXT_TO_IMAGE_PARAMS from ..test_pipelines_common import PipelineTesterMixin, assert_mean_pixel_difference from . import IFPipelineTesterMixin @skip_mps class __SCREAMING_SNAKE_CASE( a_ , a_ , unittest.TestCase ): _UpperCAmelCase = IFPipeline _UpperCAmelCase = TEXT_TO_IMAGE_PARAMS - {"width", "height", "latents"} _UpperCAmelCase = TEXT_TO_IMAGE_BATCH_PARAMS _UpperCAmelCase = PipelineTesterMixin.required_optional_params - {"latents"} def lowerCAmelCase_ ( self: Tuple ) -> str: return self._get_dummy_components() def lowerCAmelCase_ ( self: str , UpperCamelCase: List[Any] , UpperCamelCase: Tuple=0 ) -> Optional[int]: if str(UpperCamelCase ).startswith('mps' ): snake_case__ = torch.manual_seed(UpperCamelCase ) else: snake_case__ = torch.Generator(device=UpperCamelCase ).manual_seed(UpperCamelCase ) snake_case__ = { 'prompt': 'A painting of a squirrel eating a burger', 'generator': generator, 'num_inference_steps': 2, 'output_type': 'numpy', } return inputs def lowerCAmelCase_ ( self: List[str] ) -> Any: self._test_save_load_optional_components() @unittest.skipIf(torch_device != 'cuda' , reason='float16 requires CUDA' ) def lowerCAmelCase_ ( self: int ) -> Any: # Due to non-determinism in save load of the hf-internal-testing/tiny-random-t5 text encoder super().test_save_load_floataa(expected_max_diff=1e-1 ) def lowerCAmelCase_ ( self: Any ) -> Optional[int]: self._test_attention_slicing_forward_pass(expected_max_diff=1e-2 ) def lowerCAmelCase_ ( self: List[str] ) -> Any: self._test_save_load_local() def lowerCAmelCase_ ( self: Tuple ) -> int: self._test_inference_batch_single_identical( expected_max_diff=1e-2 , ) @unittest.skipIf( torch_device != 'cuda' or not is_xformers_available() , reason='XFormers attention is only available with CUDA and `xformers` installed' , ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[int]: self._test_xformers_attention_forwardGenerator_pass(expected_max_diff=1e-3 ) @slow @require_torch_gpu class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def lowerCAmelCase_ ( self: Union[str, Any] ) -> int: # clean up the VRAM after each test super().tearDown() gc.collect() torch.cuda.empty_cache() def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: # if snake_case__ = IFPipeline.from_pretrained('DeepFloyd/IF-I-XL-v1.0' , variant='fp16' , torch_dtype=torch.floataa ) snake_case__ = IFSuperResolutionPipeline.from_pretrained( 'DeepFloyd/IF-II-L-v1.0' , variant='fp16' , torch_dtype=torch.floataa , text_encoder=UpperCamelCase , tokenizer=UpperCamelCase ) # pre compute text embeddings and remove T5 to save memory pipe_a.text_encoder.to('cuda' ) snake_case__ , snake_case__ = pipe_a.encode_prompt('anime turtle' , device='cuda' ) del pipe_a.tokenizer del pipe_a.text_encoder gc.collect() snake_case__ = None snake_case__ = None pipe_a.enable_model_cpu_offload() pipe_a.enable_model_cpu_offload() pipe_a.unet.set_attn_processor(AttnAddedKVProcessor() ) pipe_a.unet.set_attn_processor(AttnAddedKVProcessor() ) self._test_if(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) pipe_a.remove_all_hooks() pipe_a.remove_all_hooks() # img2img snake_case__ = IFImgaImgPipeline(**pipe_a.components ) snake_case__ = IFImgaImgSuperResolutionPipeline(**pipe_a.components ) pipe_a.enable_model_cpu_offload() pipe_a.enable_model_cpu_offload() pipe_a.unet.set_attn_processor(AttnAddedKVProcessor() ) pipe_a.unet.set_attn_processor(AttnAddedKVProcessor() ) self._test_if_imgaimg(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) pipe_a.remove_all_hooks() pipe_a.remove_all_hooks() # inpainting snake_case__ = IFInpaintingPipeline(**pipe_a.components ) snake_case__ = IFInpaintingSuperResolutionPipeline(**pipe_a.components ) pipe_a.enable_model_cpu_offload() pipe_a.enable_model_cpu_offload() pipe_a.unet.set_attn_processor(AttnAddedKVProcessor() ) pipe_a.unet.set_attn_processor(AttnAddedKVProcessor() ) self._test_if_inpainting(UpperCamelCase , UpperCamelCase , UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: str , UpperCamelCase: Optional[int] , UpperCamelCase: int , UpperCamelCase: List[str] ) -> Union[str, Any]: # pipeline 1 _start_torch_memory_measurement() snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = pipe_a( prompt_embeds=UpperCamelCase , negative_prompt_embeds=UpperCamelCase , num_inference_steps=2 , generator=UpperCamelCase , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (64, 64, 3) snake_case__ = torch.cuda.max_memory_allocated() assert mem_bytes < 13 * 10**9 snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/if/test_if.npy' ) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase ) # pipeline 2 _start_torch_memory_measurement() snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = floats_tensor((1, 3, 64, 64) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = pipe_a( prompt_embeds=UpperCamelCase , negative_prompt_embeds=UpperCamelCase , image=UpperCamelCase , generator=UpperCamelCase , num_inference_steps=2 , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (2_56, 2_56, 3) snake_case__ = torch.cuda.max_memory_allocated() assert mem_bytes < 4 * 10**9 snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/if/test_if_superresolution_stage_II.npy' ) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Optional[int] ) -> Tuple: # pipeline 1 _start_torch_memory_measurement() snake_case__ = floats_tensor((1, 3, 64, 64) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = pipe_a( prompt_embeds=UpperCamelCase , negative_prompt_embeds=UpperCamelCase , image=UpperCamelCase , num_inference_steps=2 , generator=UpperCamelCase , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (64, 64, 3) snake_case__ = torch.cuda.max_memory_allocated() assert mem_bytes < 10 * 10**9 snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/if/test_if_img2img.npy' ) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase ) # pipeline 2 _start_torch_memory_measurement() snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = floats_tensor((1, 3, 2_56, 2_56) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = floats_tensor((1, 3, 64, 64) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = pipe_a( prompt_embeds=UpperCamelCase , negative_prompt_embeds=UpperCamelCase , image=UpperCamelCase , original_image=UpperCamelCase , generator=UpperCamelCase , num_inference_steps=2 , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (2_56, 2_56, 3) snake_case__ = torch.cuda.max_memory_allocated() assert mem_bytes < 4 * 10**9 snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/if/test_if_img2img_superresolution_stage_II.npy' ) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Tuple , UpperCamelCase: str , UpperCamelCase: Dict ) -> List[str]: # pipeline 1 _start_torch_memory_measurement() snake_case__ = floats_tensor((1, 3, 64, 64) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = floats_tensor((1, 3, 64, 64) , rng=random.Random(1 ) ).to(UpperCamelCase ) snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = pipe_a( prompt_embeds=UpperCamelCase , negative_prompt_embeds=UpperCamelCase , image=UpperCamelCase , mask_image=UpperCamelCase , num_inference_steps=2 , generator=UpperCamelCase , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (64, 64, 3) snake_case__ = torch.cuda.max_memory_allocated() assert mem_bytes < 10 * 10**9 snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/if/test_if_inpainting.npy' ) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase ) # pipeline 2 _start_torch_memory_measurement() snake_case__ = torch.Generator(device='cpu' ).manual_seed(0 ) snake_case__ = floats_tensor((1, 3, 64, 64) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = floats_tensor((1, 3, 2_56, 2_56) , rng=random.Random(0 ) ).to(UpperCamelCase ) snake_case__ = floats_tensor((1, 3, 2_56, 2_56) , rng=random.Random(1 ) ).to(UpperCamelCase ) snake_case__ = pipe_a( prompt_embeds=UpperCamelCase , negative_prompt_embeds=UpperCamelCase , image=UpperCamelCase , mask_image=UpperCamelCase , original_image=UpperCamelCase , generator=UpperCamelCase , num_inference_steps=2 , output_type='np' , ) snake_case__ = output.images[0] assert image.shape == (2_56, 2_56, 3) snake_case__ = torch.cuda.max_memory_allocated() assert mem_bytes < 4 * 10**9 snake_case__ = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/if/test_if_inpainting_superresolution_stage_II.npy' ) assert_mean_pixel_difference(UpperCamelCase , UpperCamelCase ) def a_ ( ) -> Any: """simple docstring""" torch.cuda.empty_cache() torch.cuda.reset_max_memory_allocated() torch.cuda.reset_peak_memory_stats()
307
import random from typing import Any def a_ ( _A ) -> list[Any]: """simple docstring""" for _ in range(len(_A ) ): snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ , snake_case__ = data[b], data[a] return data if __name__ == "__main__": __UpperCamelCase : Dict = [0, 1, 2, 3, 4, 5, 6, 7] __UpperCamelCase : Any = ["""python""", """says""", """hello""", """!"""] print("""Fisher-Yates Shuffle:""") print("""List""", integers, strings) print("""FY Shuffle""", fisher_yates_shuffle(integers), fisher_yates_shuffle(strings))
307
1
import argparse import json from pathlib import Path import requests import torch from huggingface_hub import cached_download, hf_hub_url from PIL import Image from transformers import DPTConfig, DPTForDepthEstimation, DPTForSemanticSegmentation, DPTImageProcessor from transformers.utils import logging logging.set_verbosity_info() __UpperCamelCase : Optional[int] = logging.get_logger(__name__) def a_ ( _A ) -> Optional[int]: """simple docstring""" snake_case__ = DPTConfig() if "large" in checkpoint_url: snake_case__ = 1024 snake_case__ = 4096 snake_case__ = 24 snake_case__ = 16 snake_case__ = [5, 11, 17, 23] snake_case__ = [256, 512, 1024, 1024] snake_case__ = (1, 384, 384) if "ade" in checkpoint_url: snake_case__ = True snake_case__ = 150 snake_case__ = 'huggingface/label-files' snake_case__ = 'ade20k-id2label.json' snake_case__ = json.load(open(cached_download(hf_hub_url(_A , _A , repo_type='dataset' ) ) , 'r' ) ) snake_case__ = {int(_A ): v for k, v in idalabel.items()} snake_case__ = idalabel snake_case__ = {v: k for k, v in idalabel.items()} snake_case__ = [1, 150, 480, 480] return config, expected_shape def a_ ( _A ) -> Optional[int]: """simple docstring""" snake_case__ = ['pretrained.model.head.weight', 'pretrained.model.head.bias'] for k in ignore_keys: state_dict.pop(_A , _A ) def a_ ( _A ) -> Tuple: """simple docstring""" if ( "pretrained.model" in name and "cls_token" not in name and "pos_embed" not in name and "patch_embed" not in name ): snake_case__ = name.replace('pretrained.model' , 'dpt.encoder' ) if "pretrained.model" in name: snake_case__ = name.replace('pretrained.model' , 'dpt.embeddings' ) if "patch_embed" in name: snake_case__ = name.replace('patch_embed' , 'patch_embeddings' ) if "pos_embed" in name: snake_case__ = name.replace('pos_embed' , 'position_embeddings' ) if "attn.proj" in name: snake_case__ = name.replace('attn.proj' , 'attention.output.dense' ) if "proj" in name and "project" not in name: snake_case__ = name.replace('proj' , 'projection' ) if "blocks" in name: snake_case__ = name.replace('blocks' , 'layer' ) if "mlp.fc1" in name: snake_case__ = name.replace('mlp.fc1' , 'intermediate.dense' ) if "mlp.fc2" in name: snake_case__ = name.replace('mlp.fc2' , 'output.dense' ) if "norm1" in name: snake_case__ = name.replace('norm1' , 'layernorm_before' ) if "norm2" in name: snake_case__ = name.replace('norm2' , 'layernorm_after' ) if "scratch.output_conv" in name: snake_case__ = name.replace('scratch.output_conv' , 'head' ) if "scratch" in name: snake_case__ = name.replace('scratch' , 'neck' ) if "layer1_rn" in name: snake_case__ = name.replace('layer1_rn' , 'convs.0' ) if "layer2_rn" in name: snake_case__ = name.replace('layer2_rn' , 'convs.1' ) if "layer3_rn" in name: snake_case__ = name.replace('layer3_rn' , 'convs.2' ) if "layer4_rn" in name: snake_case__ = name.replace('layer4_rn' , 'convs.3' ) if "refinenet" in name: snake_case__ = int(name[len('neck.refinenet' ) : len('neck.refinenet' ) + 1] ) # tricky here: we need to map 4 to 0, 3 to 1, 2 to 2 and 1 to 3 snake_case__ = name.replace(f'''refinenet{layer_idx}''' , f'''fusion_stage.layers.{abs(layer_idx-4 )}''' ) if "out_conv" in name: snake_case__ = name.replace('out_conv' , 'projection' ) if "resConfUnit1" in name: snake_case__ = name.replace('resConfUnit1' , 'residual_layer1' ) if "resConfUnit2" in name: snake_case__ = name.replace('resConfUnit2' , 'residual_layer2' ) if "conv1" in name: snake_case__ = name.replace('conv1' , 'convolution1' ) if "conv2" in name: snake_case__ = name.replace('conv2' , 'convolution2' ) # readout blocks if "pretrained.act_postprocess1.0.project.0" in name: snake_case__ = name.replace('pretrained.act_postprocess1.0.project.0' , 'neck.reassemble_stage.readout_projects.0.0' ) if "pretrained.act_postprocess2.0.project.0" in name: snake_case__ = name.replace('pretrained.act_postprocess2.0.project.0' , 'neck.reassemble_stage.readout_projects.1.0' ) if "pretrained.act_postprocess3.0.project.0" in name: snake_case__ = name.replace('pretrained.act_postprocess3.0.project.0' , 'neck.reassemble_stage.readout_projects.2.0' ) if "pretrained.act_postprocess4.0.project.0" in name: snake_case__ = name.replace('pretrained.act_postprocess4.0.project.0' , 'neck.reassemble_stage.readout_projects.3.0' ) # resize blocks if "pretrained.act_postprocess1.3" in name: snake_case__ = name.replace('pretrained.act_postprocess1.3' , 'neck.reassemble_stage.layers.0.projection' ) if "pretrained.act_postprocess1.4" in name: snake_case__ = name.replace('pretrained.act_postprocess1.4' , 'neck.reassemble_stage.layers.0.resize' ) if "pretrained.act_postprocess2.3" in name: snake_case__ = name.replace('pretrained.act_postprocess2.3' , 'neck.reassemble_stage.layers.1.projection' ) if "pretrained.act_postprocess2.4" in name: snake_case__ = name.replace('pretrained.act_postprocess2.4' , 'neck.reassemble_stage.layers.1.resize' ) if "pretrained.act_postprocess3.3" in name: snake_case__ = name.replace('pretrained.act_postprocess3.3' , 'neck.reassemble_stage.layers.2.projection' ) if "pretrained.act_postprocess4.3" in name: snake_case__ = name.replace('pretrained.act_postprocess4.3' , 'neck.reassemble_stage.layers.3.projection' ) if "pretrained.act_postprocess4.4" in name: snake_case__ = name.replace('pretrained.act_postprocess4.4' , 'neck.reassemble_stage.layers.3.resize' ) if "pretrained" in name: snake_case__ = name.replace('pretrained' , 'dpt' ) if "bn" in name: snake_case__ = name.replace('bn' , 'batch_norm' ) if "head" in name: snake_case__ = name.replace('head' , 'head.head' ) if "encoder.norm" in name: snake_case__ = name.replace('encoder.norm' , 'layernorm' ) if "auxlayer" in name: snake_case__ = name.replace('auxlayer' , 'auxiliary_head.head' ) return name def a_ ( _A , _A ) -> Optional[int]: """simple docstring""" for i in range(config.num_hidden_layers ): # read in weights + bias of input projection layer (in timm, this is a single matrix + bias) snake_case__ = state_dict.pop(f'''dpt.encoder.layer.{i}.attn.qkv.weight''' ) snake_case__ = state_dict.pop(f'''dpt.encoder.layer.{i}.attn.qkv.bias''' ) # next, add query, keys and values (in that order) to the state dict snake_case__ = in_proj_weight[: config.hidden_size, :] snake_case__ = in_proj_bias[: config.hidden_size] snake_case__ = in_proj_weight[ config.hidden_size : config.hidden_size * 2, : ] snake_case__ = in_proj_bias[ config.hidden_size : config.hidden_size * 2 ] snake_case__ = in_proj_weight[ -config.hidden_size :, : ] snake_case__ = in_proj_bias[-config.hidden_size :] def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = 'http://images.cocodataset.org/val2017/000000039769.jpg' snake_case__ = Image.open(requests.get(_A , stream=_A ).raw ) return im @torch.no_grad() def a_ ( _A , _A , _A , _A ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = get_dpt_config(_A ) # load original state_dict from URL snake_case__ = torch.hub.load_state_dict_from_url(_A , map_location='cpu' ) # remove certain keys remove_ignore_keys_(_A ) # rename keys for key in state_dict.copy().keys(): snake_case__ = state_dict.pop(_A ) snake_case__ = val # read in qkv matrices read_in_q_k_v(_A , _A ) # load HuggingFace model snake_case__ = DPTForSemanticSegmentation(_A ) if 'ade' in checkpoint_url else DPTForDepthEstimation(_A ) model.load_state_dict(_A ) model.eval() # Check outputs on an image snake_case__ = 480 if 'ade' in checkpoint_url else 384 snake_case__ = DPTImageProcessor(size=_A ) snake_case__ = prepare_img() snake_case__ = image_processor(_A , return_tensors='pt' ) # forward pass snake_case__ = model(**_A ).logits if 'ade' in checkpoint_url else model(**_A ).predicted_depth # Assert logits snake_case__ = torch.tensor([[6.3199, 6.3629, 6.4148], [6.3850, 6.3615, 6.4166], [6.3519, 6.3176, 6.3575]] ) if "ade" in checkpoint_url: snake_case__ = torch.tensor([[4.0480, 4.2420, 4.4360], [4.3124, 4.5693, 4.8261], [4.5768, 4.8965, 5.2163]] ) assert outputs.shape == torch.Size(_A ) assert ( torch.allclose(outputs[0, 0, :3, :3] , _A , atol=1e-4 ) if "ade" in checkpoint_url else torch.allclose(outputs[0, :3, :3] , _A ) ) Path(_A ).mkdir(exist_ok=_A ) print(f'''Saving model to {pytorch_dump_folder_path}''' ) model.save_pretrained(_A ) print(f'''Saving image processor to {pytorch_dump_folder_path}''' ) image_processor.save_pretrained(_A ) if push_to_hub: print('Pushing model to hub...' ) model.push_to_hub( repo_path_or_name=Path(_A , _A ) , organization='nielsr' , commit_message='Add model' , use_temp_dir=_A , ) image_processor.push_to_hub( repo_path_or_name=Path(_A , _A ) , organization='nielsr' , commit_message='Add image processor' , use_temp_dir=_A , ) if __name__ == "__main__": __UpperCamelCase : int = argparse.ArgumentParser() # Required parameters parser.add_argument( """--checkpoint_url""", default="""https://github.com/intel-isl/DPT/releases/download/1_0/dpt_large-midas-2f21e586.pt""", type=str, help="""URL of the original DPT checkpoint you'd like to convert.""", ) parser.add_argument( """--pytorch_dump_folder_path""", default=None, type=str, required=True, help="""Path to the output PyTorch model directory.""", ) parser.add_argument( """--push_to_hub""", action="""store_true""", ) parser.add_argument( """--model_name""", default="""dpt-large""", type=str, help="""Name of the model, in case you're pushing to the hub.""", ) __UpperCamelCase : str = parser.parse_args() convert_dpt_checkpoint(args.checkpoint_url, args.pytorch_dump_folder_path, args.push_to_hub, args.model_name)
307
class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE: def __init__( self: List[str] ) -> Union[str, Any]: snake_case__ = [ [], [], [], ] def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: int , UpperCamelCase: int ) -> None: try: if len(self.queues[priority] ) >= 1_00: raise OverflowError('Maximum queue size is 100' ) self.queues[priority].append(UpperCamelCase ) except IndexError: raise ValueError('Valid priorities are 0, 1, and 2' ) def lowerCAmelCase_ ( self: List[Any] ) -> int: for queue in self.queues: if queue: return queue.pop(0 ) raise UnderFlowError('All queues are empty' ) def __str__( self: Union[str, Any] ) -> str: return "\n".join(F'''Priority {i}: {q}''' for i, q in enumerate(self.queues ) ) class __SCREAMING_SNAKE_CASE: def __init__( self: Union[str, Any] ) -> Any: snake_case__ = [] def lowerCAmelCase_ ( self: str , UpperCamelCase: int ) -> None: if len(self.queue ) == 1_00: raise OverFlowError('Maximum queue size is 100' ) self.queue.append(UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> int: if not self.queue: raise UnderFlowError('The queue is empty' ) else: snake_case__ = min(self.queue ) self.queue.remove(UpperCamelCase ) return data def __str__( self: Optional[Any] ) -> str: return str(self.queue ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = FixedPriorityQueue() fpq.enqueue(0 , 10 ) fpq.enqueue(1 , 70 ) fpq.enqueue(0 , 100 ) fpq.enqueue(2 , 1 ) fpq.enqueue(2 , 5 ) fpq.enqueue(1 , 7 ) fpq.enqueue(2 , 4 ) fpq.enqueue(1 , 64 ) fpq.enqueue(0 , 128 ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = ElementPriorityQueue() epq.enqueue(10 ) epq.enqueue(70 ) epq.enqueue(100 ) epq.enqueue(1 ) epq.enqueue(5 ) epq.enqueue(7 ) epq.enqueue(4 ) epq.enqueue(64 ) epq.enqueue(128 ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) if __name__ == "__main__": fixed_priority_queue() element_priority_queue()
307
1
import itertools import os import random import tempfile import unittest import numpy as np from datasets import load_dataset from transformers import is_speech_available from transformers.testing_utils import check_json_file_has_correct_format, require_torch, require_torchaudio from transformers.utils.import_utils import is_torch_available from ...test_sequence_feature_extraction_common import SequenceFeatureExtractionTestMixin if is_speech_available(): from transformers import WhisperFeatureExtractor if is_torch_available(): import torch __UpperCamelCase : Union[str, Any] = random.Random() def a_ ( _A , _A=1.0 , _A=None , _A=None ) -> Union[str, Any]: """simple docstring""" if rng is None: snake_case__ = global_rng snake_case__ = [] for batch_idx in range(shape[0] ): values.append([] ) for _ in range(shape[1] ): values[-1].append(rng.random() * scale ) return values @require_torch @require_torchaudio class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def __init__( self: int , UpperCamelCase: int , UpperCamelCase: List[str]=7 , UpperCamelCase: List[str]=4_00 , UpperCamelCase: Any=20_00 , UpperCamelCase: Any=10 , UpperCamelCase: Union[str, Any]=1_60 , UpperCamelCase: Tuple=8 , UpperCamelCase: Tuple=0.0 , UpperCamelCase: str=40_00 , UpperCamelCase: Any=False , UpperCamelCase: Tuple=True , ) -> Optional[int]: snake_case__ = parent snake_case__ = batch_size snake_case__ = min_seq_length snake_case__ = max_seq_length snake_case__ = (self.max_seq_length - self.min_seq_length) // (self.batch_size - 1) snake_case__ = padding_value snake_case__ = sampling_rate snake_case__ = return_attention_mask snake_case__ = do_normalize snake_case__ = feature_size snake_case__ = chunk_length snake_case__ = hop_length def lowerCAmelCase_ ( self: Tuple ) -> List[Any]: return { "feature_size": self.feature_size, "hop_length": self.hop_length, "chunk_length": self.chunk_length, "padding_value": self.padding_value, "sampling_rate": self.sampling_rate, "return_attention_mask": self.return_attention_mask, "do_normalize": self.do_normalize, } def lowerCAmelCase_ ( self: str , UpperCamelCase: Union[str, Any]=False , UpperCamelCase: int=False ) -> Union[str, Any]: def _flatten(UpperCamelCase: Union[str, Any] ): return list(itertools.chain(*UpperCamelCase ) ) if equal_length: snake_case__ = [floats_list((self.max_seq_length, self.feature_size) ) for _ in range(self.batch_size )] else: # make sure that inputs increase in size snake_case__ = [ floats_list((x, self.feature_size) ) for x in range(self.min_seq_length , self.max_seq_length , self.seq_length_diff ) ] if numpify: snake_case__ = [np.asarray(UpperCamelCase ) for x in speech_inputs] return speech_inputs @require_torch @require_torchaudio class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = WhisperFeatureExtractor if is_speech_available() else None def lowerCAmelCase_ ( self: Any ) -> List[str]: snake_case__ = WhisperFeatureExtractionTester(self ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> List[Any]: snake_case__ = self.feature_extraction_class(**self.feat_extract_dict ) with tempfile.TemporaryDirectory() as tmpdirname: snake_case__ = feat_extract_first.save_pretrained(UpperCamelCase )[0] check_json_file_has_correct_format(UpperCamelCase ) snake_case__ = self.feature_extraction_class.from_pretrained(UpperCamelCase ) snake_case__ = feat_extract_first.to_dict() snake_case__ = feat_extract_second.to_dict() snake_case__ = feat_extract_first.mel_filters snake_case__ = feat_extract_second.mel_filters self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase ) ) self.assertEqual(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: Dict ) -> List[str]: snake_case__ = self.feature_extraction_class(**self.feat_extract_dict ) with tempfile.TemporaryDirectory() as tmpdirname: snake_case__ = os.path.join(UpperCamelCase , 'feat_extract.json' ) feat_extract_first.to_json_file(UpperCamelCase ) snake_case__ = self.feature_extraction_class.from_json_file(UpperCamelCase ) snake_case__ = feat_extract_first.to_dict() snake_case__ = feat_extract_second.to_dict() snake_case__ = feat_extract_first.mel_filters snake_case__ = feat_extract_second.mel_filters self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase ) ) self.assertEqual(UpperCamelCase , UpperCamelCase ) def lowerCAmelCase_ ( self: str ) -> Optional[int]: # Tests that all call wrap to encode_plus and batch_encode_plus snake_case__ = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) # create three inputs of length 800, 1000, and 1200 snake_case__ = [floats_list((1, x) )[0] for x in range(8_00 , 14_00 , 2_00 )] snake_case__ = [np.asarray(UpperCamelCase ) for speech_input in speech_inputs] # Test feature size snake_case__ = feature_extractor(UpperCamelCase , padding='max_length' , return_tensors='np' ).input_features self.assertTrue(input_features.ndim == 3 ) self.assertTrue(input_features.shape[-1] == feature_extractor.nb_max_frames ) self.assertTrue(input_features.shape[-2] == feature_extractor.feature_size ) # Test not batched input snake_case__ = feature_extractor(speech_inputs[0] , return_tensors='np' ).input_features snake_case__ = feature_extractor(np_speech_inputs[0] , return_tensors='np' ).input_features self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) # Test batched snake_case__ = feature_extractor(UpperCamelCase , return_tensors='np' ).input_features snake_case__ = feature_extractor(UpperCamelCase , return_tensors='np' ).input_features for enc_seq_a, enc_seq_a in zip(UpperCamelCase , UpperCamelCase ): self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) # Test 2-D numpy arrays are batched. snake_case__ = [floats_list((1, x) )[0] for x in (8_00, 8_00, 8_00)] snake_case__ = np.asarray(UpperCamelCase ) snake_case__ = feature_extractor(UpperCamelCase , return_tensors='np' ).input_features snake_case__ = feature_extractor(UpperCamelCase , return_tensors='np' ).input_features for enc_seq_a, enc_seq_a in zip(UpperCamelCase , UpperCamelCase ): self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) # Test truncation required snake_case__ = [floats_list((1, x) )[0] for x in range(2_00 , (feature_extractor.n_samples + 5_00) , 2_00 )] snake_case__ = [np.asarray(UpperCamelCase ) for speech_input in speech_inputs] snake_case__ = [x[: feature_extractor.n_samples] for x in speech_inputs] snake_case__ = [np.asarray(UpperCamelCase ) for speech_input in speech_inputs_truncated] snake_case__ = feature_extractor(UpperCamelCase , return_tensors='np' ).input_features snake_case__ = feature_extractor(UpperCamelCase , return_tensors='np' ).input_features for enc_seq_a, enc_seq_a in zip(UpperCamelCase , UpperCamelCase ): self.assertTrue(np.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Any: import torch snake_case__ = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) snake_case__ = np.random.rand(1_00 , 32 ).astype(np.floataa ) snake_case__ = np_speech_inputs.tolist() for inputs in [py_speech_inputs, np_speech_inputs]: snake_case__ = feature_extractor.pad([{'input_features': inputs}] , return_tensors='np' ) self.assertTrue(np_processed.input_features.dtype == np.floataa ) snake_case__ = feature_extractor.pad([{'input_features': inputs}] , return_tensors='pt' ) self.assertTrue(pt_processed.input_features.dtype == torch.floataa ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: int ) -> Optional[int]: snake_case__ = load_dataset('hf-internal-testing/librispeech_asr_dummy' , 'clean' , split='validation' ) # automatic decoding with librispeech snake_case__ = ds.sort('id' ).select(range(UpperCamelCase ) )[:num_samples]['audio'] return [x["array"] for x in speech_samples] def lowerCAmelCase_ ( self: Dict ) -> Optional[int]: # fmt: off snake_case__ = torch.tensor( [ 0.1_193, -0.0_946, -0.1_098, -0.0_196, 0.0_225, -0.0_690, -0.1_736, 0.0_951, 0.0_971, -0.0_817, -0.0_702, 0.0_162, 0.0_260, 0.0_017, -0.0_192, -0.1_678, 0.0_709, -0.1_867, -0.0_655, -0.0_274, -0.0_234, -0.1_884, -0.0_516, -0.0_554, -0.0_274, -0.1_425, -0.1_423, 0.0_837, 0.0_377, -0.0_854 ] ) # fmt: on snake_case__ = self._load_datasamples(1 ) snake_case__ = WhisperFeatureExtractor() snake_case__ = feature_extractor(UpperCamelCase , return_tensors='pt' ).input_features self.assertEqual(input_features.shape , (1, 80, 30_00) ) self.assertTrue(torch.allclose(input_features[0, 0, :30] , UpperCamelCase , atol=1e-4 ) ) def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = self.feature_extraction_class(**self.feat_extract_tester.prepare_feat_extract_dict() ) snake_case__ = self._load_datasamples(1 )[0] snake_case__ = ((audio - audio.min()) / (audio.max() - audio.min())) * 6_55_35 # Rescale to [0, 65535] to show issue snake_case__ = feat_extract.zero_mean_unit_var_norm([audio] , attention_mask=UpperCamelCase )[0] self.assertTrue(np.all(np.mean(UpperCamelCase ) < 1e-3 ) ) self.assertTrue(np.all(np.abs(np.var(UpperCamelCase ) - 1 ) < 1e-3 ) )
307
import warnings from typing import List, Optional, Union from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding, PaddingStrategy, PreTokenizedInput, TextInput, TruncationStrategy from ...utils import TensorType class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["image_processor", "tokenizer"] _UpperCAmelCase = "LayoutLMv2ImageProcessor" _UpperCAmelCase = ("LayoutXLMTokenizer", "LayoutXLMTokenizerFast") def __init__( self: int , UpperCamelCase: Optional[int]=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Union[str, Any] ) -> int: if "feature_extractor" in kwargs: warnings.warn( 'The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`' ' instead.' , UpperCamelCase , ) snake_case__ = kwargs.pop('feature_extractor' ) snake_case__ = 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__(UpperCamelCase , UpperCamelCase ) def __call__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Union[TextInput, PreTokenizedInput, List[TextInput], List[PreTokenizedInput]] = None , UpperCamelCase: Optional[Union[PreTokenizedInput, List[PreTokenizedInput]]] = None , UpperCamelCase: Union[List[List[int]], List[List[List[int]]]] = None , UpperCamelCase: Optional[Union[List[int], List[List[int]]]] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[bool, str, PaddingStrategy] = False , UpperCamelCase: Union[bool, str, TruncationStrategy] = None , UpperCamelCase: Optional[int] = None , UpperCamelCase: int = 0 , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[str, TensorType]] = None , **UpperCamelCase: Any , ) -> BatchEncoding: # verify input if self.image_processor.apply_ocr and (boxes is not None): raise ValueError( 'You cannot provide bounding boxes ' 'if you initialized the image processor with apply_ocr set to True.' ) if self.image_processor.apply_ocr and (word_labels is not None): raise ValueError( 'You cannot provide word labels if you initialized the image processor with apply_ocr set to True.' ) if return_overflowing_tokens is True and return_offsets_mapping is False: raise ValueError('You cannot return overflowing tokens without returning the offsets mapping.' ) # first, apply the image processor snake_case__ = self.image_processor(images=UpperCamelCase , return_tensors=UpperCamelCase ) # second, apply the tokenizer if text is not None and self.image_processor.apply_ocr and text_pair is None: if isinstance(UpperCamelCase , UpperCamelCase ): snake_case__ = [text] # add batch dimension (as the image processor always adds a batch dimension) snake_case__ = features['words'] snake_case__ = self.tokenizer( text=text if text is not None else features['words'] , text_pair=text_pair if text_pair is not None else None , boxes=boxes if boxes is not None else features['boxes'] , word_labels=UpperCamelCase , add_special_tokens=UpperCamelCase , padding=UpperCamelCase , truncation=UpperCamelCase , max_length=UpperCamelCase , stride=UpperCamelCase , pad_to_multiple_of=UpperCamelCase , return_token_type_ids=UpperCamelCase , return_attention_mask=UpperCamelCase , return_overflowing_tokens=UpperCamelCase , return_special_tokens_mask=UpperCamelCase , return_offsets_mapping=UpperCamelCase , return_length=UpperCamelCase , verbose=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase , ) # add pixel values snake_case__ = features.pop('pixel_values' ) if return_overflowing_tokens is True: snake_case__ = self.get_overflowing_images(UpperCamelCase , encoded_inputs['overflow_to_sample_mapping'] ) snake_case__ = images return encoded_inputs def lowerCAmelCase_ ( self: Any , UpperCamelCase: Optional[int] , UpperCamelCase: Any ) -> Tuple: # in case there's an overflow, ensure each `input_ids` sample is mapped to its corresponding image snake_case__ = [] for sample_idx in overflow_to_sample_mapping: images_with_overflow.append(images[sample_idx] ) if len(UpperCamelCase ) != len(UpperCamelCase ): raise ValueError( 'Expected length of images to be the same as the length of `overflow_to_sample_mapping`, but got' F''' {len(UpperCamelCase )} and {len(UpperCamelCase )}''' ) return images_with_overflow def lowerCAmelCase_ ( self: Dict , *UpperCamelCase: Dict , **UpperCamelCase: Optional[int] ) -> List[Any]: return self.tokenizer.batch_decode(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: int ) -> Optional[Any]: return self.tokenizer.decode(*UpperCamelCase , **UpperCamelCase ) @property def lowerCAmelCase_ ( self: str ) -> List[Any]: return ["input_ids", "bbox", "attention_mask", "image"] @property def lowerCAmelCase_ ( self: Any ) -> List[Any]: warnings.warn( '`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.' , UpperCamelCase , ) return self.image_processor_class @property def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: warnings.warn( '`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.' , UpperCamelCase , ) return self.image_processor
307
1
import enum import warnings from .. import MODEL_FOR_CAUSAL_LM_MAPPING, TF_MODEL_FOR_CAUSAL_LM_MAPPING from ..utils import add_end_docstrings, is_tf_available from .base import PIPELINE_INIT_ARGS, Pipeline if is_tf_available(): import tensorflow as tf class __SCREAMING_SNAKE_CASE( enum.Enum ): _UpperCAmelCase = 0 _UpperCAmelCase = 1 _UpperCAmelCase = 2 @add_end_docstrings(a_ ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "\n In 1991, the remains of Russian Tsar Nicholas II and his family (except for Alexei and Maria) are discovered. The\n voice of Nicholas's young son, Tsarevich Alexei Nikolaevich, narrates the remainder of the story. 1883 Western\n Siberia, a young Grigori Rasputin is asked by his father and a group of men to perform magic. Rasputin has a vision\n and denounces one of the men as a horse thief. Although his father initially slaps him for making such an\n accusation, Rasputin watches as the man is chased outside and beaten. Twenty years later, Rasputin sees a vision of\n the Virgin Mary, prompting him to become a priest. Rasputin quickly becomes famous, with people, even a bishop,\n begging for his blessing. <eod> </s> <eos>\n " def __init__( self: str , *UpperCamelCase: Union[str, Any] , **UpperCamelCase: int ) -> List[str]: super().__init__(*UpperCamelCase , **UpperCamelCase ) self.check_model_type( TF_MODEL_FOR_CAUSAL_LM_MAPPING if self.framework == 'tf' else MODEL_FOR_CAUSAL_LM_MAPPING ) if "prefix" not in self._preprocess_params: # This is very specific. The logic is quite complex and needs to be done # as a "default". # It also defines both some preprocess_kwargs and generate_kwargs # which is why we cannot put them in their respective methods. snake_case__ = None if self.model.config.prefix is not None: snake_case__ = self.model.config.prefix if prefix is None and self.model.__class__.__name__ in [ "XLNetLMHeadModel", "TransfoXLLMHeadModel", "TFXLNetLMHeadModel", "TFTransfoXLLMHeadModel", ]: # For XLNet and TransformerXL we add an article to the prompt to give more state to the model. snake_case__ = self.XL_PREFIX if prefix is not None: # Recalculate some generate_kwargs linked to prefix. snake_case__ , snake_case__ , snake_case__ = self._sanitize_parameters(prefix=UpperCamelCase , **self._forward_params ) snake_case__ = {**self._preprocess_params, **preprocess_params} snake_case__ = {**self._forward_params, **forward_params} def lowerCAmelCase_ ( self: str , UpperCamelCase: Union[str, Any]=None , UpperCamelCase: Optional[Any]=None , UpperCamelCase: Optional[Any]=None , UpperCamelCase: List[Any]=None , UpperCamelCase: List[Any]=None , UpperCamelCase: Tuple=None , UpperCamelCase: str=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Optional[Any] , ) -> Tuple: snake_case__ = {} if prefix is not None: snake_case__ = prefix if prefix: snake_case__ = self.tokenizer( UpperCamelCase , padding=UpperCamelCase , add_special_tokens=UpperCamelCase , return_tensors=self.framework ) snake_case__ = prefix_inputs['input_ids'].shape[-1] if handle_long_generation is not None: if handle_long_generation not in {"hole"}: raise ValueError( F'''{handle_long_generation} is not a valid value for `handle_long_generation` parameter expected''' ' [None, \'hole\']' ) snake_case__ = handle_long_generation preprocess_params.update(UpperCamelCase ) snake_case__ = generate_kwargs snake_case__ = {} if return_full_text is not None and return_type is None: if return_text is not None: raise ValueError('`return_text` is mutually exclusive with `return_full_text`' ) if return_tensors is not None: raise ValueError('`return_full_text` is mutually exclusive with `return_tensors`' ) snake_case__ = ReturnType.FULL_TEXT if return_full_text else ReturnType.NEW_TEXT if return_tensors is not None and return_type is None: if return_text is not None: raise ValueError('`return_text` is mutually exclusive with `return_tensors`' ) snake_case__ = ReturnType.TENSORS if return_type is not None: snake_case__ = return_type if clean_up_tokenization_spaces is not None: snake_case__ = clean_up_tokenization_spaces if stop_sequence is not None: snake_case__ = self.tokenizer.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) if len(UpperCamelCase ) > 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.' ) snake_case__ = stop_sequence_ids[0] return preprocess_params, forward_params, postprocess_params def lowerCAmelCase_ ( self: Optional[int] , *UpperCamelCase: Optional[int] , **UpperCamelCase: int ) -> str: # Parse arguments if self.model.__class__.__name__ in ["TransfoXLLMHeadModel"]: kwargs.update({'add_space_before_punct_symbol': True} ) return super()._parse_and_tokenize(*UpperCamelCase , **UpperCamelCase ) def __call__( self: Optional[int] , UpperCamelCase: List[Any] , **UpperCamelCase: int ) -> Optional[Any]: return super().__call__(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[str] , UpperCamelCase: List[Any]="" , UpperCamelCase: Any=None , **UpperCamelCase: Union[str, Any] ) -> Any: snake_case__ = self.tokenizer( prefix + prompt_text , padding=UpperCamelCase , add_special_tokens=UpperCamelCase , return_tensors=self.framework ) snake_case__ = prompt_text if handle_long_generation == "hole": snake_case__ = inputs['input_ids'].shape[-1] if "max_new_tokens" in generate_kwargs: snake_case__ = generate_kwargs['max_new_tokens'] else: snake_case__ = generate_kwargs.get('max_length' , self.model.config.max_length ) - cur_len if new_tokens < 0: raise ValueError('We cannot infer how many new tokens are expected' ) if cur_len + new_tokens > self.tokenizer.model_max_length: snake_case__ = self.tokenizer.model_max_length - new_tokens if keep_length <= 0: raise ValueError( 'We cannot use `hole` to handle this generation the number of desired tokens exceeds the' ' models max length' ) snake_case__ = inputs['input_ids'][:, -keep_length:] if "attention_mask" in inputs: snake_case__ = inputs['attention_mask'][:, -keep_length:] return inputs def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Union[str, Any] , **UpperCamelCase: Any ) -> Optional[Any]: snake_case__ = model_inputs['input_ids'] snake_case__ = model_inputs.get('attention_mask' , UpperCamelCase ) # Allow empty prompts if input_ids.shape[1] == 0: snake_case__ = None snake_case__ = None snake_case__ = 1 else: snake_case__ = input_ids.shape[0] snake_case__ = model_inputs.pop('prompt_text' ) # If there is a prefix, we may need to adjust the generation length. Do so without permanently modifying # generate_kwargs, as some of the parameterization may come from the initialization of the pipeline. snake_case__ = generate_kwargs.pop('prefix_length' , 0 ) if prefix_length > 0: snake_case__ = 'max_new_tokens' in generate_kwargs or ( 'generation_config' in generate_kwargs and generate_kwargs['generation_config'].max_new_tokens is not None ) if not has_max_new_tokens: snake_case__ = generate_kwargs.get('max_length' ) or self.model.config.max_length generate_kwargs["max_length"] += prefix_length snake_case__ = 'min_new_tokens' in generate_kwargs or ( 'generation_config' in generate_kwargs and generate_kwargs['generation_config'].min_new_tokens is not None ) if not has_min_new_tokens and "min_length" in generate_kwargs: generate_kwargs["min_length"] += prefix_length # BS x SL snake_case__ = self.model.generate(input_ids=UpperCamelCase , attention_mask=UpperCamelCase , **UpperCamelCase ) snake_case__ = generated_sequence.shape[0] if self.framework == "pt": snake_case__ = generated_sequence.reshape(UpperCamelCase , out_b // in_b , *generated_sequence.shape[1:] ) elif self.framework == "tf": snake_case__ = tf.reshape(UpperCamelCase , (in_b, out_b // in_b, *generated_sequence.shape[1:]) ) return {"generated_sequence": generated_sequence, "input_ids": input_ids, "prompt_text": prompt_text} def lowerCAmelCase_ ( self: Dict , UpperCamelCase: Tuple , UpperCamelCase: str=ReturnType.FULL_TEXT , UpperCamelCase: Optional[Any]=True ) -> str: snake_case__ = model_outputs['generated_sequence'][0] snake_case__ = model_outputs['input_ids'] snake_case__ = model_outputs['prompt_text'] snake_case__ = generated_sequence.numpy().tolist() snake_case__ = [] for sequence in generated_sequence: if return_type == ReturnType.TENSORS: snake_case__ = {'generated_token_ids': sequence} elif return_type in {ReturnType.NEW_TEXT, ReturnType.FULL_TEXT}: # Decode text snake_case__ = self.tokenizer.decode( UpperCamelCase , skip_special_tokens=UpperCamelCase , clean_up_tokenization_spaces=UpperCamelCase , ) # Remove PADDING prompt of the sequence if XLNet or Transfo-XL model is used if input_ids is None: snake_case__ = 0 else: snake_case__ = len( self.tokenizer.decode( input_ids[0] , skip_special_tokens=UpperCamelCase , clean_up_tokenization_spaces=UpperCamelCase , ) ) if return_type == ReturnType.FULL_TEXT: snake_case__ = prompt_text + text[prompt_length:] else: snake_case__ = text[prompt_length:] snake_case__ = {'generated_text': all_text} records.append(UpperCamelCase ) return records
307
def a_ ( _A = 1000 ) -> int: """simple docstring""" return sum(e for e in range(3 , _A ) if e % 3 == 0 or e % 5 == 0 ) if __name__ == "__main__": print(f'''{solution() = }''')
307
1
import unittest from parameterized import parameterized from transformers import LlamaConfig, is_torch_available, set_seed from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import LlamaForCausalLM, LlamaForSequenceClassification, LlamaModel, LlamaTokenizer class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: List[str] , UpperCamelCase: str=13 , UpperCamelCase: int=7 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , UpperCamelCase: Dict=False , UpperCamelCase: Optional[int]=True , UpperCamelCase: Dict=99 , UpperCamelCase: Dict=32 , UpperCamelCase: Optional[Any]=5 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: List[str]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Union[str, Any]=5_12 , UpperCamelCase: str=16 , UpperCamelCase: int=2 , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Dict=4 , UpperCamelCase: List[str]=None , ) -> List[str]: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_input_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_labels snake_case__ = num_choices snake_case__ = scope def lowerCAmelCase_ ( self: List[str] ) -> Dict: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_input_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = None snake_case__ = None snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case__ = ids_tensor([self.batch_size] , self.num_choices ) snake_case__ = self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: return LlamaConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: Dict , UpperCamelCase: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: str ) -> Dict: snake_case__ = LlamaModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[Any] , ) -> str: snake_case__ = True snake_case__ = LlamaModel(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , ) snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Any , UpperCamelCase: int , UpperCamelCase: Optional[Any] , ) -> Any: snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: List[str] , ) -> Union[str, Any]: snake_case__ = True snake_case__ = True snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() # first forward pass snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , use_cache=UpperCamelCase , ) snake_case__ = outputs.past_key_values # create hypothetical multiple next token and extent to next_input_ids snake_case__ = ids_tensor((self.batch_size, 3) , config.vocab_size ) snake_case__ = ids_tensor((self.batch_size, 3) , vocab_size=2 ) # append to next input_ids and snake_case__ = torch.cat([input_ids, next_tokens] , dim=-1 ) snake_case__ = torch.cat([input_mask, next_mask] , dim=-1 ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , past_key_values=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] # select random slice snake_case__ = ids_tensor((1,) , output_from_past.shape[-1] ).item() snake_case__ = output_from_no_past[:, -3:, random_slice_idx].detach() snake_case__ = output_from_past[:, :, random_slice_idx].detach() self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1] ) # test that outputs are equal for slice self.parent.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: int ) -> Dict: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'input_ids': input_ids, 'attention_mask': input_mask} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , a_ , unittest.TestCase ): _UpperCAmelCase = (LlamaModel, LlamaForCausalLM, LlamaForSequenceClassification) if is_torch_available() else () _UpperCAmelCase = (LlamaForCausalLM,) if is_torch_available() else () _UpperCAmelCase = ( { "feature-extraction": LlamaModel, "text-classification": LlamaForSequenceClassification, "text-generation": LlamaForCausalLM, "zero-shot": LlamaForSequenceClassification, } if is_torch_available() else {} ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = LlamaModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: self.config_tester.run_common_tests() def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> str: snake_case__ = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: snake_case__ = type self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'single_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: Dict ) -> int: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'multi_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor( [self.model_tester.batch_size, config.num_labels] , self.model_tester.type_sequence_label_size ).to(torch.float ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) @unittest.skip('LLaMA buffers include complex numbers, which breaks this test' ) def lowerCAmelCase_ ( self: Dict ) -> Any: pass @parameterized.expand([('linear',), ('dynamic',)] ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> List[str]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = ids_tensor([1, 10] , config.vocab_size ) snake_case__ = ids_tensor([1, int(config.max_position_embeddings * 1.5 )] , config.vocab_size ) set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = LlamaModel(UpperCamelCase ) original_model.to(UpperCamelCase ) original_model.eval() snake_case__ = original_model(UpperCamelCase ).last_hidden_state snake_case__ = original_model(UpperCamelCase ).last_hidden_state set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = {'type': scaling_type, 'factor': 10.0} snake_case__ = LlamaModel(UpperCamelCase ) scaled_model.to(UpperCamelCase ) scaled_model.eval() snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state # Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original # maximum sequence length, so the outputs for the short input should match. if scaling_type == "dynamic": self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) else: self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) # The output should be different for long inputs self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) @require_torch class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> str: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor([input_ids] ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-6.6_550, -4.1_227, -4.9_859, -3.2_406, 0.8_262, -3.0_033, 1.2_964, -3.3_699]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-12.8_281, -7.4_453, -0.4_639, -8.0_625, -7.2_500, -8.0_000, -6.4_883, -7.7_695, -7.8_438, -7.0_312, -6.2_188, -7.1_328, -1.8_496, 1.9_961, -8.6_250, -6.7_227, -12.8_281, -6.9_492, -7.0_742, -7.7_852, -7.5_820, -7.9_062, -6.9_375, -7.9_805, -8.3_438, -8.1_562, -8.0_469, -7.6_250, -7.7_422, -7.3_398,] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-2.0_622, -1.2_794, -1.1_638, -0.9_788, -1.4_603, -1.0_238, -1.7_893, -1.4_411]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-8.1_406, -8.0_547, 2.7_461, -1.2_344, -0.1_448, -1.8_262, -1.0_020, -1.8_154, -1.6_895, -1.8_516, -2.3_574, -0.9_277, 3.7_598, 6.5_742, -1.2_998, -0.1_177, -8.1_406, -2.9_688, -2.9_199, -3.1_699, -3.5_254, -2.3_555, -2.7_988, -3.4_141, -2.8_262, -4.5_195, -3.3_379, -3.3_164, -2.7_832, -3.0_273] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-chat-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-0.8_562, -1.8_520, -0.7_551, -0.4_162, -1.5_161, -1.2_038, -2.4_823, -2.3_254]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-2.2_227, 4.8_828, 0.9_023, -0.4_578, -0.7_871, -0.1_033, -0.6_221, -0.5_786, -0.7_803, -1.0_674, -1.2_920, -0.1_570, 0.8_008, 2.0_723, -0.9_497, 0.2_771, -2.2_227, -0.7_612, -1.4_346, -1.2_061, -1.6_426, -0.3_000, -0.7_139, -1.1_934, -1.8_691, -1.6_973, -1.5_947, -1.2_705, -0.3_523, -0.5_513] ) # fmt: on torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) @unittest.skip( 'Logits are not exactly the same, once we fix the instabalities somehow, will update! Also it is gonna be a `too_slow` test' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-70b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) snake_case__ = torch.tensor( [[-4.2_327, -3.3_360, -4.6_665, -4.7_631, -1.8_180, -3.4_170, -1.4_211, -3.1_810]] , dtype=torch.floataa ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # fmt: off snake_case__ = torch.tensor([-9.4_922, -3.9_551, 1.7_998, -5.6_758, -5.1_055, -5.8_984, -4.8_320, -6.8_086, -6.5_391, -5.6_172, -5.5_820, -5.5_352, 1.7_881, 3.6_289, -6.5_117, -3.4_785, -9.5_000, -6.0_352, -6.8_125, -6.0_195, -6.6_836, -5.4_727, -6.2_812, -6.0_391, -7.3_398, -7.4_297, -7.4_844, -6.5_820, -5.8_789, -5.5_312] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Model is curently gated' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'Simply put, the theory of relativity states that 1) the laws of physics are the same everywhere in the universe and 2) the passage of time and the length of objects can vary depending on the observer\'s frame of reference.\n\nThe first part of the theory, that the laws of physics are the same everywhere, is known as the "princi' snake_case__ = 'Simply put, the theory of relativity states that ' snake_case__ = LlamaTokenizer.from_pretrained('meta-llama/Llama-2-13b-chat-hf' ) snake_case__ = tokenizer.encode(UpperCamelCase , return_tensors='pt' ) snake_case__ = LlamaForCausalLM.from_pretrained( 'meta-llama/Llama-2-13b-chat-hf' , device_map='sequential' , use_safetensors=UpperCamelCase ) # greedy generation outputs snake_case__ = model.generate(UpperCamelCase , max_new_tokens=64 , top_p=UpperCamelCase , temperature=1 , do_sample=UpperCamelCase ) snake_case__ = tokenizer.decode(generated_ids[0] , skip_special_tokens=UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase )
307
import os def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = os.path.join(os.path.dirname(_A ) , 'num.txt' ) with open(_A ) as file_hand: return str(sum(int(_A ) for line in file_hand ) )[:10] if __name__ == "__main__": print(solution())
307
1
import copy import tempfile import unittest from huggingface_hub import HfFolder, delete_repo from parameterized import parameterized from requests.exceptions import HTTPError from transformers import AutoConfig, GenerationConfig from transformers.testing_utils import TOKEN, USER, is_staging_test class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @parameterized.expand([(None,), ('foo.json',)] ) def lowerCAmelCase_ ( self: int , UpperCamelCase: Optional[int] ) -> List[str]: snake_case__ = GenerationConfig( do_sample=UpperCamelCase , temperature=0.7 , length_penalty=1.0 , bad_words_ids=[[1, 2, 3], [4, 5]] , ) with tempfile.TemporaryDirectory() as tmp_dir: config.save_pretrained(UpperCamelCase , config_name=UpperCamelCase ) snake_case__ = GenerationConfig.from_pretrained(UpperCamelCase , config_name=UpperCamelCase ) # Checks parameters that were specified self.assertEqual(loaded_config.do_sample , UpperCamelCase ) self.assertEqual(loaded_config.temperature , 0.7 ) self.assertEqual(loaded_config.length_penalty , 1.0 ) self.assertEqual(loaded_config.bad_words_ids , [[1, 2, 3], [4, 5]] ) # Checks parameters that were not specified (defaults) self.assertEqual(loaded_config.top_k , 50 ) self.assertEqual(loaded_config.max_length , 20 ) self.assertEqual(loaded_config.max_time , UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> Optional[int]: snake_case__ = AutoConfig.from_pretrained('gpt2' ) snake_case__ = GenerationConfig.from_model_config(UpperCamelCase ) snake_case__ = GenerationConfig() # The generation config has loaded a few non-default parameters from the model config self.assertNotEqual(UpperCamelCase , UpperCamelCase ) # One of those parameters is eos_token_id -- check if it matches self.assertNotEqual(generation_config_from_model.eos_token_id , default_generation_config.eos_token_id ) self.assertEqual(generation_config_from_model.eos_token_id , model_config.eos_token_id ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> Tuple: snake_case__ = GenerationConfig() snake_case__ = { 'max_new_tokens': 10_24, 'foo': 'bar', } snake_case__ = copy.deepcopy(UpperCamelCase ) snake_case__ = generation_config.update(**UpperCamelCase ) # update_kwargs was not modified (no side effects) self.assertEqual(UpperCamelCase , UpperCamelCase ) # update_kwargs was used to update the config on valid attributes self.assertEqual(generation_config.max_new_tokens , 10_24 ) # `.update()` returns a dictionary of unused kwargs self.assertEqual(UpperCamelCase , {'foo': 'bar'} ) def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: snake_case__ = GenerationConfig() snake_case__ = 'bar' with tempfile.TemporaryDirectory('test-generation-config' ) as tmp_dir: generation_config.save_pretrained(UpperCamelCase ) snake_case__ = GenerationConfig.from_pretrained(UpperCamelCase ) # update_kwargs was used to update the config on valid attributes self.assertEqual(new_config.foo , 'bar' ) snake_case__ = GenerationConfig.from_model_config(UpperCamelCase ) assert not hasattr(UpperCamelCase , 'foo' ) # no new kwargs should be initialized if from config def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[int]: snake_case__ = GenerationConfig() self.assertEqual(default_config.temperature , 1.0 ) self.assertEqual(default_config.do_sample , UpperCamelCase ) self.assertEqual(default_config.num_beams , 1 ) snake_case__ = GenerationConfig( do_sample=UpperCamelCase , temperature=0.7 , length_penalty=1.0 , bad_words_ids=[[1, 2, 3], [4, 5]] , ) self.assertEqual(config.temperature , 0.7 ) self.assertEqual(config.do_sample , UpperCamelCase ) self.assertEqual(config.num_beams , 1 ) with tempfile.TemporaryDirectory() as tmp_dir: config.save_pretrained(UpperCamelCase ) snake_case__ = GenerationConfig.from_pretrained(UpperCamelCase , temperature=1.0 ) self.assertEqual(loaded_config.temperature , 1.0 ) self.assertEqual(loaded_config.do_sample , UpperCamelCase ) self.assertEqual(loaded_config.num_beams , 1 ) # default value @is_staging_test class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @classmethod def lowerCAmelCase_ ( cls: List[Any] ) -> List[str]: snake_case__ = TOKEN HfFolder.save_token(UpperCamelCase ) @classmethod def lowerCAmelCase_ ( cls: List[str] ) -> str: try: delete_repo(token=cls._token , repo_id='test-generation-config' ) except HTTPError: pass try: delete_repo(token=cls._token , repo_id='valid_org/test-generation-config-org' ) except HTTPError: pass def lowerCAmelCase_ ( self: Optional[Any] ) -> Optional[Any]: snake_case__ = GenerationConfig( do_sample=UpperCamelCase , temperature=0.7 , length_penalty=1.0 , ) config.push_to_hub('test-generation-config' , use_auth_token=self._token ) snake_case__ = GenerationConfig.from_pretrained(F'''{USER}/test-generation-config''' ) for k, v in config.to_dict().items(): if k != "transformers_version": self.assertEqual(UpperCamelCase , getattr(UpperCamelCase , UpperCamelCase ) ) # Reset repo delete_repo(token=self._token , repo_id='test-generation-config' ) # Push to hub via save_pretrained with tempfile.TemporaryDirectory() as tmp_dir: config.save_pretrained( UpperCamelCase , repo_id='test-generation-config' , push_to_hub=UpperCamelCase , use_auth_token=self._token ) snake_case__ = GenerationConfig.from_pretrained(F'''{USER}/test-generation-config''' ) for k, v in config.to_dict().items(): if k != "transformers_version": self.assertEqual(UpperCamelCase , getattr(UpperCamelCase , UpperCamelCase ) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ = GenerationConfig( do_sample=UpperCamelCase , temperature=0.7 , length_penalty=1.0 , ) config.push_to_hub('valid_org/test-generation-config-org' , use_auth_token=self._token ) snake_case__ = GenerationConfig.from_pretrained('valid_org/test-generation-config-org' ) for k, v in config.to_dict().items(): if k != "transformers_version": self.assertEqual(UpperCamelCase , getattr(UpperCamelCase , UpperCamelCase ) ) # Reset repo delete_repo(token=self._token , repo_id='valid_org/test-generation-config-org' ) # Push to hub via save_pretrained with tempfile.TemporaryDirectory() as tmp_dir: config.save_pretrained( UpperCamelCase , repo_id='valid_org/test-generation-config-org' , push_to_hub=UpperCamelCase , use_auth_token=self._token ) snake_case__ = GenerationConfig.from_pretrained('valid_org/test-generation-config-org' ) for k, v in config.to_dict().items(): if k != "transformers_version": self.assertEqual(UpperCamelCase , getattr(UpperCamelCase , UpperCamelCase ) )
307
import os import sys from contextlib import contextmanager # Windows only if os.name == "nt": import ctypes import msvcrt # noqa class __SCREAMING_SNAKE_CASE( ctypes.Structure ): # _fields is a specific attr expected by ctypes _UpperCAmelCase = [("size", ctypes.c_int), ("visible", ctypes.c_byte)] def a_ ( ) -> Any: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = False ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25l' ) sys.stdout.flush() def a_ ( ) -> Tuple: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = True ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25h' ) sys.stdout.flush() @contextmanager def a_ ( ) -> str: """simple docstring""" try: hide_cursor() yield finally: show_cursor()
307
1
import inspect import unittest from transformers import ViTConfig from transformers.testing_utils import ( require_accelerate, require_torch, require_torch_gpu, require_vision, slow, torch_device, ) from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ViTForImageClassification, ViTForMaskedImageModeling, ViTModel from transformers.models.vit.modeling_vit import VIT_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import ViTImageProcessor class __SCREAMING_SNAKE_CASE: def __init__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Any=13 , UpperCamelCase: Dict=30 , UpperCamelCase: List[Any]=2 , UpperCamelCase: List[Any]=3 , UpperCamelCase: List[str]=True , UpperCamelCase: Optional[Any]=True , UpperCamelCase: Optional[int]=32 , UpperCamelCase: int=5 , UpperCamelCase: int=4 , UpperCamelCase: List[Any]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: List[Any]=0.1 , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Optional[Any]=10 , UpperCamelCase: Union[str, Any]=0.02 , UpperCamelCase: Any=None , UpperCamelCase: List[str]=2 , ) -> Optional[Any]: snake_case__ = parent snake_case__ = batch_size snake_case__ = image_size snake_case__ = patch_size snake_case__ = num_channels snake_case__ = is_training snake_case__ = use_labels snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = scope snake_case__ = encoder_stride # in ViT, the seq length equals the number of patches + 1 (we add 1 for the [CLS] token) snake_case__ = (image_size // patch_size) ** 2 snake_case__ = num_patches + 1 def lowerCAmelCase_ ( self: Dict ) -> Dict: snake_case__ = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = self.get_config() return config, pixel_values, labels def lowerCAmelCase_ ( self: Tuple ) -> Tuple: return ViTConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , ) def lowerCAmelCase_ ( self: str , UpperCamelCase: Any , UpperCamelCase: Dict , UpperCamelCase: Any ) -> int: snake_case__ = ViTModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: Dict , UpperCamelCase: Optional[int] , UpperCamelCase: Any ) -> List[str]: snake_case__ = ViTForMaskedImageModeling(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images snake_case__ = 1 snake_case__ = ViTForMaskedImageModeling(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Any ) -> Tuple: snake_case__ = self.type_sequence_label_size snake_case__ = ViTForImageClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images snake_case__ = 1 snake_case__ = ViTForImageClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def lowerCAmelCase_ ( self: List[str] ) -> List[str]: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , unittest.TestCase ): _UpperCAmelCase = ( ( ViTModel, ViTForImageClassification, ViTForMaskedImageModeling, ) if is_torch_available() else () ) _UpperCAmelCase = ( {"feature-extraction": ViTModel, "image-classification": ViTForImageClassification} if is_torch_available() else {} ) _UpperCAmelCase = True _UpperCAmelCase = False _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: Optional[int] ) -> Union[str, Any]: snake_case__ = ViTModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , has_text_modality=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Dict ) -> List[str]: self.config_tester.run_common_tests() @unittest.skip(reason='ViT does not use inputs_embeds' ) def lowerCAmelCase_ ( self: List[str] ) -> Dict: pass def lowerCAmelCase_ ( self: Any ) -> Any: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: snake_case__ = model_class(UpperCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) snake_case__ = model.get_output_embeddings() self.assertTrue(x is None or isinstance(UpperCamelCase , nn.Linear ) ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: snake_case__ = model_class(UpperCamelCase ) snake_case__ = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic snake_case__ = [*signature.parameters.keys()] snake_case__ = ['pixel_values'] self.assertListEqual(arg_names[:1] , UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple ) -> Dict: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Any: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[int] ) -> Tuple: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*UpperCamelCase ) @slow def lowerCAmelCase_ ( self: int ) -> Optional[Any]: for model_name in VIT_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: snake_case__ = ViTModel.from_pretrained(UpperCamelCase ) self.assertIsNotNone(UpperCamelCase ) def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) return image @require_torch @require_vision class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @cached_property def lowerCAmelCase_ ( self: int ) -> Optional[Any]: return ViTImageProcessor.from_pretrained('google/vit-base-patch16-224' ) if is_vision_available() else None @slow def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: snake_case__ = ViTForImageClassification.from_pretrained('google/vit-base-patch16-224' ).to(UpperCamelCase ) snake_case__ = self.default_image_processor snake_case__ = prepare_img() snake_case__ = image_processor(images=UpperCamelCase , return_tensors='pt' ).to(UpperCamelCase ) # forward pass with torch.no_grad(): snake_case__ = model(**UpperCamelCase ) # verify the logits snake_case__ = torch.Size((1, 10_00) ) self.assertEqual(outputs.logits.shape , UpperCamelCase ) snake_case__ = torch.tensor([-0.2_744, 0.8_215, -0.0_836] ).to(UpperCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , UpperCamelCase , atol=1e-4 ) ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Tuple: # ViT models have an `interpolate_pos_encoding` argument in their forward method, # allowing to interpolate the pre-trained position embeddings in order to use # the model on higher resolutions. The DINO model by Facebook AI leverages this # to visualize self-attention on higher resolution images. snake_case__ = ViTModel.from_pretrained('facebook/dino-vits8' ).to(UpperCamelCase ) snake_case__ = ViTImageProcessor.from_pretrained('facebook/dino-vits8' , size=4_80 ) snake_case__ = prepare_img() snake_case__ = image_processor(images=UpperCamelCase , return_tensors='pt' ) snake_case__ = inputs.pixel_values.to(UpperCamelCase ) # forward pass with torch.no_grad(): snake_case__ = model(UpperCamelCase , interpolate_pos_encoding=UpperCamelCase ) # verify the logits snake_case__ = torch.Size((1, 36_01, 3_84) ) self.assertEqual(outputs.last_hidden_state.shape , UpperCamelCase ) snake_case__ = torch.tensor( [[4.2_340, 4.3_906, -6.6_692], [4.5_463, 1.8_928, -6.7_257], [4.4_429, 0.8_496, -5.8_585]] ).to(UpperCamelCase ) self.assertTrue(torch.allclose(outputs.last_hidden_state[0, :3, :3] , UpperCamelCase , atol=1e-4 ) ) @slow @require_accelerate @require_torch_gpu def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = ViTModel.from_pretrained('facebook/dino-vits8' , torch_dtype=torch.floataa , device_map='auto' ) snake_case__ = self.default_image_processor snake_case__ = prepare_img() snake_case__ = image_processor(images=UpperCamelCase , return_tensors='pt' ) snake_case__ = inputs.pixel_values.to(UpperCamelCase ) # forward pass to make sure inference works in fp16 with torch.no_grad(): snake_case__ = model(UpperCamelCase )
307
import argparse import gc import json import os import shutil import warnings import torch from transformers import LlamaConfig, LlamaForCausalLM, LlamaTokenizer try: from transformers import LlamaTokenizerFast except ImportError as e: warnings.warn(e) warnings.warn( """The converted tokenizer will be the `slow` tokenizer. To use the fast, update your `tokenizers` library and re-run the tokenizer conversion""" ) __UpperCamelCase : Union[str, Any] = None __UpperCamelCase : Any = { """7B""": 11008, """13B""": 13824, """30B""": 17920, """65B""": 22016, """70B""": 28672, } __UpperCamelCase : Optional[Any] = { """7B""": 1, """7Bf""": 1, """13B""": 2, """13Bf""": 2, """30B""": 4, """65B""": 8, """70B""": 8, """70Bf""": 8, } def a_ ( _A , _A=1 , _A=256 ) -> str: """simple docstring""" return multiple_of * ((int(ffn_dim_multiplier * int(8 * n / 3 ) ) + multiple_of - 1) // multiple_of) def a_ ( _A ) -> int: """simple docstring""" with open(_A , 'r' ) as f: return json.load(_A ) def a_ ( _A , _A ) -> int: """simple docstring""" with open(_A , 'w' ) as f: json.dump(_A , _A ) def a_ ( _A , _A , _A , _A=True ) -> List[str]: """simple docstring""" os.makedirs(_A , exist_ok=_A ) snake_case__ = os.path.join(_A , 'tmp' ) os.makedirs(_A , exist_ok=_A ) snake_case__ = read_json(os.path.join(_A , 'params.json' ) ) snake_case__ = NUM_SHARDS[model_size] snake_case__ = params['n_layers'] snake_case__ = params['n_heads'] snake_case__ = n_heads // num_shards snake_case__ = params['dim'] snake_case__ = dim // n_heads snake_case__ = 10000.0 snake_case__ = 1.0 / (base ** (torch.arange(0 , _A , 2 ).float() / dims_per_head)) if "n_kv_heads" in params: snake_case__ = params['n_kv_heads'] # for GQA / MQA snake_case__ = n_heads_per_shard // num_key_value_heads snake_case__ = dim // num_key_value_heads else: # compatibility with other checkpoints snake_case__ = n_heads snake_case__ = n_heads_per_shard snake_case__ = dim # permute for sliced rotary def permute(_A , _A=n_heads , _A=dim , _A=dim ): return w.view(_A , dima // n_heads // 2 , 2 , _A ).transpose(1 , 2 ).reshape(_A , _A ) print(f'''Fetching all parameters from the checkpoint at {input_base_path}.''' ) # Load weights if model_size == "7B": # Not sharded # (The sharded implementation would also work, but this is simpler.) snake_case__ = torch.load(os.path.join(_A , 'consolidated.00.pth' ) , map_location='cpu' ) else: # Sharded snake_case__ = [ torch.load(os.path.join(_A , f'''consolidated.{i:02d}.pth''' ) , map_location='cpu' ) for i in range(_A ) ] snake_case__ = 0 snake_case__ = {'weight_map': {}} for layer_i in range(_A ): snake_case__ = f'''pytorch_model-{layer_i + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { f'''model.layers.{layer_i}.self_attn.q_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wq.weight'''] ), f'''model.layers.{layer_i}.self_attn.k_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wk.weight'''] ), f'''model.layers.{layer_i}.self_attn.v_proj.weight''': loaded[f'''layers.{layer_i}.attention.wv.weight'''], f'''model.layers.{layer_i}.self_attn.o_proj.weight''': loaded[f'''layers.{layer_i}.attention.wo.weight'''], f'''model.layers.{layer_i}.mlp.gate_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w1.weight'''], f'''model.layers.{layer_i}.mlp.down_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w2.weight'''], f'''model.layers.{layer_i}.mlp.up_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w3.weight'''], f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[f'''layers.{layer_i}.attention_norm.weight'''], f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[f'''layers.{layer_i}.ffn_norm.weight'''], } else: # Sharded # Note that attention.w{q,k,v,o}, feed_fordward.w[1,2,3], attention_norm.weight and ffn_norm.weight share # the same storage object, saving attention_norm and ffn_norm will save other weights too, which is # redundant as other weights will be stitched from multiple shards. To avoid that, they are cloned. snake_case__ = { f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.attention_norm.weight''' ].clone(), f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.ffn_norm.weight''' ].clone(), } snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wq.weight'''].view(_A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) ) snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wk.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) , _A , _A , _A , ) snake_case__ = torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wv.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.attention.wo.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w1.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w2.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w3.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = inv_freq for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) snake_case__ = f'''pytorch_model-{n_layers + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { 'model.embed_tokens.weight': loaded['tok_embeddings.weight'], 'model.norm.weight': loaded['norm.weight'], 'lm_head.weight': loaded['output.weight'], } else: snake_case__ = { 'model.norm.weight': loaded[0]['norm.weight'], 'model.embed_tokens.weight': torch.cat( [loaded[i]['tok_embeddings.weight'] for i in range(_A )] , dim=1 ), 'lm_head.weight': torch.cat([loaded[i]['output.weight'] for i in range(_A )] , dim=0 ), } for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) # Write configs snake_case__ = {'total_size': param_count * 2} write_json(_A , os.path.join(_A , 'pytorch_model.bin.index.json' ) ) snake_case__ = params['ffn_dim_multiplier'] if 'ffn_dim_multiplier' in params else 1 snake_case__ = params['multiple_of'] if 'multiple_of' in params else 256 snake_case__ = LlamaConfig( hidden_size=_A , intermediate_size=compute_intermediate_size(_A , _A , _A ) , num_attention_heads=params['n_heads'] , num_hidden_layers=params['n_layers'] , rms_norm_eps=params['norm_eps'] , num_key_value_heads=_A , ) config.save_pretrained(_A ) # Make space so we can load the model properly now. del state_dict del loaded gc.collect() print('Loading the checkpoint in a Llama model.' ) snake_case__ = LlamaForCausalLM.from_pretrained(_A , torch_dtype=torch.floataa , low_cpu_mem_usage=_A ) # Avoid saving this as part of the config. del model.config._name_or_path print('Saving in the Transformers format.' ) model.save_pretrained(_A , safe_serialization=_A ) shutil.rmtree(_A ) def a_ ( _A , _A ) -> Tuple: """simple docstring""" # Initialize the tokenizer based on the `spm` model snake_case__ = LlamaTokenizer if LlamaTokenizerFast is None else LlamaTokenizerFast print(f'''Saving a {tokenizer_class.__name__} to {tokenizer_path}.''' ) snake_case__ = tokenizer_class(_A ) tokenizer.save_pretrained(_A ) def a_ ( ) -> str: """simple docstring""" snake_case__ = argparse.ArgumentParser() parser.add_argument( '--input_dir' , help='Location of LLaMA weights, which contains tokenizer.model and model folders' , ) parser.add_argument( '--model_size' , choices=['7B', '7Bf', '13B', '13Bf', '30B', '65B', '70B', '70Bf', 'tokenizer_only'] , ) parser.add_argument( '--output_dir' , help='Location to write HF model and tokenizer' , ) parser.add_argument('--safe_serialization' , type=_A , help='Whether or not to save using `safetensors`.' ) snake_case__ = parser.parse_args() if args.model_size != "tokenizer_only": write_model( model_path=args.output_dir , input_base_path=os.path.join(args.input_dir , args.model_size ) , model_size=args.model_size , safe_serialization=args.safe_serialization , ) snake_case__ = os.path.join(args.input_dir , 'tokenizer.model' ) write_tokenizer(args.output_dir , _A ) if __name__ == "__main__": main()
307
1
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_tf_available, is_torch_available, is_vision_available, ) __UpperCamelCase : Optional[int] = { """configuration_blip""": [ """BLIP_PRETRAINED_CONFIG_ARCHIVE_MAP""", """BlipConfig""", """BlipTextConfig""", """BlipVisionConfig""", ], """processing_blip""": ["""BlipProcessor"""], } try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Union[str, Any] = ["""BlipImageProcessor"""] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Any = [ """BLIP_PRETRAINED_MODEL_ARCHIVE_LIST""", """BlipModel""", """BlipPreTrainedModel""", """BlipForConditionalGeneration""", """BlipForQuestionAnswering""", """BlipVisionModel""", """BlipTextModel""", """BlipForImageTextRetrieval""", ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Tuple = [ """TF_BLIP_PRETRAINED_MODEL_ARCHIVE_LIST""", """TFBlipModel""", """TFBlipPreTrainedModel""", """TFBlipForConditionalGeneration""", """TFBlipForQuestionAnswering""", """TFBlipVisionModel""", """TFBlipTextModel""", """TFBlipForImageTextRetrieval""", ] if TYPE_CHECKING: from .configuration_blip import BLIP_PRETRAINED_CONFIG_ARCHIVE_MAP, BlipConfig, BlipTextConfig, BlipVisionConfig from .processing_blip import BlipProcessor try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .image_processing_blip import BlipImageProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_blip import ( BLIP_PRETRAINED_MODEL_ARCHIVE_LIST, BlipForConditionalGeneration, BlipForImageTextRetrieval, BlipForQuestionAnswering, BlipModel, BlipPreTrainedModel, BlipTextModel, BlipVisionModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_blip import ( TF_BLIP_PRETRAINED_MODEL_ARCHIVE_LIST, TFBlipForConditionalGeneration, TFBlipForImageTextRetrieval, TFBlipForQuestionAnswering, TFBlipModel, TFBlipPreTrainedModel, TFBlipTextModel, TFBlipVisionModel, ) else: import sys __UpperCamelCase : Optional[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
import os import string import sys __UpperCamelCase : List[Any] = 1 << 8 __UpperCamelCase : Union[str, Any] = { """tab""": ord("""\t"""), """newline""": ord("""\r"""), """esc""": 27, """up""": 65 + ARROW_KEY_FLAG, """down""": 66 + ARROW_KEY_FLAG, """right""": 67 + ARROW_KEY_FLAG, """left""": 68 + ARROW_KEY_FLAG, """mod_int""": 91, """undefined""": sys.maxsize, """interrupt""": 3, """insert""": 50, """delete""": 51, """pg_up""": 53, """pg_down""": 54, } __UpperCamelCase : Optional[Any] = KEYMAP["""up"""] __UpperCamelCase : Tuple = KEYMAP["""left"""] if sys.platform == "win32": __UpperCamelCase : List[Any] = [] __UpperCamelCase : int = { b"""\xe0H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\x00H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\xe0P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\x00P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\xe0M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\x00M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\xe0K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, b"""\x00K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, } for i in range(10): __UpperCamelCase : List[str] = ord(str(i)) def a_ ( ) -> Optional[int]: """simple docstring""" if os.name == "nt": import msvcrt snake_case__ = 'mbcs' # Flush the keyboard buffer while msvcrt.kbhit(): msvcrt.getch() if len(_A ) == 0: # Read the keystroke snake_case__ = msvcrt.getch() # If it is a prefix char, get second part if ch in (b"\x00", b"\xe0"): snake_case__ = ch + msvcrt.getch() # Translate actual Win chars to bullet char types try: snake_case__ = chr(WIN_KEYMAP[cha] ) WIN_CH_BUFFER.append(chr(KEYMAP['mod_int'] ) ) WIN_CH_BUFFER.append(_A ) if ord(_A ) in ( KEYMAP["insert"] - 1 << 9, KEYMAP["delete"] - 1 << 9, KEYMAP["pg_up"] - 1 << 9, KEYMAP["pg_down"] - 1 << 9, ): WIN_CH_BUFFER.append(chr(126 ) ) snake_case__ = chr(KEYMAP['esc'] ) except KeyError: snake_case__ = cha[1] else: snake_case__ = ch.decode(_A ) else: snake_case__ = WIN_CH_BUFFER.pop(0 ) elif os.name == "posix": import termios import tty snake_case__ = sys.stdin.fileno() snake_case__ = termios.tcgetattr(_A ) try: tty.setraw(_A ) snake_case__ = sys.stdin.read(1 ) finally: termios.tcsetattr(_A , termios.TCSADRAIN , _A ) return ch def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = get_raw_chars() if ord(_A ) in [KEYMAP["interrupt"], KEYMAP["newline"]]: return char elif ord(_A ) == KEYMAP["esc"]: snake_case__ = get_raw_chars() if ord(_A ) == KEYMAP["mod_int"]: snake_case__ = get_raw_chars() if ord(_A ) >= KEYMAP["arrow_begin"] - ARROW_KEY_FLAG and ord(_A ) <= KEYMAP["arrow_end"] - ARROW_KEY_FLAG: return chr(ord(_A ) + ARROW_KEY_FLAG ) else: return KEYMAP["undefined"] else: return get_raw_chars() else: if char in string.printable: return char else: return KEYMAP["undefined"]
307
1
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 __SCREAMING_SNAKE_CASE( unittest.TestCase ): @property def lowerCAmelCase_ ( self: List[Any] ) -> List[str]: torch.manual_seed(0 ) snake_case__ = 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 lowerCAmelCase_ ( self: str ) -> Optional[int]: torch.manual_seed(0 ) snake_case__ = 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 lowerCAmelCase_ ( self: List[Any] ) -> List[Any]: torch.manual_seed(0 ) snake_case__ = 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(UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Any: snake_case__ = self.dummy_uncond_unet snake_case__ = DDIMScheduler() snake_case__ = self.dummy_vq_model snake_case__ = LDMPipeline(unet=UpperCamelCase , vqvae=UpperCamelCase , scheduler=UpperCamelCase ) ldm.to(UpperCamelCase ) ldm.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = torch.manual_seed(0 ) snake_case__ = ldm(generator=UpperCamelCase , num_inference_steps=2 , output_type='numpy' ).images snake_case__ = torch.manual_seed(0 ) snake_case__ = ldm(generator=UpperCamelCase , num_inference_steps=2 , output_type='numpy' , return_dict=UpperCamelCase )[0] snake_case__ = image[0, -3:, -3:, -1] snake_case__ = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (1, 64, 64, 3) snake_case__ = np.array([0.8_512, 0.818, 0.6_411, 0.6_808, 0.4_465, 0.5_618, 0.46, 0.6_231, 0.5_172] ) snake_case__ = 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 __SCREAMING_SNAKE_CASE( unittest.TestCase ): def lowerCAmelCase_ ( self: Optional[Any] ) -> Optional[int]: snake_case__ = LDMPipeline.from_pretrained('CompVis/ldm-celebahq-256' ) ldm.to(UpperCamelCase ) ldm.set_progress_bar_config(disable=UpperCamelCase ) snake_case__ = torch.manual_seed(0 ) snake_case__ = ldm(generator=UpperCamelCase , num_inference_steps=5 , output_type='numpy' ).images snake_case__ = image[0, -3:, -3:, -1] assert image.shape == (1, 2_56, 2_56, 3) snake_case__ = np.array([0.4_399, 0.44_975, 0.46_825, 0.474, 0.4_359, 0.4_581, 0.45_095, 0.4_341, 0.4_447] ) snake_case__ = 1e-2 if torch_device != 'mps' else 3e-2 assert np.abs(image_slice.flatten() - expected_slice ).max() < tolerance
307
from ...configuration_utils import PretrainedConfig from ...utils import logging __UpperCamelCase : int = logging.get_logger(__name__) __UpperCamelCase : List[Any] = { """tanreinama/GPTSAN-2.8B-spout_is_uniform""": ( """https://huggingface.co/tanreinama/GPTSAN-2.8B-spout_is_uniform/resolve/main/config.json""" ), } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "gptsan-japanese" _UpperCAmelCase = [ "past_key_values", ] _UpperCAmelCase = { "hidden_size": "d_model", "num_attention_heads": "num_heads", "num_hidden_layers": "num_layers", } def __init__( self: Optional[Any] , UpperCamelCase: List[str]=3_60_00 , UpperCamelCase: List[str]=12_80 , UpperCamelCase: List[Any]=10_24 , UpperCamelCase: Any=81_92 , UpperCamelCase: Dict=40_96 , UpperCamelCase: Optional[int]=1_28 , UpperCamelCase: Any=10 , UpperCamelCase: List[Any]=0 , UpperCamelCase: Dict=16 , UpperCamelCase: Tuple=16 , UpperCamelCase: Union[str, Any]=1_28 , UpperCamelCase: List[Any]=0.0 , UpperCamelCase: Union[str, Any]=1e-5 , UpperCamelCase: int=False , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: Dict="float32" , UpperCamelCase: Any=False , UpperCamelCase: Dict=False , UpperCamelCase: List[str]=False , UpperCamelCase: Union[str, Any]=0.002 , UpperCamelCase: int=False , UpperCamelCase: str=True , UpperCamelCase: Dict=3_59_98 , UpperCamelCase: Optional[Any]=3_59_95 , UpperCamelCase: Optional[Any]=3_59_99 , **UpperCamelCase: Optional[int] , ) -> Optional[int]: snake_case__ = vocab_size snake_case__ = max_position_embeddings snake_case__ = d_model snake_case__ = d_ff snake_case__ = d_ext snake_case__ = d_spout snake_case__ = num_switch_layers snake_case__ = num_ext_layers snake_case__ = num_switch_layers + num_ext_layers snake_case__ = num_heads snake_case__ = num_experts snake_case__ = expert_capacity snake_case__ = dropout_rate snake_case__ = layer_norm_epsilon snake_case__ = router_bias snake_case__ = router_jitter_noise snake_case__ = router_dtype snake_case__ = router_ignore_padding_tokens snake_case__ = output_hidden_states snake_case__ = output_attentions snake_case__ = initializer_factor snake_case__ = output_router_logits snake_case__ = use_cache super().__init__( separator_token_id=UpperCamelCase , pad_token_id=UpperCamelCase , eos_token_id=UpperCamelCase , **UpperCamelCase , )
307
1
import doctest from collections import deque import numpy as np class __SCREAMING_SNAKE_CASE: def __init__( self: Dict ) -> None: snake_case__ = [2, 1, 2, -1] snake_case__ = [1, 2, 3, 4] def lowerCAmelCase_ ( self: List[str] ) -> list[float]: snake_case__ = len(self.first_signal ) snake_case__ = len(self.second_signal ) snake_case__ = max(UpperCamelCase , UpperCamelCase ) # create a zero matrix of max_length x max_length snake_case__ = [[0] * max_length for i in range(UpperCamelCase )] # fills the smaller signal with zeros to make both signals of same length if length_first_signal < length_second_signal: self.first_signal += [0] * (max_length - length_first_signal) elif length_first_signal > length_second_signal: self.second_signal += [0] * (max_length - length_second_signal) for i in range(UpperCamelCase ): snake_case__ = deque(self.second_signal ) rotated_signal.rotate(UpperCamelCase ) for j, item in enumerate(UpperCamelCase ): matrix[i][j] += item # multiply the matrix with the first signal snake_case__ = np.matmul(np.transpose(UpperCamelCase ) , np.transpose(self.first_signal ) ) # rounding-off to two decimal places return [round(UpperCamelCase , 2 ) for i in final_signal] if __name__ == "__main__": doctest.testmod()
307
from math import sqrt import numpy as np from sympy import symbols # Coefficient # Speed of light (m/s) __UpperCamelCase : int = 299792458 # Symbols __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Optional[int] = symbols("""ct x y z""") def a_ ( _A ) -> float: """simple docstring""" if velocity > c: raise ValueError('Speed must not exceed light speed 299,792,458 [m/s]!' ) elif velocity < 1: # Usually the speed should be much higher than 1 (c order of magnitude) raise ValueError('Speed must be greater than or equal to 1!' ) return velocity / c def a_ ( _A ) -> float: """simple docstring""" return 1 / sqrt(1 - beta(_A ) ** 2 ) def a_ ( _A ) -> np.ndarray: """simple docstring""" return np.array( [ [gamma(_A ), -gamma(_A ) * beta(_A ), 0, 0], [-gamma(_A ) * beta(_A ), gamma(_A ), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], ] ) def a_ ( _A , _A = None ) -> np.ndarray: """simple docstring""" # Ensure event is not empty if event is None: snake_case__ = np.array([ct, x, y, z] ) # Symbolic four vector else: event[0] *= c # x0 is ct (speed of light * time) return transformation_matrix(_A ) @ event if __name__ == "__main__": import doctest doctest.testmod() # Example of symbolic vector: __UpperCamelCase : List[Any] = transform(29979245) print("""Example of four vector: """) print(f'''ct\' = {four_vector[0]}''') print(f'''x\' = {four_vector[1]}''') print(f'''y\' = {four_vector[2]}''') print(f'''z\' = {four_vector[3]}''') # Substitute symbols with numerical values __UpperCamelCase : List[Any] = {ct: c, x: 1, y: 1, z: 1} __UpperCamelCase : Tuple = [four_vector[i].subs(sub_dict) for i in range(4)] print(f'''\n{numerical_vector}''')
307
1
import dataclasses import json import warnings from dataclasses import dataclass, field from time import time from typing import List from ..utils import logging __UpperCamelCase : Optional[int] = logging.get_logger(__name__) def a_ ( _A=None , _A=None ) -> List[str]: """simple docstring""" return field(default_factory=lambda: default , metadata=_A ) @dataclass class __SCREAMING_SNAKE_CASE: _UpperCAmelCase = list_field( default=[] , metadata={ "help": ( "Model checkpoints to be provided to the AutoModel classes. Leave blank to benchmark the base version" " of all available models" ) } , ) _UpperCAmelCase = list_field( default=[8] , metadata={"help": "List of batch sizes for which memory and time performance will be evaluated"} ) _UpperCAmelCase = list_field( default=[8, 3_2, 1_2_8, 5_1_2] , metadata={"help": "List of sequence lengths for which memory and time performance will be evaluated"} , ) _UpperCAmelCase = field( default=a_ , metadata={"help": "Whether to benchmark inference of model. Inference can be disabled via --no-inference."} , ) _UpperCAmelCase = field( default=a_ , metadata={"help": "Whether to run on available cuda devices. Cuda can be disabled via --no-cuda."} , ) _UpperCAmelCase = field( default=a_ , metadata={"help": "Whether to run on available tpu devices. TPU can be disabled via --no-tpu."} ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Use FP16 to accelerate inference."} ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Benchmark training of model"} ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Verbose memory tracing"} ) _UpperCAmelCase = field( default=a_ , metadata={"help": "Whether to perform speed measurements. Speed measurements can be disabled via --no-speed."} , ) _UpperCAmelCase = field( default=a_ , metadata={ "help": "Whether to perform memory measurements. Memory measurements can be disabled via --no-memory" } , ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Trace memory line by line"} ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Save result to a CSV file"} ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Save all print statements in a log file"} ) _UpperCAmelCase = field(default=a_ , metadata={"help": "Whether to print environment information"} ) _UpperCAmelCase = field( default=a_ , metadata={ "help": ( "Whether to use multiprocessing for memory and speed measurement. It is highly recommended to use" " multiprocessing for accurate CPU and GPU memory measurements. This option should only be disabled" " for debugging / testing and on TPU." ) } , ) _UpperCAmelCase = field( default=F'''inference_time_{round(time() )}.csv''' , metadata={"help": "CSV filename used if saving time results to csv."} , ) _UpperCAmelCase = field( default=F'''inference_memory_{round(time() )}.csv''' , metadata={"help": "CSV filename used if saving memory results to csv."} , ) _UpperCAmelCase = field( default=F'''train_time_{round(time() )}.csv''' , metadata={"help": "CSV filename used if saving time results to csv for training."} , ) _UpperCAmelCase = field( default=F'''train_memory_{round(time() )}.csv''' , metadata={"help": "CSV filename used if saving memory results to csv for training."} , ) _UpperCAmelCase = field( default=F'''env_info_{round(time() )}.csv''' , metadata={"help": "CSV filename used if saving environment information."} , ) _UpperCAmelCase = field( default=F'''log_{round(time() )}.csv''' , metadata={"help": "Log filename used if print statements are saved in log."} , ) _UpperCAmelCase = field(default=3 , metadata={"help": "Times an experiment will be run."} ) _UpperCAmelCase = field( default=a_ , metadata={ "help": ( "Instead of loading the model as defined in `config.architectures` if exists, just load the pretrain" " model weights." ) } , ) def lowerCAmelCase_ ( self: Tuple ) -> str: warnings.warn( F'''The class {self.__class__} is deprecated. Hugging Face Benchmarking utils''' ' are deprecated in general and it is advised to use external Benchmarking libraries ' ' to benchmark Transformer models.' , UpperCamelCase , ) def lowerCAmelCase_ ( self: Any ) -> List[str]: return json.dumps(dataclasses.asdict(self ) , indent=2 ) @property def lowerCAmelCase_ ( self: Dict ) -> List[str]: if len(self.models ) <= 0: raise ValueError( 'Please make sure you provide at least one model name / model identifier, *e.g.* `--models' ' bert-base-cased` or `args.models = [\'bert-base-cased\'].' ) return self.models @property def lowerCAmelCase_ ( self: List[str] ) -> Optional[Any]: if not self.multi_process: return False elif self.is_tpu: logger.info('Multiprocessing is currently not possible on TPU.' ) return False else: return True
307
from typing import TYPE_CHECKING from ...utils import _LazyModule __UpperCamelCase : Any = {"""tokenization_byt5""": ["""ByT5Tokenizer"""]} if TYPE_CHECKING: from .tokenization_byta import ByTaTokenizer else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
def a_ ( _A ) -> str: """simple docstring""" stooge(_A , 0 , len(_A ) - 1 ) return arr def a_ ( _A , _A , _A ) -> List[str]: """simple docstring""" if i >= h: return # If first element is smaller than the last then swap them if arr[i] > arr[h]: snake_case__ , snake_case__ = arr[h], arr[i] # If there are more than 2 elements in the array if h - i + 1 > 2: snake_case__ = (int)((h - i + 1) / 3 ) # Recursively sort first 2/3 elements stooge(_A , _A , (h - t) ) # Recursively sort last 2/3 elements stooge(_A , i + t , (_A) ) # Recursively sort first 2/3 elements stooge(_A , _A , (h - t) ) if __name__ == "__main__": __UpperCamelCase : Dict = input("""Enter numbers separated by a comma:\n""").strip() __UpperCamelCase : Optional[int] = [int(item) for item in user_input.split(""",""")] print(stooge_sort(unsorted))
307
import os import re import warnings from shutil import copyfile from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer if TYPE_CHECKING: from ...tokenization_utils_base import TextInput from ...utils import logging __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) __UpperCamelCase : int = {"""vocab_file""": """spiece.model"""} __UpperCamelCase : Any = { """vocab_file""": { """t5-small""": """https://huggingface.co/t5-small/resolve/main/spiece.model""", """t5-base""": """https://huggingface.co/t5-base/resolve/main/spiece.model""", """t5-large""": """https://huggingface.co/t5-large/resolve/main/spiece.model""", """t5-3b""": """https://huggingface.co/t5-3b/resolve/main/spiece.model""", """t5-11b""": """https://huggingface.co/t5-11b/resolve/main/spiece.model""", } } # TODO(PVP) - this should be removed in Transformers v5 __UpperCamelCase : Tuple = { """t5-small""": 512, """t5-base""": 512, """t5-large""": 512, """t5-3b""": 512, """t5-11b""": 512, } __UpperCamelCase : Optional[Any] = """▁""" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any]="</s>" , UpperCamelCase: Tuple="<unk>" , UpperCamelCase: Optional[int]="<pad>" , UpperCamelCase: List[str]=1_00 , UpperCamelCase: Dict=None , UpperCamelCase: Optional[Dict[str, Any]] = None , UpperCamelCase: Tuple=True , **UpperCamelCase: Dict , ) -> None: # Add extra_ids to the special token list if extra_ids > 0 and additional_special_tokens is None: snake_case__ = [F'''<extra_id_{i}>''' for i in range(UpperCamelCase )] elif extra_ids > 0 and additional_special_tokens is not None: # Check that we have the right number of extra_id special tokens snake_case__ = len(set(filter(lambda UpperCamelCase : bool('extra_id' in str(UpperCamelCase ) ) , UpperCamelCase ) ) ) if extra_tokens != extra_ids: raise ValueError( F'''Both extra_ids ({extra_ids}) and additional_special_tokens ({additional_special_tokens}) are''' ' provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids' ' tokens' ) if legacy: logger.warning_once( F'''You are using the legacy behaviour of the {self.__class__}. This means that tokens that come after special tokens will not be properly handled. We recommend you to''' ' read the related pull request available at https://github.com/huggingface/transformers/pull/24565' ) snake_case__ = legacy snake_case__ = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( eos_token=UpperCamelCase , unk_token=UpperCamelCase , pad_token=UpperCamelCase , extra_ids=UpperCamelCase , additional_special_tokens=UpperCamelCase , sp_model_kwargs=self.sp_model_kwargs , legacy=UpperCamelCase , **UpperCamelCase , ) snake_case__ = vocab_file snake_case__ = extra_ids snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] ) -> Any: if pretrained_model_name_or_path in TaTokenizer.max_model_input_sizes: snake_case__ = TaTokenizer.max_model_input_sizes[pretrained_model_name_or_path] if init_max_model_length is not None and init_max_model_length != max_model_length: return init_max_model_length elif init_max_model_length is None: warnings.warn( 'This tokenizer was incorrectly instantiated with a model max length of' F''' {deprecated_max_model_length} which will be corrected in Transformers v5.\nFor now, this''' ' behavior is kept to avoid breaking backwards compatibility when padding/encoding with' ' `truncation is True`.\n- Be aware that you SHOULD NOT rely on' F''' {pretrained_model_name_or_path} automatically truncating your input to''' F''' {deprecated_max_model_length} when padding/encoding.\n- If you want to encode/pad to sequences''' F''' longer than {deprecated_max_model_length} you can either instantiate this tokenizer with''' ' `model_max_length` or pass `max_length` when encoding/padding.\n- To avoid this warning, please' ' instantiate this tokenizer with `model_max_length` set to your preferred value.' , UpperCamelCase , ) return max_model_length @property def lowerCAmelCase_ ( self: Tuple ) -> List[str]: return self.sp_model.get_piece_size() + self._extra_ids def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = {self.convert_ids_to_tokens(UpperCamelCase ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None , UpperCamelCase: bool = False ) -> List[int]: if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase , token_ids_a=UpperCamelCase , already_has_special_tokens=UpperCamelCase ) # normal case: some special tokens if token_ids_a is None: return ([0] * len(UpperCamelCase )) + [1] return ([0] * len(UpperCamelCase )) + [1] + ([0] * len(UpperCamelCase )) + [1] def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: return list( set(filter(lambda UpperCamelCase : bool(re.search(R'<extra_id_\d+>' , UpperCamelCase ) ) is not None , self.additional_special_tokens ) ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return [self._convert_token_to_id(UpperCamelCase ) for token in self.get_sentinel_tokens()] def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[int] ) -> List[int]: if len(UpperCamelCase ) > 0 and token_ids[-1] == self.eos_token_id: warnings.warn( F'''This sequence already has {self.eos_token}. In future versions this behavior may lead to duplicated''' ' eos tokens being added.' ) return token_ids else: return token_ids + [self.eos_token_id] def lowerCAmelCase_ ( self: str , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.eos_token_id] if token_ids_a is None: return len(token_ids_a + eos ) * [0] return len(token_ids_a + eos + token_ids_a + eos ) * [0] def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) if token_ids_a is None: return token_ids_a else: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) return token_ids_a + token_ids_a def __getstate__( self: Union[str, Any] ) -> List[str]: snake_case__ = self.__dict__.copy() snake_case__ = None return state def __setstate__( self: Optional[int] , UpperCamelCase: int ) -> List[str]: snake_case__ = d # for backward compatibility if not hasattr(self , 'sp_model_kwargs' ): snake_case__ = {} snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(self.vocab_file ) def lowerCAmelCase_ ( self: str , UpperCamelCase: "TextInput" , **UpperCamelCase: Dict ) -> List[str]: # Replace the SPIECE_UNDERLINE with a space to make sure SPIECE_UNDERLINE is only used at # the beginning of the text if not self.legacy: snake_case__ = SPIECE_UNDERLINE + text.replace(UpperCamelCase , ' ' ) return super().tokenize(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , **UpperCamelCase: str ) -> str: if not self.legacy: snake_case__ = text.startswith(UpperCamelCase ) if is_first: snake_case__ = text[1:] snake_case__ = self.sp_model.encode(UpperCamelCase , out_type=UpperCamelCase ) if not self.legacy and not is_first and not text.startswith(' ' ) and tokens[0].startswith(UpperCamelCase ): snake_case__ = ([tokens[0][1:]] if len(tokens[0] ) > 1 else []) + tokens[1:] return tokens def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[int] ) -> Dict: if token.startswith('<extra_id_' ): snake_case__ = re.match(R'<extra_id_(\d+)>' , UpperCamelCase ) snake_case__ = int(match.group(1 ) ) return self.vocab_size - num - 1 return self.sp_model.piece_to_id(UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: str ) -> Tuple: if index < self.sp_model.get_piece_size(): snake_case__ = self.sp_model.IdToPiece(UpperCamelCase ) else: snake_case__ = F'''<extra_id_{self.vocab_size - 1 - index}>''' return token def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> Dict: snake_case__ = [] snake_case__ = '' snake_case__ = False for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: if not prev_is_special: out_string += " " out_string += self.sp_model.decode(UpperCamelCase ) + token snake_case__ = True snake_case__ = [] else: current_sub_tokens.append(UpperCamelCase ) snake_case__ = False out_string += self.sp_model.decode(UpperCamelCase ) return out_string.strip() def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: if not os.path.isdir(UpperCamelCase ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase , 'wb' ) as fi: snake_case__ = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase ) return (out_vocab_file,)
307
1
def a_ ( _A ) -> bool: """simple docstring""" if num < 0: return False snake_case__ = num snake_case__ = 0 while num > 0: snake_case__ = rev_num * 10 + (num % 10) num //= 10 return num_copy == rev_num if __name__ == "__main__": import doctest doctest.testmod()
307
import unittest from parameterized import parameterized from transformers import LlamaConfig, is_torch_available, set_seed from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import LlamaForCausalLM, LlamaForSequenceClassification, LlamaModel, LlamaTokenizer class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: List[str] , UpperCamelCase: str=13 , UpperCamelCase: int=7 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , UpperCamelCase: Dict=False , UpperCamelCase: Optional[int]=True , UpperCamelCase: Dict=99 , UpperCamelCase: Dict=32 , UpperCamelCase: Optional[Any]=5 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: List[str]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Union[str, Any]=5_12 , UpperCamelCase: str=16 , UpperCamelCase: int=2 , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Dict=4 , UpperCamelCase: List[str]=None , ) -> List[str]: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_input_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_labels snake_case__ = num_choices snake_case__ = scope def lowerCAmelCase_ ( self: List[str] ) -> Dict: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_input_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = None snake_case__ = None snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case__ = ids_tensor([self.batch_size] , self.num_choices ) snake_case__ = self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: return LlamaConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: Dict , UpperCamelCase: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: str ) -> Dict: snake_case__ = LlamaModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[Any] , ) -> str: snake_case__ = True snake_case__ = LlamaModel(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , ) snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Any , UpperCamelCase: int , UpperCamelCase: Optional[Any] , ) -> Any: snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: List[str] , ) -> Union[str, Any]: snake_case__ = True snake_case__ = True snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() # first forward pass snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , use_cache=UpperCamelCase , ) snake_case__ = outputs.past_key_values # create hypothetical multiple next token and extent to next_input_ids snake_case__ = ids_tensor((self.batch_size, 3) , config.vocab_size ) snake_case__ = ids_tensor((self.batch_size, 3) , vocab_size=2 ) # append to next input_ids and snake_case__ = torch.cat([input_ids, next_tokens] , dim=-1 ) snake_case__ = torch.cat([input_mask, next_mask] , dim=-1 ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , past_key_values=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] # select random slice snake_case__ = ids_tensor((1,) , output_from_past.shape[-1] ).item() snake_case__ = output_from_no_past[:, -3:, random_slice_idx].detach() snake_case__ = output_from_past[:, :, random_slice_idx].detach() self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1] ) # test that outputs are equal for slice self.parent.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: int ) -> Dict: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'input_ids': input_ids, 'attention_mask': input_mask} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , a_ , unittest.TestCase ): _UpperCAmelCase = (LlamaModel, LlamaForCausalLM, LlamaForSequenceClassification) if is_torch_available() else () _UpperCAmelCase = (LlamaForCausalLM,) if is_torch_available() else () _UpperCAmelCase = ( { "feature-extraction": LlamaModel, "text-classification": LlamaForSequenceClassification, "text-generation": LlamaForCausalLM, "zero-shot": LlamaForSequenceClassification, } if is_torch_available() else {} ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = LlamaModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: self.config_tester.run_common_tests() def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> str: snake_case__ = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: snake_case__ = type self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'single_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: Dict ) -> int: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'multi_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor( [self.model_tester.batch_size, config.num_labels] , self.model_tester.type_sequence_label_size ).to(torch.float ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) @unittest.skip('LLaMA buffers include complex numbers, which breaks this test' ) def lowerCAmelCase_ ( self: Dict ) -> Any: pass @parameterized.expand([('linear',), ('dynamic',)] ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> List[str]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = ids_tensor([1, 10] , config.vocab_size ) snake_case__ = ids_tensor([1, int(config.max_position_embeddings * 1.5 )] , config.vocab_size ) set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = LlamaModel(UpperCamelCase ) original_model.to(UpperCamelCase ) original_model.eval() snake_case__ = original_model(UpperCamelCase ).last_hidden_state snake_case__ = original_model(UpperCamelCase ).last_hidden_state set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = {'type': scaling_type, 'factor': 10.0} snake_case__ = LlamaModel(UpperCamelCase ) scaled_model.to(UpperCamelCase ) scaled_model.eval() snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state # Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original # maximum sequence length, so the outputs for the short input should match. if scaling_type == "dynamic": self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) else: self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) # The output should be different for long inputs self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) @require_torch class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> str: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor([input_ids] ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-6.6_550, -4.1_227, -4.9_859, -3.2_406, 0.8_262, -3.0_033, 1.2_964, -3.3_699]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-12.8_281, -7.4_453, -0.4_639, -8.0_625, -7.2_500, -8.0_000, -6.4_883, -7.7_695, -7.8_438, -7.0_312, -6.2_188, -7.1_328, -1.8_496, 1.9_961, -8.6_250, -6.7_227, -12.8_281, -6.9_492, -7.0_742, -7.7_852, -7.5_820, -7.9_062, -6.9_375, -7.9_805, -8.3_438, -8.1_562, -8.0_469, -7.6_250, -7.7_422, -7.3_398,] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-2.0_622, -1.2_794, -1.1_638, -0.9_788, -1.4_603, -1.0_238, -1.7_893, -1.4_411]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-8.1_406, -8.0_547, 2.7_461, -1.2_344, -0.1_448, -1.8_262, -1.0_020, -1.8_154, -1.6_895, -1.8_516, -2.3_574, -0.9_277, 3.7_598, 6.5_742, -1.2_998, -0.1_177, -8.1_406, -2.9_688, -2.9_199, -3.1_699, -3.5_254, -2.3_555, -2.7_988, -3.4_141, -2.8_262, -4.5_195, -3.3_379, -3.3_164, -2.7_832, -3.0_273] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-chat-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-0.8_562, -1.8_520, -0.7_551, -0.4_162, -1.5_161, -1.2_038, -2.4_823, -2.3_254]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-2.2_227, 4.8_828, 0.9_023, -0.4_578, -0.7_871, -0.1_033, -0.6_221, -0.5_786, -0.7_803, -1.0_674, -1.2_920, -0.1_570, 0.8_008, 2.0_723, -0.9_497, 0.2_771, -2.2_227, -0.7_612, -1.4_346, -1.2_061, -1.6_426, -0.3_000, -0.7_139, -1.1_934, -1.8_691, -1.6_973, -1.5_947, -1.2_705, -0.3_523, -0.5_513] ) # fmt: on torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) @unittest.skip( 'Logits are not exactly the same, once we fix the instabalities somehow, will update! Also it is gonna be a `too_slow` test' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-70b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) snake_case__ = torch.tensor( [[-4.2_327, -3.3_360, -4.6_665, -4.7_631, -1.8_180, -3.4_170, -1.4_211, -3.1_810]] , dtype=torch.floataa ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # fmt: off snake_case__ = torch.tensor([-9.4_922, -3.9_551, 1.7_998, -5.6_758, -5.1_055, -5.8_984, -4.8_320, -6.8_086, -6.5_391, -5.6_172, -5.5_820, -5.5_352, 1.7_881, 3.6_289, -6.5_117, -3.4_785, -9.5_000, -6.0_352, -6.8_125, -6.0_195, -6.6_836, -5.4_727, -6.2_812, -6.0_391, -7.3_398, -7.4_297, -7.4_844, -6.5_820, -5.8_789, -5.5_312] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Model is curently gated' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'Simply put, the theory of relativity states that 1) the laws of physics are the same everywhere in the universe and 2) the passage of time and the length of objects can vary depending on the observer\'s frame of reference.\n\nThe first part of the theory, that the laws of physics are the same everywhere, is known as the "princi' snake_case__ = 'Simply put, the theory of relativity states that ' snake_case__ = LlamaTokenizer.from_pretrained('meta-llama/Llama-2-13b-chat-hf' ) snake_case__ = tokenizer.encode(UpperCamelCase , return_tensors='pt' ) snake_case__ = LlamaForCausalLM.from_pretrained( 'meta-llama/Llama-2-13b-chat-hf' , device_map='sequential' , use_safetensors=UpperCamelCase ) # greedy generation outputs snake_case__ = model.generate(UpperCamelCase , max_new_tokens=64 , top_p=UpperCamelCase , temperature=1 , do_sample=UpperCamelCase ) snake_case__ = tokenizer.decode(generated_ids[0] , skip_special_tokens=UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase )
307
1
from __future__ import annotations from numpy import array, cos, cross, floataa, radians, sin from numpy.typing import NDArray def a_ ( _A , _A , _A = False ) -> list[float]: """simple docstring""" if radian_mode: return [magnitude * cos(_A ), magnitude * sin(_A )] return [magnitude * cos(radians(_A ) ), magnitude * sin(radians(_A ) )] def a_ ( _A , _A , _A = 10**-1 ) -> bool: """simple docstring""" snake_case__ = cross(_A , _A ) snake_case__ = sum(_A ) return abs(_A ) < eps if __name__ == "__main__": # Test to check if it works __UpperCamelCase : Optional[Any] = array( [ polar_force(7_1_8.4, 180 - 30), polar_force(8_7_9.5_4, 45), polar_force(100, -90), ] ) __UpperCamelCase : NDArray[floataa] = array([[0, 0], [0, 0], [0, 0]]) assert in_static_equilibrium(forces, location) # Problem 1 in image_data/2D_problems.jpg __UpperCamelCase : Optional[int] = array( [ polar_force(30 * 9.8_1, 15), polar_force(215, 180 - 45), polar_force(264, 90 - 30), ] ) __UpperCamelCase : str = array([[0, 0], [0, 0], [0, 0]]) assert in_static_equilibrium(forces, location) # Problem in image_data/2D_problems_1.jpg __UpperCamelCase : Optional[int] = array([[0, -2000], [0, -1200], [0, 15600], [0, -12400]]) __UpperCamelCase : Any = array([[0, 0], [6, 0], [10, 0], [12, 0]]) assert in_static_equilibrium(forces, location) import doctest doctest.testmod()
307
from math import isclose, sqrt def a_ ( _A , _A , _A ) -> tuple[float, float, float]: """simple docstring""" snake_case__ = point_y / 4 / point_x snake_case__ = 2 * normal_gradient / (1 + normal_gradient * normal_gradient) snake_case__ = (1 - normal_gradient * normal_gradient) / ( 1 + normal_gradient * normal_gradient ) snake_case__ = (sa - ca * incoming_gradient) / (ca + sa * incoming_gradient) # to find the next point, solve the simultaeneous equations: # y^2 + 4x^2 = 100 # y - b = m * (x - a) # ==> A x^2 + B x + C = 0 snake_case__ = outgoing_gradient**2 + 4 snake_case__ = 2 * outgoing_gradient * (point_y - outgoing_gradient * point_x) snake_case__ = (point_y - outgoing_gradient * point_x) ** 2 - 100 snake_case__ = ( -linear_term - sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) snake_case__ = ( -linear_term + sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) # two solutions, one of which is our input point snake_case__ = x_minus if isclose(_A , _A ) else x_plus snake_case__ = point_y + outgoing_gradient * (next_x - point_x) return next_x, next_y, outgoing_gradient def a_ ( _A = 1.4 , _A = -9.6 ) -> int: """simple docstring""" snake_case__ = 0 snake_case__ = first_x_coord snake_case__ = first_y_coord snake_case__ = (10.1 - point_y) / (0.0 - point_x) while not (-0.01 <= point_x <= 0.01 and point_y > 0): snake_case__ , snake_case__ , snake_case__ = next_point(_A , _A , _A ) num_reflections += 1 return num_reflections if __name__ == "__main__": print(f'''{solution() = }''')
307
1
import sys from .dependency_versions_table import deps from .utils.versions import require_version, require_version_core # define which module versions we always want to check at run time # (usually the ones defined in `install_requires` in setup.py) # # order specific notes: # - tqdm must be checked before tokenizers __UpperCamelCase : int = """python tqdm regex requests packaging filelock numpy tokenizers""".split() if sys.version_info < (3, 7): pkgs_to_check_at_runtime.append("""dataclasses""") if sys.version_info < (3, 8): pkgs_to_check_at_runtime.append("""importlib_metadata""") for pkg in pkgs_to_check_at_runtime: if pkg in deps: if pkg == "tokenizers": # must be loaded here, or else tqdm check may fail from .utils import is_tokenizers_available if not is_tokenizers_available(): continue # not required, check version only if installed require_version_core(deps[pkg]) else: raise ValueError(f'''can\'t find {pkg} in {deps.keys()}, check dependency_versions_table.py''') def a_ ( _A , _A=None ) -> Union[str, Any]: """simple docstring""" require_version(deps[pkg] , _A )
307
# Lint as: python3 import sys from collections.abc import Mapping from typing import TYPE_CHECKING import numpy as np import pyarrow as pa from .. import config from ..utils.py_utils import map_nested from .formatting import TensorFormatter if TYPE_CHECKING: import torch class __SCREAMING_SNAKE_CASE( TensorFormatter[Mapping, "torch.Tensor", Mapping] ): def __init__( self: Any , UpperCamelCase: Optional[int]=None , **UpperCamelCase: Union[str, Any] ) -> int: super().__init__(features=UpperCamelCase ) snake_case__ = torch_tensor_kwargs import torch # noqa import torch at initialization def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any ) -> List[str]: import torch if isinstance(UpperCamelCase , UpperCamelCase ) and column: if all( isinstance(UpperCamelCase , torch.Tensor ) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column ): return torch.stack(UpperCamelCase ) return column def lowerCAmelCase_ ( self: str , UpperCamelCase: Dict ) -> Union[str, Any]: import torch if isinstance(UpperCamelCase , (str, bytes, type(UpperCamelCase )) ): return value elif isinstance(UpperCamelCase , (np.character, np.ndarray) ) and np.issubdtype(value.dtype , np.character ): return value.tolist() snake_case__ = {} if isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.integer ): snake_case__ = {'dtype': torch.intaa} elif isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.floating ): snake_case__ = {'dtype': torch.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = np.asarray(UpperCamelCase ) return torch.tensor(UpperCamelCase , **{**default_dtype, **self.torch_tensor_kwargs} ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: str ) -> Any: import torch # support for torch, tf, jax etc. if hasattr(UpperCamelCase , '__array__' ) and not isinstance(UpperCamelCase , torch.Tensor ): snake_case__ = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(UpperCamelCase , np.ndarray ): if data_struct.dtype == object: # torch tensors cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) elif isinstance(UpperCamelCase , (list, tuple) ): return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) return self._tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: dict ) -> List[str]: return map_nested(self._recursive_tensorize , UpperCamelCase , map_list=UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_row(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_row(UpperCamelCase ) return self.recursive_tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: pa.Table ) -> "torch.Tensor": snake_case__ = self.numpy_arrow_extractor().extract_column(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_column(UpperCamelCase , pa_table.column_names[0] ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) snake_case__ = self._consolidate(UpperCamelCase ) return column def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_batch(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_batch(UpperCamelCase ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) for column_name in batch: snake_case__ = self._consolidate(batch[column_name] ) return batch
307
1
import json from typing import List, Optional, Tuple from tokenizers import normalizers from ...tokenization_utils_fast import PreTrainedTokenizerFast from .tokenization_electra import ElectraTokenizer __UpperCamelCase : Dict = {"""vocab_file""": """vocab.txt""", """tokenizer_file""": """tokenizer.json"""} __UpperCamelCase : str = { """vocab_file""": { """google/electra-small-generator""": ( """https://huggingface.co/google/electra-small-generator/resolve/main/vocab.txt""" ), """google/electra-base-generator""": """https://huggingface.co/google/electra-base-generator/resolve/main/vocab.txt""", """google/electra-large-generator""": ( """https://huggingface.co/google/electra-large-generator/resolve/main/vocab.txt""" ), """google/electra-small-discriminator""": ( """https://huggingface.co/google/electra-small-discriminator/resolve/main/vocab.txt""" ), """google/electra-base-discriminator""": ( """https://huggingface.co/google/electra-base-discriminator/resolve/main/vocab.txt""" ), """google/electra-large-discriminator""": ( """https://huggingface.co/google/electra-large-discriminator/resolve/main/vocab.txt""" ), }, """tokenizer_file""": { """google/electra-small-generator""": ( """https://huggingface.co/google/electra-small-generator/resolve/main/tokenizer.json""" ), """google/electra-base-generator""": ( """https://huggingface.co/google/electra-base-generator/resolve/main/tokenizer.json""" ), """google/electra-large-generator""": ( """https://huggingface.co/google/electra-large-generator/resolve/main/tokenizer.json""" ), """google/electra-small-discriminator""": ( """https://huggingface.co/google/electra-small-discriminator/resolve/main/tokenizer.json""" ), """google/electra-base-discriminator""": ( """https://huggingface.co/google/electra-base-discriminator/resolve/main/tokenizer.json""" ), """google/electra-large-discriminator""": ( """https://huggingface.co/google/electra-large-discriminator/resolve/main/tokenizer.json""" ), }, } __UpperCamelCase : List[str] = { """google/electra-small-generator""": 512, """google/electra-base-generator""": 512, """google/electra-large-generator""": 512, """google/electra-small-discriminator""": 512, """google/electra-base-discriminator""": 512, """google/electra-large-discriminator""": 512, } __UpperCamelCase : Any = { """google/electra-small-generator""": {"""do_lower_case""": True}, """google/electra-base-generator""": {"""do_lower_case""": True}, """google/electra-large-generator""": {"""do_lower_case""": True}, """google/electra-small-discriminator""": {"""do_lower_case""": True}, """google/electra-base-discriminator""": {"""do_lower_case""": True}, """google/electra-large-discriminator""": {"""do_lower_case""": True}, } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_INIT_CONFIGURATION _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ElectraTokenizer def __init__( self: Tuple , UpperCamelCase: List[str]=None , UpperCamelCase: Any=None , UpperCamelCase: List[str]=True , UpperCamelCase: List[str]="[UNK]" , UpperCamelCase: Tuple="[SEP]" , UpperCamelCase: Union[str, Any]="[PAD]" , UpperCamelCase: Union[str, Any]="[CLS]" , UpperCamelCase: Any="[MASK]" , UpperCamelCase: Tuple=True , UpperCamelCase: List[str]=None , **UpperCamelCase: Any , ) -> Optional[int]: super().__init__( UpperCamelCase , tokenizer_file=UpperCamelCase , do_lower_case=UpperCamelCase , unk_token=UpperCamelCase , sep_token=UpperCamelCase , pad_token=UpperCamelCase , cls_token=UpperCamelCase , mask_token=UpperCamelCase , tokenize_chinese_chars=UpperCamelCase , strip_accents=UpperCamelCase , **UpperCamelCase , ) snake_case__ = json.loads(self.backend_tokenizer.normalizer.__getstate__() ) if ( normalizer_state.get('lowercase' , UpperCamelCase ) != do_lower_case or normalizer_state.get('strip_accents' , UpperCamelCase ) != strip_accents or normalizer_state.get('handle_chinese_chars' , UpperCamelCase ) != tokenize_chinese_chars ): snake_case__ = getattr(UpperCamelCase , normalizer_state.pop('type' ) ) snake_case__ = do_lower_case snake_case__ = strip_accents snake_case__ = tokenize_chinese_chars snake_case__ = normalizer_class(**UpperCamelCase ) snake_case__ = do_lower_case def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Optional[int] , UpperCamelCase: Any=None ) -> Tuple: snake_case__ = [self.cls_token_id] + token_ids_a + [self.sep_token_id] if token_ids_a: output += token_ids_a + [self.sep_token_id] return output def lowerCAmelCase_ ( self: Any , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.sep_token_id] snake_case__ = [self.cls_token_id] if token_ids_a is None: return len(cls + token_ids_a + sep ) * [0] return len(cls + token_ids_a + sep ) * [0] + len(token_ids_a + sep ) * [1] def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: snake_case__ = self._tokenizer.model.save(UpperCamelCase , name=UpperCamelCase ) return tuple(UpperCamelCase )
307
import doctest from collections import deque import numpy as np class __SCREAMING_SNAKE_CASE: def __init__( self: Dict ) -> None: snake_case__ = [2, 1, 2, -1] snake_case__ = [1, 2, 3, 4] def lowerCAmelCase_ ( self: List[str] ) -> list[float]: snake_case__ = len(self.first_signal ) snake_case__ = len(self.second_signal ) snake_case__ = max(UpperCamelCase , UpperCamelCase ) # create a zero matrix of max_length x max_length snake_case__ = [[0] * max_length for i in range(UpperCamelCase )] # fills the smaller signal with zeros to make both signals of same length if length_first_signal < length_second_signal: self.first_signal += [0] * (max_length - length_first_signal) elif length_first_signal > length_second_signal: self.second_signal += [0] * (max_length - length_second_signal) for i in range(UpperCamelCase ): snake_case__ = deque(self.second_signal ) rotated_signal.rotate(UpperCamelCase ) for j, item in enumerate(UpperCamelCase ): matrix[i][j] += item # multiply the matrix with the first signal snake_case__ = np.matmul(np.transpose(UpperCamelCase ) , np.transpose(self.first_signal ) ) # rounding-off to two decimal places return [round(UpperCamelCase , 2 ) for i in final_signal] if __name__ == "__main__": doctest.testmod()
307
1
import random from typing import Any def a_ ( _A ) -> list[Any]: """simple docstring""" for _ in range(len(_A ) ): snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ , snake_case__ = data[b], data[a] return data if __name__ == "__main__": __UpperCamelCase : Dict = [0, 1, 2, 3, 4, 5, 6, 7] __UpperCamelCase : Any = ["""python""", """says""", """hello""", """!"""] print("""Fisher-Yates Shuffle:""") print("""List""", integers, strings) print("""FY Shuffle""", fisher_yates_shuffle(integers), fisher_yates_shuffle(strings))
307
import math from collections import defaultdict from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import KarrasDiffusionSchedulers, SchedulerMixin, SchedulerOutput def a_ ( _A , _A=0.999 , _A="cosine" , ) -> Optional[int]: """simple docstring""" if alpha_transform_type == "cosine": def alpha_bar_fn(_A ): return math.cos((t + 0.008) / 1.008 * math.pi / 2 ) ** 2 elif alpha_transform_type == "exp": def alpha_bar_fn(_A ): return math.exp(t * -12.0 ) else: raise ValueError(f'''Unsupported alpha_tranform_type: {alpha_transform_type}''' ) snake_case__ = [] for i in range(_A ): snake_case__ = i / num_diffusion_timesteps snake_case__ = (i + 1) / num_diffusion_timesteps betas.append(min(1 - alpha_bar_fn(_A ) / alpha_bar_fn(_A ) , _A ) ) return torch.tensor(_A , dtype=torch.floataa ) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [e.name for e in KarrasDiffusionSchedulers] _UpperCAmelCase = 2 @register_to_config def __init__( self: Dict , UpperCamelCase: int = 10_00 , UpperCamelCase: float = 0.00_085 , UpperCamelCase: float = 0.012 , UpperCamelCase: str = "linear" , UpperCamelCase: Optional[Union[np.ndarray, List[float]]] = None , UpperCamelCase: str = "epsilon" , UpperCamelCase: Optional[bool] = False , UpperCamelCase: Optional[bool] = False , UpperCamelCase: float = 1.0 , UpperCamelCase: str = "linspace" , UpperCamelCase: int = 0 , ) -> str: if trained_betas is not None: snake_case__ = torch.tensor(UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "linear": snake_case__ = torch.linspace(UpperCamelCase , UpperCamelCase , UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "scaled_linear": # this schedule is very specific to the latent diffusion model. snake_case__ = ( torch.linspace(beta_start**0.5 , beta_end**0.5 , UpperCamelCase , dtype=torch.floataa ) ** 2 ) elif beta_schedule == "squaredcos_cap_v2": # Glide cosine schedule snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='cosine' ) elif beta_schedule == "exp": snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='exp' ) else: raise NotImplementedError(F'''{beta_schedule} does is not implemented for {self.__class__}''' ) snake_case__ = 1.0 - self.betas snake_case__ = torch.cumprod(self.alphas , dim=0 ) # set all values self.set_timesteps(UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = use_karras_sigmas def lowerCAmelCase_ ( self: str , UpperCamelCase: int , UpperCamelCase: Optional[int]=None ) -> str: if schedule_timesteps is None: snake_case__ = self.timesteps snake_case__ = (schedule_timesteps == timestep).nonzero() # The sigma index that is taken for the **very** first `step` # is always the second index (or the last index if there is only 1) # This way we can ensure we don't accidentally skip a sigma in # case we start in the middle of the denoising schedule (e.g. for image-to-image) if len(self._index_counter ) == 0: snake_case__ = 1 if len(UpperCamelCase ) > 1 else 0 else: snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep snake_case__ = self._index_counter[timestep_int] return indices[pos].item() @property def lowerCAmelCase_ ( self: Optional[Any] ) -> List[Any]: # standard deviation of the initial noise distribution if self.config.timestep_spacing in ["linspace", "trailing"]: return self.sigmas.max() return (self.sigmas.max() ** 2 + 1) ** 0.5 def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Union[float, torch.FloatTensor] , ) -> torch.FloatTensor: snake_case__ = self.index_for_timestep(UpperCamelCase ) snake_case__ = self.sigmas[step_index] snake_case__ = sample / ((sigma**2 + 1) ** 0.5) return sample def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int , UpperCamelCase: Union[str, torch.device] = None , UpperCamelCase: Optional[int] = None , ) -> str: snake_case__ = num_inference_steps snake_case__ = num_train_timesteps or self.config.num_train_timesteps # "linspace", "leading", "trailing" corresponds to annotation of Table 2. of https://arxiv.org/abs/2305.08891 if self.config.timestep_spacing == "linspace": snake_case__ = np.linspace(0 , num_train_timesteps - 1 , UpperCamelCase , dtype=UpperCamelCase )[::-1].copy() elif self.config.timestep_spacing == "leading": snake_case__ = num_train_timesteps // self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(0 , UpperCamelCase ) * step_ratio).round()[::-1].copy().astype(UpperCamelCase ) timesteps += self.config.steps_offset elif self.config.timestep_spacing == "trailing": snake_case__ = num_train_timesteps / self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(UpperCamelCase , 0 , -step_ratio )).round().copy().astype(UpperCamelCase ) timesteps -= 1 else: raise ValueError( F'''{self.config.timestep_spacing} is not supported. Please make sure to choose one of \'linspace\', \'leading\' or \'trailing\'.''' ) snake_case__ = np.array(((1 - self.alphas_cumprod) / self.alphas_cumprod) ** 0.5 ) snake_case__ = np.log(UpperCamelCase ) snake_case__ = np.interp(UpperCamelCase , np.arange(0 , len(UpperCamelCase ) ) , UpperCamelCase ) if self.config.use_karras_sigmas: snake_case__ = self._convert_to_karras(in_sigmas=UpperCamelCase , num_inference_steps=self.num_inference_steps ) snake_case__ = np.array([self._sigma_to_t(UpperCamelCase , UpperCamelCase ) for sigma in sigmas] ) snake_case__ = np.concatenate([sigmas, [0.0]] ).astype(np.floataa ) snake_case__ = torch.from_numpy(UpperCamelCase ).to(device=UpperCamelCase ) snake_case__ = torch.cat([sigmas[:1], sigmas[1:-1].repeat_interleave(2 ), sigmas[-1:]] ) snake_case__ = torch.from_numpy(UpperCamelCase ) snake_case__ = torch.cat([timesteps[:1], timesteps[1:].repeat_interleave(2 )] ) if str(UpperCamelCase ).startswith('mps' ): # mps does not support float64 snake_case__ = timesteps.to(UpperCamelCase , dtype=torch.floataa ) else: snake_case__ = timesteps.to(device=UpperCamelCase ) # empty dt and derivative snake_case__ = None snake_case__ = None # for exp beta schedules, such as the one for `pipeline_shap_e.py` # we need an index counter snake_case__ = defaultdict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Dict ) -> Tuple: # get log sigma snake_case__ = np.log(UpperCamelCase ) # get distribution snake_case__ = log_sigma - log_sigmas[:, np.newaxis] # get sigmas range snake_case__ = np.cumsum((dists >= 0) , axis=0 ).argmax(axis=0 ).clip(max=log_sigmas.shape[0] - 2 ) snake_case__ = low_idx + 1 snake_case__ = log_sigmas[low_idx] snake_case__ = log_sigmas[high_idx] # interpolate sigmas snake_case__ = (low - log_sigma) / (low - high) snake_case__ = np.clip(UpperCamelCase , 0 , 1 ) # transform interpolation to time range snake_case__ = (1 - w) * low_idx + w * high_idx snake_case__ = t.reshape(sigma.shape ) return t def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Dict ) -> torch.FloatTensor: snake_case__ = in_sigmas[-1].item() snake_case__ = in_sigmas[0].item() snake_case__ = 7.0 # 7.0 is the value used in the paper snake_case__ = np.linspace(0 , 1 , UpperCamelCase ) snake_case__ = sigma_min ** (1 / rho) snake_case__ = sigma_max ** (1 / rho) snake_case__ = (max_inv_rho + ramp * (min_inv_rho - max_inv_rho)) ** rho return sigmas @property def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.dt is None def lowerCAmelCase_ ( self: int , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: Union[float, torch.FloatTensor] , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: bool = True , ) -> Union[SchedulerOutput, Tuple]: snake_case__ = self.index_for_timestep(UpperCamelCase ) # advance index counter by 1 snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep self._index_counter[timestep_int] += 1 if self.state_in_first_order: snake_case__ = self.sigmas[step_index] snake_case__ = self.sigmas[step_index + 1] else: # 2nd order / Heun's method snake_case__ = self.sigmas[step_index - 1] snake_case__ = self.sigmas[step_index] # currently only gamma=0 is supported. This usually works best anyways. # We can support gamma in the future but then need to scale the timestep before # passing it to the model which requires a change in API snake_case__ = 0 snake_case__ = sigma * (gamma + 1) # Note: sigma_hat == sigma for now # 1. compute predicted original sample (x_0) from sigma-scaled predicted noise if self.config.prediction_type == "epsilon": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = sample - sigma_input * model_output elif self.config.prediction_type == "v_prediction": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = model_output * (-sigma_input / (sigma_input**2 + 1) ** 0.5) + ( sample / (sigma_input**2 + 1) ) elif self.config.prediction_type == "sample": snake_case__ = model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, or `v_prediction`''' ) if self.config.clip_sample: snake_case__ = pred_original_sample.clamp( -self.config.clip_sample_range , self.config.clip_sample_range ) if self.state_in_first_order: # 2. Convert to an ODE derivative for 1st order snake_case__ = (sample - pred_original_sample) / sigma_hat # 3. delta timestep snake_case__ = sigma_next - sigma_hat # store for 2nd order step snake_case__ = derivative snake_case__ = dt snake_case__ = sample else: # 2. 2nd order / Heun's method snake_case__ = (sample - pred_original_sample) / sigma_next snake_case__ = (self.prev_derivative + derivative) / 2 # 3. take prev timestep & sample snake_case__ = self.dt snake_case__ = self.sample # free dt and derivative # Note, this puts the scheduler in "first order mode" snake_case__ = None snake_case__ = None snake_case__ = None snake_case__ = sample + derivative * dt if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , ) -> torch.FloatTensor: # Make sure sigmas and timesteps have the same device and dtype as original_samples snake_case__ = self.sigmas.to(device=original_samples.device , dtype=original_samples.dtype ) if original_samples.device.type == "mps" and torch.is_floating_point(UpperCamelCase ): # mps does not support float64 snake_case__ = self.timesteps.to(original_samples.device , dtype=torch.floataa ) snake_case__ = timesteps.to(original_samples.device , dtype=torch.floataa ) else: snake_case__ = self.timesteps.to(original_samples.device ) snake_case__ = timesteps.to(original_samples.device ) snake_case__ = [self.index_for_timestep(UpperCamelCase , UpperCamelCase ) for t in timesteps] snake_case__ = sigmas[step_indices].flatten() while len(sigma.shape ) < len(original_samples.shape ): snake_case__ = sigma.unsqueeze(-1 ) snake_case__ = original_samples + noise * sigma return noisy_samples def __len__( self: List[Any] ) -> Union[str, Any]: return self.config.num_train_timesteps
307
1
import argparse from torch import nn # transformers_old should correspond to branch `save_old_prophetnet_model_structure` here # original prophetnet_checkpoints are saved under `patrickvonplaten/..._old` respectively from transformers_old.modeling_prophetnet import ( ProphetNetForConditionalGeneration as ProphetNetForConditionalGenerationOld, ) from transformers_old.modeling_xlm_prophetnet import ( XLMProphetNetForConditionalGeneration as XLMProphetNetForConditionalGenerationOld, ) from transformers import ProphetNetForConditionalGeneration, XLMProphetNetForConditionalGeneration, logging __UpperCamelCase : str = logging.get_logger(__name__) logging.set_verbosity_info() def a_ ( _A , _A ) -> Optional[Any]: """simple docstring""" if "xprophetnet" in prophetnet_checkpoint_path: snake_case__ = XLMProphetNetForConditionalGenerationOld.from_pretrained(_A ) snake_case__ , snake_case__ = XLMProphetNetForConditionalGeneration.from_pretrained( _A , output_loading_info=_A ) else: snake_case__ = ProphetNetForConditionalGenerationOld.from_pretrained(_A ) snake_case__ , snake_case__ = ProphetNetForConditionalGeneration.from_pretrained( _A , output_loading_info=_A ) snake_case__ = ['key_proj', 'value_proj', 'query_proj'] snake_case__ = { 'self_attn': 'ngram_self_attn', 'cross_attn': 'encoder_attn', 'cross_attn_layer_norm': 'encoder_attn_layer_norm', 'feed_forward_layer_norm': 'final_layer_norm', 'feed_forward': '', 'intermediate': 'fc1', 'output': 'fc2', 'key_proj': 'k_proj', 'query_proj': 'q_proj', 'value_proj': 'v_proj', 'word_embeddings': 'embed_tokens', 'embeddings_layer_norm': 'emb_layer_norm', 'relative_pos_embeddings': 'relative_linear', 'ngram_embeddings': 'ngram_input_embed', 'position_embeddings': 'embed_positions', } for key in loading_info["missing_keys"]: snake_case__ = key.split('.' ) if attributes[0] == "lm_head": snake_case__ = prophet snake_case__ = prophet_old else: snake_case__ = prophet.prophetnet snake_case__ = prophet_old.model snake_case__ = False for attribute in attributes: if attribute in mapping: snake_case__ = mapping[attribute] if not hasattr(_A , _A ) and len(_A ) > 0: snake_case__ = attribute elif hasattr(_A , _A ): snake_case__ = attribute if attribute == "weight": assert old_model.weight.shape == model.weight.shape, "Shapes have to match!" snake_case__ = old_model.weight logger.info(f'''{attribute} is initialized.''' ) snake_case__ = True break elif attribute == "bias": assert old_model.bias.shape == model.bias.shape, "Shapes have to match!" snake_case__ = old_model.bias logger.info(f'''{attribute} is initialized''' ) snake_case__ = True break elif attribute in special_keys and hasattr(_A , 'in_proj_weight' ): snake_case__ = old_model.in_proj_weight.shape[0] // 3 snake_case__ = getattr(_A , _A ) param.weight.shape == old_model.in_proj_weight[:embed_dim, :].shape, "Shapes have to match" param.bias.shape == old_model.in_proj_bias[:embed_dim].shape, "Shapes have to match" if attribute == "query_proj": snake_case__ = nn.Parameter(old_model.in_proj_weight[:embed_dim, :] ) snake_case__ = nn.Parameter(old_model.in_proj_bias[:embed_dim] ) elif attribute == "key_proj": snake_case__ = nn.Parameter(old_model.in_proj_weight[embed_dim : 2 * embed_dim, :] ) snake_case__ = nn.Parameter(old_model.in_proj_bias[embed_dim : 2 * embed_dim] ) elif attribute == "value_proj": snake_case__ = nn.Parameter(old_model.in_proj_weight[2 * embed_dim :, :] ) snake_case__ = nn.Parameter(old_model.in_proj_bias[2 * embed_dim :] ) snake_case__ = True break elif attribute == "position_embeddings": assert ( model.position_embeddings.weight.shape[-1] == old_model.embed_positions.weight.shape[-1] ), "Hidden size has to match" assert model.position_embeddings.weight.shape[0] == 512, "We want 512 position_embeddings." snake_case__ = nn.Parameter(old_model.embed_positions.weight[:512, :] ) snake_case__ = True break if attribute.isdigit(): snake_case__ = model[int(_A )] snake_case__ = old_model[int(_A )] else: snake_case__ = getattr(_A , _A ) if old_attribute == "": snake_case__ = old_model else: if not hasattr(_A , _A ): raise ValueError(f'''{old_model} does not have {old_attribute}''' ) snake_case__ = getattr(_A , _A ) if not is_key_init: raise ValueError(f'''{key} was not correctly initialized!''' ) print(f'''Saving model to {pytorch_dump_folder_path}''' ) prophet.save_pretrained(_A ) if __name__ == "__main__": __UpperCamelCase : str = argparse.ArgumentParser() # Required parameters parser.add_argument( """--prophetnet_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.""" ) __UpperCamelCase : Tuple = parser.parse_args() convert_prophetnet_checkpoint_to_pytorch(args.prophetnet_checkpoint_path, args.pytorch_dump_folder_path)
307
from typing import TYPE_CHECKING from ..utils import _LazyModule __UpperCamelCase : Tuple = { """config""": [ """EXTERNAL_DATA_FORMAT_SIZE_LIMIT""", """OnnxConfig""", """OnnxConfigWithPast""", """OnnxSeq2SeqConfigWithPast""", """PatchingSpec""", ], """convert""": ["""export""", """validate_model_outputs"""], """features""": ["""FeaturesManager"""], """utils""": ["""ParameterFormat""", """compute_serialized_parameters_size"""], } if TYPE_CHECKING: from .config import ( EXTERNAL_DATA_FORMAT_SIZE_LIMIT, OnnxConfig, OnnxConfigWithPast, OnnxSeqaSeqConfigWithPast, PatchingSpec, ) from .convert import export, validate_model_outputs from .features import FeaturesManager from .utils import ParameterFormat, compute_serialized_parameters_size else: import sys __UpperCamelCase : Dict = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import json import os from datetime import date from pathlib import Path from tabulate import DataRow, TableFormat, tabulate __UpperCamelCase : List[str] = TableFormat( lineabove=None, linebelowheader=None, linebetweenrows=None, linebelow=None, headerrow=DataRow("""""", """|""", """|"""), datarow=DataRow("""""", """|""", """|"""), padding=1, with_header_hide=None, ) __UpperCamelCase : Tuple = [] __UpperCamelCase : List[str] = [] __UpperCamelCase : int = {"""type""": """section""", """text""": {"""type""": """plain_text""", """text""": """No failed tests! 🤗""", """emoji""": True}} __UpperCamelCase : str = [ { """type""": """header""", """text""": { """type""": """plain_text""", """text""": f'''🤗 Accelerate nightly {os.environ.get('TEST_TYPE', '')} test results''', """emoji""": True, }, } ] __UpperCamelCase : Tuple = 0 for log in Path().glob("""*.log"""): __UpperCamelCase : Any = 0 with open(log, """r""") as f: for line in f: __UpperCamelCase : Optional[int] = json.loads(line) if line.get("""nodeid""", """""") != "": __UpperCamelCase : Dict = line["""nodeid"""] if line.get("""duration""", None) is not None: __UpperCamelCase : Union[str, Any] = f'''{line['duration']:.4f}''' if line.get("""outcome""", """""") == "failed": section_num_failed += 1 failed.append([test, duration, log.name.split("""_""")[0]]) total_num_failed += 1 group_info.append([str(log), section_num_failed, failed]) __UpperCamelCase : Tuple = [] log.unlink() __UpperCamelCase : List[str] = """""" __UpperCamelCase : List[Any] = [] if total_num_failed > 0: for name, num_failed, failed_tests in group_info: if num_failed > 0: if num_failed == 1: message += f"*{name[1:]}: {num_failed} failed test*\n" else: message += f"*{name[1:]}: {num_failed} failed tests*\n" __UpperCamelCase : Any = [] __UpperCamelCase : Any = {} for test in failed_tests: __UpperCamelCase : Any = test[0].split("""::""") __UpperCamelCase : List[Any] = data[0].split("""/""")[-1] if data[0] not in filesafailed: __UpperCamelCase : Dict = [data[1:]] else: filesafailed[data[0]] += [data[1:]] failed_table.append(data) __UpperCamelCase : str = [test[0] for test in failed_table] __UpperCamelCase : str = list(set(files)) # Count number of instances in failed_tests __UpperCamelCase : Dict = [] for file in individual_files: table.append([file, len(filesafailed[file])]) __UpperCamelCase : Any = tabulate( table, headers=["""Test Location""", """Num Failed"""], tablefmt=hf_table_format, stralign="""right""", ) message += f"\n```\n{failed_table}\n```" all_filesafailed.append(filesafailed) if len(message) > 3000: __UpperCamelCase : str = """Too many failed tests, please see the full report in the Action results.""" __UpperCamelCase : Optional[Any] = len(err) + 10 __UpperCamelCase : int = message[: 3000 - offset] + f'''\n...\n```\n{err}''' print(f'''### {message}''') else: __UpperCamelCase : List[str] = """No failed tests! 🤗""" print(f'''## {message}''') payload.append(no_error_payload) if os.environ.get("""TEST_TYPE""", """""") != "": from slack_sdk import WebClient __UpperCamelCase : int = WebClient(token=os.environ["""SLACK_API_TOKEN"""]) if message != "No failed tests! 🤗": __UpperCamelCase : Dict = { """type""": """section""", """text""": { """type""": """mrkdwn""", """text""": message, }, } payload.append(md_report) __UpperCamelCase : int = { """type""": """section""", """text""": { """type""": """mrkdwn""", """text""": """*For more details:*""", }, """accessory""": { """type""": """button""", """text""": { """type""": """plain_text""", """text""": """Check Action results""", """emoji""": True, }, """url""": f'''https://github.com/{os.environ['GITHUB_REPOSITORY']}/actions/runs/{os.environ['GITHUB_RUN_ID']}''', }, } payload.append(action_button) __UpperCamelCase : Dict = { """type""": """context""", """elements""": [ { """type""": """plain_text""", """text""": f'''Nightly {os.environ.get('TEST_TYPE')} test results for {date.today()}''', } ], } payload.append(date_report) __UpperCamelCase : str = client.chat_postMessage(channel="""#accelerate-ci-daily""", text=message, blocks=payload) __UpperCamelCase : int = response.data["""ts"""] for failed_file in all_filesafailed: for test_location, test_failures in failed_file.items(): # Keep only the first instance of the test name __UpperCamelCase : Optional[Any] = """""" for i, row in enumerate(test_failures): if row[0] != test_class: __UpperCamelCase : Dict = row[0] else: __UpperCamelCase : Dict = """""" __UpperCamelCase : List[Any] = { """type""": """section""", """text""": { """type""": """mrkdwn""", """text""": f'''Test location: {test_location}\n```\n{tabulate(test_failures, headers=['Class', 'Test'], tablefmt=hf_table_format, stralign='right')}\n```''', }, } client.chat_postMessage( channel="""#accelerate-ci-daily""", thread_ts=ts, blocks=[payload], )
307
def a_ ( _A , _A ) -> int: """simple docstring""" return 1 if input_a == input_a else 0 def a_ ( ) -> None: """simple docstring""" assert xnor_gate(0 , 0 ) == 1 assert xnor_gate(0 , 1 ) == 0 assert xnor_gate(1 , 0 ) == 0 assert xnor_gate(1 , 1 ) == 1 if __name__ == "__main__": print(xnor_gate(0, 0)) print(xnor_gate(0, 1)) print(xnor_gate(1, 0)) print(xnor_gate(1, 1))
307
1
import warnings from ...utils import logging from .image_processing_flava import FlavaImageProcessor __UpperCamelCase : Optional[int] = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): def __init__( self: Any , *UpperCamelCase: Optional[int] , **UpperCamelCase: List[str] ) -> None: warnings.warn( 'The class FlavaFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use FlavaImageProcessor instead.' , UpperCamelCase , ) super().__init__(*UpperCamelCase , **UpperCamelCase )
307
import numpy as np from cva import COLOR_BGR2GRAY, cvtColor, imread from numpy import array, uinta from PIL import Image from digital_image_processing import change_contrast as cc from digital_image_processing import convert_to_negative as cn from digital_image_processing import sepia as sp from digital_image_processing.dithering import burkes as bs from digital_image_processing.edge_detection import canny from digital_image_processing.filters import convolve as conv from digital_image_processing.filters import gaussian_filter as gg from digital_image_processing.filters import local_binary_pattern as lbp from digital_image_processing.filters import median_filter as med from digital_image_processing.filters import sobel_filter as sob from digital_image_processing.resize import resize as rs __UpperCamelCase : int = imread(R"""digital_image_processing/image_data/lena_small.jpg""") __UpperCamelCase : List[Any] = cvtColor(img, COLOR_BGR2GRAY) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = cn.convert_to_negative(_A ) # assert negative_img array for at least one True assert negative_img.any() def a_ ( ) -> int: """simple docstring""" with Image.open('digital_image_processing/image_data/lena_small.jpg' ) as img: # Work around assertion for response assert str(cc.change_contrast(_A , 110 ) ).startswith( '<PIL.Image.Image image mode=RGB size=100x100 at' ) def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = canny.gen_gaussian_kernel(9 , sigma=1.4 ) # Assert ambiguous array assert resp.all() def a_ ( ) -> Dict: """simple docstring""" snake_case__ = imread('digital_image_processing/image_data/lena_small.jpg' , 0 ) # assert ambiguous array for all == True assert canny_img.all() snake_case__ = canny.canny(_A ) # assert canny array for at least one True assert canny_array.any() def a_ ( ) -> Optional[int]: """simple docstring""" assert gg.gaussian_filter(_A , 5 , sigma=0.9 ).all() def a_ ( ) -> Optional[Any]: """simple docstring""" # laplace diagonals snake_case__ = array([[0.25, 0.5, 0.25], [0.5, -3, 0.5], [0.25, 0.5, 0.25]] ) snake_case__ = conv.img_convolve(_A , _A ).astype(_A ) assert res.any() def a_ ( ) -> Dict: """simple docstring""" assert med.median_filter(_A , 3 ).any() def a_ ( ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = sob.sobel_filter(_A ) assert grad.any() and theta.any() def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = sp.make_sepia(_A , 20 ) assert sepia.all() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" ) -> Optional[int]: """simple docstring""" snake_case__ = bs.Burkes(imread(_A , 1 ) , 120 ) burkes.process() assert burkes.output_img.any() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" , ) -> Optional[Any]: """simple docstring""" snake_case__ = rs.NearestNeighbour(imread(_A , 1 ) , 400 , 200 ) nn.process() assert nn.output.any() def a_ ( ) -> Any: """simple docstring""" snake_case__ = 'digital_image_processing/image_data/lena.jpg' # Reading the image and converting it to grayscale. snake_case__ = imread(_A , 0 ) # Test for get_neighbors_pixel function() return not None snake_case__ = 0 snake_case__ = 0 snake_case__ = image[x_coordinate][y_coordinate] snake_case__ = lbp.get_neighbors_pixel( _A , _A , _A , _A ) assert neighbors_pixels is not None # Test for local_binary_pattern function() # Create a numpy array as the same height and width of read image snake_case__ = np.zeros((image.shape[0], image.shape[1]) ) # Iterating through the image and calculating the local binary pattern value # for each pixel. for i in range(0 , image.shape[0] ): for j in range(0 , image.shape[1] ): snake_case__ = lbp.local_binary_value(_A , _A , _A ) assert lbp_image.any()
307
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __UpperCamelCase : Tuple = { """configuration_pegasus_x""": ["""PEGASUS_X_PRETRAINED_CONFIG_ARCHIVE_MAP""", """PegasusXConfig"""], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : List[str] = [ """PEGASUS_X_PRETRAINED_MODEL_ARCHIVE_LIST""", """PegasusXForConditionalGeneration""", """PegasusXModel""", """PegasusXPreTrainedModel""", ] if TYPE_CHECKING: from .configuration_pegasus_x import PEGASUS_X_PRETRAINED_CONFIG_ARCHIVE_MAP, PegasusXConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_pegasus_x import ( PEGASUS_X_PRETRAINED_MODEL_ARCHIVE_LIST, PegasusXForConditionalGeneration, PegasusXModel, PegasusXPreTrainedModel, ) else: import sys __UpperCamelCase : Union[str, Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __UpperCamelCase : Dict = { """configuration_jukebox""": [ """JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP""", """JukeboxConfig""", """JukeboxPriorConfig""", """JukeboxVQVAEConfig""", ], """tokenization_jukebox""": ["""JukeboxTokenizer"""], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Tuple = [ """JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST""", """JukeboxModel""", """JukeboxPreTrainedModel""", """JukeboxVQVAE""", """JukeboxPrior""", ] if TYPE_CHECKING: from .configuration_jukebox import ( JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP, JukeboxConfig, JukeboxPriorConfig, JukeboxVQVAEConfig, ) from .tokenization_jukebox import JukeboxTokenizer try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_jukebox import ( JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST, JukeboxModel, JukeboxPreTrainedModel, JukeboxPrior, JukeboxVQVAE, ) else: import sys __UpperCamelCase : str = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
import argparse import gc import json import os import shutil import warnings import torch from transformers import LlamaConfig, LlamaForCausalLM, LlamaTokenizer try: from transformers import LlamaTokenizerFast except ImportError as e: warnings.warn(e) warnings.warn( """The converted tokenizer will be the `slow` tokenizer. To use the fast, update your `tokenizers` library and re-run the tokenizer conversion""" ) __UpperCamelCase : Union[str, Any] = None __UpperCamelCase : Any = { """7B""": 11008, """13B""": 13824, """30B""": 17920, """65B""": 22016, """70B""": 28672, } __UpperCamelCase : Optional[Any] = { """7B""": 1, """7Bf""": 1, """13B""": 2, """13Bf""": 2, """30B""": 4, """65B""": 8, """70B""": 8, """70Bf""": 8, } def a_ ( _A , _A=1 , _A=256 ) -> str: """simple docstring""" return multiple_of * ((int(ffn_dim_multiplier * int(8 * n / 3 ) ) + multiple_of - 1) // multiple_of) def a_ ( _A ) -> int: """simple docstring""" with open(_A , 'r' ) as f: return json.load(_A ) def a_ ( _A , _A ) -> int: """simple docstring""" with open(_A , 'w' ) as f: json.dump(_A , _A ) def a_ ( _A , _A , _A , _A=True ) -> List[str]: """simple docstring""" os.makedirs(_A , exist_ok=_A ) snake_case__ = os.path.join(_A , 'tmp' ) os.makedirs(_A , exist_ok=_A ) snake_case__ = read_json(os.path.join(_A , 'params.json' ) ) snake_case__ = NUM_SHARDS[model_size] snake_case__ = params['n_layers'] snake_case__ = params['n_heads'] snake_case__ = n_heads // num_shards snake_case__ = params['dim'] snake_case__ = dim // n_heads snake_case__ = 10000.0 snake_case__ = 1.0 / (base ** (torch.arange(0 , _A , 2 ).float() / dims_per_head)) if "n_kv_heads" in params: snake_case__ = params['n_kv_heads'] # for GQA / MQA snake_case__ = n_heads_per_shard // num_key_value_heads snake_case__ = dim // num_key_value_heads else: # compatibility with other checkpoints snake_case__ = n_heads snake_case__ = n_heads_per_shard snake_case__ = dim # permute for sliced rotary def permute(_A , _A=n_heads , _A=dim , _A=dim ): return w.view(_A , dima // n_heads // 2 , 2 , _A ).transpose(1 , 2 ).reshape(_A , _A ) print(f'''Fetching all parameters from the checkpoint at {input_base_path}.''' ) # Load weights if model_size == "7B": # Not sharded # (The sharded implementation would also work, but this is simpler.) snake_case__ = torch.load(os.path.join(_A , 'consolidated.00.pth' ) , map_location='cpu' ) else: # Sharded snake_case__ = [ torch.load(os.path.join(_A , f'''consolidated.{i:02d}.pth''' ) , map_location='cpu' ) for i in range(_A ) ] snake_case__ = 0 snake_case__ = {'weight_map': {}} for layer_i in range(_A ): snake_case__ = f'''pytorch_model-{layer_i + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { f'''model.layers.{layer_i}.self_attn.q_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wq.weight'''] ), f'''model.layers.{layer_i}.self_attn.k_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wk.weight'''] ), f'''model.layers.{layer_i}.self_attn.v_proj.weight''': loaded[f'''layers.{layer_i}.attention.wv.weight'''], f'''model.layers.{layer_i}.self_attn.o_proj.weight''': loaded[f'''layers.{layer_i}.attention.wo.weight'''], f'''model.layers.{layer_i}.mlp.gate_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w1.weight'''], f'''model.layers.{layer_i}.mlp.down_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w2.weight'''], f'''model.layers.{layer_i}.mlp.up_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w3.weight'''], f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[f'''layers.{layer_i}.attention_norm.weight'''], f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[f'''layers.{layer_i}.ffn_norm.weight'''], } else: # Sharded # Note that attention.w{q,k,v,o}, feed_fordward.w[1,2,3], attention_norm.weight and ffn_norm.weight share # the same storage object, saving attention_norm and ffn_norm will save other weights too, which is # redundant as other weights will be stitched from multiple shards. To avoid that, they are cloned. snake_case__ = { f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.attention_norm.weight''' ].clone(), f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.ffn_norm.weight''' ].clone(), } snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wq.weight'''].view(_A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) ) snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wk.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) , _A , _A , _A , ) snake_case__ = torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wv.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.attention.wo.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w1.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w2.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w3.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = inv_freq for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) snake_case__ = f'''pytorch_model-{n_layers + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { 'model.embed_tokens.weight': loaded['tok_embeddings.weight'], 'model.norm.weight': loaded['norm.weight'], 'lm_head.weight': loaded['output.weight'], } else: snake_case__ = { 'model.norm.weight': loaded[0]['norm.weight'], 'model.embed_tokens.weight': torch.cat( [loaded[i]['tok_embeddings.weight'] for i in range(_A )] , dim=1 ), 'lm_head.weight': torch.cat([loaded[i]['output.weight'] for i in range(_A )] , dim=0 ), } for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) # Write configs snake_case__ = {'total_size': param_count * 2} write_json(_A , os.path.join(_A , 'pytorch_model.bin.index.json' ) ) snake_case__ = params['ffn_dim_multiplier'] if 'ffn_dim_multiplier' in params else 1 snake_case__ = params['multiple_of'] if 'multiple_of' in params else 256 snake_case__ = LlamaConfig( hidden_size=_A , intermediate_size=compute_intermediate_size(_A , _A , _A ) , num_attention_heads=params['n_heads'] , num_hidden_layers=params['n_layers'] , rms_norm_eps=params['norm_eps'] , num_key_value_heads=_A , ) config.save_pretrained(_A ) # Make space so we can load the model properly now. del state_dict del loaded gc.collect() print('Loading the checkpoint in a Llama model.' ) snake_case__ = LlamaForCausalLM.from_pretrained(_A , torch_dtype=torch.floataa , low_cpu_mem_usage=_A ) # Avoid saving this as part of the config. del model.config._name_or_path print('Saving in the Transformers format.' ) model.save_pretrained(_A , safe_serialization=_A ) shutil.rmtree(_A ) def a_ ( _A , _A ) -> Tuple: """simple docstring""" # Initialize the tokenizer based on the `spm` model snake_case__ = LlamaTokenizer if LlamaTokenizerFast is None else LlamaTokenizerFast print(f'''Saving a {tokenizer_class.__name__} to {tokenizer_path}.''' ) snake_case__ = tokenizer_class(_A ) tokenizer.save_pretrained(_A ) def a_ ( ) -> str: """simple docstring""" snake_case__ = argparse.ArgumentParser() parser.add_argument( '--input_dir' , help='Location of LLaMA weights, which contains tokenizer.model and model folders' , ) parser.add_argument( '--model_size' , choices=['7B', '7Bf', '13B', '13Bf', '30B', '65B', '70B', '70Bf', 'tokenizer_only'] , ) parser.add_argument( '--output_dir' , help='Location to write HF model and tokenizer' , ) parser.add_argument('--safe_serialization' , type=_A , help='Whether or not to save using `safetensors`.' ) snake_case__ = parser.parse_args() if args.model_size != "tokenizer_only": write_model( model_path=args.output_dir , input_base_path=os.path.join(args.input_dir , args.model_size ) , model_size=args.model_size , safe_serialization=args.safe_serialization , ) snake_case__ = os.path.join(args.input_dir , 'tokenizer.model' ) write_tokenizer(args.output_dir , _A ) if __name__ == "__main__": main()
307
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, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, logging __UpperCamelCase : Dict = logging.get_logger(__name__) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["pixel_values"] def __init__( self: List[Any] , UpperCamelCase: bool = True , UpperCamelCase: Optional[Dict[str, int]] = None , UpperCamelCase: PILImageResampling = PILImageResampling.BILINEAR , UpperCamelCase: bool = True , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[int, float] = 1 / 2_55 , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , **UpperCamelCase: Optional[int] , ) -> None: super().__init__(**UpperCamelCase ) snake_case__ = size if size is not None else {'shortest_edge': 2_56} snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = crop_size if crop_size is not None else {'height': 2_24, 'width': 2_24} snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_resize snake_case__ = size snake_case__ = resample snake_case__ = do_center_crop snake_case__ = crop_size snake_case__ = do_rescale snake_case__ = rescale_factor snake_case__ = do_normalize snake_case__ = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN snake_case__ = image_std if image_std is not None else IMAGENET_STANDARD_STD def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: PILImageResampling = PILImageResampling.BICUBIC , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) if "shortest_edge" not in size: raise ValueError(F'''The `size` parameter must contain the key `shortest_edge`. Got {size.keys()}''' ) snake_case__ = get_resize_output_image_size(UpperCamelCase , size=size['shortest_edge'] , default_to_square=UpperCamelCase ) return resize(UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Dict[str, int] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: List[Any] , ) -> np.ndarray: snake_case__ = get_size_dict(UpperCamelCase ) return center_crop(UpperCamelCase , size=(size['height'], size['width']) , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: np.ndarray , UpperCamelCase: float , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Dict ) -> np.ndarray: return rescale(UpperCamelCase , scale=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: np.ndarray , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Union[float, List[float]] , UpperCamelCase: Optional[Union[str, ChannelDimension]] = None , **UpperCamelCase: Any , ) -> np.ndarray: return normalize(UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase , data_format=UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: ImageInput , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: PILImageResampling = None , UpperCamelCase: bool = None , UpperCamelCase: Dict[str, int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[float] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[float, List[float]]] = None , UpperCamelCase: Optional[Union[str, TensorType]] = None , UpperCamelCase: Union[str, ChannelDimension] = ChannelDimension.FIRST , **UpperCamelCase: Any , ) -> Optional[Any]: snake_case__ = do_resize if do_resize is not None else self.do_resize snake_case__ = size if size is not None else self.size snake_case__ = get_size_dict(UpperCamelCase , default_to_square=UpperCamelCase ) snake_case__ = resample if resample is not None else self.resample snake_case__ = do_center_crop if do_center_crop is not None else self.do_center_crop snake_case__ = crop_size if crop_size is not None else self.crop_size snake_case__ = get_size_dict(UpperCamelCase ) snake_case__ = do_rescale if do_rescale is not None else self.do_rescale snake_case__ = rescale_factor if rescale_factor is not None else self.rescale_factor snake_case__ = do_normalize if do_normalize is not None else self.do_normalize snake_case__ = image_mean if image_mean is not None else self.image_mean snake_case__ = image_std if image_std is not None else self.image_std snake_case__ = make_list_of_images(UpperCamelCase ) if not valid_images(UpperCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None: raise ValueError('Size must be specified if do_resize is True.' ) if do_center_crop and crop_size is None: raise ValueError('Crop size must be specified if do_center_crop is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # All transformations expect numpy arrays. snake_case__ = [to_numpy_array(UpperCamelCase ) for image in images] if do_resize: snake_case__ = [self.resize(image=UpperCamelCase , size=UpperCamelCase , resample=UpperCamelCase ) for image in images] if do_center_crop: snake_case__ = [self.center_crop(image=UpperCamelCase , size=UpperCamelCase ) for image in images] if do_rescale: snake_case__ = [self.rescale(image=UpperCamelCase , scale=UpperCamelCase ) for image in images] if do_normalize: snake_case__ = [self.normalize(image=UpperCamelCase , mean=UpperCamelCase , std=UpperCamelCase ) for image in images] snake_case__ = [to_channel_dimension_format(UpperCamelCase , UpperCamelCase ) for image in images] snake_case__ = {'pixel_values': images} return BatchFeature(data=UpperCamelCase , tensor_type=UpperCamelCase )
307
1
def a_ ( _A , _A ) -> int: """simple docstring""" _enforce_args(_A , _A ) if n == 0: return 0 snake_case__ = float('-inf' ) for i in range(1 , n + 1 ): snake_case__ = max( _A , prices[i - 1] + naive_cut_rod_recursive(n - i , _A ) ) return max_revue def a_ ( _A , _A ) -> Optional[Any]: """simple docstring""" _enforce_args(_A , _A ) snake_case__ = [float('-inf' ) for _ in range(n + 1 )] return _top_down_cut_rod_recursive(_A , _A , _A ) def a_ ( _A , _A , _A ) -> List[str]: """simple docstring""" if max_rev[n] >= 0: return max_rev[n] elif n == 0: return 0 else: snake_case__ = float('-inf' ) for i in range(1 , n + 1 ): snake_case__ = max( _A , prices[i - 1] + _top_down_cut_rod_recursive(n - i , _A , _A ) , ) snake_case__ = max_revenue return max_rev[n] def a_ ( _A , _A ) -> Optional[int]: """simple docstring""" _enforce_args(_A , _A ) # length(max_rev) = n + 1, to accommodate for the revenue obtainable from a rod of # length 0. snake_case__ = [float('-inf' ) for _ in range(n + 1 )] snake_case__ = 0 for i in range(1 , n + 1 ): snake_case__ = max_rev[i] for j in range(1 , i + 1 ): snake_case__ = max(_A , prices[j - 1] + max_rev[i - j] ) snake_case__ = max_revenue_i return max_rev[n] def a_ ( _A , _A ) -> Dict: """simple docstring""" if n < 0: snake_case__ = f'''n must be greater than or equal to 0. Got n = {n}''' raise ValueError(_A ) if n > len(_A ): snake_case__ = ( 'Each integral piece of rod must have a corresponding price. ' f'''Got n = {n} but length of prices = {len(_A )}''' ) raise ValueError(_A ) def a_ ( ) -> Optional[int]: """simple docstring""" snake_case__ = [6, 10, 12, 15, 20, 23] snake_case__ = len(_A ) # the best revenue comes from cutting the rod into 6 pieces, each # of length 1 resulting in a revenue of 6 * 6 = 36. snake_case__ = 36 snake_case__ = top_down_cut_rod(_A , _A ) snake_case__ = bottom_up_cut_rod(_A , _A ) snake_case__ = naive_cut_rod_recursive(_A , _A ) assert expected_max_revenue == max_rev_top_down assert max_rev_top_down == max_rev_bottom_up assert max_rev_bottom_up == max_rev_naive if __name__ == "__main__": main()
307
import random from typing import Any def a_ ( _A ) -> list[Any]: """simple docstring""" for _ in range(len(_A ) ): snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ = random.randint(0 , len(_A ) - 1 ) snake_case__ , snake_case__ = data[b], data[a] return data if __name__ == "__main__": __UpperCamelCase : Dict = [0, 1, 2, 3, 4, 5, 6, 7] __UpperCamelCase : Any = ["""python""", """says""", """hello""", """!"""] print("""Fisher-Yates Shuffle:""") print("""List""", integers, strings) print("""FY Shuffle""", fisher_yates_shuffle(integers), fisher_yates_shuffle(strings))
307
1
import bza import gzip import lzma import os import shutil import struct import tarfile import warnings import zipfile from abc import ABC, abstractmethod from pathlib import Path from typing import Dict, List, Optional, Type, Union from .. import config from .filelock import FileLock from .logging import get_logger __UpperCamelCase : Optional[int] = get_logger(__name__) class __SCREAMING_SNAKE_CASE: def __init__( self: str , UpperCamelCase: Optional[str] = None ) -> List[str]: snake_case__ = ( os.path.join(UpperCamelCase , config.EXTRACTED_DATASETS_DIR ) if cache_dir else config.EXTRACTED_DATASETS_PATH ) snake_case__ = Extractor def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: str ) -> str: from .file_utils import hash_url_to_filename # Path where we extract compressed archives # We extract in the cache dir, and get the extracted path name by hashing the original path" snake_case__ = os.path.abspath(UpperCamelCase ) return os.path.join(self.extract_dir , hash_url_to_filename(UpperCamelCase ) ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: str , UpperCamelCase: bool ) -> bool: return force_extract or ( not os.path.isfile(UpperCamelCase ) and not (os.path.isdir(UpperCamelCase ) and os.listdir(UpperCamelCase )) ) def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: str , UpperCamelCase: bool = False ) -> str: snake_case__ = self.extractor.infer_extractor_format(UpperCamelCase ) if not extractor_format: return input_path snake_case__ = self._get_output_path(UpperCamelCase ) if self._do_extract(UpperCamelCase , UpperCamelCase ): self.extractor.extract(UpperCamelCase , UpperCamelCase , UpperCamelCase ) return output_path class __SCREAMING_SNAKE_CASE( a_ ): @classmethod @abstractmethod def lowerCAmelCase_ ( cls: Optional[Any] , UpperCamelCase: Union[Path, str] , **UpperCamelCase: List[Any] ) -> bool: ... @staticmethod @abstractmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: ... class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: int ) -> Optional[Any]: with open(UpperCamelCase , 'rb' ) as f: return f.read(UpperCamelCase ) @classmethod def lowerCAmelCase_ ( cls: Dict , UpperCamelCase: Union[Path, str] , UpperCamelCase: bytes = b"" ) -> bool: if not magic_number: snake_case__ = max(len(UpperCamelCase ) for cls_magic_number in cls.magic_numbers ) try: snake_case__ = cls.read_magic_number(UpperCamelCase , UpperCamelCase ) except OSError: return False return any(magic_number.startswith(UpperCamelCase ) for cls_magic_number in cls.magic_numbers ) class __SCREAMING_SNAKE_CASE( a_ ): @classmethod def lowerCAmelCase_ ( cls: List[Any] , UpperCamelCase: Union[Path, str] , **UpperCamelCase: Dict ) -> bool: return tarfile.is_tarfile(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Optional[int] , UpperCamelCase: int ) -> Any: def resolved(UpperCamelCase: str ) -> str: return os.path.realpath(os.path.abspath(UpperCamelCase ) ) def badpath(UpperCamelCase: str , UpperCamelCase: str ) -> bool: # joinpath will ignore base if path is absolute return not resolved(os.path.join(UpperCamelCase , UpperCamelCase ) ).startswith(UpperCamelCase ) def badlink(UpperCamelCase: Any , UpperCamelCase: str ) -> bool: # Links are interpreted relative to the directory containing the link snake_case__ = resolved(os.path.join(UpperCamelCase , os.path.dirname(info.name ) ) ) return badpath(info.linkname , base=UpperCamelCase ) snake_case__ = resolved(UpperCamelCase ) for finfo in members: if badpath(finfo.name , UpperCamelCase ): logger.error(F'''Extraction of {finfo.name} is blocked (illegal path)''' ) elif finfo.issym() and badlink(UpperCamelCase , UpperCamelCase ): logger.error(F'''Extraction of {finfo.name} is blocked: Symlink to {finfo.linkname}''' ) elif finfo.islnk() and badlink(UpperCamelCase , UpperCamelCase ): logger.error(F'''Extraction of {finfo.name} is blocked: Hard link to {finfo.linkname}''' ) else: yield finfo @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: os.makedirs(UpperCamelCase , exist_ok=UpperCamelCase ) snake_case__ = tarfile.open(UpperCamelCase ) tar_file.extractall(UpperCamelCase , members=TarExtractor.safemembers(UpperCamelCase , UpperCamelCase ) ) tar_file.close() class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"\x1F\x8B"] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: with gzip.open(UpperCamelCase , 'rb' ) as gzip_file: with open(UpperCamelCase , 'wb' ) as extracted_file: shutil.copyfileobj(UpperCamelCase , UpperCamelCase ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [ B"PK\x03\x04", B"PK\x05\x06", # empty archive B"PK\x07\x08", # spanned archive ] @classmethod def lowerCAmelCase_ ( cls: Union[str, Any] , UpperCamelCase: Union[Path, str] , UpperCamelCase: bytes = b"" ) -> bool: if super().is_extractable(UpperCamelCase , magic_number=UpperCamelCase ): return True try: # Alternative version of zipfile.is_zipfile that has less false positives, but misses executable zip archives. # From: https://github.com/python/cpython/pull/5053 from zipfile import ( _CD_SIGNATURE, _ECD_DISK_NUMBER, _ECD_DISK_START, _ECD_ENTRIES_TOTAL, _ECD_OFFSET, _ECD_SIZE, _EndRecData, sizeCentralDir, stringCentralDir, structCentralDir, ) with open(UpperCamelCase , 'rb' ) as fp: snake_case__ = _EndRecData(UpperCamelCase ) if endrec: if endrec[_ECD_ENTRIES_TOTAL] == 0 and endrec[_ECD_SIZE] == 0 and endrec[_ECD_OFFSET] == 0: return True # Empty zipfiles are still zipfiles elif endrec[_ECD_DISK_NUMBER] == endrec[_ECD_DISK_START]: fp.seek(endrec[_ECD_OFFSET] ) # Central directory is on the same disk if fp.tell() == endrec[_ECD_OFFSET] and endrec[_ECD_SIZE] >= sizeCentralDir: snake_case__ = fp.read(UpperCamelCase ) # CD is where we expect it to be if len(UpperCamelCase ) == sizeCentralDir: snake_case__ = struct.unpack(UpperCamelCase , UpperCamelCase ) # CD is the right size if centdir[_CD_SIGNATURE] == stringCentralDir: return True # First central directory entry has correct magic number return False except Exception: # catch all errors in case future python versions change the zipfile internals return False @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: os.makedirs(UpperCamelCase , exist_ok=UpperCamelCase ) with zipfile.ZipFile(UpperCamelCase , 'r' ) as zip_file: zip_file.extractall(UpperCamelCase ) zip_file.close() class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"\xFD\x37\x7A\x58\x5A\x00"] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: with lzma.open(UpperCamelCase ) as compressed_file: with open(UpperCamelCase , 'wb' ) as extracted_file: shutil.copyfileobj(UpperCamelCase , UpperCamelCase ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"Rar!\x1a\x07\x00", B"Rar!\x1a\x07\x01\x00"] # RAR_ID # RAR5_ID @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: if not config.RARFILE_AVAILABLE: raise ImportError('Please pip install rarfile' ) import rarfile os.makedirs(UpperCamelCase , exist_ok=UpperCamelCase ) snake_case__ = rarfile.RarFile(UpperCamelCase ) rf.extractall(UpperCamelCase ) rf.close() class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"\x28\xb5\x2F\xFD"] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: if not config.ZSTANDARD_AVAILABLE: raise ImportError('Please pip install zstandard' ) import zstandard as zstd snake_case__ = zstd.ZstdDecompressor() with open(UpperCamelCase , 'rb' ) as ifh, open(UpperCamelCase , 'wb' ) as ofh: dctx.copy_stream(UpperCamelCase , UpperCamelCase ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"\x42\x5A\x68"] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: with bza.open(UpperCamelCase , 'rb' ) as compressed_file: with open(UpperCamelCase , 'wb' ) as extracted_file: shutil.copyfileobj(UpperCamelCase , UpperCamelCase ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"\x37\x7A\xBC\xAF\x27\x1C"] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: if not config.PY7ZR_AVAILABLE: raise ImportError('Please pip install py7zr' ) import pyazr os.makedirs(UpperCamelCase , exist_ok=UpperCamelCase ) with pyazr.SevenZipFile(UpperCamelCase , 'r' ) as archive: archive.extractall(UpperCamelCase ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = [B"\x04\x22\x4D\x18"] @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] ) -> None: if not config.LZ4_AVAILABLE: raise ImportError('Please pip install lz4' ) import lza.frame with lza.frame.open(UpperCamelCase , 'rb' ) as compressed_file: with open(UpperCamelCase , 'wb' ) as extracted_file: shutil.copyfileobj(UpperCamelCase , UpperCamelCase ) class __SCREAMING_SNAKE_CASE: # Put zip file to the last, b/c it is possible wrongly detected as zip (I guess it means: as tar or gzip) _UpperCAmelCase = { "tar": TarExtractor, "gzip": GzipExtractor, "zip": ZipExtractor, "xz": XzExtractor, "rar": RarExtractor, "zstd": ZstdExtractor, "bz2": BzipaExtractor, "7z": SevenZipExtractor, # <Added version="2.4.0"/> "lz4": LzaExtractor, # <Added version="2.4.0"/> } @classmethod def lowerCAmelCase_ ( cls: Tuple ) -> List[Any]: return max( len(UpperCamelCase ) for extractor in cls.extractors.values() if issubclass(UpperCamelCase , UpperCamelCase ) for extractor_magic_number in extractor.magic_numbers ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Union[Path, str] , UpperCamelCase: int ) -> Union[str, Any]: try: return MagicNumberBaseExtractor.read_magic_number(UpperCamelCase , magic_number_length=UpperCamelCase ) except OSError: return b"" @classmethod def lowerCAmelCase_ ( cls: List[Any] , UpperCamelCase: Union[Path, str] , UpperCamelCase: bool = False ) -> bool: warnings.warn( 'Method \'is_extractable\' was deprecated in version 2.4.0 and will be removed in 3.0.0. ' 'Use \'infer_extractor_format\' instead.' , category=UpperCamelCase , ) snake_case__ = cls.infer_extractor_format(UpperCamelCase ) if extractor_format: return True if not return_extractor else (True, cls.extractors[extractor_format]) return False if not return_extractor else (False, None) @classmethod def lowerCAmelCase_ ( cls: Any , UpperCamelCase: Union[Path, str] ) -> str: # <Added version="2.4.0"/> snake_case__ = cls._get_magic_number_max_length() snake_case__ = cls._read_magic_number(UpperCamelCase , UpperCamelCase ) for extractor_format, extractor in cls.extractors.items(): if extractor.is_extractable(UpperCamelCase , magic_number=UpperCamelCase ): return extractor_format @classmethod def lowerCAmelCase_ ( cls: str , UpperCamelCase: Union[Path, str] , UpperCamelCase: Union[Path, str] , UpperCamelCase: Optional[str] = None , UpperCamelCase: Optional[BaseExtractor] = "deprecated" , ) -> None: os.makedirs(os.path.dirname(UpperCamelCase ) , exist_ok=UpperCamelCase ) # Prevent parallel extractions snake_case__ = str(Path(UpperCamelCase ).with_suffix('.lock' ) ) with FileLock(UpperCamelCase ): shutil.rmtree(UpperCamelCase , ignore_errors=UpperCamelCase ) if extractor_format or extractor != "deprecated": if extractor != "deprecated" or not isinstance(UpperCamelCase , UpperCamelCase ): # passed as positional arg warnings.warn( 'Parameter \'extractor\' was deprecated in version 2.4.0 and will be removed in 3.0.0. ' 'Use \'extractor_format\' instead.' , category=UpperCamelCase , ) snake_case__ = extractor if extractor != 'deprecated' else extractor_format else: snake_case__ = cls.extractors[extractor_format] return extractor.extract(UpperCamelCase , UpperCamelCase ) else: warnings.warn( 'Parameter \'extractor_format\' was made required in version 2.4.0 and not passing it will raise an ' 'exception in 3.0.0.' , category=UpperCamelCase , ) for extractor in cls.extractors.values(): if extractor.is_extractable(UpperCamelCase ): return extractor.extract(UpperCamelCase , UpperCamelCase )
307
class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE( a_ ): pass class __SCREAMING_SNAKE_CASE: def __init__( self: List[str] ) -> Union[str, Any]: snake_case__ = [ [], [], [], ] def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: int , UpperCamelCase: int ) -> None: try: if len(self.queues[priority] ) >= 1_00: raise OverflowError('Maximum queue size is 100' ) self.queues[priority].append(UpperCamelCase ) except IndexError: raise ValueError('Valid priorities are 0, 1, and 2' ) def lowerCAmelCase_ ( self: List[Any] ) -> int: for queue in self.queues: if queue: return queue.pop(0 ) raise UnderFlowError('All queues are empty' ) def __str__( self: Union[str, Any] ) -> str: return "\n".join(F'''Priority {i}: {q}''' for i, q in enumerate(self.queues ) ) class __SCREAMING_SNAKE_CASE: def __init__( self: Union[str, Any] ) -> Any: snake_case__ = [] def lowerCAmelCase_ ( self: str , UpperCamelCase: int ) -> None: if len(self.queue ) == 1_00: raise OverFlowError('Maximum queue size is 100' ) self.queue.append(UpperCamelCase ) def lowerCAmelCase_ ( self: int ) -> int: if not self.queue: raise UnderFlowError('The queue is empty' ) else: snake_case__ = min(self.queue ) self.queue.remove(UpperCamelCase ) return data def __str__( self: Optional[Any] ) -> str: return str(self.queue ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = FixedPriorityQueue() fpq.enqueue(0 , 10 ) fpq.enqueue(1 , 70 ) fpq.enqueue(0 , 100 ) fpq.enqueue(2 , 1 ) fpq.enqueue(2 , 5 ) fpq.enqueue(1 , 7 ) fpq.enqueue(2 , 4 ) fpq.enqueue(1 , 64 ) fpq.enqueue(0 , 128 ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(_A ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) print(fpq.dequeue() ) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = ElementPriorityQueue() epq.enqueue(10 ) epq.enqueue(70 ) epq.enqueue(100 ) epq.enqueue(1 ) epq.enqueue(5 ) epq.enqueue(7 ) epq.enqueue(4 ) epq.enqueue(64 ) epq.enqueue(128 ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(_A ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) print(epq.dequeue() ) if __name__ == "__main__": fixed_priority_queue() element_priority_queue()
307
1
def a_ ( _A ) -> float: """simple docstring""" snake_case__ = 0 while len(_A ) > 1: snake_case__ = 0 # Consider two files with minimum cost to be merged for _ in range(2 ): snake_case__ = files.index(min(_A ) ) temp += files[min_index] files.pop(_A ) files.append(_A ) optimal_merge_cost += temp return optimal_merge_cost if __name__ == "__main__": import doctest doctest.testmod()
307
import warnings from typing import List, Optional, Union from ...processing_utils import ProcessorMixin from ...tokenization_utils_base import BatchEncoding, PaddingStrategy, PreTokenizedInput, TextInput, TruncationStrategy from ...utils import TensorType class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = ["image_processor", "tokenizer"] _UpperCAmelCase = "LayoutLMv2ImageProcessor" _UpperCAmelCase = ("LayoutXLMTokenizer", "LayoutXLMTokenizerFast") def __init__( self: int , UpperCamelCase: Optional[int]=None , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: Union[str, Any] ) -> int: if "feature_extractor" in kwargs: warnings.warn( 'The `feature_extractor` argument is deprecated and will be removed in v5, use `image_processor`' ' instead.' , UpperCamelCase , ) snake_case__ = kwargs.pop('feature_extractor' ) snake_case__ = 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__(UpperCamelCase , UpperCamelCase ) def __call__( self: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Union[TextInput, PreTokenizedInput, List[TextInput], List[PreTokenizedInput]] = None , UpperCamelCase: Optional[Union[PreTokenizedInput, List[PreTokenizedInput]]] = None , UpperCamelCase: Union[List[List[int]], List[List[List[int]]]] = None , UpperCamelCase: Optional[Union[List[int], List[List[int]]]] = None , UpperCamelCase: bool = True , UpperCamelCase: Union[bool, str, PaddingStrategy] = False , UpperCamelCase: Union[bool, str, TruncationStrategy] = None , UpperCamelCase: Optional[int] = None , UpperCamelCase: int = 0 , UpperCamelCase: Optional[int] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: Optional[bool] = None , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = False , UpperCamelCase: bool = True , UpperCamelCase: Optional[Union[str, TensorType]] = None , **UpperCamelCase: Any , ) -> BatchEncoding: # verify input if self.image_processor.apply_ocr and (boxes is not None): raise ValueError( 'You cannot provide bounding boxes ' 'if you initialized the image processor with apply_ocr set to True.' ) if self.image_processor.apply_ocr and (word_labels is not None): raise ValueError( 'You cannot provide word labels if you initialized the image processor with apply_ocr set to True.' ) if return_overflowing_tokens is True and return_offsets_mapping is False: raise ValueError('You cannot return overflowing tokens without returning the offsets mapping.' ) # first, apply the image processor snake_case__ = self.image_processor(images=UpperCamelCase , return_tensors=UpperCamelCase ) # second, apply the tokenizer if text is not None and self.image_processor.apply_ocr and text_pair is None: if isinstance(UpperCamelCase , UpperCamelCase ): snake_case__ = [text] # add batch dimension (as the image processor always adds a batch dimension) snake_case__ = features['words'] snake_case__ = self.tokenizer( text=text if text is not None else features['words'] , text_pair=text_pair if text_pair is not None else None , boxes=boxes if boxes is not None else features['boxes'] , word_labels=UpperCamelCase , add_special_tokens=UpperCamelCase , padding=UpperCamelCase , truncation=UpperCamelCase , max_length=UpperCamelCase , stride=UpperCamelCase , pad_to_multiple_of=UpperCamelCase , return_token_type_ids=UpperCamelCase , return_attention_mask=UpperCamelCase , return_overflowing_tokens=UpperCamelCase , return_special_tokens_mask=UpperCamelCase , return_offsets_mapping=UpperCamelCase , return_length=UpperCamelCase , verbose=UpperCamelCase , return_tensors=UpperCamelCase , **UpperCamelCase , ) # add pixel values snake_case__ = features.pop('pixel_values' ) if return_overflowing_tokens is True: snake_case__ = self.get_overflowing_images(UpperCamelCase , encoded_inputs['overflow_to_sample_mapping'] ) snake_case__ = images return encoded_inputs def lowerCAmelCase_ ( self: Any , UpperCamelCase: Optional[int] , UpperCamelCase: Any ) -> Tuple: # in case there's an overflow, ensure each `input_ids` sample is mapped to its corresponding image snake_case__ = [] for sample_idx in overflow_to_sample_mapping: images_with_overflow.append(images[sample_idx] ) if len(UpperCamelCase ) != len(UpperCamelCase ): raise ValueError( 'Expected length of images to be the same as the length of `overflow_to_sample_mapping`, but got' F''' {len(UpperCamelCase )} and {len(UpperCamelCase )}''' ) return images_with_overflow def lowerCAmelCase_ ( self: Dict , *UpperCamelCase: Dict , **UpperCamelCase: Optional[int] ) -> List[Any]: return self.tokenizer.batch_decode(*UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: int ) -> Optional[Any]: return self.tokenizer.decode(*UpperCamelCase , **UpperCamelCase ) @property def lowerCAmelCase_ ( self: str ) -> List[Any]: return ["input_ids", "bbox", "attention_mask", "image"] @property def lowerCAmelCase_ ( self: Any ) -> List[Any]: warnings.warn( '`feature_extractor_class` is deprecated and will be removed in v5. Use `image_processor_class` instead.' , UpperCamelCase , ) return self.image_processor_class @property def lowerCAmelCase_ ( self: Optional[int] ) -> Dict: warnings.warn( '`feature_extractor` is deprecated and will be removed in v5. Use `image_processor` instead.' , UpperCamelCase , ) return self.image_processor
307
1
import inspect import unittest class __SCREAMING_SNAKE_CASE( unittest.TestCase ): def lowerCAmelCase_ ( self: int ) -> str: try: import diffusers # noqa: F401 except ImportError: assert False def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: import diffusers from diffusers.dependency_versions_table import deps snake_case__ = inspect.getmembers(UpperCamelCase , inspect.isclass ) for cls_name, cls_module in all_classes: if "dummy_" in cls_module.__module__: for backend in cls_module._backends: if backend == "k_diffusion": snake_case__ = 'k-diffusion' elif backend == "invisible_watermark": snake_case__ = 'invisible-watermark' assert backend in deps, F'''{backend} is not in the deps table!'''
307
def a_ ( _A = 1000 ) -> int: """simple docstring""" return sum(e for e in range(3 , _A ) if e % 3 == 0 or e % 5 == 0 ) if __name__ == "__main__": print(f'''{solution() = }''')
307
1
from __future__ import annotations import os from typing import Any import requests __UpperCamelCase : List[str] = """https://api.github.com""" # https://docs.github.com/en/free-pro-team@latest/rest/reference/users#get-the-authenticated-user __UpperCamelCase : Dict = BASE_URL + """/user""" # https://github.com/settings/tokens __UpperCamelCase : Union[str, Any] = os.environ.get("""USER_TOKEN""", """""") def a_ ( _A ) -> dict[Any, Any]: """simple docstring""" snake_case__ = { 'Authorization': f'''token {auth_token}''', 'Accept': 'application/vnd.github.v3+json', } return requests.get(_A , headers=_A ).json() if __name__ == "__main__": # pragma: no cover if USER_TOKEN: for key, value in fetch_github_info(USER_TOKEN).items(): print(f'''{key}: {value}''') else: raise ValueError("""'USER_TOKEN' field cannot be empty.""")
307
import os def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = os.path.join(os.path.dirname(_A ) , 'num.txt' ) with open(_A ) as file_hand: return str(sum(int(_A ) for line in file_hand ) )[:10] if __name__ == "__main__": print(solution())
307
1
from math import sqrt import numpy as np from sympy import symbols # Coefficient # Speed of light (m/s) __UpperCamelCase : int = 299792458 # Symbols __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Optional[int] = symbols("""ct x y z""") def a_ ( _A ) -> float: """simple docstring""" if velocity > c: raise ValueError('Speed must not exceed light speed 299,792,458 [m/s]!' ) elif velocity < 1: # Usually the speed should be much higher than 1 (c order of magnitude) raise ValueError('Speed must be greater than or equal to 1!' ) return velocity / c def a_ ( _A ) -> float: """simple docstring""" return 1 / sqrt(1 - beta(_A ) ** 2 ) def a_ ( _A ) -> np.ndarray: """simple docstring""" return np.array( [ [gamma(_A ), -gamma(_A ) * beta(_A ), 0, 0], [-gamma(_A ) * beta(_A ), gamma(_A ), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], ] ) def a_ ( _A , _A = None ) -> np.ndarray: """simple docstring""" # Ensure event is not empty if event is None: snake_case__ = np.array([ct, x, y, z] ) # Symbolic four vector else: event[0] *= c # x0 is ct (speed of light * time) return transformation_matrix(_A ) @ event if __name__ == "__main__": import doctest doctest.testmod() # Example of symbolic vector: __UpperCamelCase : List[Any] = transform(29979245) print("""Example of four vector: """) print(f'''ct\' = {four_vector[0]}''') print(f'''x\' = {four_vector[1]}''') print(f'''y\' = {four_vector[2]}''') print(f'''z\' = {four_vector[3]}''') # Substitute symbols with numerical values __UpperCamelCase : List[Any] = {ct: c, x: 1, y: 1, z: 1} __UpperCamelCase : Tuple = [four_vector[i].subs(sub_dict) for i in range(4)] print(f'''\n{numerical_vector}''')
307
import os import sys from contextlib import contextmanager # Windows only if os.name == "nt": import ctypes import msvcrt # noqa class __SCREAMING_SNAKE_CASE( ctypes.Structure ): # _fields is a specific attr expected by ctypes _UpperCAmelCase = [("size", ctypes.c_int), ("visible", ctypes.c_byte)] def a_ ( ) -> Any: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = False ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25l' ) sys.stdout.flush() def a_ ( ) -> Tuple: """simple docstring""" if os.name == "nt": snake_case__ = CursorInfo() snake_case__ = ctypes.windll.kernelaa.GetStdHandle(-11 ) ctypes.windll.kernelaa.GetConsoleCursorInfo(_A , ctypes.byref(_A ) ) snake_case__ = True ctypes.windll.kernelaa.SetConsoleCursorInfo(_A , ctypes.byref(_A ) ) elif os.name == "posix": sys.stdout.write('\033[?25h' ) sys.stdout.flush() @contextmanager def a_ ( ) -> str: """simple docstring""" try: hide_cursor() yield finally: show_cursor()
307
1
# Logistic Regression from scratch # In[62]: # In[63]: # importing all the required libraries import numpy as np from matplotlib import pyplot as plt from sklearn import datasets def a_ ( _A ) -> Tuple: """simple docstring""" return 1 / (1 + np.exp(-z )) def a_ ( _A , _A ) -> Tuple: """simple docstring""" return (-y * np.log(_A ) - (1 - y) * np.log(1 - h )).mean() def a_ ( _A , _A , _A ) -> List[str]: """simple docstring""" snake_case__ = np.dot(_A , _A ) return np.sum(y * scores - np.log(1 + np.exp(_A ) ) ) def a_ ( _A , _A , _A , _A=70000 ) -> Tuple: """simple docstring""" snake_case__ = np.zeros(x.shape[1] ) for iterations in range(_A ): snake_case__ = np.dot(_A , _A ) snake_case__ = sigmoid_function(_A ) snake_case__ = np.dot(x.T , h - y ) / y.size snake_case__ = theta - alpha * gradient # updating the weights snake_case__ = np.dot(_A , _A ) snake_case__ = sigmoid_function(_A ) snake_case__ = cost_function(_A , _A ) if iterations % 100 == 0: print(f'''loss: {j} \t''' ) # printing the loss after every 100 iterations return theta # In[68]: if __name__ == "__main__": __UpperCamelCase : Optional[Any] = datasets.load_iris() __UpperCamelCase : Optional[Any] = iris.data[:, :2] __UpperCamelCase : List[str] = (iris.target != 0) * 1 __UpperCamelCase : List[Any] = 0.1 __UpperCamelCase : str = logistic_reg(alpha, x, y, max_iterations=70000) print("""theta: """, theta) # printing the theta i.e our weights vector def a_ ( _A ) -> List[str]: """simple docstring""" return sigmoid_function( np.dot(_A , _A ) ) # predicting the value of probability from the logistic regression algorithm plt.figure(figsize=(10, 6)) plt.scatter(x[y == 0][:, 0], x[y == 0][:, 1], color="""b""", label="""0""") plt.scatter(x[y == 1][:, 0], x[y == 1][:, 1], color="""r""", label="""1""") ((__UpperCamelCase) , (__UpperCamelCase)) : Tuple = (x[:, 0].min(), x[:, 0].max()) ((__UpperCamelCase) , (__UpperCamelCase)) : int = (x[:, 1].min(), x[:, 1].max()) ((__UpperCamelCase) , (__UpperCamelCase)) : Optional[Any] = np.meshgrid(np.linspace(xa_min, xa_max), np.linspace(xa_min, xa_max)) __UpperCamelCase : List[str] = np.c_[xxa.ravel(), xxa.ravel()] __UpperCamelCase : Any = predict_prob(grid).reshape(xxa.shape) plt.contour(xxa, xxa, probs, [0.5], linewidths=1, colors="""black""") plt.legend() plt.show()
307
import argparse import gc import json import os import shutil import warnings import torch from transformers import LlamaConfig, LlamaForCausalLM, LlamaTokenizer try: from transformers import LlamaTokenizerFast except ImportError as e: warnings.warn(e) warnings.warn( """The converted tokenizer will be the `slow` tokenizer. To use the fast, update your `tokenizers` library and re-run the tokenizer conversion""" ) __UpperCamelCase : Union[str, Any] = None __UpperCamelCase : Any = { """7B""": 11008, """13B""": 13824, """30B""": 17920, """65B""": 22016, """70B""": 28672, } __UpperCamelCase : Optional[Any] = { """7B""": 1, """7Bf""": 1, """13B""": 2, """13Bf""": 2, """30B""": 4, """65B""": 8, """70B""": 8, """70Bf""": 8, } def a_ ( _A , _A=1 , _A=256 ) -> str: """simple docstring""" return multiple_of * ((int(ffn_dim_multiplier * int(8 * n / 3 ) ) + multiple_of - 1) // multiple_of) def a_ ( _A ) -> int: """simple docstring""" with open(_A , 'r' ) as f: return json.load(_A ) def a_ ( _A , _A ) -> int: """simple docstring""" with open(_A , 'w' ) as f: json.dump(_A , _A ) def a_ ( _A , _A , _A , _A=True ) -> List[str]: """simple docstring""" os.makedirs(_A , exist_ok=_A ) snake_case__ = os.path.join(_A , 'tmp' ) os.makedirs(_A , exist_ok=_A ) snake_case__ = read_json(os.path.join(_A , 'params.json' ) ) snake_case__ = NUM_SHARDS[model_size] snake_case__ = params['n_layers'] snake_case__ = params['n_heads'] snake_case__ = n_heads // num_shards snake_case__ = params['dim'] snake_case__ = dim // n_heads snake_case__ = 10000.0 snake_case__ = 1.0 / (base ** (torch.arange(0 , _A , 2 ).float() / dims_per_head)) if "n_kv_heads" in params: snake_case__ = params['n_kv_heads'] # for GQA / MQA snake_case__ = n_heads_per_shard // num_key_value_heads snake_case__ = dim // num_key_value_heads else: # compatibility with other checkpoints snake_case__ = n_heads snake_case__ = n_heads_per_shard snake_case__ = dim # permute for sliced rotary def permute(_A , _A=n_heads , _A=dim , _A=dim ): return w.view(_A , dima // n_heads // 2 , 2 , _A ).transpose(1 , 2 ).reshape(_A , _A ) print(f'''Fetching all parameters from the checkpoint at {input_base_path}.''' ) # Load weights if model_size == "7B": # Not sharded # (The sharded implementation would also work, but this is simpler.) snake_case__ = torch.load(os.path.join(_A , 'consolidated.00.pth' ) , map_location='cpu' ) else: # Sharded snake_case__ = [ torch.load(os.path.join(_A , f'''consolidated.{i:02d}.pth''' ) , map_location='cpu' ) for i in range(_A ) ] snake_case__ = 0 snake_case__ = {'weight_map': {}} for layer_i in range(_A ): snake_case__ = f'''pytorch_model-{layer_i + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { f'''model.layers.{layer_i}.self_attn.q_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wq.weight'''] ), f'''model.layers.{layer_i}.self_attn.k_proj.weight''': permute( loaded[f'''layers.{layer_i}.attention.wk.weight'''] ), f'''model.layers.{layer_i}.self_attn.v_proj.weight''': loaded[f'''layers.{layer_i}.attention.wv.weight'''], f'''model.layers.{layer_i}.self_attn.o_proj.weight''': loaded[f'''layers.{layer_i}.attention.wo.weight'''], f'''model.layers.{layer_i}.mlp.gate_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w1.weight'''], f'''model.layers.{layer_i}.mlp.down_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w2.weight'''], f'''model.layers.{layer_i}.mlp.up_proj.weight''': loaded[f'''layers.{layer_i}.feed_forward.w3.weight'''], f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[f'''layers.{layer_i}.attention_norm.weight'''], f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[f'''layers.{layer_i}.ffn_norm.weight'''], } else: # Sharded # Note that attention.w{q,k,v,o}, feed_fordward.w[1,2,3], attention_norm.weight and ffn_norm.weight share # the same storage object, saving attention_norm and ffn_norm will save other weights too, which is # redundant as other weights will be stitched from multiple shards. To avoid that, they are cloned. snake_case__ = { f'''model.layers.{layer_i}.input_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.attention_norm.weight''' ].clone(), f'''model.layers.{layer_i}.post_attention_layernorm.weight''': loaded[0][ f'''layers.{layer_i}.ffn_norm.weight''' ].clone(), } snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wq.weight'''].view(_A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) ) snake_case__ = permute( torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wk.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) , _A , _A , _A , ) snake_case__ = torch.cat( [ loaded[i][f'''layers.{layer_i}.attention.wv.weight'''].view( _A , _A , _A ) for i in range(_A ) ] , dim=0 , ).reshape(_A , _A ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.attention.wo.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w1.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w2.weight'''] for i in range(_A )] , dim=1 ) snake_case__ = torch.cat( [loaded[i][f'''layers.{layer_i}.feed_forward.w3.weight'''] for i in range(_A )] , dim=0 ) snake_case__ = inv_freq for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) snake_case__ = f'''pytorch_model-{n_layers + 1}-of-{n_layers + 1}.bin''' if model_size == "7B": # Unsharded snake_case__ = { 'model.embed_tokens.weight': loaded['tok_embeddings.weight'], 'model.norm.weight': loaded['norm.weight'], 'lm_head.weight': loaded['output.weight'], } else: snake_case__ = { 'model.norm.weight': loaded[0]['norm.weight'], 'model.embed_tokens.weight': torch.cat( [loaded[i]['tok_embeddings.weight'] for i in range(_A )] , dim=1 ), 'lm_head.weight': torch.cat([loaded[i]['output.weight'] for i in range(_A )] , dim=0 ), } for k, v in state_dict.items(): snake_case__ = filename param_count += v.numel() torch.save(_A , os.path.join(_A , _A ) ) # Write configs snake_case__ = {'total_size': param_count * 2} write_json(_A , os.path.join(_A , 'pytorch_model.bin.index.json' ) ) snake_case__ = params['ffn_dim_multiplier'] if 'ffn_dim_multiplier' in params else 1 snake_case__ = params['multiple_of'] if 'multiple_of' in params else 256 snake_case__ = LlamaConfig( hidden_size=_A , intermediate_size=compute_intermediate_size(_A , _A , _A ) , num_attention_heads=params['n_heads'] , num_hidden_layers=params['n_layers'] , rms_norm_eps=params['norm_eps'] , num_key_value_heads=_A , ) config.save_pretrained(_A ) # Make space so we can load the model properly now. del state_dict del loaded gc.collect() print('Loading the checkpoint in a Llama model.' ) snake_case__ = LlamaForCausalLM.from_pretrained(_A , torch_dtype=torch.floataa , low_cpu_mem_usage=_A ) # Avoid saving this as part of the config. del model.config._name_or_path print('Saving in the Transformers format.' ) model.save_pretrained(_A , safe_serialization=_A ) shutil.rmtree(_A ) def a_ ( _A , _A ) -> Tuple: """simple docstring""" # Initialize the tokenizer based on the `spm` model snake_case__ = LlamaTokenizer if LlamaTokenizerFast is None else LlamaTokenizerFast print(f'''Saving a {tokenizer_class.__name__} to {tokenizer_path}.''' ) snake_case__ = tokenizer_class(_A ) tokenizer.save_pretrained(_A ) def a_ ( ) -> str: """simple docstring""" snake_case__ = argparse.ArgumentParser() parser.add_argument( '--input_dir' , help='Location of LLaMA weights, which contains tokenizer.model and model folders' , ) parser.add_argument( '--model_size' , choices=['7B', '7Bf', '13B', '13Bf', '30B', '65B', '70B', '70Bf', 'tokenizer_only'] , ) parser.add_argument( '--output_dir' , help='Location to write HF model and tokenizer' , ) parser.add_argument('--safe_serialization' , type=_A , help='Whether or not to save using `safetensors`.' ) snake_case__ = parser.parse_args() if args.model_size != "tokenizer_only": write_model( model_path=args.output_dir , input_base_path=os.path.join(args.input_dir , args.model_size ) , model_size=args.model_size , safe_serialization=args.safe_serialization , ) snake_case__ = os.path.join(args.input_dir , 'tokenizer.model' ) write_tokenizer(args.output_dir , _A ) if __name__ == "__main__": main()
307
1
import pickle import shutil import tempfile import unittest from transformers import SPIECE_UNDERLINE, XLMRobertaTokenizer, XLMRobertaTokenizerFast from transformers.testing_utils import get_tests_dir, require_sentencepiece, require_tokenizers, slow from transformers.utils import cached_property from ...test_tokenization_common import TokenizerTesterMixin __UpperCamelCase : Union[str, Any] = get_tests_dir("""fixtures/test_sentencepiece.model""") @require_sentencepiece @require_tokenizers class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): _UpperCAmelCase = XLMRobertaTokenizer _UpperCAmelCase = XLMRobertaTokenizerFast _UpperCAmelCase = True _UpperCAmelCase = True def lowerCAmelCase_ ( self: Dict ) -> Optional[int]: super().setUp() # We have a SentencePiece fixture for testing snake_case__ = XLMRobertaTokenizer(UpperCamelCase , keep_accents=UpperCamelCase ) tokenizer.save_pretrained(self.tmpdirname ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> List[Any]: snake_case__ = '<pad>' snake_case__ = 1 self.assertEqual(self.get_tokenizer()._convert_token_to_id(UpperCamelCase ) , UpperCamelCase ) self.assertEqual(self.get_tokenizer()._convert_id_to_token(UpperCamelCase ) , UpperCamelCase ) def lowerCAmelCase_ ( self: Dict ) -> List[Any]: snake_case__ = list(self.get_tokenizer().get_vocab().keys() ) self.assertEqual(vocab_keys[0] , '<s>' ) self.assertEqual(vocab_keys[1] , '<pad>' ) self.assertEqual(vocab_keys[-1] , '<mask>' ) self.assertEqual(len(UpperCamelCase ) , 10_02 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[int]: self.assertEqual(self.get_tokenizer().vocab_size , 10_02 ) def lowerCAmelCase_ ( self: Union[str, Any] ) -> List[str]: snake_case__ = XLMRobertaTokenizer(UpperCamelCase , keep_accents=UpperCamelCase ) snake_case__ = tokenizer.tokenize('This is a test' ) self.assertListEqual(UpperCamelCase , ['▁This', '▁is', '▁a', '▁t', 'est'] ) self.assertListEqual( tokenizer.convert_tokens_to_ids(UpperCamelCase ) , [value + tokenizer.fairseq_offset for value in [2_85, 46, 10, 1_70, 3_82]] , ) snake_case__ = tokenizer.tokenize('I was born in 92000, and this is falsé.' ) self.assertListEqual( UpperCamelCase , [ SPIECE_UNDERLINE + 'I', SPIECE_UNDERLINE + 'was', SPIECE_UNDERLINE + 'b', 'or', 'n', SPIECE_UNDERLINE + 'in', SPIECE_UNDERLINE + '', '9', '2', '0', '0', '0', ',', SPIECE_UNDERLINE + 'and', SPIECE_UNDERLINE + 'this', SPIECE_UNDERLINE + 'is', SPIECE_UNDERLINE + 'f', 'al', 's', 'é', '.', ] , ) snake_case__ = tokenizer.convert_tokens_to_ids(UpperCamelCase ) self.assertListEqual( UpperCamelCase , [ value + tokenizer.fairseq_offset for value in [8, 21, 84, 55, 24, 19, 7, 2, 6_02, 3_47, 3_47, 3_47, 3, 12, 66, 46, 72, 80, 6, 2, 4] # ^ unk: 2 + 1 = 3 unk: 2 + 1 = 3 ^ ] , ) snake_case__ = tokenizer.convert_ids_to_tokens(UpperCamelCase ) self.assertListEqual( UpperCamelCase , [ SPIECE_UNDERLINE + 'I', SPIECE_UNDERLINE + 'was', SPIECE_UNDERLINE + 'b', 'or', 'n', SPIECE_UNDERLINE + 'in', SPIECE_UNDERLINE + '', '<unk>', '2', '0', '0', '0', ',', SPIECE_UNDERLINE + 'and', SPIECE_UNDERLINE + 'this', SPIECE_UNDERLINE + 'is', SPIECE_UNDERLINE + 'f', 'al', 's', '<unk>', '.', ] , ) def lowerCAmelCase_ ( self: List[Any] ) -> Dict: if not self.test_slow_tokenizer: # as we don't have a slow version, we can't compare the outputs between slow and fast versions return snake_case__ = (self.rust_tokenizer_class, 'hf-internal-testing/tiny-xlm-roberta', {}) for tokenizer, pretrained_name, kwargs in self.tokenizers_list: with self.subTest(F'''{tokenizer.__class__.__name__} ({pretrained_name})''' ): snake_case__ = self.rust_tokenizer_class.from_pretrained(UpperCamelCase , **UpperCamelCase ) snake_case__ = self.tokenizer_class.from_pretrained(UpperCamelCase , **UpperCamelCase ) snake_case__ = tempfile.mkdtemp() snake_case__ = tokenizer_r.save_pretrained(UpperCamelCase ) snake_case__ = tokenizer_p.save_pretrained(UpperCamelCase ) # Checks it save with the same files + the tokenizer.json file for the fast one self.assertTrue(any('tokenizer.json' in f for f in tokenizer_r_files ) ) snake_case__ = tuple(f for f in tokenizer_r_files if 'tokenizer.json' not in f ) self.assertSequenceEqual(UpperCamelCase , UpperCamelCase ) # Checks everything loads correctly in the same way snake_case__ = tokenizer_r.from_pretrained(UpperCamelCase ) snake_case__ = tokenizer_p.from_pretrained(UpperCamelCase ) # Check special tokens are set accordingly on Rust and Python for key in tokenizer_pp.special_tokens_map: self.assertTrue(hasattr(UpperCamelCase , UpperCamelCase ) ) # self.assertEqual(getattr(tokenizer_rp, key), getattr(tokenizer_pp, key)) # self.assertEqual(getattr(tokenizer_rp, key + "_id"), getattr(tokenizer_pp, key + "_id")) shutil.rmtree(UpperCamelCase ) # Save tokenizer rust, legacy_format=True snake_case__ = tempfile.mkdtemp() snake_case__ = tokenizer_r.save_pretrained(UpperCamelCase , legacy_format=UpperCamelCase ) snake_case__ = tokenizer_p.save_pretrained(UpperCamelCase ) # Checks it save with the same files self.assertSequenceEqual(UpperCamelCase , UpperCamelCase ) # Checks everything loads correctly in the same way snake_case__ = tokenizer_r.from_pretrained(UpperCamelCase ) snake_case__ = tokenizer_p.from_pretrained(UpperCamelCase ) # Check special tokens are set accordingly on Rust and Python for key in tokenizer_pp.special_tokens_map: self.assertTrue(hasattr(UpperCamelCase , UpperCamelCase ) ) shutil.rmtree(UpperCamelCase ) # Save tokenizer rust, legacy_format=False snake_case__ = tempfile.mkdtemp() snake_case__ = tokenizer_r.save_pretrained(UpperCamelCase , legacy_format=UpperCamelCase ) snake_case__ = tokenizer_p.save_pretrained(UpperCamelCase ) # Checks it saved the tokenizer.json file self.assertTrue(any('tokenizer.json' in f for f in tokenizer_r_files ) ) # Checks everything loads correctly in the same way snake_case__ = tokenizer_r.from_pretrained(UpperCamelCase ) snake_case__ = tokenizer_p.from_pretrained(UpperCamelCase ) # Check special tokens are set accordingly on Rust and Python for key in tokenizer_pp.special_tokens_map: self.assertTrue(hasattr(UpperCamelCase , UpperCamelCase ) ) shutil.rmtree(UpperCamelCase ) @cached_property def lowerCAmelCase_ ( self: Any ) -> Union[str, Any]: return XLMRobertaTokenizer.from_pretrained('xlm-roberta-base' ) def lowerCAmelCase_ ( self: List[Any] ) -> List[str]: with tempfile.NamedTemporaryFile() as f: shutil.copyfile(UpperCamelCase , f.name ) snake_case__ = XLMRobertaTokenizer(f.name , keep_accents=UpperCamelCase ) snake_case__ = pickle.dumps(UpperCamelCase ) pickle.loads(UpperCamelCase ) def lowerCAmelCase_ ( self: str ) -> str: if not self.test_rust_tokenizer: return snake_case__ = self.get_tokenizer() snake_case__ = self.get_rust_tokenizer() snake_case__ = 'I was born in 92000, and this is falsé.' snake_case__ = tokenizer.tokenize(UpperCamelCase ) snake_case__ = rust_tokenizer.tokenize(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) snake_case__ = tokenizer.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) snake_case__ = rust_tokenizer.encode(UpperCamelCase , add_special_tokens=UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) snake_case__ = self.get_rust_tokenizer() snake_case__ = tokenizer.encode(UpperCamelCase ) snake_case__ = rust_tokenizer.encode(UpperCamelCase ) self.assertListEqual(UpperCamelCase , UpperCamelCase ) @slow def lowerCAmelCase_ ( self: str ) -> Any: snake_case__ = 'Hello World!' snake_case__ = [0, 3_53_78, 66_61, 38, 2] # xlmr = torch.hub.load('pytorch/fairseq', 'xlmr.base') # xlmr.large has same tokenizer # xlmr.eval() # xlmr.encode(symbols) self.assertListEqual(UpperCamelCase , self.big_tokenizer.encode(UpperCamelCase ) ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = ( 'This is a very long text with a lot of weird characters, such as: . , ~ ? ( ) " [ ] ! : - . Also we will' ' add words that should not exsist and be tokenized to <unk>, such as saoneuhaoesuth' ) snake_case__ = [ 0, 32_93, 83, 10, 45_52, 49_89, 79_86, 6_78, 10, 59_15, 1_11, 17_94_59, 12_48_50, 4, 60_44, 2_37, 12, 6, 5, 6, 4, 67_80, 7_05, 15, 13_88, 44, 3_78, 1_01_14, 7_11, 1_52, 20, 6, 5, 2_23_76, 6_42, 12_21, 1_51_90, 3_41_53, 4_50, 56_08, 9_59, 11_19, 5_77_02, 1_36, 1_86, 47, 10_98, 2_93_67, 47, # 4426, # What fairseq tokenizes from "<unk>": "_<" # 3678, # What fairseq tokenizes from "<unk>": "unk" # 2740, # What fairseq tokenizes from "<unk>": ">" 3, # What we tokenize from "<unk>": "<unk>" 6, # Residue from the tokenization: an extra sentencepiece underline 4, 60_44, 2_37, 62_84, 5_09_01, 5_28, 31, 90, 34, 9_27, 2, ] # xlmr = torch.hub.load('pytorch/fairseq', 'xlmr.base') # xlmr.large has same tokenizer # xlmr.eval() # xlmr.encode(symbols) self.assertListEqual(UpperCamelCase , self.big_tokenizer.encode(UpperCamelCase ) ) @slow def lowerCAmelCase_ ( self: Any ) -> int: # fmt: off snake_case__ = {'input_ids': [[0, 1_10_62, 8_27_72, 7, 15, 8_27_72, 5_38, 5_15_29, 2_37, 1_71_98, 12_90, 2_06, 9, 21_51_75, 13_14, 1_36, 1_71_98, 12_90, 2_06, 9, 5_63_59, 42, 12_20_09, 9, 1_64_66, 16, 8_73_44, 45_37, 9, 47_17, 7_83_81, 6, 15_99_58, 7, 15, 2_44_80, 6_18, 4, 5_27, 2_26_93, 54_28, 4, 27_77, 2_44_80, 98_74, 4, 4_35_23, 5_94, 4, 8_03, 1_83_92, 3_31_89, 18, 4, 4_35_23, 2_44_47, 1_23_99, 1_00, 2_49_55, 8_36_58, 96_26, 14_40_57, 15, 8_39, 2_23_35, 16, 1_36, 2_49_55, 8_36_58, 8_34_79, 15, 3_91_02, 7_24, 16, 6_78, 6_45, 27_89, 13_28, 45_89, 42, 12_20_09, 11_57_74, 23, 8_05, 13_28, 4_68_76, 7, 1_36, 5_38_94, 19_40, 4_22_27, 4_11_59, 1_77_21, 8_23, 4_25, 4, 2_75_12, 9_87_22, 2_06, 1_36, 55_31, 49_70, 9_19, 1_73_36, 5, 2], [0, 2_00_80, 6_18, 83, 8_27_75, 47, 4_79, 9, 15_17, 73, 5_38_94, 3_33, 8_05_81, 11_01_17, 1_88_11, 52_56, 12_95, 51, 15_25_26, 2_97, 79_86, 3_90, 12_44_16, 5_38, 3_54_31, 2_14, 98, 1_50_44, 2_57_37, 1_36, 71_08, 4_37_01, 23, 7_56, 13_53_55, 7, 5, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 5_81, 6_37_73, 11_94_55, 6, 14_77_97, 8_82_03, 7, 6_45, 70, 21, 32_85, 1_02_69, 5, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], 'attention_mask': [[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]} # noqa: E501 # fmt: on self.tokenizer_integration_test_util( expected_encoding=UpperCamelCase , model_name='xlm-roberta-base' , revision='d9d8a8ea5eb94b1c6654ae9249df7793cd2933d3' , )
307
import os import string import sys __UpperCamelCase : List[Any] = 1 << 8 __UpperCamelCase : Union[str, Any] = { """tab""": ord("""\t"""), """newline""": ord("""\r"""), """esc""": 27, """up""": 65 + ARROW_KEY_FLAG, """down""": 66 + ARROW_KEY_FLAG, """right""": 67 + ARROW_KEY_FLAG, """left""": 68 + ARROW_KEY_FLAG, """mod_int""": 91, """undefined""": sys.maxsize, """interrupt""": 3, """insert""": 50, """delete""": 51, """pg_up""": 53, """pg_down""": 54, } __UpperCamelCase : Optional[Any] = KEYMAP["""up"""] __UpperCamelCase : Tuple = KEYMAP["""left"""] if sys.platform == "win32": __UpperCamelCase : List[Any] = [] __UpperCamelCase : int = { b"""\xe0H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\x00H""": KEYMAP["""up"""] - ARROW_KEY_FLAG, b"""\xe0P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\x00P""": KEYMAP["""down"""] - ARROW_KEY_FLAG, b"""\xe0M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\x00M""": KEYMAP["""right"""] - ARROW_KEY_FLAG, b"""\xe0K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, b"""\x00K""": KEYMAP["""left"""] - ARROW_KEY_FLAG, } for i in range(10): __UpperCamelCase : List[str] = ord(str(i)) def a_ ( ) -> Optional[int]: """simple docstring""" if os.name == "nt": import msvcrt snake_case__ = 'mbcs' # Flush the keyboard buffer while msvcrt.kbhit(): msvcrt.getch() if len(_A ) == 0: # Read the keystroke snake_case__ = msvcrt.getch() # If it is a prefix char, get second part if ch in (b"\x00", b"\xe0"): snake_case__ = ch + msvcrt.getch() # Translate actual Win chars to bullet char types try: snake_case__ = chr(WIN_KEYMAP[cha] ) WIN_CH_BUFFER.append(chr(KEYMAP['mod_int'] ) ) WIN_CH_BUFFER.append(_A ) if ord(_A ) in ( KEYMAP["insert"] - 1 << 9, KEYMAP["delete"] - 1 << 9, KEYMAP["pg_up"] - 1 << 9, KEYMAP["pg_down"] - 1 << 9, ): WIN_CH_BUFFER.append(chr(126 ) ) snake_case__ = chr(KEYMAP['esc'] ) except KeyError: snake_case__ = cha[1] else: snake_case__ = ch.decode(_A ) else: snake_case__ = WIN_CH_BUFFER.pop(0 ) elif os.name == "posix": import termios import tty snake_case__ = sys.stdin.fileno() snake_case__ = termios.tcgetattr(_A ) try: tty.setraw(_A ) snake_case__ = sys.stdin.read(1 ) finally: termios.tcsetattr(_A , termios.TCSADRAIN , _A ) return ch def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = get_raw_chars() if ord(_A ) in [KEYMAP["interrupt"], KEYMAP["newline"]]: return char elif ord(_A ) == KEYMAP["esc"]: snake_case__ = get_raw_chars() if ord(_A ) == KEYMAP["mod_int"]: snake_case__ = get_raw_chars() if ord(_A ) >= KEYMAP["arrow_begin"] - ARROW_KEY_FLAG and ord(_A ) <= KEYMAP["arrow_end"] - ARROW_KEY_FLAG: return chr(ord(_A ) + ARROW_KEY_FLAG ) else: return KEYMAP["undefined"] else: return get_raw_chars() else: if char in string.printable: return char else: return KEYMAP["undefined"]
307
1
import torch from transformers import PreTrainedModel, XLMRobertaConfig, XLMRobertaModel class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "M-CLIP" def __init__( self: Tuple , UpperCamelCase: List[str]=10_24 , UpperCamelCase: Any=7_68 , **UpperCamelCase: Optional[Any] ) -> int: snake_case__ = transformerDimSize snake_case__ = imageDimSize super().__init__(**UpperCamelCase ) class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = MCLIPConfig def __init__( self: str , UpperCamelCase: List[Any] , *UpperCamelCase: Optional[Any] , **UpperCamelCase: Dict ) -> str: super().__init__(UpperCamelCase , *UpperCamelCase , **UpperCamelCase ) snake_case__ = XLMRobertaModel(UpperCamelCase ) snake_case__ = torch.nn.Linear( in_features=config.transformerDimensions , out_features=config.numDims ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: Tuple , UpperCamelCase: List[Any] ) -> int: snake_case__ = self.transformer(input_ids=UpperCamelCase , attention_mask=UpperCamelCase )[0] snake_case__ = (embs * attention_mask.unsqueeze(2 )).sum(dim=1 ) / attention_mask.sum(dim=1 )[:, None] return self.LinearTransformation(UpperCamelCase ), embs
307
from ...configuration_utils import PretrainedConfig from ...utils import logging __UpperCamelCase : int = logging.get_logger(__name__) __UpperCamelCase : List[Any] = { """tanreinama/GPTSAN-2.8B-spout_is_uniform""": ( """https://huggingface.co/tanreinama/GPTSAN-2.8B-spout_is_uniform/resolve/main/config.json""" ), } class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = "gptsan-japanese" _UpperCAmelCase = [ "past_key_values", ] _UpperCAmelCase = { "hidden_size": "d_model", "num_attention_heads": "num_heads", "num_hidden_layers": "num_layers", } def __init__( self: Optional[Any] , UpperCamelCase: List[str]=3_60_00 , UpperCamelCase: List[str]=12_80 , UpperCamelCase: List[Any]=10_24 , UpperCamelCase: Any=81_92 , UpperCamelCase: Dict=40_96 , UpperCamelCase: Optional[int]=1_28 , UpperCamelCase: Any=10 , UpperCamelCase: List[Any]=0 , UpperCamelCase: Dict=16 , UpperCamelCase: Tuple=16 , UpperCamelCase: Union[str, Any]=1_28 , UpperCamelCase: List[Any]=0.0 , UpperCamelCase: Union[str, Any]=1e-5 , UpperCamelCase: int=False , UpperCamelCase: Optional[int]=0.0 , UpperCamelCase: Dict="float32" , UpperCamelCase: Any=False , UpperCamelCase: Dict=False , UpperCamelCase: List[str]=False , UpperCamelCase: Union[str, Any]=0.002 , UpperCamelCase: int=False , UpperCamelCase: str=True , UpperCamelCase: Dict=3_59_98 , UpperCamelCase: Optional[Any]=3_59_95 , UpperCamelCase: Optional[Any]=3_59_99 , **UpperCamelCase: Optional[int] , ) -> Optional[int]: snake_case__ = vocab_size snake_case__ = max_position_embeddings snake_case__ = d_model snake_case__ = d_ff snake_case__ = d_ext snake_case__ = d_spout snake_case__ = num_switch_layers snake_case__ = num_ext_layers snake_case__ = num_switch_layers + num_ext_layers snake_case__ = num_heads snake_case__ = num_experts snake_case__ = expert_capacity snake_case__ = dropout_rate snake_case__ = layer_norm_epsilon snake_case__ = router_bias snake_case__ = router_jitter_noise snake_case__ = router_dtype snake_case__ = router_ignore_padding_tokens snake_case__ = output_hidden_states snake_case__ = output_attentions snake_case__ = initializer_factor snake_case__ = output_router_logits snake_case__ = use_cache super().__init__( separator_token_id=UpperCamelCase , pad_token_id=UpperCamelCase , eos_token_id=UpperCamelCase , **UpperCamelCase , )
307
1
import os def a_ ( ) -> Optional[Any]: """simple docstring""" snake_case__ = os.path.join(os.path.dirname(_A ) , 'num.txt' ) with open(_A ) as file_hand: return str(sum(int(_A ) for line in file_hand ) )[:10] if __name__ == "__main__": print(solution())
307
from math import sqrt import numpy as np from sympy import symbols # Coefficient # Speed of light (m/s) __UpperCamelCase : int = 299792458 # Symbols __UpperCamelCase , __UpperCamelCase , __UpperCamelCase , __UpperCamelCase : Optional[int] = symbols("""ct x y z""") def a_ ( _A ) -> float: """simple docstring""" if velocity > c: raise ValueError('Speed must not exceed light speed 299,792,458 [m/s]!' ) elif velocity < 1: # Usually the speed should be much higher than 1 (c order of magnitude) raise ValueError('Speed must be greater than or equal to 1!' ) return velocity / c def a_ ( _A ) -> float: """simple docstring""" return 1 / sqrt(1 - beta(_A ) ** 2 ) def a_ ( _A ) -> np.ndarray: """simple docstring""" return np.array( [ [gamma(_A ), -gamma(_A ) * beta(_A ), 0, 0], [-gamma(_A ) * beta(_A ), gamma(_A ), 0, 0], [0, 0, 1, 0], [0, 0, 0, 1], ] ) def a_ ( _A , _A = None ) -> np.ndarray: """simple docstring""" # Ensure event is not empty if event is None: snake_case__ = np.array([ct, x, y, z] ) # Symbolic four vector else: event[0] *= c # x0 is ct (speed of light * time) return transformation_matrix(_A ) @ event if __name__ == "__main__": import doctest doctest.testmod() # Example of symbolic vector: __UpperCamelCase : List[Any] = transform(29979245) print("""Example of four vector: """) print(f'''ct\' = {four_vector[0]}''') print(f'''x\' = {four_vector[1]}''') print(f'''y\' = {four_vector[2]}''') print(f'''z\' = {four_vector[3]}''') # Substitute symbols with numerical values __UpperCamelCase : List[Any] = {ct: c, x: 1, y: 1, z: 1} __UpperCamelCase : Tuple = [four_vector[i].subs(sub_dict) for i in range(4)] print(f'''\n{numerical_vector}''')
307
1
from random import shuffle import tensorflow as tf from numpy import array def a_ ( _A , _A ) -> Union[str, Any]: """simple docstring""" snake_case__ = int(_A ) assert noofclusters < len(_A ) # Find out the dimensionality snake_case__ = len(vectors[0] ) # Will help select random centroids from among the available vectors snake_case__ = list(range(len(_A ) ) ) shuffle(_A ) # GRAPH OF COMPUTATION # We initialize a new graph and set it as the default during each run # of this algorithm. This ensures that as this function is called # multiple times, the default graph doesn't keep getting crowded with # unused ops and Variables from previous function calls. snake_case__ = tf.Graph() with graph.as_default(): # SESSION OF COMPUTATION snake_case__ = tf.Session() ##CONSTRUCTING THE ELEMENTS OF COMPUTATION ##First lets ensure we have a Variable vector for each centroid, ##initialized to one of the vectors from the available data points snake_case__ = [ tf.Variable(vectors[vector_indices[i]] ) for i in range(_A ) ] ##These nodes will assign the centroid Variables the appropriate ##values snake_case__ = tf.placeholder('float64' , [dim] ) snake_case__ = [] for centroid in centroids: cent_assigns.append(tf.assign(_A , _A ) ) ##Variables for cluster assignments of individual vectors(initialized ##to 0 at first) snake_case__ = [tf.Variable(0 ) for i in range(len(_A ) )] ##These nodes will assign an assignment Variable the appropriate ##value snake_case__ = tf.placeholder('int32' ) snake_case__ = [] for assignment in assignments: cluster_assigns.append(tf.assign(_A , _A ) ) ##Now lets construct the node that will compute the mean # The placeholder for the input snake_case__ = tf.placeholder('float' , [None, dim] ) # The Node/op takes the input and computes a mean along the 0th # dimension, i.e. the list of input vectors snake_case__ = tf.reduce_mean(_A , 0 ) ##Node for computing Euclidean distances # Placeholders for input snake_case__ = tf.placeholder('float' , [dim] ) snake_case__ = tf.placeholder('float' , [dim] ) snake_case__ = tf.sqrt(tf.reduce_sum(tf.pow(tf.sub(_A , _A ) , 2 ) ) ) ##This node will figure out which cluster to assign a vector to, ##based on Euclidean distances of the vector from the centroids. # Placeholder for input snake_case__ = tf.placeholder('float' , [noofclusters] ) snake_case__ = tf.argmin(_A , 0 ) ##INITIALIZING STATE VARIABLES ##This will help initialization of all Variables defined with respect ##to the graph. The Variable-initializer should be defined after ##all the Variables have been constructed, so that each of them ##will be included in the initialization. snake_case__ = tf.initialize_all_variables() # Initialize all variables sess.run(_A ) ##CLUSTERING ITERATIONS # Now perform the Expectation-Maximization steps of K-Means clustering # iterations. To keep things simple, we will only do a set number of # iterations, instead of using a Stopping Criterion. snake_case__ = 100 for _ in range(_A ): ##EXPECTATION STEP ##Based on the centroid locations till last iteration, compute ##the _expected_ centroid assignments. # Iterate over each vector for vector_n in range(len(_A ) ): snake_case__ = vectors[vector_n] # Compute Euclidean distance between this vector and each # centroid. Remember that this list cannot be named #'centroid_distances', since that is the input to the # cluster assignment node. snake_case__ = [ sess.run(_A , feed_dict={va: vect, va: sess.run(_A )} ) for centroid in centroids ] # Now use the cluster assignment node, with the distances # as the input snake_case__ = sess.run( _A , feed_dict={centroid_distances: distances} ) # Now assign the value to the appropriate state variable sess.run( cluster_assigns[vector_n] , feed_dict={assignment_value: assignment} ) ##MAXIMIZATION STEP # Based on the expected state computed from the Expectation Step, # compute the locations of the centroids so as to maximize the # overall objective of minimizing within-cluster Sum-of-Squares for cluster_n in range(_A ): # Collect all the vectors assigned to this cluster snake_case__ = [ vectors[i] for i in range(len(_A ) ) if sess.run(assignments[i] ) == cluster_n ] # Compute new centroid location snake_case__ = sess.run( _A , feed_dict={mean_input: array(_A )} ) # Assign value to appropriate variable sess.run( cent_assigns[cluster_n] , feed_dict={centroid_value: new_location} ) # Return centroids and assignments snake_case__ = sess.run(_A ) snake_case__ = sess.run(_A ) return centroids, assignments
307
from typing import TYPE_CHECKING from ...utils import _LazyModule __UpperCamelCase : Any = {"""tokenization_byt5""": ["""ByT5Tokenizer"""]} if TYPE_CHECKING: from .tokenization_byta import ByTaTokenizer else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
from __future__ import annotations from typing import Any class __SCREAMING_SNAKE_CASE: def __init__( self: Dict , UpperCamelCase: int , UpperCamelCase: int , UpperCamelCase: float = 0 ) -> None: snake_case__ , snake_case__ = row, column snake_case__ = [[default_value for c in range(UpperCamelCase )] for r in range(UpperCamelCase )] def __str__( self: Tuple ) -> str: snake_case__ = F'''Matrix consist of {self.row} rows and {self.column} columns\n''' # Make string identifier snake_case__ = 0 for row_vector in self.array: for obj in row_vector: snake_case__ = max(UpperCamelCase , len(str(UpperCamelCase ) ) ) snake_case__ = F'''%{max_element_length}s''' # Make string and return def single_line(UpperCamelCase: list[float] ) -> str: nonlocal string_format_identifier snake_case__ = '[' line += ", ".join(string_format_identifier % (obj,) for obj in row_vector ) line += "]" return line s += "\n".join(single_line(UpperCamelCase ) for row_vector in self.array ) return s def __repr__( self: Dict ) -> str: return str(self ) def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: tuple[int, int] ) -> bool: if not (isinstance(UpperCamelCase , (list, tuple) ) and len(UpperCamelCase ) == 2): return False elif not (0 <= loc[0] < self.row and 0 <= loc[1] < self.column): return False else: return True def __getitem__( self: Union[str, Any] , UpperCamelCase: tuple[int, int] ) -> Any: assert self.validate_indicies(UpperCamelCase ) return self.array[loc[0]][loc[1]] def __setitem__( self: List[Any] , UpperCamelCase: tuple[int, int] , UpperCamelCase: float ) -> None: assert self.validate_indicies(UpperCamelCase ) snake_case__ = value def __add__( self: Dict , UpperCamelCase: Matrix ) -> Matrix: assert isinstance(UpperCamelCase , UpperCamelCase ) assert self.row == another.row and self.column == another.column # Add snake_case__ = Matrix(self.row , self.column ) for r in range(self.row ): for c in range(self.column ): snake_case__ = self[r, c] + another[r, c] return result def __neg__( self: Optional[int] ) -> Matrix: snake_case__ = Matrix(self.row , self.column ) for r in range(self.row ): for c in range(self.column ): snake_case__ = -self[r, c] return result def __sub__( self: Optional[int] , UpperCamelCase: Matrix ) -> Matrix: return self + (-another) def __mul__( self: Optional[Any] , UpperCamelCase: int | float | Matrix ) -> Matrix: if isinstance(UpperCamelCase , (int, float) ): # Scalar multiplication snake_case__ = Matrix(self.row , self.column ) for r in range(self.row ): for c in range(self.column ): snake_case__ = self[r, c] * another return result elif isinstance(UpperCamelCase , UpperCamelCase ): # Matrix multiplication assert self.column == another.row snake_case__ = Matrix(self.row , another.column ) for r in range(self.row ): for c in range(another.column ): for i in range(self.column ): result[r, c] += self[r, i] * another[i, c] return result else: snake_case__ = F'''Unsupported type given for another ({type(UpperCamelCase )})''' raise TypeError(UpperCamelCase ) def lowerCAmelCase_ ( self: str ) -> Matrix: snake_case__ = Matrix(self.column , self.row ) for r in range(self.row ): for c in range(self.column ): snake_case__ = self[r, c] return result def lowerCAmelCase_ ( self: str , UpperCamelCase: Matrix , UpperCamelCase: Matrix ) -> Any: assert isinstance(UpperCamelCase , UpperCamelCase ) and isinstance(UpperCamelCase , UpperCamelCase ) assert self.row == self.column == u.row == v.row # u, v should be column vector assert u.column == v.column == 1 # u, v should be column vector # Calculate snake_case__ = v.transpose() snake_case__ = (v_t * self * u)[0, 0] + 1 if numerator_factor == 0: return None # It's not invertable return self - ((self * u) * (v_t * self) * (1.0 / numerator_factor)) # Testing if __name__ == "__main__": def a_ ( ) -> None: """simple docstring""" # a^(-1) snake_case__ = Matrix(3 , 3 , 0 ) for i in range(3 ): snake_case__ = 1 print(f'''a^(-1) is {ainv}''' ) # u, v snake_case__ = Matrix(3 , 1 , 0 ) snake_case__ , snake_case__ , snake_case__ = 1, 2, -3 snake_case__ = Matrix(3 , 1 , 0 ) snake_case__ , snake_case__ , snake_case__ = 4, -2, 5 print(f'''u is {u}''' ) print(f'''v is {v}''' ) print(f'''uv^T is {u * v.transpose()}''' ) # Sherman Morrison print(f'''(a + uv^T)^(-1) is {ainv.sherman_morrison(_A , _A )}''' ) def a_ ( ) -> None: """simple docstring""" import doctest doctest.testmod() testa()
307
import os import re import warnings from shutil import copyfile from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import sentencepiece as spm from ...tokenization_utils import PreTrainedTokenizer if TYPE_CHECKING: from ...tokenization_utils_base import TextInput from ...utils import logging __UpperCamelCase : Union[str, Any] = logging.get_logger(__name__) __UpperCamelCase : int = {"""vocab_file""": """spiece.model"""} __UpperCamelCase : Any = { """vocab_file""": { """t5-small""": """https://huggingface.co/t5-small/resolve/main/spiece.model""", """t5-base""": """https://huggingface.co/t5-base/resolve/main/spiece.model""", """t5-large""": """https://huggingface.co/t5-large/resolve/main/spiece.model""", """t5-3b""": """https://huggingface.co/t5-3b/resolve/main/spiece.model""", """t5-11b""": """https://huggingface.co/t5-11b/resolve/main/spiece.model""", } } # TODO(PVP) - this should be removed in Transformers v5 __UpperCamelCase : Tuple = { """t5-small""": 512, """t5-base""": 512, """t5-large""": 512, """t5-3b""": 512, """t5-11b""": 512, } __UpperCamelCase : Optional[Any] = """▁""" class __SCREAMING_SNAKE_CASE( a_ ): _UpperCAmelCase = VOCAB_FILES_NAMES _UpperCAmelCase = PRETRAINED_VOCAB_FILES_MAP _UpperCAmelCase = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES _UpperCAmelCase = ["input_ids", "attention_mask"] def __init__( self: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any]="</s>" , UpperCamelCase: Tuple="<unk>" , UpperCamelCase: Optional[int]="<pad>" , UpperCamelCase: List[str]=1_00 , UpperCamelCase: Dict=None , UpperCamelCase: Optional[Dict[str, Any]] = None , UpperCamelCase: Tuple=True , **UpperCamelCase: Dict , ) -> None: # Add extra_ids to the special token list if extra_ids > 0 and additional_special_tokens is None: snake_case__ = [F'''<extra_id_{i}>''' for i in range(UpperCamelCase )] elif extra_ids > 0 and additional_special_tokens is not None: # Check that we have the right number of extra_id special tokens snake_case__ = len(set(filter(lambda UpperCamelCase : bool('extra_id' in str(UpperCamelCase ) ) , UpperCamelCase ) ) ) if extra_tokens != extra_ids: raise ValueError( F'''Both extra_ids ({extra_ids}) and additional_special_tokens ({additional_special_tokens}) are''' ' provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids' ' tokens' ) if legacy: logger.warning_once( F'''You are using the legacy behaviour of the {self.__class__}. This means that tokens that come after special tokens will not be properly handled. We recommend you to''' ' read the related pull request available at https://github.com/huggingface/transformers/pull/24565' ) snake_case__ = legacy snake_case__ = {} if sp_model_kwargs is None else sp_model_kwargs super().__init__( eos_token=UpperCamelCase , unk_token=UpperCamelCase , pad_token=UpperCamelCase , extra_ids=UpperCamelCase , additional_special_tokens=UpperCamelCase , sp_model_kwargs=self.sp_model_kwargs , legacy=UpperCamelCase , **UpperCamelCase , ) snake_case__ = vocab_file snake_case__ = extra_ids snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(UpperCamelCase ) @staticmethod def lowerCAmelCase_ ( UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: List[Any] ) -> Any: if pretrained_model_name_or_path in TaTokenizer.max_model_input_sizes: snake_case__ = TaTokenizer.max_model_input_sizes[pretrained_model_name_or_path] if init_max_model_length is not None and init_max_model_length != max_model_length: return init_max_model_length elif init_max_model_length is None: warnings.warn( 'This tokenizer was incorrectly instantiated with a model max length of' F''' {deprecated_max_model_length} which will be corrected in Transformers v5.\nFor now, this''' ' behavior is kept to avoid breaking backwards compatibility when padding/encoding with' ' `truncation is True`.\n- Be aware that you SHOULD NOT rely on' F''' {pretrained_model_name_or_path} automatically truncating your input to''' F''' {deprecated_max_model_length} when padding/encoding.\n- If you want to encode/pad to sequences''' F''' longer than {deprecated_max_model_length} you can either instantiate this tokenizer with''' ' `model_max_length` or pass `max_length` when encoding/padding.\n- To avoid this warning, please' ' instantiate this tokenizer with `model_max_length` set to your preferred value.' , UpperCamelCase , ) return max_model_length @property def lowerCAmelCase_ ( self: Tuple ) -> List[str]: return self.sp_model.get_piece_size() + self._extra_ids def lowerCAmelCase_ ( self: Union[str, Any] ) -> Any: snake_case__ = {self.convert_ids_to_tokens(UpperCamelCase ): i for i in range(self.vocab_size )} vocab.update(self.added_tokens_encoder ) return vocab def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None , UpperCamelCase: bool = False ) -> List[int]: if already_has_special_tokens: return super().get_special_tokens_mask( token_ids_a=UpperCamelCase , token_ids_a=UpperCamelCase , already_has_special_tokens=UpperCamelCase ) # normal case: some special tokens if token_ids_a is None: return ([0] * len(UpperCamelCase )) + [1] return ([0] * len(UpperCamelCase )) + [1] + ([0] * len(UpperCamelCase )) + [1] def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: return list( set(filter(lambda UpperCamelCase : bool(re.search(R'<extra_id_\d+>' , UpperCamelCase ) ) is not None , self.additional_special_tokens ) ) ) def lowerCAmelCase_ ( self: Optional[Any] ) -> Tuple: return [self._convert_token_to_id(UpperCamelCase ) for token in self.get_sentinel_tokens()] def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: List[int] ) -> List[int]: if len(UpperCamelCase ) > 0 and token_ids[-1] == self.eos_token_id: warnings.warn( F'''This sequence already has {self.eos_token}. In future versions this behavior may lead to duplicated''' ' eos tokens being added.' ) return token_ids else: return token_ids + [self.eos_token_id] def lowerCAmelCase_ ( self: str , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = [self.eos_token_id] if token_ids_a is None: return len(token_ids_a + eos ) * [0] return len(token_ids_a + eos + token_ids_a + eos ) * [0] def lowerCAmelCase_ ( self: Dict , UpperCamelCase: List[int] , UpperCamelCase: Optional[List[int]] = None ) -> List[int]: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) if token_ids_a is None: return token_ids_a else: snake_case__ = self._add_eos_if_not_present(UpperCamelCase ) return token_ids_a + token_ids_a def __getstate__( self: Union[str, Any] ) -> List[str]: snake_case__ = self.__dict__.copy() snake_case__ = None return state def __setstate__( self: Optional[int] , UpperCamelCase: int ) -> List[str]: snake_case__ = d # for backward compatibility if not hasattr(self , 'sp_model_kwargs' ): snake_case__ = {} snake_case__ = spm.SentencePieceProcessor(**self.sp_model_kwargs ) self.sp_model.Load(self.vocab_file ) def lowerCAmelCase_ ( self: str , UpperCamelCase: "TextInput" , **UpperCamelCase: Dict ) -> List[str]: # Replace the SPIECE_UNDERLINE with a space to make sure SPIECE_UNDERLINE is only used at # the beginning of the text if not self.legacy: snake_case__ = SPIECE_UNDERLINE + text.replace(UpperCamelCase , ' ' ) return super().tokenize(UpperCamelCase , **UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , **UpperCamelCase: str ) -> str: if not self.legacy: snake_case__ = text.startswith(UpperCamelCase ) if is_first: snake_case__ = text[1:] snake_case__ = self.sp_model.encode(UpperCamelCase , out_type=UpperCamelCase ) if not self.legacy and not is_first and not text.startswith(' ' ) and tokens[0].startswith(UpperCamelCase ): snake_case__ = ([tokens[0][1:]] if len(tokens[0] ) > 1 else []) + tokens[1:] return tokens def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[int] ) -> Dict: if token.startswith('<extra_id_' ): snake_case__ = re.match(R'<extra_id_(\d+)>' , UpperCamelCase ) snake_case__ = int(match.group(1 ) ) return self.vocab_size - num - 1 return self.sp_model.piece_to_id(UpperCamelCase ) def lowerCAmelCase_ ( self: Dict , UpperCamelCase: str ) -> Tuple: if index < self.sp_model.get_piece_size(): snake_case__ = self.sp_model.IdToPiece(UpperCamelCase ) else: snake_case__ = F'''<extra_id_{self.vocab_size - 1 - index}>''' return token def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: Any ) -> Dict: snake_case__ = [] snake_case__ = '' snake_case__ = False for token in tokens: # make sure that special tokens are not decoded using sentencepiece model if token in self.all_special_tokens: if not prev_is_special: out_string += " " out_string += self.sp_model.decode(UpperCamelCase ) + token snake_case__ = True snake_case__ = [] else: current_sub_tokens.append(UpperCamelCase ) snake_case__ = False out_string += self.sp_model.decode(UpperCamelCase ) return out_string.strip() def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: str , UpperCamelCase: Optional[str] = None ) -> Tuple[str]: if not os.path.isdir(UpperCamelCase ): logger.error(F'''Vocabulary path ({save_directory}) should be a directory''' ) return snake_case__ = os.path.join( UpperCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(UpperCamelCase ) and os.path.isfile(self.vocab_file ): copyfile(self.vocab_file , UpperCamelCase ) elif not os.path.isfile(self.vocab_file ): with open(UpperCamelCase , 'wb' ) as fi: snake_case__ = self.sp_model.serialized_model_proto() fi.write(UpperCamelCase ) return (out_vocab_file,)
307
1
from typing import TYPE_CHECKING from ...utils import _LazyModule __UpperCamelCase : Any = {"""tokenization_byt5""": ["""ByT5Tokenizer"""]} if TYPE_CHECKING: from .tokenization_byta import ByTaTokenizer else: import sys __UpperCamelCase : List[Any] = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
import unittest from parameterized import parameterized from transformers import LlamaConfig, is_torch_available, set_seed from transformers.testing_utils import require_torch, slow, torch_device from ...generation.test_utils import GenerationTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, ids_tensor, random_attention_mask from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import LlamaForCausalLM, LlamaForSequenceClassification, LlamaModel, LlamaTokenizer class __SCREAMING_SNAKE_CASE: def __init__( self: int , UpperCamelCase: List[str] , UpperCamelCase: str=13 , UpperCamelCase: int=7 , UpperCamelCase: Any=True , UpperCamelCase: Dict=True , UpperCamelCase: Dict=False , UpperCamelCase: Optional[int]=True , UpperCamelCase: Dict=99 , UpperCamelCase: Dict=32 , UpperCamelCase: Optional[Any]=5 , UpperCamelCase: Union[str, Any]=4 , UpperCamelCase: List[str]=37 , UpperCamelCase: List[str]="gelu" , UpperCamelCase: Optional[Any]=0.1 , UpperCamelCase: Union[str, Any]=0.1 , UpperCamelCase: Union[str, Any]=5_12 , UpperCamelCase: str=16 , UpperCamelCase: int=2 , UpperCamelCase: Optional[int]=0.02 , UpperCamelCase: Union[str, Any]=3 , UpperCamelCase: Dict=4 , UpperCamelCase: List[str]=None , ) -> List[str]: snake_case__ = parent snake_case__ = batch_size snake_case__ = seq_length snake_case__ = is_training snake_case__ = use_input_mask snake_case__ = use_token_type_ids snake_case__ = use_labels snake_case__ = vocab_size snake_case__ = hidden_size snake_case__ = num_hidden_layers snake_case__ = num_attention_heads snake_case__ = intermediate_size snake_case__ = hidden_act snake_case__ = hidden_dropout_prob snake_case__ = attention_probs_dropout_prob snake_case__ = max_position_embeddings snake_case__ = type_vocab_size snake_case__ = type_sequence_label_size snake_case__ = initializer_range snake_case__ = num_labels snake_case__ = num_choices snake_case__ = scope def lowerCAmelCase_ ( self: List[str] ) -> Dict: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) snake_case__ = None if self.use_input_mask: snake_case__ = random_attention_mask([self.batch_size, self.seq_length] ) snake_case__ = None if self.use_token_type_ids: snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) snake_case__ = None snake_case__ = None snake_case__ = None if self.use_labels: snake_case__ = ids_tensor([self.batch_size] , self.type_sequence_label_size ) snake_case__ = ids_tensor([self.batch_size, self.seq_length] , self.num_labels ) snake_case__ = ids_tensor([self.batch_size] , self.num_choices ) snake_case__ = self.get_config() return config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: return LlamaConfig( 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=UpperCamelCase , initializer_range=self.initializer_range , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: Dict , UpperCamelCase: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: str ) -> Dict: snake_case__ = LlamaModel(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = model(UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[Any] , ) -> str: snake_case__ = True snake_case__ = LlamaModel(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , ) snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, self.seq_length, self.hidden_size) ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Any , UpperCamelCase: List[str] , UpperCamelCase: Union[str, Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Any , UpperCamelCase: int , UpperCamelCase: Optional[Any] , ) -> Any: snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.seq_length, self.vocab_size) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Dict , UpperCamelCase: Optional[Any] , UpperCamelCase: Optional[Any] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: List[str] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: List[str] , ) -> Union[str, Any]: snake_case__ = True snake_case__ = True snake_case__ = LlamaForCausalLM(config=UpperCamelCase ) model.to(UpperCamelCase ) model.eval() # first forward pass snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , use_cache=UpperCamelCase , ) snake_case__ = outputs.past_key_values # create hypothetical multiple next token and extent to next_input_ids snake_case__ = ids_tensor((self.batch_size, 3) , config.vocab_size ) snake_case__ = ids_tensor((self.batch_size, 3) , vocab_size=2 ) # append to next input_ids and snake_case__ = torch.cat([input_ids, next_tokens] , dim=-1 ) snake_case__ = torch.cat([input_mask, next_mask] , dim=-1 ) snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] snake_case__ = model( UpperCamelCase , attention_mask=UpperCamelCase , encoder_hidden_states=UpperCamelCase , encoder_attention_mask=UpperCamelCase , past_key_values=UpperCamelCase , output_hidden_states=UpperCamelCase , )['hidden_states'][0] # select random slice snake_case__ = ids_tensor((1,) , output_from_past.shape[-1] ).item() snake_case__ = output_from_no_past[:, -3:, random_slice_idx].detach() snake_case__ = output_from_past[:, :, random_slice_idx].detach() self.parent.assertTrue(output_from_past_slice.shape[1] == next_tokens.shape[1] ) # test that outputs are equal for slice self.parent.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-3 ) ) def lowerCAmelCase_ ( self: int ) -> Dict: snake_case__ = self.prepare_config_and_inputs() ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = config_and_inputs snake_case__ = {'input_ids': input_ids, 'attention_mask': input_mask} return config, inputs_dict @require_torch class __SCREAMING_SNAKE_CASE( a_ , a_ , a_ , unittest.TestCase ): _UpperCAmelCase = (LlamaModel, LlamaForCausalLM, LlamaForSequenceClassification) if is_torch_available() else () _UpperCAmelCase = (LlamaForCausalLM,) if is_torch_available() else () _UpperCAmelCase = ( { "feature-extraction": LlamaModel, "text-classification": LlamaForSequenceClassification, "text-generation": LlamaForCausalLM, "zero-shot": LlamaForSequenceClassification, } if is_torch_available() else {} ) _UpperCAmelCase = False _UpperCAmelCase = False def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = LlamaModelTester(self ) snake_case__ = ConfigTester(self , config_class=UpperCamelCase , hidden_size=37 ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: self.config_tester.run_common_tests() def lowerCAmelCase_ ( self: int ) -> int: snake_case__ = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[Any] ) -> str: snake_case__ = self.model_tester.prepare_config_and_inputs() for type in ["absolute", "relative_key", "relative_key_query"]: snake_case__ = type self.model_tester.create_and_check_model(*UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'single_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor([self.model_tester.batch_size] , self.model_tester.type_sequence_label_size ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) def lowerCAmelCase_ ( self: Dict ) -> int: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = 3 snake_case__ = 'multi_label_classification' snake_case__ = input_dict['input_ids'] snake_case__ = input_ids.ne(1 ).to(UpperCamelCase ) snake_case__ = ids_tensor( [self.model_tester.batch_size, config.num_labels] , self.model_tester.type_sequence_label_size ).to(torch.float ) snake_case__ = LlamaForSequenceClassification(UpperCamelCase ) model.to(UpperCamelCase ) model.eval() snake_case__ = model(UpperCamelCase , attention_mask=UpperCamelCase , labels=UpperCamelCase ) self.assertEqual(result.logits.shape , (self.model_tester.batch_size, self.model_tester.num_labels) ) @unittest.skip('LLaMA buffers include complex numbers, which breaks this test' ) def lowerCAmelCase_ ( self: Dict ) -> Any: pass @parameterized.expand([('linear',), ('dynamic',)] ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: Optional[Any] ) -> List[str]: snake_case__ , snake_case__ = self.model_tester.prepare_config_and_inputs_for_common() snake_case__ = ids_tensor([1, 10] , config.vocab_size ) snake_case__ = ids_tensor([1, int(config.max_position_embeddings * 1.5 )] , config.vocab_size ) set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = LlamaModel(UpperCamelCase ) original_model.to(UpperCamelCase ) original_model.eval() snake_case__ = original_model(UpperCamelCase ).last_hidden_state snake_case__ = original_model(UpperCamelCase ).last_hidden_state set_seed(42 ) # Fixed seed at init time so the two models get the same random weights snake_case__ = {'type': scaling_type, 'factor': 10.0} snake_case__ = LlamaModel(UpperCamelCase ) scaled_model.to(UpperCamelCase ) scaled_model.eval() snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state snake_case__ = scaled_model(UpperCamelCase ).last_hidden_state # Dynamic scaling does not change the RoPE embeddings until it receives an input longer than the original # maximum sequence length, so the outputs for the short input should match. if scaling_type == "dynamic": self.assertTrue(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) else: self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) # The output should be different for long inputs self.assertFalse(torch.allclose(UpperCamelCase , UpperCamelCase , atol=1e-5 ) ) @require_torch class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> str: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor([input_ids] ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-6.6_550, -4.1_227, -4.9_859, -3.2_406, 0.8_262, -3.0_033, 1.2_964, -3.3_699]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-12.8_281, -7.4_453, -0.4_639, -8.0_625, -7.2_500, -8.0_000, -6.4_883, -7.7_695, -7.8_438, -7.0_312, -6.2_188, -7.1_328, -1.8_496, 1.9_961, -8.6_250, -6.7_227, -12.8_281, -6.9_492, -7.0_742, -7.7_852, -7.5_820, -7.9_062, -6.9_375, -7.9_805, -8.3_438, -8.1_562, -8.0_469, -7.6_250, -7.7_422, -7.3_398,] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: Union[str, Any] ) -> Optional[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-2.0_622, -1.2_794, -1.1_638, -0.9_788, -1.4_603, -1.0_238, -1.7_893, -1.4_411]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-8.1_406, -8.0_547, 2.7_461, -1.2_344, -0.1_448, -1.8_262, -1.0_020, -1.8_154, -1.6_895, -1.8_516, -2.3_574, -0.9_277, 3.7_598, 6.5_742, -1.2_998, -0.1_177, -8.1_406, -2.9_688, -2.9_199, -3.1_699, -3.5_254, -2.3_555, -2.7_988, -3.4_141, -2.8_262, -4.5_195, -3.3_379, -3.3_164, -2.7_832, -3.0_273] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Logits are not exactly the same, once we fix the instabalities somehow, will update!' ) @slow def lowerCAmelCase_ ( self: int ) -> List[Any]: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-13b-chat-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) # Expected mean on dim = -1 snake_case__ = torch.tensor([[-0.8_562, -1.8_520, -0.7_551, -0.4_162, -1.5_161, -1.2_038, -2.4_823, -2.3_254]] ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # slicing logits[0, 0, 0:30] # fmt: off snake_case__ = torch.tensor([-2.2_227, 4.8_828, 0.9_023, -0.4_578, -0.7_871, -0.1_033, -0.6_221, -0.5_786, -0.7_803, -1.0_674, -1.2_920, -0.1_570, 0.8_008, 2.0_723, -0.9_497, 0.2_771, -2.2_227, -0.7_612, -1.4_346, -1.2_061, -1.6_426, -0.3_000, -0.7_139, -1.1_934, -1.8_691, -1.6_973, -1.5_947, -1.2_705, -0.3_523, -0.5_513] ) # fmt: on torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) @unittest.skip( 'Logits are not exactly the same, once we fix the instabalities somehow, will update! Also it is gonna be a `too_slow` test' ) @slow def lowerCAmelCase_ ( self: List[str] ) -> Tuple: snake_case__ = [1, 3_06, 46_58, 2_78, 65_93, 3_10, 28_34, 3_38] snake_case__ = LlamaForCausalLM.from_pretrained('meta-llama/Llama-2-70b-hf' , device_map='auto' ) snake_case__ = model(torch.tensor(UpperCamelCase ) ) snake_case__ = torch.tensor( [[-4.2_327, -3.3_360, -4.6_665, -4.7_631, -1.8_180, -3.4_170, -1.4_211, -3.1_810]] , dtype=torch.floataa ) torch.testing.assert_close(out.mean(-1 ) , UpperCamelCase , atol=1e-2 , rtol=1e-2 ) # fmt: off snake_case__ = torch.tensor([-9.4_922, -3.9_551, 1.7_998, -5.6_758, -5.1_055, -5.8_984, -4.8_320, -6.8_086, -6.5_391, -5.6_172, -5.5_820, -5.5_352, 1.7_881, 3.6_289, -6.5_117, -3.4_785, -9.5_000, -6.0_352, -6.8_125, -6.0_195, -6.6_836, -5.4_727, -6.2_812, -6.0_391, -7.3_398, -7.4_297, -7.4_844, -6.5_820, -5.8_789, -5.5_312] ) # fmt: on torch.testing.assert_close(out[0, 0, :30] , UpperCamelCase , atol=1e-5 , rtol=1e-5 ) @unittest.skip('Model is curently gated' ) @slow def lowerCAmelCase_ ( self: Tuple ) -> Optional[int]: snake_case__ = 'Simply put, the theory of relativity states that 1) the laws of physics are the same everywhere in the universe and 2) the passage of time and the length of objects can vary depending on the observer\'s frame of reference.\n\nThe first part of the theory, that the laws of physics are the same everywhere, is known as the "princi' snake_case__ = 'Simply put, the theory of relativity states that ' snake_case__ = LlamaTokenizer.from_pretrained('meta-llama/Llama-2-13b-chat-hf' ) snake_case__ = tokenizer.encode(UpperCamelCase , return_tensors='pt' ) snake_case__ = LlamaForCausalLM.from_pretrained( 'meta-llama/Llama-2-13b-chat-hf' , device_map='sequential' , use_safetensors=UpperCamelCase ) # greedy generation outputs snake_case__ = model.generate(UpperCamelCase , max_new_tokens=64 , top_p=UpperCamelCase , temperature=1 , do_sample=UpperCamelCase ) snake_case__ = tokenizer.decode(generated_ids[0] , skip_special_tokens=UpperCamelCase ) self.assertEqual(UpperCamelCase , UpperCamelCase )
307
1
def a_ ( _A = 10 , _A = 22 ) -> int: """simple docstring""" snake_case__ = range(1 , _A ) snake_case__ = range(1 , _A ) return sum( 1 for power in powers for base in bases if len(str(base**power ) ) == power ) if __name__ == "__main__": print(f'''{solution(10, 22) = }''')
307
from math import isclose, sqrt def a_ ( _A , _A , _A ) -> tuple[float, float, float]: """simple docstring""" snake_case__ = point_y / 4 / point_x snake_case__ = 2 * normal_gradient / (1 + normal_gradient * normal_gradient) snake_case__ = (1 - normal_gradient * normal_gradient) / ( 1 + normal_gradient * normal_gradient ) snake_case__ = (sa - ca * incoming_gradient) / (ca + sa * incoming_gradient) # to find the next point, solve the simultaeneous equations: # y^2 + 4x^2 = 100 # y - b = m * (x - a) # ==> A x^2 + B x + C = 0 snake_case__ = outgoing_gradient**2 + 4 snake_case__ = 2 * outgoing_gradient * (point_y - outgoing_gradient * point_x) snake_case__ = (point_y - outgoing_gradient * point_x) ** 2 - 100 snake_case__ = ( -linear_term - sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) snake_case__ = ( -linear_term + sqrt(linear_term**2 - 4 * quadratic_term * constant_term ) ) / (2 * quadratic_term) # two solutions, one of which is our input point snake_case__ = x_minus if isclose(_A , _A ) else x_plus snake_case__ = point_y + outgoing_gradient * (next_x - point_x) return next_x, next_y, outgoing_gradient def a_ ( _A = 1.4 , _A = -9.6 ) -> int: """simple docstring""" snake_case__ = 0 snake_case__ = first_x_coord snake_case__ = first_y_coord snake_case__ = (10.1 - point_y) / (0.0 - point_x) while not (-0.01 <= point_x <= 0.01 and point_y > 0): snake_case__ , snake_case__ , snake_case__ = next_point(_A , _A , _A ) num_reflections += 1 return num_reflections if __name__ == "__main__": print(f'''{solution() = }''')
307
1
from collections.abc import Iterable from typing import Generic, TypeVar __UpperCamelCase : Any = TypeVar("""_T""") class __SCREAMING_SNAKE_CASE( Generic[_T] ): def __init__( self: Any , UpperCamelCase: Iterable[_T] | None = None ) -> None: snake_case__ = list(iterable or [] ) snake_case__ = [] def __len__( self: Optional[Any] ) -> int: return len(self._stacka ) + len(self._stacka ) def __repr__( self: Union[str, Any] ) -> str: return F'''Queue({tuple(self._stacka[::-1] + self._stacka )})''' def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: _T ) -> None: self._stacka.append(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] ) -> _T: snake_case__ = self._stacka.pop snake_case__ = self._stacka.append if not self._stacka: while self._stacka: stacka_append(stacka_pop() ) if not self._stacka: raise IndexError('Queue is empty' ) return self._stacka.pop() if __name__ == "__main__": from doctest import testmod testmod()
307
# Lint as: python3 import sys from collections.abc import Mapping from typing import TYPE_CHECKING import numpy as np import pyarrow as pa from .. import config from ..utils.py_utils import map_nested from .formatting import TensorFormatter if TYPE_CHECKING: import torch class __SCREAMING_SNAKE_CASE( TensorFormatter[Mapping, "torch.Tensor", Mapping] ): def __init__( self: Any , UpperCamelCase: Optional[int]=None , **UpperCamelCase: Union[str, Any] ) -> int: super().__init__(features=UpperCamelCase ) snake_case__ = torch_tensor_kwargs import torch # noqa import torch at initialization def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any ) -> List[str]: import torch if isinstance(UpperCamelCase , UpperCamelCase ) and column: if all( isinstance(UpperCamelCase , torch.Tensor ) and x.shape == column[0].shape and x.dtype == column[0].dtype for x in column ): return torch.stack(UpperCamelCase ) return column def lowerCAmelCase_ ( self: str , UpperCamelCase: Dict ) -> Union[str, Any]: import torch if isinstance(UpperCamelCase , (str, bytes, type(UpperCamelCase )) ): return value elif isinstance(UpperCamelCase , (np.character, np.ndarray) ) and np.issubdtype(value.dtype , np.character ): return value.tolist() snake_case__ = {} if isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.integer ): snake_case__ = {'dtype': torch.intaa} elif isinstance(UpperCamelCase , (np.number, np.ndarray) ) and np.issubdtype(value.dtype , np.floating ): snake_case__ = {'dtype': torch.floataa} elif config.PIL_AVAILABLE and "PIL" in sys.modules: import PIL.Image if isinstance(UpperCamelCase , PIL.Image.Image ): snake_case__ = np.asarray(UpperCamelCase ) return torch.tensor(UpperCamelCase , **{**default_dtype, **self.torch_tensor_kwargs} ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: str ) -> Any: import torch # support for torch, tf, jax etc. if hasattr(UpperCamelCase , '__array__' ) and not isinstance(UpperCamelCase , torch.Tensor ): snake_case__ = data_struct.__array__() # support for nested types like struct of list of struct if isinstance(UpperCamelCase , np.ndarray ): if data_struct.dtype == object: # torch tensors cannot be instantied from an array of objects return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) elif isinstance(UpperCamelCase , (list, tuple) ): return self._consolidate([self.recursive_tensorize(UpperCamelCase ) for substruct in data_struct] ) return self._tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: dict ) -> List[str]: return map_nested(self._recursive_tensorize , UpperCamelCase , map_list=UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_row(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_row(UpperCamelCase ) return self.recursive_tensorize(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: pa.Table ) -> "torch.Tensor": snake_case__ = self.numpy_arrow_extractor().extract_column(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_column(UpperCamelCase , pa_table.column_names[0] ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) snake_case__ = self._consolidate(UpperCamelCase ) return column def lowerCAmelCase_ ( self: Union[str, Any] , UpperCamelCase: pa.Table ) -> Mapping: snake_case__ = self.numpy_arrow_extractor().extract_batch(UpperCamelCase ) snake_case__ = self.python_features_decoder.decode_batch(UpperCamelCase ) snake_case__ = self.recursive_tensorize(UpperCamelCase ) for column_name in batch: snake_case__ = self._consolidate(batch[column_name] ) return batch
307
1
from unittest.mock import patch import pyspark from datasets.packaged_modules.spark.spark import ( Spark, SparkExamplesIterable, _generate_iterable_examples, ) from ..utils import ( require_dill_gt_0_3_2, require_not_windows, ) def a_ ( _A , _A ) -> List[str]: """simple docstring""" snake_case__ = [] for part_id in partition_order: snake_case__ = df.where(f'''SPARK_PARTITION_ID() = {part_id}''' ).collect() for row_idx, row in enumerate(_A ): expected_row_ids_and_row_dicts.append((f'''{part_id}_{row_idx}''', row.asDict()) ) return expected_row_ids_and_row_dicts @require_not_windows @require_dill_gt_0_3_2 def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = pyspark.sql.SparkSession.builder.master('local[*]' ).appName('pyspark' ).getOrCreate() snake_case__ = spark.range(100 ).repartition(1 ) snake_case__ = Spark(_A ) # The id ints will be converted to Pyarrow int64s, so each row will be 8 bytes. Setting a max_shard_size of 16 means # that each partition can hold 2 rows. spark_builder._repartition_df_if_needed(max_shard_size=16 ) # Given that the dataframe has 100 rows and each partition has 2 rows, we expect 50 partitions. assert spark_builder.df.rdd.getNumPartitions() == 50 @require_not_windows @require_dill_gt_0_3_2 def a_ ( ) -> str: """simple docstring""" snake_case__ = pyspark.sql.SparkSession.builder.master('local[*]' ).appName('pyspark' ).getOrCreate() snake_case__ = spark.range(10 ).repartition(2 ) snake_case__ = [1, 0] snake_case__ = _generate_iterable_examples(_A , _A ) # Reverse the partitions. snake_case__ = _get_expected_row_ids_and_row_dicts_for_partition_order(_A , _A ) for i, (row_id, row_dict) in enumerate(generate_fn() ): snake_case__ , snake_case__ = expected_row_ids_and_row_dicts[i] assert row_id == expected_row_id assert row_dict == expected_row_dict @require_not_windows @require_dill_gt_0_3_2 def a_ ( ) -> Tuple: """simple docstring""" snake_case__ = pyspark.sql.SparkSession.builder.master('local[*]' ).appName('pyspark' ).getOrCreate() snake_case__ = spark.range(10 ).repartition(1 ) snake_case__ = SparkExamplesIterable(_A ) assert it.n_shards == 1 for i, (row_id, row_dict) in enumerate(_A ): assert row_id == f'''0_{i}''' assert row_dict == {"id": i} @require_not_windows @require_dill_gt_0_3_2 def a_ ( ) -> Any: """simple docstring""" snake_case__ = pyspark.sql.SparkSession.builder.master('local[*]' ).appName('pyspark' ).getOrCreate() snake_case__ = spark.range(30 ).repartition(3 ) # Mock the generator so that shuffle reverses the partition indices. with patch('numpy.random.Generator' ) as generator_mock: snake_case__ = lambda _A : x.reverse() snake_case__ = _get_expected_row_ids_and_row_dicts_for_partition_order(_A , [2, 1, 0] ) snake_case__ = SparkExamplesIterable(_A ).shuffle_data_sources(_A ) assert shuffled_it.n_shards == 3 for i, (row_id, row_dict) in enumerate(_A ): snake_case__ , snake_case__ = expected_row_ids_and_row_dicts[i] assert row_id == expected_row_id assert row_dict == expected_row_dict @require_not_windows @require_dill_gt_0_3_2 def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = pyspark.sql.SparkSession.builder.master('local[*]' ).appName('pyspark' ).getOrCreate() snake_case__ = spark.range(20 ).repartition(4 ) # Partitions 0 and 2 snake_case__ = SparkExamplesIterable(_A ).shard_data_sources(worker_id=0 , num_workers=2 ) assert shard_it_a.n_shards == 2 snake_case__ = _get_expected_row_ids_and_row_dicts_for_partition_order(_A , [0, 2] ) for i, (row_id, row_dict) in enumerate(_A ): snake_case__ , snake_case__ = expected_row_ids_and_row_dicts_a[i] assert row_id == expected_row_id assert row_dict == expected_row_dict # Partitions 1 and 3 snake_case__ = SparkExamplesIterable(_A ).shard_data_sources(worker_id=1 , num_workers=2 ) assert shard_it_a.n_shards == 2 snake_case__ = _get_expected_row_ids_and_row_dicts_for_partition_order(_A , [1, 3] ) for i, (row_id, row_dict) in enumerate(_A ): snake_case__ , snake_case__ = expected_row_ids_and_row_dicts_a[i] assert row_id == expected_row_id assert row_dict == expected_row_dict @require_not_windows @require_dill_gt_0_3_2 def a_ ( ) -> Any: """simple docstring""" snake_case__ = pyspark.sql.SparkSession.builder.master('local[*]' ).appName('pyspark' ).getOrCreate() snake_case__ = spark.range(100 ).repartition(1 ) snake_case__ = Spark(_A ) # Choose a small max_shard_size for maximum partitioning. spark_builder._repartition_df_if_needed(max_shard_size=1 ) # The new number of partitions should not be greater than the number of rows. assert spark_builder.df.rdd.getNumPartitions() == 100
307
import doctest from collections import deque import numpy as np class __SCREAMING_SNAKE_CASE: def __init__( self: Dict ) -> None: snake_case__ = [2, 1, 2, -1] snake_case__ = [1, 2, 3, 4] def lowerCAmelCase_ ( self: List[str] ) -> list[float]: snake_case__ = len(self.first_signal ) snake_case__ = len(self.second_signal ) snake_case__ = max(UpperCamelCase , UpperCamelCase ) # create a zero matrix of max_length x max_length snake_case__ = [[0] * max_length for i in range(UpperCamelCase )] # fills the smaller signal with zeros to make both signals of same length if length_first_signal < length_second_signal: self.first_signal += [0] * (max_length - length_first_signal) elif length_first_signal > length_second_signal: self.second_signal += [0] * (max_length - length_second_signal) for i in range(UpperCamelCase ): snake_case__ = deque(self.second_signal ) rotated_signal.rotate(UpperCamelCase ) for j, item in enumerate(UpperCamelCase ): matrix[i][j] += item # multiply the matrix with the first signal snake_case__ = np.matmul(np.transpose(UpperCamelCase ) , np.transpose(self.first_signal ) ) # rounding-off to two decimal places return [round(UpperCamelCase , 2 ) for i in final_signal] if __name__ == "__main__": doctest.testmod()
307
1
import math def a_ ( ) -> None: """simple docstring""" snake_case__ = input('Enter message: ' ) snake_case__ = int(input(f'''Enter key [2-{len(_A ) - 1}]: ''' ) ) snake_case__ = input('Encryption/Decryption [e/d]: ' ) if mode.lower().startswith('e' ): snake_case__ = encrypt_message(_A , _A ) elif mode.lower().startswith('d' ): snake_case__ = decrypt_message(_A , _A ) # Append pipe symbol (vertical bar) to identify spaces at the end. print(f'''Output:\n{text + '|'}''' ) def a_ ( _A , _A ) -> str: """simple docstring""" snake_case__ = [''] * key for col in range(_A ): snake_case__ = col while pointer < len(_A ): cipher_text[col] += message[pointer] pointer += key return "".join(_A ) def a_ ( _A , _A ) -> str: """simple docstring""" snake_case__ = math.ceil(len(_A ) / key ) snake_case__ = key snake_case__ = (num_cols * num_rows) - len(_A ) snake_case__ = [''] * num_cols snake_case__ = 0 snake_case__ = 0 for symbol in message: plain_text[col] += symbol col += 1 if ( (col == num_cols) or (col == num_cols - 1) and (row >= num_rows - num_shaded_boxes) ): snake_case__ = 0 row += 1 return "".join(_A ) if __name__ == "__main__": import doctest doctest.testmod() main()
307
import math from collections import defaultdict from typing import List, Optional, Tuple, Union import numpy as np import torch from ..configuration_utils import ConfigMixin, register_to_config from .scheduling_utils import KarrasDiffusionSchedulers, SchedulerMixin, SchedulerOutput def a_ ( _A , _A=0.999 , _A="cosine" , ) -> Optional[int]: """simple docstring""" if alpha_transform_type == "cosine": def alpha_bar_fn(_A ): return math.cos((t + 0.008) / 1.008 * math.pi / 2 ) ** 2 elif alpha_transform_type == "exp": def alpha_bar_fn(_A ): return math.exp(t * -12.0 ) else: raise ValueError(f'''Unsupported alpha_tranform_type: {alpha_transform_type}''' ) snake_case__ = [] for i in range(_A ): snake_case__ = i / num_diffusion_timesteps snake_case__ = (i + 1) / num_diffusion_timesteps betas.append(min(1 - alpha_bar_fn(_A ) / alpha_bar_fn(_A ) , _A ) ) return torch.tensor(_A , dtype=torch.floataa ) class __SCREAMING_SNAKE_CASE( a_ , a_ ): _UpperCAmelCase = [e.name for e in KarrasDiffusionSchedulers] _UpperCAmelCase = 2 @register_to_config def __init__( self: Dict , UpperCamelCase: int = 10_00 , UpperCamelCase: float = 0.00_085 , UpperCamelCase: float = 0.012 , UpperCamelCase: str = "linear" , UpperCamelCase: Optional[Union[np.ndarray, List[float]]] = None , UpperCamelCase: str = "epsilon" , UpperCamelCase: Optional[bool] = False , UpperCamelCase: Optional[bool] = False , UpperCamelCase: float = 1.0 , UpperCamelCase: str = "linspace" , UpperCamelCase: int = 0 , ) -> str: if trained_betas is not None: snake_case__ = torch.tensor(UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "linear": snake_case__ = torch.linspace(UpperCamelCase , UpperCamelCase , UpperCamelCase , dtype=torch.floataa ) elif beta_schedule == "scaled_linear": # this schedule is very specific to the latent diffusion model. snake_case__ = ( torch.linspace(beta_start**0.5 , beta_end**0.5 , UpperCamelCase , dtype=torch.floataa ) ** 2 ) elif beta_schedule == "squaredcos_cap_v2": # Glide cosine schedule snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='cosine' ) elif beta_schedule == "exp": snake_case__ = betas_for_alpha_bar(UpperCamelCase , alpha_transform_type='exp' ) else: raise NotImplementedError(F'''{beta_schedule} does is not implemented for {self.__class__}''' ) snake_case__ = 1.0 - self.betas snake_case__ = torch.cumprod(self.alphas , dim=0 ) # set all values self.set_timesteps(UpperCamelCase , UpperCamelCase , UpperCamelCase ) snake_case__ = use_karras_sigmas def lowerCAmelCase_ ( self: str , UpperCamelCase: int , UpperCamelCase: Optional[int]=None ) -> str: if schedule_timesteps is None: snake_case__ = self.timesteps snake_case__ = (schedule_timesteps == timestep).nonzero() # The sigma index that is taken for the **very** first `step` # is always the second index (or the last index if there is only 1) # This way we can ensure we don't accidentally skip a sigma in # case we start in the middle of the denoising schedule (e.g. for image-to-image) if len(self._index_counter ) == 0: snake_case__ = 1 if len(UpperCamelCase ) > 1 else 0 else: snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep snake_case__ = self._index_counter[timestep_int] return indices[pos].item() @property def lowerCAmelCase_ ( self: Optional[Any] ) -> List[Any]: # standard deviation of the initial noise distribution if self.config.timestep_spacing in ["linspace", "trailing"]: return self.sigmas.max() return (self.sigmas.max() ** 2 + 1) ** 0.5 def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Union[float, torch.FloatTensor] , ) -> torch.FloatTensor: snake_case__ = self.index_for_timestep(UpperCamelCase ) snake_case__ = self.sigmas[step_index] snake_case__ = sample / ((sigma**2 + 1) ** 0.5) return sample def lowerCAmelCase_ ( self: Tuple , UpperCamelCase: int , UpperCamelCase: Union[str, torch.device] = None , UpperCamelCase: Optional[int] = None , ) -> str: snake_case__ = num_inference_steps snake_case__ = num_train_timesteps or self.config.num_train_timesteps # "linspace", "leading", "trailing" corresponds to annotation of Table 2. of https://arxiv.org/abs/2305.08891 if self.config.timestep_spacing == "linspace": snake_case__ = np.linspace(0 , num_train_timesteps - 1 , UpperCamelCase , dtype=UpperCamelCase )[::-1].copy() elif self.config.timestep_spacing == "leading": snake_case__ = num_train_timesteps // self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(0 , UpperCamelCase ) * step_ratio).round()[::-1].copy().astype(UpperCamelCase ) timesteps += self.config.steps_offset elif self.config.timestep_spacing == "trailing": snake_case__ = num_train_timesteps / self.num_inference_steps # creates integer timesteps by multiplying by ratio # casting to int to avoid issues when num_inference_step is power of 3 snake_case__ = (np.arange(UpperCamelCase , 0 , -step_ratio )).round().copy().astype(UpperCamelCase ) timesteps -= 1 else: raise ValueError( F'''{self.config.timestep_spacing} is not supported. Please make sure to choose one of \'linspace\', \'leading\' or \'trailing\'.''' ) snake_case__ = np.array(((1 - self.alphas_cumprod) / self.alphas_cumprod) ** 0.5 ) snake_case__ = np.log(UpperCamelCase ) snake_case__ = np.interp(UpperCamelCase , np.arange(0 , len(UpperCamelCase ) ) , UpperCamelCase ) if self.config.use_karras_sigmas: snake_case__ = self._convert_to_karras(in_sigmas=UpperCamelCase , num_inference_steps=self.num_inference_steps ) snake_case__ = np.array([self._sigma_to_t(UpperCamelCase , UpperCamelCase ) for sigma in sigmas] ) snake_case__ = np.concatenate([sigmas, [0.0]] ).astype(np.floataa ) snake_case__ = torch.from_numpy(UpperCamelCase ).to(device=UpperCamelCase ) snake_case__ = torch.cat([sigmas[:1], sigmas[1:-1].repeat_interleave(2 ), sigmas[-1:]] ) snake_case__ = torch.from_numpy(UpperCamelCase ) snake_case__ = torch.cat([timesteps[:1], timesteps[1:].repeat_interleave(2 )] ) if str(UpperCamelCase ).startswith('mps' ): # mps does not support float64 snake_case__ = timesteps.to(UpperCamelCase , dtype=torch.floataa ) else: snake_case__ = timesteps.to(device=UpperCamelCase ) # empty dt and derivative snake_case__ = None snake_case__ = None # for exp beta schedules, such as the one for `pipeline_shap_e.py` # we need an index counter snake_case__ = defaultdict(UpperCamelCase ) def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: List[str] , UpperCamelCase: Dict ) -> Tuple: # get log sigma snake_case__ = np.log(UpperCamelCase ) # get distribution snake_case__ = log_sigma - log_sigmas[:, np.newaxis] # get sigmas range snake_case__ = np.cumsum((dists >= 0) , axis=0 ).argmax(axis=0 ).clip(max=log_sigmas.shape[0] - 2 ) snake_case__ = low_idx + 1 snake_case__ = log_sigmas[low_idx] snake_case__ = log_sigmas[high_idx] # interpolate sigmas snake_case__ = (low - log_sigma) / (low - high) snake_case__ = np.clip(UpperCamelCase , 0 , 1 ) # transform interpolation to time range snake_case__ = (1 - w) * low_idx + w * high_idx snake_case__ = t.reshape(sigma.shape ) return t def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: torch.FloatTensor , UpperCamelCase: Dict ) -> torch.FloatTensor: snake_case__ = in_sigmas[-1].item() snake_case__ = in_sigmas[0].item() snake_case__ = 7.0 # 7.0 is the value used in the paper snake_case__ = np.linspace(0 , 1 , UpperCamelCase ) snake_case__ = sigma_min ** (1 / rho) snake_case__ = sigma_max ** (1 / rho) snake_case__ = (max_inv_rho + ramp * (min_inv_rho - max_inv_rho)) ** rho return sigmas @property def lowerCAmelCase_ ( self: Dict ) -> Optional[Any]: return self.dt is None def lowerCAmelCase_ ( self: int , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: Union[float, torch.FloatTensor] , UpperCamelCase: Union[torch.FloatTensor, np.ndarray] , UpperCamelCase: bool = True , ) -> Union[SchedulerOutput, Tuple]: snake_case__ = self.index_for_timestep(UpperCamelCase ) # advance index counter by 1 snake_case__ = timestep.cpu().item() if torch.is_tensor(UpperCamelCase ) else timestep self._index_counter[timestep_int] += 1 if self.state_in_first_order: snake_case__ = self.sigmas[step_index] snake_case__ = self.sigmas[step_index + 1] else: # 2nd order / Heun's method snake_case__ = self.sigmas[step_index - 1] snake_case__ = self.sigmas[step_index] # currently only gamma=0 is supported. This usually works best anyways. # We can support gamma in the future but then need to scale the timestep before # passing it to the model which requires a change in API snake_case__ = 0 snake_case__ = sigma * (gamma + 1) # Note: sigma_hat == sigma for now # 1. compute predicted original sample (x_0) from sigma-scaled predicted noise if self.config.prediction_type == "epsilon": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = sample - sigma_input * model_output elif self.config.prediction_type == "v_prediction": snake_case__ = sigma_hat if self.state_in_first_order else sigma_next snake_case__ = model_output * (-sigma_input / (sigma_input**2 + 1) ** 0.5) + ( sample / (sigma_input**2 + 1) ) elif self.config.prediction_type == "sample": snake_case__ = model_output else: raise ValueError( F'''prediction_type given as {self.config.prediction_type} must be one of `epsilon`, or `v_prediction`''' ) if self.config.clip_sample: snake_case__ = pred_original_sample.clamp( -self.config.clip_sample_range , self.config.clip_sample_range ) if self.state_in_first_order: # 2. Convert to an ODE derivative for 1st order snake_case__ = (sample - pred_original_sample) / sigma_hat # 3. delta timestep snake_case__ = sigma_next - sigma_hat # store for 2nd order step snake_case__ = derivative snake_case__ = dt snake_case__ = sample else: # 2. 2nd order / Heun's method snake_case__ = (sample - pred_original_sample) / sigma_next snake_case__ = (self.prev_derivative + derivative) / 2 # 3. take prev timestep & sample snake_case__ = self.dt snake_case__ = self.sample # free dt and derivative # Note, this puts the scheduler in "first order mode" snake_case__ = None snake_case__ = None snake_case__ = None snake_case__ = sample + derivative * dt if not return_dict: return (prev_sample,) return SchedulerOutput(prev_sample=UpperCamelCase ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , UpperCamelCase: torch.FloatTensor , ) -> torch.FloatTensor: # Make sure sigmas and timesteps have the same device and dtype as original_samples snake_case__ = self.sigmas.to(device=original_samples.device , dtype=original_samples.dtype ) if original_samples.device.type == "mps" and torch.is_floating_point(UpperCamelCase ): # mps does not support float64 snake_case__ = self.timesteps.to(original_samples.device , dtype=torch.floataa ) snake_case__ = timesteps.to(original_samples.device , dtype=torch.floataa ) else: snake_case__ = self.timesteps.to(original_samples.device ) snake_case__ = timesteps.to(original_samples.device ) snake_case__ = [self.index_for_timestep(UpperCamelCase , UpperCamelCase ) for t in timesteps] snake_case__ = sigmas[step_indices].flatten() while len(sigma.shape ) < len(original_samples.shape ): snake_case__ = sigma.unsqueeze(-1 ) snake_case__ = original_samples + noise * sigma return noisy_samples def __len__( self: List[Any] ) -> Union[str, Any]: return self.config.num_train_timesteps
307
1
# Copyright 2021 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 argparse import ArgumentParser from accelerate.commands.config import get_config_parser from accelerate.commands.env import env_command_parser from accelerate.commands.launch import launch_command_parser from accelerate.commands.test import test_command_parser from accelerate.commands.tpu import tpu_command_parser def a_ ( ) -> Tuple: """simple docstring""" snake_case__ = ArgumentParser('Accelerate CLI tool' , usage='accelerate <command> [<args>]' , allow_abbrev=_A ) snake_case__ = parser.add_subparsers(help='accelerate command helpers' ) # Register commands get_config_parser(subparsers=_A ) env_command_parser(subparsers=_A ) launch_command_parser(subparsers=_A ) tpu_command_parser(subparsers=_A ) test_command_parser(subparsers=_A ) # Let's go snake_case__ = parser.parse_args() if not hasattr(_A , 'func' ): parser.print_help() exit(1 ) # Run args.func(_A ) if __name__ == "__main__": main()
307
from typing import TYPE_CHECKING from ..utils import _LazyModule __UpperCamelCase : Tuple = { """config""": [ """EXTERNAL_DATA_FORMAT_SIZE_LIMIT""", """OnnxConfig""", """OnnxConfigWithPast""", """OnnxSeq2SeqConfigWithPast""", """PatchingSpec""", ], """convert""": ["""export""", """validate_model_outputs"""], """features""": ["""FeaturesManager"""], """utils""": ["""ParameterFormat""", """compute_serialized_parameters_size"""], } if TYPE_CHECKING: from .config import ( EXTERNAL_DATA_FORMAT_SIZE_LIMIT, OnnxConfig, OnnxConfigWithPast, OnnxSeqaSeqConfigWithPast, PatchingSpec, ) from .convert import export, validate_model_outputs from .features import FeaturesManager from .utils import ParameterFormat, compute_serialized_parameters_size else: import sys __UpperCamelCase : Dict = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
1
# Author: OMKAR PATHAK, Nwachukwu Chidiebere # Use a Python dictionary to construct the graph. from __future__ import annotations from pprint import pformat from typing import Generic, TypeVar __UpperCamelCase : str = TypeVar("""T""") class __SCREAMING_SNAKE_CASE( Generic[T] ): def __init__( self: str , UpperCamelCase: bool = True ) -> None: snake_case__ = {} # dictionary of lists snake_case__ = directed def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: T , UpperCamelCase: T ) -> GraphAdjacencyList[T]: if not self.directed: # For undirected graphs # if both source vertex and destination vertex are both present in the # adjacency list, add destination vertex to source vertex list of adjacent # vertices and add source vertex to destination vertex list of adjacent # vertices. if source_vertex in self.adj_list and destination_vertex in self.adj_list: self.adj_list[source_vertex].append(UpperCamelCase ) self.adj_list[destination_vertex].append(UpperCamelCase ) # if only source vertex is present in adjacency list, add destination vertex # to source vertex list of adjacent vertices, then create a new vertex with # destination vertex as key and assign a list containing the source vertex # as it's first adjacent vertex. elif source_vertex in self.adj_list: self.adj_list[source_vertex].append(UpperCamelCase ) snake_case__ = [source_vertex] # if only destination vertex is present in adjacency list, add source vertex # to destination vertex list of adjacent vertices, then create a new vertex # with source vertex as key and assign a list containing the source vertex # as it's first adjacent vertex. elif destination_vertex in self.adj_list: self.adj_list[destination_vertex].append(UpperCamelCase ) snake_case__ = [destination_vertex] # if both source vertex and destination vertex are not present in adjacency # list, create a new vertex with source vertex as key and assign a list # containing the destination vertex as it's first adjacent vertex also # create a new vertex with destination vertex as key and assign a list # containing the source vertex as it's first adjacent vertex. else: snake_case__ = [destination_vertex] snake_case__ = [source_vertex] else: # For directed graphs # if both source vertex and destination vertex are present in adjacency # list, add destination vertex to source vertex list of adjacent vertices. if source_vertex in self.adj_list and destination_vertex in self.adj_list: self.adj_list[source_vertex].append(UpperCamelCase ) # if only source vertex is present in adjacency list, add destination # vertex to source vertex list of adjacent vertices and create a new vertex # with destination vertex as key, which has no adjacent vertex elif source_vertex in self.adj_list: self.adj_list[source_vertex].append(UpperCamelCase ) snake_case__ = [] # if only destination vertex is present in adjacency list, create a new # vertex with source vertex as key and assign a list containing destination # vertex as first adjacent vertex elif destination_vertex in self.adj_list: snake_case__ = [destination_vertex] # if both source vertex and destination vertex are not present in adjacency # list, create a new vertex with source vertex as key and a list containing # destination vertex as it's first adjacent vertex. Then create a new vertex # with destination vertex as key, which has no adjacent vertex else: snake_case__ = [destination_vertex] snake_case__ = [] return self def __repr__( self: List[Any] ) -> str: return pformat(self.adj_list )
307
def a_ ( _A , _A ) -> int: """simple docstring""" return 1 if input_a == input_a else 0 def a_ ( ) -> None: """simple docstring""" assert xnor_gate(0 , 0 ) == 1 assert xnor_gate(0 , 1 ) == 0 assert xnor_gate(1 , 0 ) == 0 assert xnor_gate(1 , 1 ) == 1 if __name__ == "__main__": print(xnor_gate(0, 0)) print(xnor_gate(0, 1)) print(xnor_gate(1, 0)) print(xnor_gate(1, 1))
307
1
from __future__ import annotations import collections import tempfile import unittest import numpy as np from transformers.testing_utils import require_tf, require_vision, slow from transformers.utils import is_tf_available, is_vision_available from ...test_modeling_tf_common import floats_tensor, ids_tensor, random_attention_mask from ..bert.test_modeling_tf_bert import TFBertModelTester from ..clip.test_modeling_tf_clip import TFCLIPVisionModelTester from ..deit.test_modeling_tf_deit import TFDeiTModelTester from ..roberta.test_modeling_tf_roberta import TFRobertaModelTester from ..vit.test_modeling_tf_vit import TFViTModelTester if is_tf_available(): from transformers import ( TFBertModel, TFCLIPVisionModel, TFDeiTModel, TFRobertaModel, TFVisionTextDualEncoderModel, TFViTModel, VisionTextDualEncoderConfig, ) if is_vision_available(): from PIL import Image from transformers import VisionTextDualEncoderProcessor def a_ ( _A ) -> Union[str, Any]: """simple docstring""" if isinstance(_A , collections.abc.Iterable ): return x return (x, x) @require_tf class __SCREAMING_SNAKE_CASE: def lowerCAmelCase_ ( self: str , UpperCamelCase: Tuple , UpperCamelCase: Tuple ) -> int: pass def lowerCAmelCase_ ( self: List[Any] ) -> Dict: pass def lowerCAmelCase_ ( self: Optional[Any] ) -> Union[str, Any]: pass def lowerCAmelCase_ ( self: str , UpperCamelCase: Dict , UpperCamelCase: Dict , UpperCamelCase: int , UpperCamelCase: int , UpperCamelCase: int=None , **UpperCamelCase: Optional[int] ) -> Any: snake_case__ = VisionTextDualEncoderConfig.from_vision_text_configs(UpperCamelCase , UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel(UpperCamelCase ) snake_case__ = model(input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase ) self.assertEqual(output['text_embeds'].shape , (input_ids.shape[0], config.projection_dim) ) self.assertEqual(output['image_embeds'].shape , (pixel_values.shape[0], config.projection_dim) ) def lowerCAmelCase_ ( self: int , UpperCamelCase: str , UpperCamelCase: List[Any] , UpperCamelCase: Union[str, Any] , UpperCamelCase: List[str] , UpperCamelCase: Any=None , **UpperCamelCase: List[str] ) -> List[Any]: snake_case__ , snake_case__ = self.get_vision_text_model(UpperCamelCase , UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel(vision_model=UpperCamelCase , text_model=UpperCamelCase ) snake_case__ = model(input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase ) self.assertEqual(output['text_embeds'].shape , (input_ids.shape[0], model.config.projection_dim) ) self.assertEqual(output['image_embeds'].shape , (pixel_values.shape[0], model.config.projection_dim) ) def lowerCAmelCase_ ( self: str , UpperCamelCase: List[str] , UpperCamelCase: Tuple , UpperCamelCase: Dict , UpperCamelCase: str , UpperCamelCase: Any=None , **UpperCamelCase: Dict ) -> Tuple: snake_case__ , snake_case__ = self.get_vision_text_model(UpperCamelCase , UpperCamelCase ) snake_case__ = {'vision_model': vision_model, 'text_model': text_model} snake_case__ = TFVisionTextDualEncoderModel.from_vision_text_pretrained(**UpperCamelCase ) snake_case__ = model(input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase ) self.assertEqual(output['text_embeds'].shape , (input_ids.shape[0], model.config.projection_dim) ) self.assertEqual(output['image_embeds'].shape , (pixel_values.shape[0], model.config.projection_dim) ) def lowerCAmelCase_ ( self: List[Any] , UpperCamelCase: Optional[int] , UpperCamelCase: Union[str, Any] , UpperCamelCase: int , UpperCamelCase: List[str] , UpperCamelCase: int=None , **UpperCamelCase: Optional[int] ) -> List[Any]: snake_case__ , snake_case__ = self.get_vision_text_model(UpperCamelCase , UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel(vision_model=UpperCamelCase , text_model=UpperCamelCase ) snake_case__ = model(input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = output[0].numpy() with tempfile.TemporaryDirectory() as tmpdirname: model.save_pretrained(UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel.from_pretrained(UpperCamelCase ) snake_case__ = model(input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase ) snake_case__ = after_output[0].numpy() snake_case__ = np.amax(np.abs(out_a - out_a ) ) self.assertLessEqual(UpperCamelCase , 1e-5 ) def lowerCAmelCase_ ( self: str , UpperCamelCase: Any , UpperCamelCase: Any , UpperCamelCase: Optional[Any] , UpperCamelCase: Tuple , UpperCamelCase: Optional[Any]=None , **UpperCamelCase: List[Any] ) -> List[str]: snake_case__ , snake_case__ = self.get_vision_text_model(UpperCamelCase , UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel(vision_model=UpperCamelCase , text_model=UpperCamelCase ) snake_case__ = model( input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase , output_attentions=UpperCamelCase ) snake_case__ = output.vision_model_output.attentions self.assertEqual(len(UpperCamelCase ) , vision_config.num_hidden_layers ) # in ViT, the seq_len equals the number of patches + 1 (we add 1 for the [CLS] token) snake_case__ = to_atuple(vision_model.config.image_size ) snake_case__ = to_atuple(vision_model.config.patch_size ) snake_case__ = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) snake_case__ = num_patches + 1 self.assertEqual(vision_attentions[0].shape[-3:] , (vision_config.num_attention_heads, seq_len, seq_len) ) snake_case__ = output.text_model_output.attentions self.assertEqual(len(UpperCamelCase ) , text_config.num_hidden_layers ) self.assertEqual( text_attentions[0].shape[-3:] , (text_config.num_attention_heads, input_ids.shape[-1], input_ids.shape[-1]) , ) def lowerCAmelCase_ ( self: Any , UpperCamelCase: np.ndarray , UpperCamelCase: np.ndarray , UpperCamelCase: float ) -> List[str]: snake_case__ = np.abs((a - b) ).max() self.assertLessEqual(UpperCamelCase , UpperCamelCase , F'''Difference between torch and flax is {diff} (>= {tol}).''' ) def lowerCAmelCase_ ( self: int ) -> List[str]: snake_case__ = self.prepare_config_and_inputs() self.check_vision_text_dual_encoder_model(**UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[int] ) -> Tuple: snake_case__ = self.prepare_config_and_inputs() self.check_model_from_pretrained_configs(**UpperCamelCase ) def lowerCAmelCase_ ( self: Tuple ) -> Optional[Any]: snake_case__ = self.prepare_config_and_inputs() self.check_vision_text_dual_encoder_from_pretrained(**UpperCamelCase ) def lowerCAmelCase_ ( self: List[Any] ) -> str: snake_case__ = self.prepare_config_and_inputs() self.check_save_load(**UpperCamelCase ) def lowerCAmelCase_ ( self: Optional[int] ) -> Optional[Any]: snake_case__ = self.prepare_config_and_inputs() self.check_vision_text_output_attention(**UpperCamelCase ) @slow def lowerCAmelCase_ ( self: str ) -> Optional[int]: snake_case__ , snake_case__ = self.get_pretrained_model_and_inputs() snake_case__ = model_a(**UpperCamelCase ) snake_case__ = outputs[0].numpy() with tempfile.TemporaryDirectory() as tmp_dirname: model_a.save_pretrained(UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel.from_pretrained(UpperCamelCase ) snake_case__ = model_a(**UpperCamelCase ) snake_case__ = after_outputs[0].numpy() snake_case__ = np.amax(np.abs(out_a - out_a ) ) self.assertLessEqual(UpperCamelCase , 1e-5 ) @require_tf class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): def lowerCAmelCase_ ( self: Optional[int] ) -> Any: snake_case__ = TFVisionTextDualEncoderModel.from_vision_text_pretrained( 'hf-internal-testing/tiny-random-vit' , 'hf-internal-testing/tiny-random-bert' ) snake_case__ = 13 snake_case__ = floats_tensor( [ batch_size, model.vision_model.config.num_channels, model.vision_model.config.image_size, model.vision_model.config.image_size, ] ) snake_case__ = ids_tensor([batch_size, 4] , model.text_model.config.vocab_size ) snake_case__ = random_attention_mask([batch_size, 4] ) snake_case__ = {'pixel_values': pixel_values, 'input_ids': input_ids, 'attention_mask': attention_mask} return model, inputs def lowerCAmelCase_ ( self: Any , UpperCamelCase: Any , UpperCamelCase: Tuple ) -> str: snake_case__ = TFViTModel(UpperCamelCase , name='vision_model' ) snake_case__ = TFBertModel(UpperCamelCase , name='text_model' ) return vision_model, text_model def lowerCAmelCase_ ( self: List[Any] ) -> str: snake_case__ = TFViTModelTester(self ) snake_case__ = TFBertModelTester(self ) snake_case__ = vit_model_tester.prepare_config_and_inputs() snake_case__ = bert_model_tester.prepare_config_and_inputs() snake_case__ , snake_case__ , snake_case__ = vision_config_and_inputs ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = text_config_and_inputs return { "text_config": text_config, "vision_config": vision_config, "pixel_values": pixel_values, "attention_mask": input_mask, "input_ids": input_ids, "text_token_type_ids": token_type_ids, "text_sequence_labels": sequence_labels, "text_token_labels": token_labels, "text_choice_labels": choice_labels, } @require_tf class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): def lowerCAmelCase_ ( self: Any ) -> Union[str, Any]: # DeiT repo doesn't have TF weights, but we don't actually use the weights at all so let's # just reinitialize it. snake_case__ = TFVisionTextDualEncoderModel.from_vision_text_pretrained( 'Rocketknight1/tiny-random-deit-tf' , 'hf-internal-testing/tiny-random-roberta' ) snake_case__ = 13 snake_case__ = floats_tensor( [ batch_size, model.vision_model.config.num_channels, model.vision_model.config.image_size, model.vision_model.config.image_size, ] ) snake_case__ = ids_tensor([batch_size, 4] , model.text_model.config.vocab_size ) snake_case__ = random_attention_mask([batch_size, 4] ) snake_case__ = {'pixel_values': pixel_values, 'input_ids': input_ids, 'attention_mask': attention_mask} return model, inputs def lowerCAmelCase_ ( self: Optional[Any] , UpperCamelCase: int , UpperCamelCase: str , UpperCamelCase: Any , UpperCamelCase: List[Any] , UpperCamelCase: Any=None , **UpperCamelCase: Dict ) -> List[Any]: snake_case__ , snake_case__ = self.get_vision_text_model(UpperCamelCase , UpperCamelCase ) snake_case__ = TFVisionTextDualEncoderModel(vision_model=UpperCamelCase , text_model=UpperCamelCase ) snake_case__ = model( input_ids=UpperCamelCase , pixel_values=UpperCamelCase , attention_mask=UpperCamelCase , output_attentions=UpperCamelCase ) snake_case__ = output.vision_model_output.attentions self.assertEqual(len(UpperCamelCase ) , vision_config.num_hidden_layers ) # in DEiT, the seq_len equals the number of patches + 2 (we add 2 for the [CLS] and distillation tokens) snake_case__ = to_atuple(vision_model.config.image_size ) snake_case__ = to_atuple(vision_model.config.patch_size ) snake_case__ = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) snake_case__ = num_patches + 2 self.assertEqual(vision_attentions[0].shape[-3:] , (vision_config.num_attention_heads, seq_len, seq_len) ) snake_case__ = output.text_model_output.attentions self.assertEqual(len(UpperCamelCase ) , text_config.num_hidden_layers ) self.assertEqual( text_attentions[0].shape[-3:] , (text_config.num_attention_heads, input_ids.shape[-1], input_ids.shape[-1]) , ) def lowerCAmelCase_ ( self: Optional[int] , UpperCamelCase: List[str] , UpperCamelCase: int ) -> List[Any]: snake_case__ = TFDeiTModel(UpperCamelCase , name='vision_model' ) snake_case__ = TFRobertaModel(UpperCamelCase , name='text_model' ) return vision_model, text_model def lowerCAmelCase_ ( self: str ) -> Union[str, Any]: snake_case__ = TFDeiTModelTester(self ) snake_case__ = TFRobertaModelTester(self ) snake_case__ = vit_model_tester.prepare_config_and_inputs() snake_case__ = bert_model_tester.prepare_config_and_inputs() snake_case__ , snake_case__ , snake_case__ = vision_config_and_inputs ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = text_config_and_inputs return { "text_config": text_config, "vision_config": vision_config, "pixel_values": pixel_values, "attention_mask": input_mask, "input_ids": input_ids, "text_token_type_ids": token_type_ids, "text_sequence_labels": sequence_labels, "text_token_labels": token_labels, "text_choice_labels": choice_labels, } @require_tf class __SCREAMING_SNAKE_CASE( a_ , unittest.TestCase ): def lowerCAmelCase_ ( self: Dict ) -> Optional[int]: snake_case__ = TFVisionTextDualEncoderModel.from_vision_text_pretrained( 'Rocketknight1/tiny-random-clip-tf' , 'hf-internal-testing/tiny-random-bert' ) snake_case__ = 13 snake_case__ = floats_tensor( [ batch_size, model.vision_model.config.num_channels, model.vision_model.config.image_size, model.vision_model.config.image_size, ] ) snake_case__ = ids_tensor([batch_size, 4] , model.text_model.config.vocab_size ) snake_case__ = random_attention_mask([batch_size, 4] ) snake_case__ = {'pixel_values': pixel_values, 'input_ids': input_ids, 'attention_mask': attention_mask} return model, inputs def lowerCAmelCase_ ( self: List[str] , UpperCamelCase: Optional[int] , UpperCamelCase: str ) -> int: snake_case__ = TFCLIPVisionModel(UpperCamelCase , name='vision_model' ) snake_case__ = TFBertModel(UpperCamelCase , name='text_model' ) return vision_model, text_model def lowerCAmelCase_ ( self: Union[str, Any] ) -> Union[str, Any]: snake_case__ = TFCLIPVisionModelTester(self ) snake_case__ = TFBertModelTester(self ) snake_case__ = clip_model_tester.prepare_config_and_inputs() snake_case__ = bert_model_tester.prepare_config_and_inputs() snake_case__ , snake_case__ = vision_config_and_inputs ( ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ( snake_case__ ) , ) = text_config_and_inputs return { "text_config": text_config, "vision_config": vision_config, "pixel_values": pixel_values, "attention_mask": input_mask, "input_ids": input_ids, "text_token_type_ids": token_type_ids, "text_sequence_labels": sequence_labels, "text_token_labels": token_labels, "text_choice_labels": choice_labels, } @require_vision @require_tf class __SCREAMING_SNAKE_CASE( unittest.TestCase ): @slow def lowerCAmelCase_ ( self: Optional[int] ) -> str: snake_case__ = TFVisionTextDualEncoderModel.from_pretrained( 'clip-italian/clip-italian' , logit_scale_init_value=1.0 , from_pt=UpperCamelCase ) snake_case__ = VisionTextDualEncoderProcessor.from_pretrained('clip-italian/clip-italian' ) snake_case__ = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) snake_case__ = processor( text=['una foto di un gatto', 'una foto di un cane'] , images=UpperCamelCase , padding=UpperCamelCase , return_tensors='np' ) snake_case__ = model(**UpperCamelCase ) # verify the logits self.assertEqual(outputs.logits_per_image.shape , (inputs.pixel_values.shape[0], inputs.input_ids.shape[0]) ) self.assertEqual( outputs.logits_per_text.shape , (inputs.input_ids.shape[0], inputs.pixel_values.shape[0]) , ) snake_case__ = np.array([[1.2_284_727, 0.3_104_122]] ) self.assertTrue(np.allclose(outputs.logits_per_image.numpy() , UpperCamelCase , atol=1e-3 ) )
307
import numpy as np from cva import COLOR_BGR2GRAY, cvtColor, imread from numpy import array, uinta from PIL import Image from digital_image_processing import change_contrast as cc from digital_image_processing import convert_to_negative as cn from digital_image_processing import sepia as sp from digital_image_processing.dithering import burkes as bs from digital_image_processing.edge_detection import canny from digital_image_processing.filters import convolve as conv from digital_image_processing.filters import gaussian_filter as gg from digital_image_processing.filters import local_binary_pattern as lbp from digital_image_processing.filters import median_filter as med from digital_image_processing.filters import sobel_filter as sob from digital_image_processing.resize import resize as rs __UpperCamelCase : int = imread(R"""digital_image_processing/image_data/lena_small.jpg""") __UpperCamelCase : List[Any] = cvtColor(img, COLOR_BGR2GRAY) def a_ ( ) -> List[Any]: """simple docstring""" snake_case__ = cn.convert_to_negative(_A ) # assert negative_img array for at least one True assert negative_img.any() def a_ ( ) -> int: """simple docstring""" with Image.open('digital_image_processing/image_data/lena_small.jpg' ) as img: # Work around assertion for response assert str(cc.change_contrast(_A , 110 ) ).startswith( '<PIL.Image.Image image mode=RGB size=100x100 at' ) def a_ ( ) -> List[str]: """simple docstring""" snake_case__ = canny.gen_gaussian_kernel(9 , sigma=1.4 ) # Assert ambiguous array assert resp.all() def a_ ( ) -> Dict: """simple docstring""" snake_case__ = imread('digital_image_processing/image_data/lena_small.jpg' , 0 ) # assert ambiguous array for all == True assert canny_img.all() snake_case__ = canny.canny(_A ) # assert canny array for at least one True assert canny_array.any() def a_ ( ) -> Optional[int]: """simple docstring""" assert gg.gaussian_filter(_A , 5 , sigma=0.9 ).all() def a_ ( ) -> Optional[Any]: """simple docstring""" # laplace diagonals snake_case__ = array([[0.25, 0.5, 0.25], [0.5, -3, 0.5], [0.25, 0.5, 0.25]] ) snake_case__ = conv.img_convolve(_A , _A ).astype(_A ) assert res.any() def a_ ( ) -> Dict: """simple docstring""" assert med.median_filter(_A , 3 ).any() def a_ ( ) -> Dict: """simple docstring""" snake_case__ , snake_case__ = sob.sobel_filter(_A ) assert grad.any() and theta.any() def a_ ( ) -> Union[str, Any]: """simple docstring""" snake_case__ = sp.make_sepia(_A , 20 ) assert sepia.all() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" ) -> Optional[int]: """simple docstring""" snake_case__ = bs.Burkes(imread(_A , 1 ) , 120 ) burkes.process() assert burkes.output_img.any() def a_ ( _A = "digital_image_processing/image_data/lena_small.jpg" , ) -> Optional[Any]: """simple docstring""" snake_case__ = rs.NearestNeighbour(imread(_A , 1 ) , 400 , 200 ) nn.process() assert nn.output.any() def a_ ( ) -> Any: """simple docstring""" snake_case__ = 'digital_image_processing/image_data/lena.jpg' # Reading the image and converting it to grayscale. snake_case__ = imread(_A , 0 ) # Test for get_neighbors_pixel function() return not None snake_case__ = 0 snake_case__ = 0 snake_case__ = image[x_coordinate][y_coordinate] snake_case__ = lbp.get_neighbors_pixel( _A , _A , _A , _A ) assert neighbors_pixels is not None # Test for local_binary_pattern function() # Create a numpy array as the same height and width of read image snake_case__ = np.zeros((image.shape[0], image.shape[1]) ) # Iterating through the image and calculating the local binary pattern value # for each pixel. for i in range(0 , image.shape[0] ): for j in range(0 , image.shape[1] ): snake_case__ = lbp.local_binary_value(_A , _A , _A ) assert lbp_image.any()
307
1
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_sentencepiece_available, is_tf_available, is_tokenizers_available, is_torch_available, ) UpperCAmelCase__ = { "configuration_xlm_roberta": [ "XLM_ROBERTA_PRETRAINED_CONFIG_ARCHIVE_MAP", "XLMRobertaConfig", "XLMRobertaOnnxConfig", ], } try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: UpperCAmelCase__ = ["XLMRobertaTokenizer"] try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: UpperCAmelCase__ = ["XLMRobertaTokenizerFast"] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: UpperCAmelCase__ = [ "XLM_ROBERTA_PRETRAINED_MODEL_ARCHIVE_LIST", "XLMRobertaForCausalLM", "XLMRobertaForMaskedLM", "XLMRobertaForMultipleChoice", "XLMRobertaForQuestionAnswering", "XLMRobertaForSequenceClassification", "XLMRobertaForTokenClassification", "XLMRobertaModel", "XLMRobertaPreTrainedModel", ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: UpperCAmelCase__ = [ "TF_XLM_ROBERTA_PRETRAINED_MODEL_ARCHIVE_LIST", "TFXLMRobertaForCausalLM", "TFXLMRobertaForMaskedLM", "TFXLMRobertaForMultipleChoice", "TFXLMRobertaForQuestionAnswering", "TFXLMRobertaForSequenceClassification", "TFXLMRobertaForTokenClassification", "TFXLMRobertaModel", "TFXLMRobertaPreTrainedModel", ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: UpperCAmelCase__ = [ "FLAX_XLM_ROBERTA_PRETRAINED_MODEL_ARCHIVE_LIST", "FlaxXLMRobertaForMaskedLM", "FlaxXLMRobertaForCausalLM", "FlaxXLMRobertaForMultipleChoice", "FlaxXLMRobertaForQuestionAnswering", "FlaxXLMRobertaForSequenceClassification", "FlaxXLMRobertaForTokenClassification", "FlaxXLMRobertaModel", "FlaxXLMRobertaPreTrainedModel", ] if TYPE_CHECKING: from .configuration_xlm_roberta import ( XLM_ROBERTA_PRETRAINED_CONFIG_ARCHIVE_MAP, XLMRobertaConfig, XLMRobertaOnnxConfig, ) try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_xlm_roberta import XLMRobertaTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_xlm_roberta_fast import XLMRobertaTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_xlm_roberta import ( XLM_ROBERTA_PRETRAINED_MODEL_ARCHIVE_LIST, XLMRobertaForCausalLM, XLMRobertaForMaskedLM, XLMRobertaForMultipleChoice, XLMRobertaForQuestionAnswering, XLMRobertaForSequenceClassification, XLMRobertaForTokenClassification, XLMRobertaModel, XLMRobertaPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_xlm_roberta import ( TF_XLM_ROBERTA_PRETRAINED_MODEL_ARCHIVE_LIST, TFXLMRobertaForCausalLM, TFXLMRobertaForMaskedLM, TFXLMRobertaForMultipleChoice, TFXLMRobertaForQuestionAnswering, TFXLMRobertaForSequenceClassification, TFXLMRobertaForTokenClassification, TFXLMRobertaModel, TFXLMRobertaPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_xlm_roberta import ( FLAX_XLM_ROBERTA_PRETRAINED_MODEL_ARCHIVE_LIST, FlaxXLMRobertaForCausalLM, FlaxXLMRobertaForMaskedLM, FlaxXLMRobertaForMultipleChoice, FlaxXLMRobertaForQuestionAnswering, FlaxXLMRobertaForSequenceClassification, FlaxXLMRobertaForTokenClassification, FlaxXLMRobertaModel, FlaxXLMRobertaPreTrainedModel, ) else: import sys UpperCAmelCase__ = _LazyModule(__name__, globals()["__file__"], _import_structure, module_spec=__spec__)
0
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available __UpperCamelCase : Dict = { """configuration_jukebox""": [ """JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP""", """JukeboxConfig""", """JukeboxPriorConfig""", """JukeboxVQVAEConfig""", ], """tokenization_jukebox""": ["""JukeboxTokenizer"""], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: __UpperCamelCase : Tuple = [ """JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST""", """JukeboxModel""", """JukeboxPreTrainedModel""", """JukeboxVQVAE""", """JukeboxPrior""", ] if TYPE_CHECKING: from .configuration_jukebox import ( JUKEBOX_PRETRAINED_CONFIG_ARCHIVE_MAP, JukeboxConfig, JukeboxPriorConfig, JukeboxVQVAEConfig, ) from .tokenization_jukebox import JukeboxTokenizer try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_jukebox import ( JUKEBOX_PRETRAINED_MODEL_ARCHIVE_LIST, JukeboxModel, JukeboxPreTrainedModel, JukeboxPrior, JukeboxVQVAE, ) else: import sys __UpperCamelCase : str = _LazyModule(__name__, globals()["""__file__"""], _import_structure, module_spec=__spec__)
307
0