code
stringlengths
82
54.1k
code_codestyle
int64
0
699
style_context
stringlengths
111
35.6k
style_context_codestyle
int64
0
699
label
int64
0
1
from dataclasses import dataclass from typing import Dict, Optional, Tuple, Union import torch import torch.nn as nn from ..configuration_utils import ConfigMixin, register_to_config from ..utils import BaseOutput, apply_forward_hook from .attention_processor import AttentionProcessor, AttnProcessor from .modeling_utils import ModelMixin from .vae import Decoder, DecoderOutput, DiagonalGaussianDistribution, Encoder @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : "DiagonalGaussianDistribution" class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ ): """simple docstring""" a : str =True @register_to_config def __init__( self , _lowerCamelCase = 3 , _lowerCamelCase = 3 , _lowerCamelCase = ("DownEncoderBlock2D",) , _lowerCamelCase = ("UpDecoderBlock2D",) , _lowerCamelCase = (6_4,) , _lowerCamelCase = 1 , _lowerCamelCase = "silu" , _lowerCamelCase = 4 , _lowerCamelCase = 3_2 , _lowerCamelCase = 3_2 , _lowerCamelCase = 0.1_8_2_1_5 , ): super().__init__() # pass init params to Encoder UpperCamelCase_: List[Any] = Encoder( in_channels=_lowerCamelCase , out_channels=_lowerCamelCase , down_block_types=_lowerCamelCase , block_out_channels=_lowerCamelCase , layers_per_block=_lowerCamelCase , act_fn=_lowerCamelCase , norm_num_groups=_lowerCamelCase , double_z=_lowerCamelCase , ) # pass init params to Decoder UpperCamelCase_: Optional[Any] = Decoder( in_channels=_lowerCamelCase , out_channels=_lowerCamelCase , up_block_types=_lowerCamelCase , block_out_channels=_lowerCamelCase , layers_per_block=_lowerCamelCase , norm_num_groups=_lowerCamelCase , act_fn=_lowerCamelCase , ) UpperCamelCase_: Optional[Any] = nn.Convad(2 * latent_channels , 2 * latent_channels , 1 ) UpperCamelCase_: Any = nn.Convad(_lowerCamelCase , _lowerCamelCase , 1 ) UpperCamelCase_: List[str] = False UpperCamelCase_: Tuple = False # only relevant if vae tiling is enabled UpperCamelCase_: Union[str, Any] = self.config.sample_size UpperCamelCase_: Dict = ( self.config.sample_size[0] if isinstance(self.config.sample_size , (list, tuple) ) else self.config.sample_size ) UpperCamelCase_: str = int(sample_size / (2 ** (len(self.config.block_out_channels ) - 1)) ) UpperCamelCase_: str = 0.2_5 def _a ( self , _lowerCamelCase , _lowerCamelCase=False ): if isinstance(_lowerCamelCase , (Encoder, Decoder) ): UpperCamelCase_: str = value def _a ( self , _lowerCamelCase = True ): UpperCamelCase_: Any = use_tiling def _a ( self ): self.enable_tiling(_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = True def _a ( self ): UpperCamelCase_: Optional[Any] = False @property # Copied from diffusers.models.unet_2d_condition.UNet2DConditionModel.attn_processors def _a ( self ): UpperCamelCase_: Dict = {} def fn_recursive_add_processors(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): if hasattr(_lowerCamelCase , 'set_processor' ): UpperCamelCase_: List[Any] = module.processor for sub_name, child in module.named_children(): fn_recursive_add_processors(f'''{name}.{sub_name}''' , _lowerCamelCase , _lowerCamelCase ) return processors for name, module in self.named_children(): fn_recursive_add_processors(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) return processors def _a ( self , _lowerCamelCase ): UpperCamelCase_: Tuple = len(self.attn_processors.keys() ) if isinstance(_lowerCamelCase , _lowerCamelCase ) and len(_lowerCamelCase ) != count: raise ValueError( f'''A dict of processors was passed, but the number of processors {len(_lowerCamelCase )} does not match the''' f''' number of attention layers: {count}. Please make sure to pass {count} processor classes.''' ) def fn_recursive_attn_processor(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): if hasattr(_lowerCamelCase , 'set_processor' ): if not isinstance(_lowerCamelCase , _lowerCamelCase ): module.set_processor(_lowerCamelCase ) else: module.set_processor(processor.pop(f'''{name}.processor''' ) ) for sub_name, child in module.named_children(): fn_recursive_attn_processor(f'''{name}.{sub_name}''' , _lowerCamelCase , _lowerCamelCase ) for name, module in self.named_children(): fn_recursive_attn_processor(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): self.set_attn_processor(AttnProcessor() ) @apply_forward_hook def _a ( self , _lowerCamelCase , _lowerCamelCase = True ): if self.use_tiling and (x.shape[-1] > self.tile_sample_min_size or x.shape[-2] > self.tile_sample_min_size): return self.tiled_encode(_lowerCamelCase , return_dict=_lowerCamelCase ) if self.use_slicing and x.shape[0] > 1: UpperCamelCase_: List[Any] = [self.encoder(_lowerCamelCase ) for x_slice in x.split(1 )] UpperCamelCase_: str = torch.cat(_lowerCamelCase ) else: UpperCamelCase_: Optional[Any] = self.encoder(_lowerCamelCase ) UpperCamelCase_: Optional[int] = self.quant_conv(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = DiagonalGaussianDistribution(_lowerCamelCase ) if not return_dict: return (posterior,) return AutoencoderKLOutput(latent_dist=_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = True ): if self.use_tiling and (z.shape[-1] > self.tile_latent_min_size or z.shape[-2] > self.tile_latent_min_size): return self.tiled_decode(_lowerCamelCase , return_dict=_lowerCamelCase ) UpperCamelCase_: Dict = self.post_quant_conv(_lowerCamelCase ) UpperCamelCase_: List[Any] = self.decoder(_lowerCamelCase ) if not return_dict: return (dec,) return DecoderOutput(sample=_lowerCamelCase ) @apply_forward_hook def _a ( self , _lowerCamelCase , _lowerCamelCase = True ): if self.use_slicing and z.shape[0] > 1: UpperCamelCase_: Optional[int] = [self._decode(_lowerCamelCase ).sample for z_slice in z.split(1 )] UpperCamelCase_: Optional[Any] = torch.cat(_lowerCamelCase ) else: UpperCamelCase_: Optional[int] = self._decode(_lowerCamelCase ).sample if not return_dict: return (decoded,) return DecoderOutput(sample=_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = min(a.shape[2] , b.shape[2] , _lowerCamelCase ) for y in range(_lowerCamelCase ): UpperCamelCase_: Dict = a[:, :, -blend_extent + y, :] * (1 - y / blend_extent) + b[:, :, y, :] * (y / blend_extent) return b def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[Any] = min(a.shape[3] , b.shape[3] , _lowerCamelCase ) for x in range(_lowerCamelCase ): UpperCamelCase_: List[Any] = a[:, :, :, -blend_extent + x] * (1 - x / blend_extent) + b[:, :, :, x] * (x / blend_extent) return b def _a ( self , _lowerCamelCase , _lowerCamelCase = True ): UpperCamelCase_: List[str] = int(self.tile_sample_min_size * (1 - self.tile_overlap_factor) ) UpperCamelCase_: Tuple = int(self.tile_latent_min_size * self.tile_overlap_factor ) UpperCamelCase_: int = self.tile_latent_min_size - blend_extent # Split the image into 512x512 tiles and encode them separately. UpperCamelCase_: Any = [] for i in range(0 , x.shape[2] , _lowerCamelCase ): UpperCamelCase_: Union[str, Any] = [] for j in range(0 , x.shape[3] , _lowerCamelCase ): UpperCamelCase_: int = x[:, :, i : i + self.tile_sample_min_size, j : j + self.tile_sample_min_size] UpperCamelCase_: int = self.encoder(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.quant_conv(_lowerCamelCase ) row.append(_lowerCamelCase ) rows.append(_lowerCamelCase ) UpperCamelCase_: Optional[int] = [] for i, row in enumerate(_lowerCamelCase ): UpperCamelCase_: List[Any] = [] for j, tile in enumerate(_lowerCamelCase ): # blend the above tile and the left tile # to the current tile and add the current tile to the result row if i > 0: UpperCamelCase_: int = self.blend_v(rows[i - 1][j] , _lowerCamelCase , _lowerCamelCase ) if j > 0: UpperCamelCase_: List[Any] = self.blend_h(row[j - 1] , _lowerCamelCase , _lowerCamelCase ) result_row.append(tile[:, :, :row_limit, :row_limit] ) result_rows.append(torch.cat(_lowerCamelCase , dim=3 ) ) UpperCamelCase_: Any = torch.cat(_lowerCamelCase , dim=2 ) UpperCamelCase_: Any = DiagonalGaussianDistribution(_lowerCamelCase ) if not return_dict: return (posterior,) return AutoencoderKLOutput(latent_dist=_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = True ): UpperCamelCase_: int = int(self.tile_latent_min_size * (1 - self.tile_overlap_factor) ) UpperCamelCase_: str = int(self.tile_sample_min_size * self.tile_overlap_factor ) UpperCamelCase_: Any = self.tile_sample_min_size - blend_extent # Split z into overlapping 64x64 tiles and decode them separately. # The tiles have an overlap to avoid seams between tiles. UpperCamelCase_: Optional[int] = [] for i in range(0 , z.shape[2] , _lowerCamelCase ): UpperCamelCase_: List[Any] = [] for j in range(0 , z.shape[3] , _lowerCamelCase ): UpperCamelCase_: int = z[:, :, i : i + self.tile_latent_min_size, j : j + self.tile_latent_min_size] UpperCamelCase_: List[str] = self.post_quant_conv(_lowerCamelCase ) UpperCamelCase_: List[str] = self.decoder(_lowerCamelCase ) row.append(_lowerCamelCase ) rows.append(_lowerCamelCase ) UpperCamelCase_: Optional[int] = [] for i, row in enumerate(_lowerCamelCase ): UpperCamelCase_: int = [] for j, tile in enumerate(_lowerCamelCase ): # blend the above tile and the left tile # to the current tile and add the current tile to the result row if i > 0: UpperCamelCase_: Any = self.blend_v(rows[i - 1][j] , _lowerCamelCase , _lowerCamelCase ) if j > 0: UpperCamelCase_: Tuple = self.blend_h(row[j - 1] , _lowerCamelCase , _lowerCamelCase ) result_row.append(tile[:, :, :row_limit, :row_limit] ) result_rows.append(torch.cat(_lowerCamelCase , dim=3 ) ) UpperCamelCase_: str = torch.cat(_lowerCamelCase , dim=2 ) if not return_dict: return (dec,) return DecoderOutput(sample=_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = False , _lowerCamelCase = True , _lowerCamelCase = None , ): UpperCamelCase_: List[Any] = sample UpperCamelCase_: Optional[Any] = self.encode(_lowerCamelCase ).latent_dist if sample_posterior: UpperCamelCase_: int = posterior.sample(generator=_lowerCamelCase ) else: UpperCamelCase_: Dict = posterior.mode() UpperCamelCase_: Dict = self.decode(_lowerCamelCase ).sample if not return_dict: return (dec,) return DecoderOutput(sample=_lowerCamelCase )
57
from collections import namedtuple A_ : Tuple = namedtuple('from_to', 'from_ to') A_ : int = { 'cubicmeter': from_to(1, 1), 'litre': from_to(0.001, 1000), 'kilolitre': from_to(1, 1), 'gallon': from_to(0.00454, 264.172), 'cubicyard': from_to(0.76455, 1.30795), 'cubicfoot': from_to(0.028, 35.3147), 'cup': from_to(0.000236588, 4226.75), } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> float: if from_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'from_type\' value: {from_type!r} Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) if to_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'to_type\' value: {to_type!r}. Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) return value * METRIC_CONVERSION[from_type].from_ * METRIC_CONVERSION[to_type].to if __name__ == "__main__": import doctest doctest.testmod()
57
1
from typing import Any class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase ): UpperCamelCase_: Dict = data UpperCamelCase_: List[Any] = None def __repr__( self ): return f'''Node({self.data})''' class _lowerCAmelCase: """simple docstring""" def __init__( self ): UpperCamelCase_: Any = None def __iter__( self ): UpperCamelCase_: Optional[Any] = self.head while node: yield node.data UpperCamelCase_: int = node.next def __len__( self ): return sum(1 for _ in self ) def __repr__( self ): return "->".join([str(_lowerCamelCase ) for item in self] ) def __getitem__( self , _lowerCamelCase ): if not 0 <= index < len(self ): raise ValueError('list index out of range.' ) for i, node in enumerate(self ): if i == index: return node return None def __setitem__( self , _lowerCamelCase , _lowerCamelCase ): if not 0 <= index < len(self ): raise ValueError('list index out of range.' ) UpperCamelCase_: Any = self.head for _ in range(_lowerCamelCase ): UpperCamelCase_: Any = current.next UpperCamelCase_: str = data def _a ( self , _lowerCamelCase ): self.insert_nth(len(self ) , _lowerCamelCase ) def _a ( self , _lowerCamelCase ): self.insert_nth(0 , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): if not 0 <= index <= len(self ): raise IndexError('list index out of range' ) UpperCamelCase_: Any = Node(_lowerCamelCase ) if self.head is None: UpperCamelCase_: int = new_node elif index == 0: UpperCamelCase_: Tuple = self.head # link new_node to head UpperCamelCase_: Optional[Any] = new_node else: UpperCamelCase_: List[str] = self.head for _ in range(index - 1 ): UpperCamelCase_: Dict = temp.next UpperCamelCase_: Tuple = temp.next UpperCamelCase_: Any = new_node def _a ( self ): # print every node data print(self ) def _a ( self ): return self.delete_nth(0 ) def _a ( self ): # delete from tail return self.delete_nth(len(self ) - 1 ) def _a ( self , _lowerCamelCase = 0 ): if not 0 <= index <= len(self ) - 1: # test if index is valid raise IndexError('List index out of range.' ) UpperCamelCase_: List[Any] = self.head # default first node if index == 0: UpperCamelCase_: int = self.head.next else: UpperCamelCase_: Dict = self.head for _ in range(index - 1 ): UpperCamelCase_: Union[str, Any] = temp.next UpperCamelCase_: List[Any] = temp.next UpperCamelCase_: int = temp.next.next return delete_node.data def _a ( self ): return self.head is None def _a ( self ): UpperCamelCase_: int = None UpperCamelCase_: List[str] = self.head while current: # Store the current node's next node. UpperCamelCase_: Tuple = current.next # Make the current node's next point backwards UpperCamelCase_: Union[str, Any] = prev # Make the previous node be the current node UpperCamelCase_: Union[str, Any] = current # Make the current node the next node (to progress iteration) UpperCamelCase_: List[Any] = next_node # Return prev in order to put the head at the end UpperCamelCase_: Any = prev def snake_case () -> None: UpperCamelCase_: Any = LinkedList() assert linked_list.is_empty() is True assert str(UpperCAmelCase__ ) == "" try: linked_list.delete_head() raise AssertionError # This should not happen. except IndexError: assert True # This should happen. try: linked_list.delete_tail() raise AssertionError # This should not happen. except IndexError: assert True # This should happen. for i in range(1_0 ): assert len(UpperCAmelCase__ ) == i linked_list.insert_nth(UpperCAmelCase__ , i + 1 ) assert str(UpperCAmelCase__ ) == "->".join(str(UpperCAmelCase__ ) for i in range(1 , 1_1 ) ) linked_list.insert_head(0 ) linked_list.insert_tail(1_1 ) assert str(UpperCAmelCase__ ) == "->".join(str(UpperCAmelCase__ ) for i in range(0 , 1_2 ) ) assert linked_list.delete_head() == 0 assert linked_list.delete_nth(9 ) == 1_0 assert linked_list.delete_tail() == 1_1 assert len(UpperCAmelCase__ ) == 9 assert str(UpperCAmelCase__ ) == "->".join(str(UpperCAmelCase__ ) for i in range(1 , 1_0 ) ) assert all(linked_list[i] == i + 1 for i in range(0 , 9 ) ) is True for i in range(0 , 9 ): UpperCamelCase_: List[str] = -i assert all(linked_list[i] == -i for i in range(0 , 9 ) ) is True linked_list.reverse() assert str(UpperCAmelCase__ ) == "->".join(str(UpperCAmelCase__ ) for i in range(-8 , 1 ) ) def snake_case () -> None: UpperCamelCase_: Tuple = [ -9, 1_0_0, Node(7_7_3_4_5_1_1_2 ), 'dlrow olleH', 7, 5_5_5_5, 0, -192.5_5555, 'Hello, world!', 77.9, Node(1_0 ), None, None, 12.20, ] UpperCamelCase_: List[Any] = LinkedList() for i in test_input: linked_list.insert_tail(UpperCAmelCase__ ) # Check if it's empty or not assert linked_list.is_empty() is False assert ( str(UpperCAmelCase__ ) == "-9->100->Node(77345112)->dlrow olleH->7->5555->0->" "-192.55555->Hello, world!->77.9->Node(10)->None->None->12.2" ) # Delete the head UpperCamelCase_: List[Any] = linked_list.delete_head() assert result == -9 assert ( str(UpperCAmelCase__ ) == "100->Node(77345112)->dlrow olleH->7->5555->0->-192.55555->" "Hello, world!->77.9->Node(10)->None->None->12.2" ) # Delete the tail UpperCamelCase_: Optional[Any] = linked_list.delete_tail() assert result == 12.2 assert ( str(UpperCAmelCase__ ) == "100->Node(77345112)->dlrow olleH->7->5555->0->-192.55555->" "Hello, world!->77.9->Node(10)->None->None" ) # Delete a node in specific location in linked list UpperCamelCase_: Any = linked_list.delete_nth(1_0 ) assert result is None assert ( str(UpperCAmelCase__ ) == "100->Node(77345112)->dlrow olleH->7->5555->0->-192.55555->" "Hello, world!->77.9->Node(10)->None" ) # Add a Node instance to its head linked_list.insert_head(Node('Hello again, world!' ) ) assert ( str(UpperCAmelCase__ ) == "Node(Hello again, world!)->100->Node(77345112)->dlrow olleH->" "7->5555->0->-192.55555->Hello, world!->77.9->Node(10)->None" ) # Add None to its tail linked_list.insert_tail(UpperCAmelCase__ ) assert ( str(UpperCAmelCase__ ) == "Node(Hello again, world!)->100->Node(77345112)->dlrow olleH->" "7->5555->0->-192.55555->Hello, world!->77.9->Node(10)->None->None" ) # Reverse the linked list linked_list.reverse() assert ( str(UpperCAmelCase__ ) == "None->None->Node(10)->77.9->Hello, world!->-192.55555->0->5555->" "7->dlrow olleH->Node(77345112)->100->Node(Hello again, world!)" ) def snake_case () -> List[str]: from doctest import testmod testmod() UpperCamelCase_: Union[str, Any] = LinkedList() linked_list.insert_head(input('Inserting 1st at head ' ).strip() ) linked_list.insert_head(input('Inserting 2nd at head ' ).strip() ) print('\nPrint list:' ) linked_list.print_list() linked_list.insert_tail(input('\nInserting 1st at tail ' ).strip() ) linked_list.insert_tail(input('Inserting 2nd at tail ' ).strip() ) print('\nPrint list:' ) linked_list.print_list() print('\nDelete head' ) linked_list.delete_head() print('Delete tail' ) linked_list.delete_tail() print('\nPrint list:' ) linked_list.print_list() print('\nReverse linked list' ) linked_list.reverse() print('\nPrint list:' ) linked_list.print_list() print('\nString representation of linked list:' ) print(UpperCAmelCase__ ) print('\nReading/changing Node data using indexing:' ) print(F'''Element at Position 1: {linked_list[1]}''' ) UpperCamelCase_: int = input('Enter New Value: ' ).strip() print('New list:' ) print(UpperCAmelCase__ ) print(F'''length of linked_list is : {len(UpperCAmelCase__ )}''' ) if __name__ == "__main__": main()
57
import warnings from ...utils import logging from .image_processing_clip import CLIPImageProcessor A_ : int = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , *_lowerCamelCase , **_lowerCamelCase ): warnings.warn( 'The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use CLIPImageProcessor instead.' , _lowerCamelCase , ) super().__init__(*_lowerCamelCase , **_lowerCamelCase )
57
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available, is_vision_available A_ : Optional[int] = { 'configuration_conditional_detr': [ 'CONDITIONAL_DETR_PRETRAINED_CONFIG_ARCHIVE_MAP', 'ConditionalDetrConfig', 'ConditionalDetrOnnxConfig', ] } try: if not is_vision_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Union[str, Any] = ['ConditionalDetrFeatureExtractor'] A_ : Union[str, Any] = ['ConditionalDetrImageProcessor'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Dict = [ '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 A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
import math from typing import Any, Callable, List, Optional, Tuple, Union import numpy as np import torch from ...models import TaFilmDecoder from ...schedulers import DDPMScheduler from ...utils import is_onnx_available, logging, randn_tensor if is_onnx_available(): from ..onnx_utils import OnnxRuntimeModel from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline from .continous_encoder import SpectrogramContEncoder from .notes_encoder import SpectrogramNotesEncoder A_ : List[Any] = logging.get_logger(__name__) # pylint: disable=invalid-name A_ : Optional[int] = 256 class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[str, Any] =['''melgan'''] def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , ): super().__init__() # From MELGAN UpperCamelCase_: Any = math.log(1e-5 ) # Matches MelGAN training. UpperCamelCase_: List[Any] = 4.0 # Largest value for most examples UpperCamelCase_: Tuple = 1_2_8 self.register_modules( notes_encoder=_lowerCamelCase , continuous_encoder=_lowerCamelCase , decoder=_lowerCamelCase , scheduler=_lowerCamelCase , melgan=_lowerCamelCase , ) def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = output_range if clip: UpperCamelCase_: int = torch.clip(_lowerCamelCase , self.min_value , self.max_value ) # Scale to [0, 1]. UpperCamelCase_: List[Any] = (features - self.min_value) / (self.max_value - self.min_value) # Scale to [min_out, max_out]. return zero_one * (max_out - min_out) + min_out def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Dict = input_range UpperCamelCase_: List[str] = torch.clip(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if clip else outputs # Scale to [0, 1]. UpperCamelCase_: Optional[Any] = (outputs - min_out) / (max_out - min_out) # Scale to [self.min_value, self.max_value]. return zero_one * (self.max_value - self.min_value) + self.min_value def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = input_tokens > 0 UpperCamelCase_ ,UpperCamelCase_: Tuple = self.notes_encoder( encoder_input_tokens=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: Any = self.continuous_encoder( encoder_inputs=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) return [(tokens_encoded, tokens_mask), (continuous_encoded, continuous_mask)] def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = noise_time if not torch.is_tensor(_lowerCamelCase ): UpperCamelCase_: List[str] = torch.tensor([timesteps] , dtype=torch.long , device=input_tokens.device ) elif torch.is_tensor(_lowerCamelCase ) and len(timesteps.shape ) == 0: UpperCamelCase_: Dict = timesteps[None].to(input_tokens.device ) # broadcast to batch dimension in a way that's compatible with ONNX/Core ML UpperCamelCase_: Union[str, Any] = timesteps * torch.ones(input_tokens.shape[0] , dtype=timesteps.dtype , device=timesteps.device ) UpperCamelCase_: Any = self.decoder( encodings_and_masks=_lowerCamelCase , decoder_input_tokens=_lowerCamelCase , decoder_noise_time=_lowerCamelCase ) return logits @torch.no_grad() def __call__( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = 1_0_0 , _lowerCamelCase = True , _lowerCamelCase = "numpy" , _lowerCamelCase = None , _lowerCamelCase = 1 , ): if (callback_steps is None) or ( callback_steps is not None and (not isinstance(_lowerCamelCase , _lowerCamelCase ) or callback_steps <= 0) ): raise ValueError( f'''`callback_steps` has to be a positive integer but is {callback_steps} of type''' f''' {type(_lowerCamelCase )}.''' ) UpperCamelCase_: List[str] = np.zeros([1, TARGET_FEATURE_LENGTH, self.n_dims] , dtype=np.floataa ) UpperCamelCase_: str = np.zeros([1, 0, self.n_dims] , np.floataa ) UpperCamelCase_: Dict = torch.ones((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) for i, encoder_input_tokens in enumerate(_lowerCamelCase ): if i == 0: UpperCamelCase_: str = torch.from_numpy(pred_mel[:1].copy() ).to( device=self.device , dtype=self.decoder.dtype ) # The first chunk has no previous context. UpperCamelCase_: Tuple = torch.zeros((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) else: # The full song pipeline does not feed in a context feature, so the mask # will be all 0s after the feature converter. Because we know we're # feeding in a full context chunk from the previous prediction, set it # to all 1s. UpperCamelCase_: Any = ones UpperCamelCase_: str = self.scale_features( _lowerCamelCase , output_range=[-1.0, 1.0] , clip=_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.encode( input_tokens=torch.IntTensor([encoder_input_tokens] ).to(device=self.device ) , continuous_inputs=_lowerCamelCase , continuous_mask=_lowerCamelCase , ) # Sample encoder_continuous_inputs shaped gaussian noise to begin loop UpperCamelCase_: List[str] = randn_tensor( shape=encoder_continuous_inputs.shape , generator=_lowerCamelCase , device=self.device , dtype=self.decoder.dtype , ) # set step values self.scheduler.set_timesteps(_lowerCamelCase ) # Denoising diffusion loop for j, t in enumerate(self.progress_bar(self.scheduler.timesteps ) ): UpperCamelCase_: int = self.decode( encodings_and_masks=_lowerCamelCase , input_tokens=_lowerCamelCase , noise_time=t / self.scheduler.config.num_train_timesteps , ) # Compute previous output: x_t -> x_t-1 UpperCamelCase_: Tuple = self.scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample UpperCamelCase_: List[Any] = self.scale_to_features(_lowerCamelCase , input_range=[-1.0, 1.0] ) UpperCamelCase_: Any = mel[:1] UpperCamelCase_: List[str] = mel.cpu().float().numpy() UpperCamelCase_: Tuple = np.concatenate([full_pred_mel, pred_mel[:1]] , axis=1 ) # call the callback, if provided if callback is not None and i % callback_steps == 0: callback(_lowerCamelCase , _lowerCamelCase ) logger.info('Generated segment' , _lowerCamelCase ) if output_type == "numpy" and not is_onnx_available(): raise ValueError( 'Cannot return output in \'np\' format if ONNX is not available. Make sure to have ONNX installed or set \'output_type\' to \'mel\'.' ) elif output_type == "numpy" and self.melgan is None: raise ValueError( 'Cannot return output in \'np\' format if melgan component is not defined. Make sure to define `self.melgan` or set \'output_type\' to \'mel\'.' ) if output_type == "numpy": UpperCamelCase_: int = self.melgan(input_features=full_pred_mel.astype(np.floataa ) ) else: UpperCamelCase_: int = full_pred_mel if not return_dict: return (output,) return AudioPipelineOutput(audios=_lowerCamelCase )
57
1
import logging import random import ray from transformers import RagConfig, RagRetriever, RagTokenizer from transformers.models.rag.retrieval_rag import CustomHFIndex A_ : str = logging.getLogger(__name__) class _lowerCAmelCase: """simple docstring""" def __init__( self ): UpperCamelCase_: Optional[int] = False def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): if not self.initialized: UpperCamelCase_: Optional[Any] = RagRetriever( _lowerCamelCase , question_encoder_tokenizer=_lowerCamelCase , generator_tokenizer=_lowerCamelCase , index=_lowerCamelCase , init_retrieval=_lowerCamelCase , ) UpperCamelCase_: str = True def _a ( self ): self.retriever.index.init_index() def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_ ,UpperCamelCase_: Any = self.retriever._main_retrieve(_lowerCamelCase , _lowerCamelCase ) return doc_ids, retrieved_doc_embeds class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=None ): if index is not None and index.is_initialized() and len(_lowerCamelCase ) > 0: raise ValueError( 'When using Ray for distributed fine-tuning, ' 'you\'ll need to provide the paths instead, ' 'as the dataset and the index are loaded ' 'separately. More info in examples/rag/use_own_knowledge_dataset.py ' ) super().__init__( _lowerCamelCase , question_encoder_tokenizer=_lowerCamelCase , generator_tokenizer=_lowerCamelCase , index=_lowerCamelCase , init_retrieval=_lowerCamelCase , ) UpperCamelCase_: List[str] = retrieval_workers if len(self.retrieval_workers ) > 0: ray.get( [ worker.create_rag_retriever.remote(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) for worker in self.retrieval_workers ] ) def _a ( self ): logger.info('initializing retrieval' ) if len(self.retrieval_workers ) > 0: ray.get([worker.init_retrieval.remote() for worker in self.retrieval_workers] ) else: # Non-distributed training. Load index into this same process. self.index.init_index() def _a ( self , _lowerCamelCase , _lowerCamelCase ): if len(self.retrieval_workers ) > 0: # Select a random retrieval actor. UpperCamelCase_: Union[str, Any] = self.retrieval_workers[random.randint(0 , len(self.retrieval_workers ) - 1 )] UpperCamelCase_ ,UpperCamelCase_: str = ray.get(random_worker.retrieve.remote(_lowerCamelCase , _lowerCamelCase ) ) else: UpperCamelCase_ ,UpperCamelCase_: Dict = self._main_retrieve(_lowerCamelCase , _lowerCamelCase ) return retrieved_doc_embeds, doc_ids, self.index.get_doc_dicts(_lowerCamelCase ) @classmethod def _a ( cls , _lowerCamelCase , _lowerCamelCase=None , **_lowerCamelCase ): return super(_lowerCamelCase , cls ).get_tokenizers(_lowerCamelCase , _lowerCamelCase , **_lowerCamelCase ) @classmethod def _a ( cls , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=None , **_lowerCamelCase ): UpperCamelCase_: List[str] = kwargs.pop('config' , _lowerCamelCase ) or RagConfig.from_pretrained(_lowerCamelCase , **_lowerCamelCase ) UpperCamelCase_: Optional[int] = RagTokenizer.from_pretrained(_lowerCamelCase , config=_lowerCamelCase ) UpperCamelCase_: List[str] = rag_tokenizer.question_encoder UpperCamelCase_: List[Any] = rag_tokenizer.generator if indexed_dataset is not None: UpperCamelCase_: Union[str, Any] = 'custom' UpperCamelCase_: int = CustomHFIndex(config.retrieval_vector_size , _lowerCamelCase ) else: UpperCamelCase_: str = cls._build_index(_lowerCamelCase ) return cls( _lowerCamelCase , question_encoder_tokenizer=_lowerCamelCase , generator_tokenizer=_lowerCamelCase , retrieval_workers=_lowerCamelCase , index=_lowerCamelCase , )
57
import itertools from dataclasses import dataclass from typing import Any, Callable, Dict, List, Optional, Union import pandas as pd import pyarrow as pa import datasets import datasets.config from datasets.features.features import require_storage_cast from datasets.table import table_cast from datasets.utils.py_utils import Literal A_ : Union[str, Any] = datasets.utils.logging.get_logger(__name__) A_ : Optional[Any] = ['names', 'prefix'] A_ : List[str] = ['warn_bad_lines', 'error_bad_lines', 'mangle_dupe_cols'] A_ : List[Any] = ['encoding_errors', 'on_bad_lines'] A_ : Optional[Any] = ['date_format'] @dataclass class _lowerCAmelCase( datasets.BuilderConfig ): """simple docstring""" a : str ="," a : Optional[str] =None a : Optional[Union[int, List[int], str]] ="infer" a : Optional[List[str]] =None a : Optional[List[str]] =None a : Optional[Union[int, str, List[int], List[str]]] =None a : Optional[Union[List[int], List[str]]] =None a : Optional[str] =None a : bool =True a : Optional[Literal["c", "python", "pyarrow"]] =None a : Dict[Union[int, str], Callable[[Any], Any]] =None a : Optional[list] =None a : Optional[list] =None a : bool =False a : Optional[Union[int, List[int]]] =None a : Optional[int] =None a : Optional[Union[str, List[str]]] =None a : bool =True a : bool =True a : bool =False a : bool =True a : Optional[str] =None a : str ="." a : Optional[str] =None a : str ='"' a : int =0 a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : bool =True a : bool =True a : int =0 a : bool =True a : bool =False a : Optional[str] =None a : int =10000 a : Optional[datasets.Features] =None a : Optional[str] ="strict" a : Literal["error", "warn", "skip"] ="error" a : Optional[str] =None def _a ( self ): if self.delimiter is not None: UpperCamelCase_: Optional[Any] = self.delimiter if self.column_names is not None: UpperCamelCase_: int = self.column_names @property def _a ( self ): UpperCamelCase_: Any = { 'sep': self.sep, 'header': self.header, 'names': self.names, 'index_col': self.index_col, 'usecols': self.usecols, 'prefix': self.prefix, 'mangle_dupe_cols': self.mangle_dupe_cols, 'engine': self.engine, 'converters': self.converters, 'true_values': self.true_values, 'false_values': self.false_values, 'skipinitialspace': self.skipinitialspace, 'skiprows': self.skiprows, 'nrows': self.nrows, 'na_values': self.na_values, 'keep_default_na': self.keep_default_na, 'na_filter': self.na_filter, 'verbose': self.verbose, 'skip_blank_lines': self.skip_blank_lines, 'thousands': self.thousands, 'decimal': self.decimal, 'lineterminator': self.lineterminator, 'quotechar': self.quotechar, 'quoting': self.quoting, 'escapechar': self.escapechar, 'comment': self.comment, 'encoding': self.encoding, 'dialect': self.dialect, 'error_bad_lines': self.error_bad_lines, 'warn_bad_lines': self.warn_bad_lines, 'skipfooter': self.skipfooter, 'doublequote': self.doublequote, 'memory_map': self.memory_map, 'float_precision': self.float_precision, 'chunksize': self.chunksize, 'encoding_errors': self.encoding_errors, 'on_bad_lines': self.on_bad_lines, 'date_format': self.date_format, } # some kwargs must not be passed if they don't have a default value # some others are deprecated and we can also not pass them if they are the default value for pd_read_csv_parameter in _PANDAS_READ_CSV_NO_DEFAULT_PARAMETERS + _PANDAS_READ_CSV_DEPRECATED_PARAMETERS: if pd_read_csv_kwargs[pd_read_csv_parameter] == getattr(CsvConfig() , _lowerCamelCase ): del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 2.0 new arguments if not (datasets.config.PANDAS_VERSION.major >= 2): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_2_0_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 1.3 new arguments if not (datasets.config.PANDAS_VERSION.major >= 1 and datasets.config.PANDAS_VERSION.minor >= 3): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_1_3_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] return pd_read_csv_kwargs class _lowerCAmelCase( datasets.ArrowBasedBuilder ): """simple docstring""" a : Dict =CsvConfig def _a ( self ): return datasets.DatasetInfo(features=self.config.features ) def _a ( self , _lowerCamelCase ): if not self.config.data_files: raise ValueError(f'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) UpperCamelCase_: Tuple = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_lowerCamelCase , (str, list, tuple) ): UpperCamelCase_: List[Any] = data_files if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = [files] UpperCamelCase_: Tuple = [dl_manager.iter_files(_lowerCamelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] UpperCamelCase_: Tuple = [] for split_name, files in data_files.items(): if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = [files] UpperCamelCase_: int = [dl_manager.iter_files(_lowerCamelCase ) for file in files] splits.append(datasets.SplitGenerator(name=_lowerCamelCase , gen_kwargs={'files': files} ) ) return splits def _a ( self , _lowerCamelCase ): if self.config.features is not None: UpperCamelCase_: List[Any] = self.config.features.arrow_schema if all(not require_storage_cast(_lowerCamelCase ) for feature in self.config.features.values() ): # cheaper cast UpperCamelCase_: Optional[int] = pa.Table.from_arrays([pa_table[field.name] for field in schema] , schema=_lowerCamelCase ) else: # more expensive cast; allows str <-> int/float or str to Audio for example UpperCamelCase_: int = table_cast(_lowerCamelCase , _lowerCamelCase ) return pa_table def _a ( self , _lowerCamelCase ): UpperCamelCase_: List[str] = self.config.features.arrow_schema if self.config.features else None # dtype allows reading an int column as str UpperCamelCase_: Dict = ( { name: dtype.to_pandas_dtype() if not require_storage_cast(_lowerCamelCase ) else object for name, dtype, feature in zip(schema.names , schema.types , self.config.features.values() ) } if schema is not None else None ) for file_idx, file in enumerate(itertools.chain.from_iterable(_lowerCamelCase ) ): UpperCamelCase_: Optional[Any] = pd.read_csv(_lowerCamelCase , iterator=_lowerCamelCase , dtype=_lowerCamelCase , **self.config.pd_read_csv_kwargs ) try: for batch_idx, df in enumerate(_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = pa.Table.from_pandas(_lowerCamelCase ) # Uncomment for debugging (will print the Arrow table size and elements) # logger.warning(f"pa_table: {pa_table} num rows: {pa_table.num_rows}") # logger.warning('\n'.join(str(pa_table.slice(i, 1).to_pydict()) for i in range(pa_table.num_rows))) yield (file_idx, batch_idx), self._cast_table(_lowerCamelCase ) except ValueError as e: logger.error(f'''Failed to read file \'{file}\' with error {type(_lowerCamelCase )}: {e}''' ) raise
57
1
import argparse import json from collections import OrderedDict from pathlib import Path import requests import torch from huggingface_hub import hf_hub_download from PIL import Image from transformers import ( ConditionalDetrConfig, ConditionalDetrForObjectDetection, ConditionalDetrForSegmentation, ConditionalDetrImageProcessor, ) from transformers.utils import logging logging.set_verbosity_info() A_ : List[Any] = logging.get_logger(__name__) # here we list all keys to be renamed (original name on the left, our name on the right) A_ : Dict = [] for i in range(6): # encoder layers: output projection, 2 feedforward neural networks and 2 layernorms rename_keys.append( (F'''transformer.encoder.layers.{i}.self_attn.out_proj.weight''', F'''encoder.layers.{i}.self_attn.out_proj.weight''') ) rename_keys.append( (F'''transformer.encoder.layers.{i}.self_attn.out_proj.bias''', F'''encoder.layers.{i}.self_attn.out_proj.bias''') ) rename_keys.append((F'''transformer.encoder.layers.{i}.linear1.weight''', F'''encoder.layers.{i}.fc1.weight''')) rename_keys.append((F'''transformer.encoder.layers.{i}.linear1.bias''', F'''encoder.layers.{i}.fc1.bias''')) rename_keys.append((F'''transformer.encoder.layers.{i}.linear2.weight''', F'''encoder.layers.{i}.fc2.weight''')) rename_keys.append((F'''transformer.encoder.layers.{i}.linear2.bias''', F'''encoder.layers.{i}.fc2.bias''')) rename_keys.append( (F'''transformer.encoder.layers.{i}.norm1.weight''', F'''encoder.layers.{i}.self_attn_layer_norm.weight''') ) rename_keys.append((F'''transformer.encoder.layers.{i}.norm1.bias''', F'''encoder.layers.{i}.self_attn_layer_norm.bias''')) rename_keys.append((F'''transformer.encoder.layers.{i}.norm2.weight''', F'''encoder.layers.{i}.final_layer_norm.weight''')) rename_keys.append((F'''transformer.encoder.layers.{i}.norm2.bias''', F'''encoder.layers.{i}.final_layer_norm.bias''')) # decoder layers: 2 times output projection, 2 feedforward neural networks and 3 layernorms rename_keys.append( (F'''transformer.decoder.layers.{i}.self_attn.out_proj.weight''', F'''decoder.layers.{i}.self_attn.out_proj.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.self_attn.out_proj.bias''', F'''decoder.layers.{i}.self_attn.out_proj.bias''') ) rename_keys.append( ( F'''transformer.decoder.layers.{i}.cross_attn.out_proj.weight''', F'''decoder.layers.{i}.encoder_attn.out_proj.weight''', ) ) rename_keys.append( ( F'''transformer.decoder.layers.{i}.cross_attn.out_proj.bias''', F'''decoder.layers.{i}.encoder_attn.out_proj.bias''', ) ) rename_keys.append((F'''transformer.decoder.layers.{i}.linear1.weight''', F'''decoder.layers.{i}.fc1.weight''')) rename_keys.append((F'''transformer.decoder.layers.{i}.linear1.bias''', F'''decoder.layers.{i}.fc1.bias''')) rename_keys.append((F'''transformer.decoder.layers.{i}.linear2.weight''', F'''decoder.layers.{i}.fc2.weight''')) rename_keys.append((F'''transformer.decoder.layers.{i}.linear2.bias''', F'''decoder.layers.{i}.fc2.bias''')) rename_keys.append( (F'''transformer.decoder.layers.{i}.norm1.weight''', F'''decoder.layers.{i}.self_attn_layer_norm.weight''') ) rename_keys.append((F'''transformer.decoder.layers.{i}.norm1.bias''', F'''decoder.layers.{i}.self_attn_layer_norm.bias''')) rename_keys.append( (F'''transformer.decoder.layers.{i}.norm2.weight''', F'''decoder.layers.{i}.encoder_attn_layer_norm.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.norm2.bias''', F'''decoder.layers.{i}.encoder_attn_layer_norm.bias''') ) rename_keys.append((F'''transformer.decoder.layers.{i}.norm3.weight''', F'''decoder.layers.{i}.final_layer_norm.weight''')) rename_keys.append((F'''transformer.decoder.layers.{i}.norm3.bias''', F'''decoder.layers.{i}.final_layer_norm.bias''')) # q, k, v projections in self/cross-attention in decoder for conditional DETR rename_keys.append( (F'''transformer.decoder.layers.{i}.sa_qcontent_proj.weight''', F'''decoder.layers.{i}.sa_qcontent_proj.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.sa_kcontent_proj.weight''', F'''decoder.layers.{i}.sa_kcontent_proj.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.sa_qpos_proj.weight''', F'''decoder.layers.{i}.sa_qpos_proj.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.sa_kpos_proj.weight''', F'''decoder.layers.{i}.sa_kpos_proj.weight''') ) rename_keys.append((F'''transformer.decoder.layers.{i}.sa_v_proj.weight''', F'''decoder.layers.{i}.sa_v_proj.weight''')) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_qcontent_proj.weight''', F'''decoder.layers.{i}.ca_qcontent_proj.weight''') ) # rename_keys.append((f"transformer.decoder.layers.{i}.ca_qpos_proj.weight", f"decoder.layers.{i}.ca_qpos_proj.weight")) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_kcontent_proj.weight''', F'''decoder.layers.{i}.ca_kcontent_proj.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_kpos_proj.weight''', F'''decoder.layers.{i}.ca_kpos_proj.weight''') ) rename_keys.append((F'''transformer.decoder.layers.{i}.ca_v_proj.weight''', F'''decoder.layers.{i}.ca_v_proj.weight''')) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_qpos_sine_proj.weight''', F'''decoder.layers.{i}.ca_qpos_sine_proj.weight''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.sa_qcontent_proj.bias''', F'''decoder.layers.{i}.sa_qcontent_proj.bias''') ) rename_keys.append( (F'''transformer.decoder.layers.{i}.sa_kcontent_proj.bias''', F'''decoder.layers.{i}.sa_kcontent_proj.bias''') ) rename_keys.append((F'''transformer.decoder.layers.{i}.sa_qpos_proj.bias''', F'''decoder.layers.{i}.sa_qpos_proj.bias''')) rename_keys.append((F'''transformer.decoder.layers.{i}.sa_kpos_proj.bias''', F'''decoder.layers.{i}.sa_kpos_proj.bias''')) rename_keys.append((F'''transformer.decoder.layers.{i}.sa_v_proj.bias''', F'''decoder.layers.{i}.sa_v_proj.bias''')) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_qcontent_proj.bias''', F'''decoder.layers.{i}.ca_qcontent_proj.bias''') ) # rename_keys.append((f"transformer.decoder.layers.{i}.ca_qpos_proj.bias", f"decoder.layers.{i}.ca_qpos_proj.bias")) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_kcontent_proj.bias''', F'''decoder.layers.{i}.ca_kcontent_proj.bias''') ) rename_keys.append((F'''transformer.decoder.layers.{i}.ca_kpos_proj.bias''', F'''decoder.layers.{i}.ca_kpos_proj.bias''')) rename_keys.append((F'''transformer.decoder.layers.{i}.ca_v_proj.bias''', F'''decoder.layers.{i}.ca_v_proj.bias''')) rename_keys.append( (F'''transformer.decoder.layers.{i}.ca_qpos_sine_proj.bias''', F'''decoder.layers.{i}.ca_qpos_sine_proj.bias''') ) # convolutional projection + query embeddings + layernorm of decoder + class and bounding box heads # for conditional DETR, also convert reference point head and query scale MLP rename_keys.extend( [ ('input_proj.weight', 'input_projection.weight'), ('input_proj.bias', 'input_projection.bias'), ('query_embed.weight', 'query_position_embeddings.weight'), ('transformer.decoder.norm.weight', 'decoder.layernorm.weight'), ('transformer.decoder.norm.bias', 'decoder.layernorm.bias'), ('class_embed.weight', 'class_labels_classifier.weight'), ('class_embed.bias', 'class_labels_classifier.bias'), ('bbox_embed.layers.0.weight', 'bbox_predictor.layers.0.weight'), ('bbox_embed.layers.0.bias', 'bbox_predictor.layers.0.bias'), ('bbox_embed.layers.1.weight', 'bbox_predictor.layers.1.weight'), ('bbox_embed.layers.1.bias', 'bbox_predictor.layers.1.bias'), ('bbox_embed.layers.2.weight', 'bbox_predictor.layers.2.weight'), ('bbox_embed.layers.2.bias', 'bbox_predictor.layers.2.bias'), ('transformer.decoder.ref_point_head.layers.0.weight', 'decoder.ref_point_head.layers.0.weight'), ('transformer.decoder.ref_point_head.layers.0.bias', 'decoder.ref_point_head.layers.0.bias'), ('transformer.decoder.ref_point_head.layers.1.weight', 'decoder.ref_point_head.layers.1.weight'), ('transformer.decoder.ref_point_head.layers.1.bias', 'decoder.ref_point_head.layers.1.bias'), ('transformer.decoder.query_scale.layers.0.weight', 'decoder.query_scale.layers.0.weight'), ('transformer.decoder.query_scale.layers.0.bias', 'decoder.query_scale.layers.0.bias'), ('transformer.decoder.query_scale.layers.1.weight', 'decoder.query_scale.layers.1.weight'), ('transformer.decoder.query_scale.layers.1.bias', 'decoder.query_scale.layers.1.bias'), ('transformer.decoder.layers.0.ca_qpos_proj.weight', 'decoder.layers.0.ca_qpos_proj.weight'), ('transformer.decoder.layers.0.ca_qpos_proj.bias', 'decoder.layers.0.ca_qpos_proj.bias'), ] ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: str = state_dict.pop(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = val def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if "backbone.0.body" in key: UpperCamelCase_: int = key.replace('backbone.0.body' , 'backbone.conv_encoder.model' ) UpperCamelCase_: str = value else: UpperCamelCase_: Optional[int] = value return new_state_dict def snake_case (UpperCAmelCase__ , UpperCAmelCase__=False ) -> Union[str, Any]: UpperCamelCase_: List[Any] = '' if is_panoptic: UpperCamelCase_: Union[str, Any] = 'conditional_detr.' # first: transformer encoder for i in range(6 ): # read in weights + bias of input projection layer (in PyTorch's MultiHeadAttention, this is a single matrix + bias) UpperCamelCase_: Tuple = state_dict.pop(F'''{prefix}transformer.encoder.layers.{i}.self_attn.in_proj_weight''' ) UpperCamelCase_: Optional[int] = state_dict.pop(F'''{prefix}transformer.encoder.layers.{i}.self_attn.in_proj_bias''' ) # next, add query, keys and values (in that order) to the state dict UpperCamelCase_: str = in_proj_weight[:2_5_6, :] UpperCamelCase_: int = in_proj_bias[:2_5_6] UpperCamelCase_: Optional[Any] = in_proj_weight[2_5_6:5_1_2, :] UpperCamelCase_: List[str] = in_proj_bias[2_5_6:5_1_2] UpperCamelCase_: Dict = in_proj_weight[-2_5_6:, :] UpperCamelCase_: List[str] = in_proj_bias[-2_5_6:] def snake_case () -> int: UpperCamelCase_: Optional[int] = 'http://images.cocodataset.org/val2017/000000039769.jpg' UpperCamelCase_: List[Any] = Image.open(requests.get(UpperCAmelCase__ , stream=UpperCAmelCase__ ).raw ) return im @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: List[Any] = ConditionalDetrConfig() # set backbone and dilation attributes if "resnet101" in model_name: UpperCamelCase_: Dict = 'resnet101' if "dc5" in model_name: UpperCamelCase_: Union[str, Any] = True UpperCamelCase_: Optional[int] = 'panoptic' in model_name if is_panoptic: UpperCamelCase_: Optional[Any] = 2_5_0 else: UpperCamelCase_: Optional[Any] = 9_1 UpperCamelCase_: Any = 'huggingface/label-files' UpperCamelCase_: List[str] = 'coco-detection-id2label.json' UpperCamelCase_: Any = json.load(open(hf_hub_download(UpperCAmelCase__ , UpperCAmelCase__ , repo_type='dataset' ) , 'r' ) ) UpperCamelCase_: str = {int(UpperCAmelCase__ ): v for k, v in idalabel.items()} UpperCamelCase_: List[str] = idalabel UpperCamelCase_: List[Any] = {v: k for k, v in idalabel.items()} # load image processor UpperCamelCase_: List[Any] = 'coco_panoptic' if is_panoptic else 'coco_detection' UpperCamelCase_: List[Any] = ConditionalDetrImageProcessor(format=UpperCAmelCase__ ) # prepare image UpperCamelCase_: Optional[int] = prepare_img() UpperCamelCase_: Union[str, Any] = image_processor(images=UpperCAmelCase__ , return_tensors='pt' ) UpperCamelCase_: Optional[int] = encoding['pixel_values'] logger.info(F'''Converting model {model_name}...''' ) # load original model from torch hub UpperCamelCase_: Tuple = torch.hub.load('DeppMeng/ConditionalDETR' , UpperCAmelCase__ , pretrained=UpperCAmelCase__ ).eval() UpperCamelCase_: Union[str, Any] = conditional_detr.state_dict() # rename keys for src, dest in rename_keys: if is_panoptic: UpperCamelCase_: List[str] = 'conditional_detr.' + src rename_key(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = rename_backbone_keys(UpperCAmelCase__ ) # query, key and value matrices need special treatment read_in_q_k_v(UpperCAmelCase__ , is_panoptic=UpperCAmelCase__ ) # important: we need to prepend a prefix to each of the base model keys as the head models use different attributes for them UpperCamelCase_: Optional[Any] = 'conditional_detr.model.' if is_panoptic else 'model.' for key in state_dict.copy().keys(): if is_panoptic: if ( key.startswith('conditional_detr' ) and not key.startswith('class_labels_classifier' ) and not key.startswith('bbox_predictor' ) ): UpperCamelCase_: int = state_dict.pop(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = val elif "class_labels_classifier" in key or "bbox_predictor" in key: UpperCamelCase_: int = state_dict.pop(UpperCAmelCase__ ) UpperCamelCase_: Dict = val elif key.startswith('bbox_attention' ) or key.startswith('mask_head' ): continue else: UpperCamelCase_: List[str] = state_dict.pop(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = val else: if not key.startswith('class_labels_classifier' ) and not key.startswith('bbox_predictor' ): UpperCamelCase_: Optional[int] = state_dict.pop(UpperCAmelCase__ ) UpperCamelCase_: List[str] = val # finally, create HuggingFace model and load state dict UpperCamelCase_: List[Any] = ConditionalDetrForSegmentation(UpperCAmelCase__ ) if is_panoptic else ConditionalDetrForObjectDetection(UpperCAmelCase__ ) model.load_state_dict(UpperCAmelCase__ ) model.eval() model.push_to_hub(repo_id=UpperCAmelCase__ , organization='DepuMeng' , commit_message='Add model' ) # verify our conversion UpperCamelCase_: Union[str, Any] = conditional_detr(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = model(UpperCAmelCase__ ) assert torch.allclose(outputs.logits , original_outputs['pred_logits'] , atol=1E-4 ) assert torch.allclose(outputs.pred_boxes , original_outputs['pred_boxes'] , atol=1E-4 ) if is_panoptic: assert torch.allclose(outputs.pred_masks , original_outputs['pred_masks'] , atol=1E-4 ) # Save model and image processor logger.info(F'''Saving PyTorch model and image processor to {pytorch_dump_folder_path}...''' ) Path(UpperCAmelCase__ ).mkdir(exist_ok=UpperCAmelCase__ ) model.save_pretrained(UpperCAmelCase__ ) image_processor.save_pretrained(UpperCAmelCase__ ) if __name__ == "__main__": A_ : Dict = argparse.ArgumentParser() parser.add_argument( '--model_name', default='conditional_detr_resnet50', type=str, help='Name of the CONDITIONAL_DETR model you\'d like to convert.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to the folder to output PyTorch model.' ) A_ : Dict = parser.parse_args() convert_conditional_detr_checkpoint(args.model_name, args.pytorch_dump_folder_path)
57
from ...configuration_utils import PretrainedConfig from ...utils import logging A_ : str = logging.get_logger(__name__) A_ : Union[str, Any] = { 's-JoL/Open-Llama-V1': 'https://huggingface.co/s-JoL/Open-Llama-V1/blob/main/config.json', } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Tuple ='''open-llama''' def __init__( self , _lowerCamelCase=1_0_0_0_0_0 , _lowerCamelCase=4_0_9_6 , _lowerCamelCase=1_1_0_0_8 , _lowerCamelCase=3_2 , _lowerCamelCase=3_2 , _lowerCamelCase="silu" , _lowerCamelCase=2_0_4_8 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-6 , _lowerCamelCase=True , _lowerCamelCase=0 , _lowerCamelCase=1 , _lowerCamelCase=2 , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: int = vocab_size UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: Dict = hidden_size UpperCamelCase_: Dict = intermediate_size UpperCamelCase_: Union[str, Any] = num_hidden_layers UpperCamelCase_: Dict = num_attention_heads UpperCamelCase_: Union[str, Any] = hidden_act UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: List[Any] = rms_norm_eps UpperCamelCase_: Union[str, Any] = use_cache UpperCamelCase_: Dict = kwargs.pop( 'use_memorry_efficient_attention' , _lowerCamelCase ) UpperCamelCase_: Union[str, Any] = hidden_dropout_prob UpperCamelCase_: Any = attention_dropout_prob UpperCamelCase_: int = use_stable_embedding UpperCamelCase_: Tuple = shared_input_output_embedding UpperCamelCase_: str = rope_scaling self._rope_scaling_validation() super().__init__( pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , tie_word_embeddings=_lowerCamelCase , **_lowerCamelCase , ) def _a ( self ): if self.rope_scaling is None: return if not isinstance(self.rope_scaling , _lowerCamelCase ) or len(self.rope_scaling ) != 2: raise ValueError( '`rope_scaling` must be a dictionary with with two fields, `name` and `factor`, ' f'''got {self.rope_scaling}''' ) UpperCamelCase_: str = self.rope_scaling.get('type' , _lowerCamelCase ) UpperCamelCase_: int = self.rope_scaling.get('factor' , _lowerCamelCase ) if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]: raise ValueError( f'''`rope_scaling`\'s name field must be one of [\'linear\', \'dynamic\'], got {rope_scaling_type}''' ) if rope_scaling_factor is None or not isinstance(_lowerCamelCase , _lowerCamelCase ) or rope_scaling_factor <= 1.0: raise ValueError(f'''`rope_scaling`\'s factor field must be an float > 1, got {rope_scaling_factor}''' )
57
1
import unittest import numpy as np from transformers import AlbertConfig, 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.numpy as jnp from transformers.models.albert.modeling_flax_albert import ( FlaxAlbertForMaskedLM, FlaxAlbertForMultipleChoice, FlaxAlbertForPreTraining, FlaxAlbertForQuestionAnswering, FlaxAlbertForSequenceClassification, FlaxAlbertForTokenClassification, FlaxAlbertModel, ) class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=9_9 , _lowerCamelCase=3_2 , _lowerCamelCase=5 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase="gelu" , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=5_1_2 , _lowerCamelCase=1_6 , _lowerCamelCase=2 , _lowerCamelCase=0.0_2 , _lowerCamelCase=4 , ): UpperCamelCase_: int = parent UpperCamelCase_: List[str] = batch_size UpperCamelCase_: List[str] = seq_length UpperCamelCase_: Union[str, Any] = is_training UpperCamelCase_: Optional[int] = use_attention_mask UpperCamelCase_: List[Any] = use_token_type_ids UpperCamelCase_: Optional[Any] = use_labels UpperCamelCase_: List[str] = vocab_size UpperCamelCase_: Optional[int] = hidden_size UpperCamelCase_: str = num_hidden_layers UpperCamelCase_: str = num_attention_heads UpperCamelCase_: List[Any] = intermediate_size UpperCamelCase_: Optional[Any] = hidden_act UpperCamelCase_: int = hidden_dropout_prob UpperCamelCase_: Any = attention_probs_dropout_prob UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: int = type_vocab_size UpperCamelCase_: str = type_sequence_label_size UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: Optional[Any] = num_choices def _a ( self ): UpperCamelCase_: Optional[Any] = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) UpperCamelCase_: List[str] = None if self.use_attention_mask: UpperCamelCase_: Optional[int] = random_attention_mask([self.batch_size, self.seq_length] ) UpperCamelCase_: List[Any] = None if self.use_token_type_ids: UpperCamelCase_: Tuple = ids_tensor([self.batch_size, self.seq_length] , self.type_vocab_size ) UpperCamelCase_: List[str] = AlbertConfig( vocab_size=self.vocab_size , hidden_size=self.hidden_size , num_hidden_layers=self.num_hidden_layers , num_attention_heads=self.num_attention_heads , intermediate_size=self.intermediate_size , hidden_act=self.hidden_act , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , type_vocab_size=self.type_vocab_size , is_decoder=_lowerCamelCase , initializer_range=self.initializer_range , ) return config, input_ids, token_type_ids, attention_mask def _a ( self ): UpperCamelCase_: Union[str, Any] = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: Optional[Any] = {'input_ids': input_ids, 'token_type_ids': token_type_ids, 'attention_mask': attention_mask} return config, inputs_dict @require_flax class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Dict =( ( FlaxAlbertModel, FlaxAlbertForPreTraining, FlaxAlbertForMaskedLM, FlaxAlbertForMultipleChoice, FlaxAlbertForQuestionAnswering, FlaxAlbertForSequenceClassification, FlaxAlbertForTokenClassification, FlaxAlbertForQuestionAnswering, ) if is_flax_available() else () ) def _a ( self ): UpperCamelCase_: int = FlaxAlbertModelTester(self ) @slow def _a ( self ): for model_class_name in self.all_model_classes: UpperCamelCase_: int = model_class_name.from_pretrained('albert-base-v2' ) UpperCamelCase_: Tuple = model(np.ones((1, 1) ) ) self.assertIsNotNone(_lowerCamelCase ) @require_flax class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @slow def _a ( self ): UpperCamelCase_: Any = FlaxAlbertModel.from_pretrained('albert-base-v2' ) UpperCamelCase_: Union[str, Any] = np.array([[0, 3_4_5, 2_3_2, 3_2_8, 7_4_0, 1_4_0, 1_6_9_5, 6_9, 6_0_7_8, 1_5_8_8, 2]] ) UpperCamelCase_: int = np.array([[0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]] ) UpperCamelCase_: str = model(_lowerCamelCase , attention_mask=_lowerCamelCase )[0] UpperCamelCase_: Union[str, Any] = (1, 1_1, 7_6_8) self.assertEqual(output.shape , _lowerCamelCase ) UpperCamelCase_: Any = np.array( [[[-0.6_5_1_3, 1.5_0_3_5, -0.2_7_6_6], [-0.6_5_1_5, 1.5_0_4_6, -0.2_7_8_0], [-0.6_5_1_2, 1.5_0_4_9, -0.2_7_8_4]]] ) self.assertTrue(jnp.allclose(output[:, 1:4, 1:4] , _lowerCamelCase , atol=1e-4 ) )
57
import collections import inspect import unittest from transformers import FocalNetConfig from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_backbone_common import BackboneTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( FocalNetBackbone, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetModel, ) from transformers.models.focalnet.modeling_focalnet import FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=1_6 , _lowerCamelCase=[3_2, 6_4, 1_2_8] , _lowerCamelCase=[1, 2, 1] , _lowerCamelCase=[2, 2, 4] , _lowerCamelCase=2 , _lowerCamelCase=2.0 , _lowerCamelCase=True , _lowerCamelCase=0.0 , _lowerCamelCase=0.0 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-5 , _lowerCamelCase=True , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=1_0 , _lowerCamelCase=8 , _lowerCamelCase=["stage1", "stage2"] , _lowerCamelCase=[1, 2] , ): UpperCamelCase_: Tuple = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = image_size UpperCamelCase_: Tuple = patch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Dict = embed_dim UpperCamelCase_: List[Any] = hidden_sizes UpperCamelCase_: List[str] = depths UpperCamelCase_: List[str] = num_heads UpperCamelCase_: Optional[int] = window_size UpperCamelCase_: Tuple = mlp_ratio UpperCamelCase_: Dict = qkv_bias UpperCamelCase_: str = hidden_dropout_prob UpperCamelCase_: Optional[Any] = attention_probs_dropout_prob UpperCamelCase_: int = drop_path_rate UpperCamelCase_: Dict = hidden_act UpperCamelCase_: List[str] = use_absolute_embeddings UpperCamelCase_: Dict = patch_norm UpperCamelCase_: Optional[Any] = layer_norm_eps UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = is_training UpperCamelCase_: Optional[int] = scope UpperCamelCase_: str = use_labels UpperCamelCase_: List[str] = type_sequence_label_size UpperCamelCase_: Union[str, Any] = encoder_stride UpperCamelCase_: Dict = out_features UpperCamelCase_: str = out_indices def _a ( self ): UpperCamelCase_: int = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: List[Any] = None if self.use_labels: UpperCamelCase_: Any = ids_tensor([self.batch_size] , self.type_sequence_label_size ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return FocalNetConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , embed_dim=self.embed_dim , hidden_sizes=self.hidden_sizes , depths=self.depths , num_heads=self.num_heads , window_size=self.window_size , mlp_ratio=self.mlp_ratio , qkv_bias=self.qkv_bias , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , drop_path_rate=self.drop_path_rate , hidden_act=self.hidden_act , use_absolute_embeddings=self.use_absolute_embeddings , path_norm=self.patch_norm , layer_norm_eps=self.layer_norm_eps , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , out_features=self.out_features , out_indices=self.out_indices , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = FocalNetModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: int = model(_lowerCamelCase ) UpperCamelCase_: int = ((config.image_size // config.patch_size) ** 2) // (4 ** (len(config.depths ) - 1)) UpperCamelCase_: int = int(config.embed_dim * 2 ** (len(config.depths ) - 1) ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, expected_seq_len, expected_dim) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[str] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size, 8, 8] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[:-1] ) # verify backbone works with out_features=None UpperCamelCase_: int = None UpperCamelCase_: List[Any] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size * 2, 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = FocalNetForMaskedImageModeling(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Dict = FocalNetForMaskedImageModeling(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.type_sequence_label_size UpperCamelCase_: List[Any] = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: str = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images UpperCamelCase_: Union[str, Any] = 1 UpperCamelCase_: Dict = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Dict = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def _a ( self ): UpperCamelCase_: Dict = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: int = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =( ( FocalNetModel, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetBackbone, ) if is_torch_available() else () ) a : Any =( {'''feature-extraction''': FocalNetModel, '''image-classification''': FocalNetForImageClassification} if is_torch_available() else {} ) a : Dict =False a : Union[str, Any] =False a : Tuple =False a : Optional[int] =False a : Union[str, Any] =False def _a ( self ): UpperCamelCase_: str = FocalNetModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , embed_dim=3_7 , has_text_modality=_lowerCamelCase ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_backbone(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) @unittest.skip(reason='FocalNet does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='FocalNet does not use feedforward chunking' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Union[str, Any] = model_class(_lowerCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) UpperCamelCase_: List[str] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(_lowerCamelCase , nn.Linear ) ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: List[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Any = [*signature.parameters.keys()] UpperCamelCase_: List[Any] = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: Tuple = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = outputs.hidden_states UpperCamelCase_: Tuple = getattr( self.model_tester , 'expected_num_hidden_layers' , len(self.model_tester.depths ) + 1 ) self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) # FocalNet has a different seq_length UpperCamelCase_: Optional[Any] = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: int = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) UpperCamelCase_: Dict = outputs.reshaped_hidden_states self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = reshaped_hidden_states[0].shape UpperCamelCase_: List[str] = ( reshaped_hidden_states[0].view(_lowerCamelCase , _lowerCamelCase , height * width ).permute(0 , 2 , 1 ) ) self.assertListEqual( list(reshaped_hidden_states.shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: int = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: int = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: str = 3 UpperCamelCase_: Any = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) UpperCamelCase_: int = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: List[Any] = image_size[0] + patch_size[0] - (image_size[0] % patch_size[0]) UpperCamelCase_: str = image_size[1] + patch_size[1] - (image_size[1] % patch_size[1]) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Dict = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) @slow def _a ( self ): for model_name in FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: List[Any] = FocalNetModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = _config_zero_init(_lowerCamelCase ) for model_class in self.all_model_classes: UpperCamelCase_: List[str] = model_class(config=_lowerCamelCase ) for name, param in model.named_parameters(): if "embeddings" not in name and param.requires_grad: self.assertIn( ((param.data.mean() * 1e9).round() / 1e9).item() , [0.0, 1.0] , msg=f'''Parameter {name} of model {model_class} seems not properly initialized''' , ) @require_vision @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): # TODO update organization return AutoImageProcessor.from_pretrained('microsoft/focalnet-tiny' ) if is_vision_available() else None @slow def _a ( self ): UpperCamelCase_: Optional[int] = FocalNetForImageClassification.from_pretrained('microsoft/focalnet-tiny' ).to(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.default_image_processor UpperCamelCase_: str = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) UpperCamelCase_: str = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: List[str] = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: Optional[int] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Optional[int] = torch.tensor([0.2_1_6_6, -0.4_3_6_8, 0.2_1_9_1] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) ) self.assertTrue(outputs.logits.argmax(dim=-1 ).item() , 2_8_1 ) @require_torch class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[Any] =(FocalNetBackbone,) if is_torch_available() else () a : List[str] =FocalNetConfig a : List[str] =False def _a ( self ): UpperCamelCase_: Any = FocalNetModelTester(self )
57
1
def snake_case (UpperCAmelCase__ ) -> int: if n == 1 or not isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): return 0 elif n == 2: return 1 else: UpperCamelCase_: Union[str, Any] = [0, 1] for i in range(2 , n + 1 ): sequence.append(sequence[i - 1] + sequence[i - 2] ) return sequence[n] def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: List[Any] = 0 UpperCamelCase_: List[str] = 2 while digits < n: index += 1 UpperCamelCase_: Union[str, Any] = len(str(fibonacci(UpperCAmelCase__ ) ) ) return index def snake_case (UpperCAmelCase__ = 1_0_0_0 ) -> int: return fibonacci_digits_index(UpperCAmelCase__ ) if __name__ == "__main__": print(solution(int(str(input()).strip())))
57
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) A_ : Tuple = { 'configuration_distilbert': [ 'DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'DistilBertConfig', 'DistilBertOnnxConfig', ], 'tokenization_distilbert': ['DistilBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Optional[Any] = ['DistilBertTokenizerFast'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'DistilBertForMaskedLM', 'DistilBertForMultipleChoice', 'DistilBertForQuestionAnswering', 'DistilBertForSequenceClassification', 'DistilBertForTokenClassification', 'DistilBertModel', 'DistilBertPreTrainedModel', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'TFDistilBertForMaskedLM', 'TFDistilBertForMultipleChoice', 'TFDistilBertForQuestionAnswering', 'TFDistilBertForSequenceClassification', 'TFDistilBertForTokenClassification', 'TFDistilBertMainLayer', 'TFDistilBertModel', 'TFDistilBertPreTrainedModel', ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'FlaxDistilBertForMaskedLM', 'FlaxDistilBertForMultipleChoice', 'FlaxDistilBertForQuestionAnswering', 'FlaxDistilBertForSequenceClassification', 'FlaxDistilBertForTokenClassification', 'FlaxDistilBertModel', 'FlaxDistilBertPreTrainedModel', ] if TYPE_CHECKING: from .configuration_distilbert import ( DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP, DistilBertConfig, DistilBertOnnxConfig, ) from .tokenization_distilbert import DistilBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_distilbert_fast import DistilBertTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_distilbert import ( DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, DistilBertForMaskedLM, DistilBertForMultipleChoice, DistilBertForQuestionAnswering, DistilBertForSequenceClassification, DistilBertForTokenClassification, DistilBertModel, DistilBertPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_distilbert import ( TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, TFDistilBertForMaskedLM, TFDistilBertForMultipleChoice, TFDistilBertForQuestionAnswering, TFDistilBertForSequenceClassification, TFDistilBertForTokenClassification, TFDistilBertMainLayer, TFDistilBertModel, TFDistilBertPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_distilbert import ( FlaxDistilBertForMaskedLM, FlaxDistilBertForMultipleChoice, FlaxDistilBertForQuestionAnswering, FlaxDistilBertForSequenceClassification, FlaxDistilBertForTokenClassification, FlaxDistilBertModel, FlaxDistilBertPreTrainedModel, ) else: import sys A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
def snake_case () -> Any: for n in range(1 , 1_0_0_0_0_0_0 ): yield n * (n + 1) // 2 def snake_case (UpperCAmelCase__ ) -> Tuple: UpperCamelCase_: List[Any] = 1 UpperCamelCase_: List[Any] = 2 while i * i <= n: UpperCamelCase_: str = 0 while n % i == 0: n //= i multiplicity += 1 divisors_count *= multiplicity + 1 i += 1 if n > 1: divisors_count *= 2 return divisors_count def snake_case () -> Union[str, Any]: return next(i for i in triangle_number_generator() if count_divisors(UpperCAmelCase__ ) > 5_0_0 ) if __name__ == "__main__": print(solution())
57
import os import socket from contextlib import contextmanager import torch from ..commands.config.default import write_basic_config # noqa: F401 from ..state import PartialState from .dataclasses import DistributedType from .imports import is_deepspeed_available, is_tpu_available from .transformer_engine import convert_model from .versions import is_torch_version if is_deepspeed_available(): from deepspeed import DeepSpeedEngine if is_tpu_available(check_device=False): import torch_xla.core.xla_model as xm def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: if is_torch_version('<' , '2.0.0' ) or not hasattr(UpperCAmelCase__ , '_dynamo' ): return False return isinstance(UpperCAmelCase__ , torch._dynamo.eval_frame.OptimizedModule ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ = True ) -> Any: UpperCamelCase_: Optional[Any] = (torch.nn.parallel.DistributedDataParallel, torch.nn.DataParallel) UpperCamelCase_: int = is_compiled_module(UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: List[str] = model UpperCamelCase_: Dict = model._orig_mod if is_deepspeed_available(): options += (DeepSpeedEngine,) while isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Dict = model.module if not keep_fpaa_wrapper: UpperCamelCase_: int = getattr(UpperCAmelCase__ , 'forward' ) UpperCamelCase_: List[str] = model.__dict__.pop('_original_forward' , UpperCAmelCase__ ) if original_forward is not None: while hasattr(UpperCAmelCase__ , '__wrapped__' ): UpperCamelCase_: Any = forward.__wrapped__ if forward == original_forward: break UpperCamelCase_: Optional[int] = forward if getattr(UpperCAmelCase__ , '_converted_to_transformer_engine' , UpperCAmelCase__ ): convert_model(UpperCAmelCase__ , to_transformer_engine=UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: Union[str, Any] = model UpperCamelCase_: Tuple = compiled_model return model def snake_case () -> List[str]: PartialState().wait_for_everyone() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: if PartialState().distributed_type == DistributedType.TPU: xm.save(UpperCAmelCase__ , UpperCAmelCase__ ) elif PartialState().local_process_index == 0: torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) @contextmanager def snake_case (**UpperCAmelCase__ ) -> Any: for key, value in kwargs.items(): UpperCamelCase_: int = str(UpperCAmelCase__ ) yield for key in kwargs: if key.upper() in os.environ: del os.environ[key.upper()] def snake_case (UpperCAmelCase__ ) -> str: if not hasattr(UpperCAmelCase__ , '__qualname__' ) and not hasattr(UpperCAmelCase__ , '__name__' ): UpperCamelCase_: List[Any] = getattr(UpperCAmelCase__ , '__class__' , UpperCAmelCase__ ) if hasattr(UpperCAmelCase__ , '__qualname__' ): return obj.__qualname__ if hasattr(UpperCAmelCase__ , '__name__' ): return obj.__name__ return str(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: for key, value in source.items(): if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Any = destination.setdefault(UpperCAmelCase__ , {} ) merge_dicts(UpperCAmelCase__ , UpperCAmelCase__ ) else: UpperCamelCase_: str = value return destination def snake_case (UpperCAmelCase__ = None ) -> bool: if port is None: UpperCamelCase_: List[str] = 2_9_5_0_0 with socket.socket(socket.AF_INET , socket.SOCK_STREAM ) as s: return s.connect_ex(('localhost', port) ) == 0
57
1
import math def snake_case (UpperCAmelCase__ ) -> bool: return math.sqrt(UpperCAmelCase__ ) * math.sqrt(UpperCAmelCase__ ) == num def snake_case (UpperCAmelCase__ ) -> bool: UpperCamelCase_: List[str] = 0 UpperCamelCase_: Tuple = n while left <= right: UpperCamelCase_: int = (left + right) // 2 if mid**2 == n: return True elif mid**2 > n: UpperCamelCase_: List[str] = mid - 1 else: UpperCamelCase_: List[str] = mid + 1 return False if __name__ == "__main__": import doctest doctest.testmod()
57
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 A_ : Optional[Any] = data_utils.TransfoXLTokenizer A_ : Union[str, Any] = data_utils.TransfoXLCorpus A_ : Any = data_utils A_ : Optional[Any] = data_utils def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(UpperCAmelCase__ , 'rb' ) as fp: UpperCamelCase_: Union[str, Any] = pickle.load(UpperCAmelCase__ , encoding='latin1' ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) UpperCamelCase_: Any = pytorch_dump_folder_path + '/' + VOCAB_FILES_NAMES['pretrained_vocab_file'] print(F'''Save vocabulary to {pytorch_vocab_dump_path}''' ) UpperCamelCase_: Union[str, Any] = corpus.vocab.__dict__ torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = corpus.__dict__ corpus_dict_no_vocab.pop('vocab' , UpperCAmelCase__ ) UpperCamelCase_: str = pytorch_dump_folder_path + '/' + CORPUS_NAME print(F'''Save dataset to {pytorch_dataset_dump_path}''' ) torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model UpperCamelCase_: Any = os.path.abspath(UpperCAmelCase__ ) UpperCamelCase_: Dict = os.path.abspath(UpperCAmelCase__ ) print(F'''Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.''' ) # Initialise PyTorch model if transfo_xl_config_file == "": UpperCamelCase_: List[str] = TransfoXLConfig() else: UpperCamelCase_: Optional[int] = TransfoXLConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Union[str, Any] = TransfoXLLMHeadModel(UpperCAmelCase__ ) UpperCamelCase_: Tuple = load_tf_weights_in_transfo_xl(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model UpperCamelCase_: str = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''Save PyTorch model to {os.path.abspath(UpperCAmelCase__ )}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) print(F'''Save configuration file to {os.path.abspath(UpperCAmelCase__ )}''' ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the folder to store the PyTorch model or dataset/vocab.', ) parser.add_argument( '--tf_checkpoint_path', default='', type=str, help='An optional path to a TensorFlow checkpoint path to be converted.', ) parser.add_argument( '--transfo_xl_config_file', default='', type=str, help=( 'An optional config json file corresponding to the pre-trained BERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--transfo_xl_dataset_file', default='', type=str, help='An optional dataset file to be converted in a vocabulary.', ) A_ : Tuple = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
57
1
import tensorflow as tf from ...tf_utils import shape_list class _lowerCAmelCase( tf.keras.layers.Layer ): """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=1 , _lowerCamelCase=False , **_lowerCamelCase ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: Dict = vocab_size UpperCamelCase_: Union[str, Any] = d_embed UpperCamelCase_: List[Any] = d_proj UpperCamelCase_: Tuple = cutoffs + [vocab_size] UpperCamelCase_: Any = [0] + self.cutoffs UpperCamelCase_: List[str] = div_val UpperCamelCase_: Optional[int] = self.cutoffs[0] UpperCamelCase_: Tuple = len(self.cutoffs ) - 1 UpperCamelCase_: Optional[Any] = self.shortlist_size + self.n_clusters UpperCamelCase_: int = keep_order UpperCamelCase_: Optional[Any] = [] UpperCamelCase_: int = [] def _a ( self , _lowerCamelCase ): if self.n_clusters > 0: UpperCamelCase_: str = self.add_weight( shape=(self.n_clusters, self.d_embed) , initializer='zeros' , trainable=_lowerCamelCase , name='cluster_weight' ) UpperCamelCase_: Any = self.add_weight( shape=(self.n_clusters,) , initializer='zeros' , trainable=_lowerCamelCase , name='cluster_bias' ) if self.div_val == 1: for i in range(len(self.cutoffs ) ): if self.d_proj != self.d_embed: UpperCamelCase_: List[Any] = self.add_weight( shape=(self.d_embed, self.d_proj) , initializer='zeros' , trainable=_lowerCamelCase , name=f'''out_projs_._{i}''' , ) self.out_projs.append(_lowerCamelCase ) else: self.out_projs.append(_lowerCamelCase ) UpperCamelCase_: List[Any] = self.add_weight( shape=(self.vocab_size, self.d_embed) , initializer='zeros' , trainable=_lowerCamelCase , name=f'''out_layers_._{i}_._weight''' , ) UpperCamelCase_: Optional[Any] = self.add_weight( shape=(self.vocab_size,) , initializer='zeros' , trainable=_lowerCamelCase , name=f'''out_layers_._{i}_._bias''' , ) self.out_layers.append((weight, bias) ) else: for i in range(len(self.cutoffs ) ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.cutoff_ends[i], self.cutoff_ends[i + 1] UpperCamelCase_: Dict = self.d_embed // (self.div_val**i) UpperCamelCase_: Any = self.add_weight( shape=(d_emb_i, self.d_proj) , initializer='zeros' , trainable=_lowerCamelCase , name=f'''out_projs_._{i}''' ) self.out_projs.append(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.add_weight( shape=(r_idx - l_idx, d_emb_i) , initializer='zeros' , trainable=_lowerCamelCase , name=f'''out_layers_._{i}_._weight''' , ) UpperCamelCase_: int = self.add_weight( shape=(r_idx - l_idx,) , initializer='zeros' , trainable=_lowerCamelCase , name=f'''out_layers_._{i}_._bias''' , ) self.out_layers.append((weight, bias) ) super().build(_lowerCamelCase ) @staticmethod def _a ( _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=None ): UpperCamelCase_: List[str] = x if proj is not None: UpperCamelCase_: Tuple = tf.einsum('ibd,ed->ibe' , _lowerCamelCase , _lowerCamelCase ) return tf.einsum('ibd,nd->ibn' , _lowerCamelCase , _lowerCamelCase ) + b @staticmethod def _a ( _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = shape_list(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = tf.range(lp_size[0] , dtype=target.dtype ) UpperCamelCase_: Any = tf.stack([r, target] , 1 ) return tf.gather_nd(_lowerCamelCase , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=True , _lowerCamelCase=False ): UpperCamelCase_: int = 0 if self.n_clusters == 0: UpperCamelCase_: Union[str, Any] = self._logit(_lowerCamelCase , self.out_layers[0][0] , self.out_layers[0][1] , self.out_projs[0] ) if target is not None: UpperCamelCase_: List[Any] = tf.nn.sparse_softmax_cross_entropy_with_logits(labels=_lowerCamelCase , logits=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = tf.nn.log_softmax(_lowerCamelCase , axis=-1 ) else: UpperCamelCase_: Optional[Any] = shape_list(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = [] UpperCamelCase_: Optional[Any] = tf.zeros(hidden_sizes[:2] ) for i in range(len(self.cutoffs ) ): UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = self.cutoff_ends[i], self.cutoff_ends[i + 1] if target is not None: UpperCamelCase_: List[Any] = (target >= l_idx) & (target < r_idx) UpperCamelCase_: List[Any] = tf.where(_lowerCamelCase ) UpperCamelCase_: str = tf.boolean_mask(_lowerCamelCase , _lowerCamelCase ) - l_idx if self.div_val == 1: UpperCamelCase_: Optional[Any] = self.out_layers[0][0][l_idx:r_idx] UpperCamelCase_: List[str] = self.out_layers[0][1][l_idx:r_idx] else: UpperCamelCase_: Optional[int] = self.out_layers[i][0] UpperCamelCase_: int = self.out_layers[i][1] if i == 0: UpperCamelCase_: str = tf.concat([cur_W, self.cluster_weight] , 0 ) UpperCamelCase_: Any = tf.concat([cur_b, self.cluster_bias] , 0 ) UpperCamelCase_: List[Any] = self._logit(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , self.out_projs[0] ) UpperCamelCase_: int = tf.nn.log_softmax(_lowerCamelCase ) out.append(head_logprob[..., : self.cutoffs[0]] ) if target is not None: UpperCamelCase_: Any = tf.boolean_mask(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: List[Any] = self._gather_logprob(_lowerCamelCase , _lowerCamelCase ) else: UpperCamelCase_: str = self._logit(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , self.out_projs[i] ) UpperCamelCase_: Optional[Any] = tf.nn.log_softmax(_lowerCamelCase ) UpperCamelCase_: List[Any] = self.cutoffs[0] + i - 1 # No probability for the head cluster UpperCamelCase_: Dict = head_logprob[..., cluster_prob_idx, None] + tail_logprob out.append(_lowerCamelCase ) if target is not None: UpperCamelCase_: List[Any] = tf.boolean_mask(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = tf.boolean_mask(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: int = self._gather_logprob(_lowerCamelCase , _lowerCamelCase ) cur_logprob += cur_head_logprob[:, self.cutoff_ends[1] + i - 1] if target is not None: loss += tf.scatter_nd(_lowerCamelCase , -cur_logprob , shape_list(_lowerCamelCase ) ) UpperCamelCase_: Optional[Any] = tf.concat(_lowerCamelCase , axis=-1 ) if target is not None: if return_mean: UpperCamelCase_: Any = tf.reduce_mean(_lowerCamelCase ) # Add the training-time loss value to the layer using `self.add_loss()`. self.add_loss(_lowerCamelCase ) # Log the loss as a metric (we could log arbitrary metrics, # including different metrics for training and inference. self.add_metric(_lowerCamelCase , name=self.name , aggregation='mean' if return_mean else '' ) return out
57
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 rescale, resize, to_channel_dimension_format from ...image_utils import ( ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : List[str] = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Union[str, Any]: UpperCamelCase_: Tuple = b.T UpperCamelCase_: Tuple = np.sum(np.square(UpperCAmelCase__ ) , axis=1 ) UpperCamelCase_: Optional[Any] = np.sum(np.square(UpperCAmelCase__ ) , axis=0 ) UpperCamelCase_: Optional[int] = np.matmul(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[Any] = aa[:, None] - 2 * ab + ba[None, :] return d def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: List[str] = x.reshape(-1 , 3 ) UpperCamelCase_: Union[str, Any] = squared_euclidean_distance(UpperCAmelCase__ , UpperCAmelCase__ ) return np.argmin(UpperCAmelCase__ , axis=1 ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =['''pixel_values'''] def __init__( self , _lowerCamelCase = None , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = True , _lowerCamelCase = True , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: List[str] = size if size is not None else {'height': 2_5_6, 'width': 2_5_6} UpperCamelCase_: str = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Any = np.array(_lowerCamelCase ) if clusters is not None else None UpperCamelCase_: Optional[int] = do_resize UpperCamelCase_: List[Any] = size UpperCamelCase_: Optional[int] = resample UpperCamelCase_: str = do_normalize UpperCamelCase_: str = do_color_quantize def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: Any = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''Size dictionary must contain both height and width keys. Got {size.keys()}''' ) return resize( _lowerCamelCase , size=(size['height'], size['width']) , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , ): UpperCamelCase_: Optional[Any] = rescale(image=_lowerCamelCase , scale=1 / 1_2_7.5 , data_format=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = image - 1 return image def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: Optional[Any] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: Tuple = size if size is not None else self.size UpperCamelCase_: Union[str, Any] = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = resample if resample is not None else self.resample UpperCamelCase_: Any = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: str = do_color_quantize if do_color_quantize is not None else self.do_color_quantize UpperCamelCase_: Dict = clusters if clusters is not None else self.clusters UpperCamelCase_: Dict = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[int] = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_color_quantize and clusters is None: raise ValueError('Clusters must be specified if do_color_quantize is True.' ) # All transformations expect numpy arrays. UpperCamelCase_: Union[str, Any] = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: UpperCamelCase_: Union[str, Any] = [self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) for image in images] if do_normalize: UpperCamelCase_: Optional[Any] = [self.normalize(image=_lowerCamelCase ) for image in images] if do_color_quantize: UpperCamelCase_: Any = [to_channel_dimension_format(_lowerCamelCase , ChannelDimension.LAST ) for image in images] # color quantize from (batch_size, height, width, 3) to (batch_size, height, width) UpperCamelCase_: Optional[Any] = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = color_quantize(_lowerCamelCase , _lowerCamelCase ).reshape(images.shape[:-1] ) # flatten to (batch_size, height*width) UpperCamelCase_: Dict = images.shape[0] UpperCamelCase_: Any = images.reshape(_lowerCamelCase , -1 ) # We need to convert back to a list of images to keep consistent behaviour across processors. UpperCamelCase_: List[Any] = list(_lowerCamelCase ) else: UpperCamelCase_: int = [to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) for image in images] UpperCamelCase_: str = {'input_ids': images} return BatchFeature(data=_lowerCamelCase , tensor_type=_lowerCamelCase )
57
1
from math import log from scipy.constants import Boltzmann, physical_constants A_ : Tuple = 300 # TEMPERATURE (unit = K) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) -> float: if donor_conc <= 0: raise ValueError('Donor concentration should be positive' ) elif acceptor_conc <= 0: raise ValueError('Acceptor concentration should be positive' ) elif intrinsic_conc <= 0: raise ValueError('Intrinsic concentration should be positive' ) elif donor_conc <= intrinsic_conc: raise ValueError( 'Donor concentration should be greater than intrinsic concentration' ) elif acceptor_conc <= intrinsic_conc: raise ValueError( 'Acceptor concentration should be greater than intrinsic concentration' ) else: return ( Boltzmann * T * log((donor_conc * acceptor_conc) / intrinsic_conc**2 ) / physical_constants["electron volt"][0] ) if __name__ == "__main__": import doctest doctest.testmod()
57
import numpy # List of input, output pairs A_ : Any = ( ((5, 2, 3), 15), ((6, 5, 9), 25), ((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41), ) A_ : List[Any] = (((515, 22, 13), 555), ((61, 35, 49), 150)) A_ : Any = [2, 4, 1, 5] A_ : List[Any] = len(train_data) A_ : List[Any] = 0.009 def snake_case (UpperCAmelCase__ , UpperCAmelCase__="train" ) -> Optional[int]: return calculate_hypothesis_value(UpperCAmelCase__ , UpperCAmelCase__ ) - output( UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[Any] = 0 for i in range(len(UpperCAmelCase__ ) - 1 ): hyp_val += data_input_tuple[i] * parameter_vector[i + 1] hyp_val += parameter_vector[0] return hyp_val def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: if data_set == "train": return train_data[example_no][1] elif data_set == "test": return test_data[example_no][1] return None def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: 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 snake_case (UpperCAmelCase__ , UpperCAmelCase__=m ) -> Optional[Any]: UpperCamelCase_: Any = 0 for i in range(UpperCAmelCase__ ): if index == -1: summation_value += _error(UpperCAmelCase__ ) else: summation_value += _error(UpperCAmelCase__ ) * train_data[i][0][index] return summation_value def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[int] = summation_of_cost_derivative(UpperCAmelCase__ , UpperCAmelCase__ ) / m return cost_derivative_value def snake_case () -> Union[str, Any]: global parameter_vector # Tune these values to set a tolerance value for predicted output UpperCamelCase_: str = 0.00_0002 UpperCamelCase_: Any = 0 UpperCamelCase_: int = 0 while True: j += 1 UpperCamelCase_: int = [0, 0, 0, 0] for i in range(0 , len(UpperCAmelCase__ ) ): UpperCamelCase_: Any = get_cost_derivative(i - 1 ) UpperCamelCase_: Optional[int] = ( parameter_vector[i] - LEARNING_RATE * cost_derivative ) if numpy.allclose( UpperCAmelCase__ , UpperCAmelCase__ , atol=UpperCAmelCase__ , rtol=UpperCAmelCase__ , ): break UpperCamelCase_: Optional[int] = temp_parameter_vector print(('Number of iterations:', j) ) def snake_case () -> int: for i in range(len(UpperCAmelCase__ ) ): print(('Actual output value:', output(UpperCAmelCase__ , 'test' )) ) print(('Hypothesis output:', calculate_hypothesis_value(UpperCAmelCase__ , 'test' )) ) if __name__ == "__main__": run_gradient_descent() print('\nTesting gradient descent for a linear hypothesis function.\n') test_gradient_descent()
57
1
class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Any = name UpperCamelCase_: Any = value UpperCamelCase_: Optional[Any] = weight def __repr__( self ): return f'''{self.__class__.__name__}({self.name}, {self.value}, {self.weight})''' def _a ( self ): return self.value def _a ( self ): return self.name def _a ( self ): return self.weight def _a ( self ): return self.value / self.weight def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[int]: UpperCamelCase_: Any = [] for i in range(len(UpperCAmelCase__ ) ): menu.append(Things(name[i] , value[i] , weight[i] ) ) return menu def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: Optional[int] = sorted(UpperCAmelCase__ , key=UpperCAmelCase__ , reverse=UpperCAmelCase__ ) UpperCamelCase_: Dict = [] UpperCamelCase_ ,UpperCamelCase_: Any = 0.0, 0.0 for i in range(len(UpperCAmelCase__ ) ): if (total_cost + items_copy[i].get_weight()) <= max_cost: result.append(items_copy[i] ) total_cost += items_copy[i].get_weight() total_value += items_copy[i].get_value() return (result, total_value) def snake_case () -> List[str]: pass if __name__ == "__main__": import doctest doctest.testmod()
57
from ...utils import ( OptionalDependencyNotAvailable, is_flax_available, is_torch_available, is_transformers_available, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .multicontrolnet import MultiControlNetModel from .pipeline_controlnet import StableDiffusionControlNetPipeline from .pipeline_controlnet_imgaimg import StableDiffusionControlNetImgaImgPipeline from .pipeline_controlnet_inpaint import StableDiffusionControlNetInpaintPipeline if is_transformers_available() and is_flax_available(): from .pipeline_flax_controlnet import FlaxStableDiffusionControlNetPipeline
57
1
from __future__ import annotations def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> list[str]: if nth_term == "": return [""] UpperCamelCase_: List[str] = int(UpperCAmelCase__ ) UpperCamelCase_: Any = int(UpperCAmelCase__ ) UpperCamelCase_: list[str] = [] for temp in range(int(UpperCAmelCase__ ) ): series.append(F'''1 / {pow(temp + 1 , int(UpperCAmelCase__ ) )}''' if series else '1' ) return series if __name__ == "__main__": import doctest doctest.testmod() A_ : Tuple = int(input('Enter the last number (nth term) of the P-Series')) A_ : Tuple = int(input('Enter the power for P-Series')) print('Formula of P-Series => 1+1/2^p+1/3^p ..... 1/n^p') print(p_series(nth_term, power))
57
from __future__ import annotations import unittest from transformers import AutoTokenizer, PegasusConfig, is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, require_tokenizers, slow from transformers.utils import cached_property from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import TFAutoModelForSeqaSeqLM, TFPegasusForConditionalGeneration, TFPegasusModel @require_tf class _lowerCAmelCase: """simple docstring""" a : int =PegasusConfig a : List[str] ={} a : Optional[int] ='''gelu''' def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=False , _lowerCamelCase=9_9 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=4_0 , _lowerCamelCase=2 , _lowerCamelCase=1 , _lowerCamelCase=0 , ): UpperCamelCase_: List[Any] = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = seq_length UpperCamelCase_: List[str] = is_training UpperCamelCase_: Any = use_labels UpperCamelCase_: Optional[Any] = vocab_size UpperCamelCase_: Tuple = hidden_size UpperCamelCase_: List[Any] = num_hidden_layers UpperCamelCase_: Any = num_attention_heads UpperCamelCase_: Optional[Any] = intermediate_size UpperCamelCase_: Optional[int] = hidden_dropout_prob UpperCamelCase_: int = attention_probs_dropout_prob UpperCamelCase_: Union[str, Any] = max_position_embeddings UpperCamelCase_: Dict = eos_token_id UpperCamelCase_: Union[str, Any] = pad_token_id UpperCamelCase_: List[Any] = bos_token_id def _a ( self ): UpperCamelCase_: Union[str, Any] = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size ) UpperCamelCase_: int = tf.expand_dims(tf.constant([self.eos_token_id] * self.batch_size ) , 1 ) UpperCamelCase_: List[str] = tf.concat([input_ids, eos_tensor] , axis=1 ) UpperCamelCase_: Tuple = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) UpperCamelCase_: Tuple = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_ffn_dim=self.intermediate_size , dropout=self.hidden_dropout_prob , attention_dropout=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , eos_token_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) UpperCamelCase_: Optional[Any] = prepare_pegasus_inputs_dict(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) return config, inputs_dict def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = TFPegasusModel(config=_lowerCamelCase ).get_decoder() UpperCamelCase_: Optional[int] = inputs_dict['input_ids'] UpperCamelCase_: Optional[int] = input_ids[:1, :] UpperCamelCase_: int = inputs_dict['attention_mask'][:1, :] UpperCamelCase_: Optional[int] = inputs_dict['head_mask'] UpperCamelCase_: Optional[int] = 1 # first forward pass UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase , attention_mask=_lowerCamelCase , head_mask=_lowerCamelCase , use_cache=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: int = outputs.to_tuple() # create hypothetical next token and extent to next_input_ids UpperCamelCase_: int = ids_tensor((self.batch_size, 3) , config.vocab_size ) UpperCamelCase_: List[Any] = tf.cast(ids_tensor((self.batch_size, 3) , 2 ) , tf.inta ) # append to next input_ids and UpperCamelCase_: Union[str, Any] = tf.concat([input_ids, next_tokens] , axis=-1 ) UpperCamelCase_: int = tf.concat([attention_mask, next_attn_mask] , axis=-1 ) UpperCamelCase_: Any = model(_lowerCamelCase , attention_mask=_lowerCamelCase )[0] UpperCamelCase_: int = model(_lowerCamelCase , attention_mask=_lowerCamelCase , past_key_values=_lowerCamelCase )[0] self.parent.assertEqual(next_tokens.shape[1] , output_from_past.shape[1] ) # select random slice UpperCamelCase_: Optional[int] = int(ids_tensor((1,) , output_from_past.shape[-1] ) ) UpperCamelCase_: Any = output_from_no_past[:, -3:, random_slice_idx] UpperCamelCase_: Union[str, Any] = output_from_past[:, :, random_slice_idx] # test that outputs are equal for slice tf.debugging.assert_near(_lowerCamelCase , _lowerCamelCase , rtol=1e-3 ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , ) -> str: if attention_mask is None: UpperCamelCase_: Optional[Any] = tf.cast(tf.math.not_equal(UpperCAmelCase__ , config.pad_token_id ) , tf.inta ) if decoder_attention_mask is None: UpperCamelCase_: int = tf.concat( [ tf.ones(decoder_input_ids[:, :1].shape , dtype=tf.inta ), tf.cast(tf.math.not_equal(decoder_input_ids[:, 1:] , config.pad_token_id ) , tf.inta ), ] , axis=-1 , ) if head_mask is None: UpperCamelCase_: str = tf.ones((config.encoder_layers, config.encoder_attention_heads) ) if decoder_head_mask is None: UpperCamelCase_: Any = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) if cross_attn_head_mask is None: UpperCamelCase_: int = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, "head_mask": head_mask, "decoder_head_mask": decoder_head_mask, "cross_attn_head_mask": cross_attn_head_mask, } @require_tf class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Tuple =(TFPegasusForConditionalGeneration, TFPegasusModel) if is_tf_available() else () a : int =(TFPegasusForConditionalGeneration,) if is_tf_available() else () a : Tuple =( { '''conversational''': TFPegasusForConditionalGeneration, '''feature-extraction''': TFPegasusModel, '''summarization''': TFPegasusForConditionalGeneration, '''text2text-generation''': TFPegasusForConditionalGeneration, '''translation''': TFPegasusForConditionalGeneration, } if is_tf_available() else {} ) a : List[str] =True a : List[str] =False a : Tuple =False def _a ( self ): UpperCamelCase_: Dict = TFPegasusModelTester(self ) UpperCamelCase_: Any = ConfigTester(self , config_class=_lowerCamelCase ) def _a ( self ): self.config_tester.run_common_tests() def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs_for_common() self.model_tester.check_decoder_model_past_large_inputs(*_lowerCamelCase ) @require_sentencepiece @require_tokenizers @require_tf class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : Dict =[ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] a : int =[ '''California\'s largest electricity provider has cut power to hundreds of thousands of customers in an effort to''' ''' reduce the risk of wildfires.''', '''N-Dubz have revealed they\'re "grateful" to have been nominated for four Mobo Awards.''', ] # differs slightly from pytorch, likely due to numerical differences in linear layers a : Union[str, Any] ='''google/pegasus-xsum''' @cached_property def _a ( self ): return AutoTokenizer.from_pretrained(self.model_name ) @cached_property def _a ( self ): UpperCamelCase_: Optional[Any] = TFAutoModelForSeqaSeqLM.from_pretrained(self.model_name ) return model def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Dict = self.translate_src_text(**_lowerCamelCase ) assert self.expected_text == generated_words def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = self.tokenizer(self.src_text , **_lowerCamelCase , padding=_lowerCamelCase , return_tensors='tf' ) UpperCamelCase_: Any = self.model.generate( model_inputs.input_ids , attention_mask=model_inputs.attention_mask , num_beams=2 , use_cache=_lowerCamelCase , ) UpperCamelCase_: str = self.tokenizer.batch_decode(generated_ids.numpy() , skip_special_tokens=_lowerCamelCase ) return generated_words @slow def _a ( self ): self._assert_generated_batch_equal_expected()
57
1
from ...configuration_utils import PretrainedConfig from ...utils import logging A_ : str = logging.get_logger(__name__) A_ : Union[str, Any] = { 's-JoL/Open-Llama-V1': 'https://huggingface.co/s-JoL/Open-Llama-V1/blob/main/config.json', } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Tuple ='''open-llama''' def __init__( self , _lowerCamelCase=1_0_0_0_0_0 , _lowerCamelCase=4_0_9_6 , _lowerCamelCase=1_1_0_0_8 , _lowerCamelCase=3_2 , _lowerCamelCase=3_2 , _lowerCamelCase="silu" , _lowerCamelCase=2_0_4_8 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-6 , _lowerCamelCase=True , _lowerCamelCase=0 , _lowerCamelCase=1 , _lowerCamelCase=2 , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: int = vocab_size UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: Dict = hidden_size UpperCamelCase_: Dict = intermediate_size UpperCamelCase_: Union[str, Any] = num_hidden_layers UpperCamelCase_: Dict = num_attention_heads UpperCamelCase_: Union[str, Any] = hidden_act UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: List[Any] = rms_norm_eps UpperCamelCase_: Union[str, Any] = use_cache UpperCamelCase_: Dict = kwargs.pop( 'use_memorry_efficient_attention' , _lowerCamelCase ) UpperCamelCase_: Union[str, Any] = hidden_dropout_prob UpperCamelCase_: Any = attention_dropout_prob UpperCamelCase_: int = use_stable_embedding UpperCamelCase_: Tuple = shared_input_output_embedding UpperCamelCase_: str = rope_scaling self._rope_scaling_validation() super().__init__( pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , tie_word_embeddings=_lowerCamelCase , **_lowerCamelCase , ) def _a ( self ): if self.rope_scaling is None: return if not isinstance(self.rope_scaling , _lowerCamelCase ) or len(self.rope_scaling ) != 2: raise ValueError( '`rope_scaling` must be a dictionary with with two fields, `name` and `factor`, ' f'''got {self.rope_scaling}''' ) UpperCamelCase_: str = self.rope_scaling.get('type' , _lowerCamelCase ) UpperCamelCase_: int = self.rope_scaling.get('factor' , _lowerCamelCase ) if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]: raise ValueError( f'''`rope_scaling`\'s name field must be one of [\'linear\', \'dynamic\'], got {rope_scaling_type}''' ) if rope_scaling_factor is None or not isinstance(_lowerCamelCase , _lowerCamelCase ) or rope_scaling_factor <= 1.0: raise ValueError(f'''`rope_scaling`\'s factor field must be an float > 1, got {rope_scaling_factor}''' )
57
import unittest import numpy as np def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = None , ) -> np.ndarray: UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: List[Any] = np.shape(UpperCAmelCase__ ) if shape_a[0] != shape_b[0]: UpperCamelCase_: Any = ( 'Expected the same number of rows for A and B. ' F'''Instead found A of size {shape_a} and B of size {shape_b}''' ) raise ValueError(UpperCAmelCase__ ) if shape_b[1] != shape_c[1]: UpperCamelCase_: int = ( 'Expected the same number of columns for B and C. ' F'''Instead found B of size {shape_b} and C of size {shape_c}''' ) raise ValueError(UpperCAmelCase__ ) UpperCamelCase_: Dict = pseudo_inv if a_inv is None: try: UpperCamelCase_: Optional[Any] = np.linalg.inv(UpperCAmelCase__ ) except np.linalg.LinAlgError: raise ValueError( 'Input matrix A is not invertible. Cannot compute Schur complement.' ) return mat_c - mat_b.T @ a_inv @ mat_b class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Any = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: Dict = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: Tuple = np.array([[2, 1], [6, 3]] ) UpperCamelCase_: Tuple = schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = np.block([[a, b], [b.T, c]] ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: Dict = np.linalg.det(_lowerCamelCase ) self.assertAlmostEqual(_lowerCamelCase , det_a * det_s ) def _a ( self ): UpperCamelCase_: int = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: List[str] = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[str] = np.array([[2, 1], [6, 3]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: str = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[Any] = np.array([[2, 1, 3], [6, 3, 5]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if __name__ == "__main__": import doctest doctest.testmod() unittest.main()
57
1
from collections.abc import Sequence from queue import Queue class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=None , _lowerCamelCase=None ): UpperCamelCase_: Tuple = start UpperCamelCase_: Tuple = end UpperCamelCase_: Optional[Any] = val UpperCamelCase_: List[str] = (start + end) // 2 UpperCamelCase_: List[str] = left UpperCamelCase_: List[Any] = right def __repr__( self ): return f'''SegmentTreeNode(start={self.start}, end={self.end}, val={self.val})''' class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = collection UpperCamelCase_: Optional[Any] = function if self.collection: UpperCamelCase_: str = self._build_tree(0 , len(_lowerCamelCase ) - 1 ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): self._update_tree(self.root , _lowerCamelCase , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): return self._query_range(self.root , _lowerCamelCase , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): if start == end: return SegmentTreeNode(_lowerCamelCase , _lowerCamelCase , self.collection[start] ) UpperCamelCase_: int = (start + end) // 2 UpperCamelCase_: List[str] = self._build_tree(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Any = self._build_tree(mid + 1 , _lowerCamelCase ) return SegmentTreeNode(_lowerCamelCase , _lowerCamelCase , self.fn(left.val , right.val ) , _lowerCamelCase , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): if node.start == i and node.end == i: UpperCamelCase_: List[Any] = val return if i <= node.mid: self._update_tree(node.left , _lowerCamelCase , _lowerCamelCase ) else: self._update_tree(node.right , _lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Any = self.fn(node.left.val , node.right.val ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): if node.start == i and node.end == j: return node.val if i <= node.mid: if j <= node.mid: # range in left child tree return self._query_range(node.left , _lowerCamelCase , _lowerCamelCase ) else: # range in left child tree and right child tree return self.fn( self._query_range(node.left , _lowerCamelCase , node.mid ) , self._query_range(node.right , node.mid + 1 , _lowerCamelCase ) , ) else: # range in right child tree return self._query_range(node.right , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): if self.root is not None: UpperCamelCase_: Union[str, Any] = Queue() queue.put(self.root ) while not queue.empty(): UpperCamelCase_: List[str] = queue.get() yield node if node.left is not None: queue.put(node.left ) if node.right is not None: queue.put(node.right ) if __name__ == "__main__": import operator for fn in [operator.add, max, min]: print('*' * 50) A_ : List[str] = SegmentTree([2, 1, 5, 3, 4], fn) for node in arr.traverse(): print(node) print() arr.update(1, 5) for node in arr.traverse(): print(node) print() print(arr.query_range(3, 4)) # 7 print(arr.query_range(2, 2)) # 5 print(arr.query_range(1, 3)) # 13 print()
57
import argparse import json import os from collections import OrderedDict import torch from transformers import LukeConfig, LukeForMaskedLM, MLukeTokenizer, XLMRobertaTokenizer from transformers.tokenization_utils_base import AddedToken @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> int: # Load configuration defined in the metadata file with open(UpperCAmelCase__ ) as metadata_file: UpperCamelCase_: Tuple = json.load(UpperCAmelCase__ ) UpperCamelCase_: List[str] = LukeConfig(use_entity_aware_attention=UpperCAmelCase__ , **metadata['model_config'] ) # Load in the weights from the checkpoint_path UpperCamelCase_: Optional[int] = torch.load(UpperCAmelCase__ , map_location='cpu' )['module'] # Load the entity vocab file UpperCamelCase_: Any = load_original_entity_vocab(UpperCAmelCase__ ) # add an entry for [MASK2] UpperCamelCase_: List[str] = max(entity_vocab.values() ) + 1 config.entity_vocab_size += 1 UpperCamelCase_: Union[str, Any] = XLMRobertaTokenizer.from_pretrained(metadata['model_config']['bert_model_name'] ) # Add special tokens to the token vocabulary for downstream tasks UpperCamelCase_: Any = AddedToken('<ent>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = AddedToken('<ent2>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) tokenizer.add_special_tokens({'additional_special_tokens': [entity_token_a, entity_token_a]} ) config.vocab_size += 2 print(F'''Saving tokenizer to {pytorch_dump_folder_path}''' ) tokenizer.save_pretrained(UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'r' ) as f: UpperCamelCase_: Union[str, Any] = json.load(UpperCAmelCase__ ) UpperCamelCase_: str = 'MLukeTokenizer' with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , MLukeTokenizer.vocab_files_names['entity_vocab_file'] ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) # Initialize the embeddings of the special tokens UpperCamelCase_: Any = tokenizer.convert_tokens_to_ids(['@'] )[0] UpperCamelCase_: List[str] = tokenizer.convert_tokens_to_ids(['#'] )[0] UpperCamelCase_: Tuple = state_dict['embeddings.word_embeddings.weight'] UpperCamelCase_: int = word_emb[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = word_emb[enta_init_index].unsqueeze(0 ) UpperCamelCase_: str = torch.cat([word_emb, ent_emb, enta_emb] ) # add special tokens for 'entity_predictions.bias' for bias_name in ["lm_head.decoder.bias", "lm_head.bias"]: UpperCamelCase_: Union[str, Any] = state_dict[bias_name] UpperCamelCase_: Tuple = decoder_bias[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = decoder_bias[enta_init_index].unsqueeze(0 ) UpperCamelCase_: Optional[Any] = torch.cat([decoder_bias, ent_decoder_bias, enta_decoder_bias] ) # Initialize the query layers of the entity-aware self-attention mechanism for layer_index in range(config.num_hidden_layers ): for matrix_name in ["query.weight", "query.bias"]: UpperCamelCase_: List[Any] = F'''encoder.layer.{layer_index}.attention.self.''' UpperCamelCase_: str = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] # Initialize the embedding of the [MASK2] entity using that of the [MASK] entity for downstream tasks UpperCamelCase_: List[str] = state_dict['entity_embeddings.entity_embeddings.weight'] UpperCamelCase_: int = entity_emb[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: Tuple = torch.cat([entity_emb, entity_mask_emb] ) # add [MASK2] for 'entity_predictions.bias' UpperCamelCase_: Optional[Any] = state_dict['entity_predictions.bias'] UpperCamelCase_: List[str] = entity_prediction_bias[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: List[Any] = torch.cat([entity_prediction_bias, entity_mask_bias] ) UpperCamelCase_: List[Any] = LukeForMaskedLM(config=UpperCAmelCase__ ).eval() state_dict.pop('entity_predictions.decoder.weight' ) state_dict.pop('lm_head.decoder.weight' ) state_dict.pop('lm_head.decoder.bias' ) UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if not (key.startswith('lm_head' ) or key.startswith('entity_predictions' )): UpperCamelCase_: Union[str, Any] = state_dict[key] else: UpperCamelCase_: Dict = state_dict[key] UpperCamelCase_ ,UpperCamelCase_: Optional[int] = model.load_state_dict(UpperCAmelCase__ , strict=UpperCAmelCase__ ) if set(UpperCAmelCase__ ) != {"luke.embeddings.position_ids"}: raise ValueError(F'''Unexpected unexpected_keys: {unexpected_keys}''' ) if set(UpperCAmelCase__ ) != { "lm_head.decoder.weight", "lm_head.decoder.bias", "entity_predictions.decoder.weight", }: raise ValueError(F'''Unexpected missing_keys: {missing_keys}''' ) model.tie_weights() assert (model.luke.embeddings.word_embeddings.weight == model.lm_head.decoder.weight).all() assert (model.luke.entity_embeddings.entity_embeddings.weight == model.entity_predictions.decoder.weight).all() # Check outputs UpperCamelCase_: Optional[int] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ , task='entity_classification' ) UpperCamelCase_: Tuple = 'ISO 639-3 uses the code fas for the dialects spoken across Iran and アフガニスタン (Afghanistan).' UpperCamelCase_: Optional[int] = (0, 9) UpperCamelCase_: Union[str, Any] = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: str = model(**UpperCAmelCase__ ) # Verify word hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: int = torch.Size((1, 3_3, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[0.0892, 0.0596, -0.2819], [0.0134, 0.1199, 0.0573], [-0.0169, 0.0927, 0.0644]] ) if not (outputs.last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.last_hidden_state.shape is {outputs.last_hidden_state.shape}, Expected shape is {expected_shape}''' ) if not torch.allclose(outputs.last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify entity hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: Dict = torch.Size((1, 1, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[-0.1482, 0.0609, 0.0322]] ) if not (outputs.entity_last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.entity_last_hidden_state.shape is {outputs.entity_last_hidden_state.shape}, Expected shape is''' F''' {expected_shape}''' ) if not torch.allclose(outputs.entity_last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify masked word/entity prediction UpperCamelCase_: str = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = 'Tokyo is the capital of <mask>.' UpperCamelCase_: Dict = (2_4, 3_0) UpperCamelCase_: int = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: Dict = model(**UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = encoding['input_ids'][0].tolist() UpperCamelCase_: List[Any] = input_ids.index(tokenizer.convert_tokens_to_ids('<mask>' ) ) UpperCamelCase_: Any = outputs.logits[0][mask_position_id].argmax(dim=-1 ) assert "Japan" == tokenizer.decode(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.entity_logits[0][0].argmax().item() UpperCamelCase_: Optional[Any] = [ entity for entity, entity_id in tokenizer.entity_vocab.items() if entity_id == predicted_entity_id ] assert [e for e in multilingual_predicted_entities if e.startswith('en:' )][0] == "en:Japan" # Finally, save our PyTorch model and tokenizer print('Saving PyTorch model to {}'.format(UpperCAmelCase__ ) ) model.save_pretrained(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: Optional[Any] = ['[MASK]', '[PAD]', '[UNK]'] UpperCamelCase_: Any = [json.loads(UpperCAmelCase__ ) for line in open(UpperCAmelCase__ )] UpperCamelCase_: Tuple = {} for entry in data: UpperCamelCase_: Optional[int] = entry['id'] for entity_name, language in entry["entities"]: if entity_name in SPECIAL_TOKENS: UpperCamelCase_: Union[str, Any] = entity_id break UpperCamelCase_: Dict = F'''{language}:{entity_name}''' UpperCamelCase_: Optional[int] = entity_id return new_mapping if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument('--checkpoint_path', type=str, help='Path to a pytorch_model.bin file.') parser.add_argument( '--metadata_path', default=None, type=str, help='Path to a metadata.json file, defining the configuration.' ) parser.add_argument( '--entity_vocab_path', default=None, type=str, help='Path to an entity_vocab.tsv file, containing the entity vocabulary.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to where to dump the output PyTorch model.' ) parser.add_argument( '--model_size', default='base', type=str, choices=['base', 'large'], help='Size of the model to be converted.' ) A_ : List[str] = parser.parse_args() convert_luke_checkpoint( args.checkpoint_path, args.metadata_path, args.entity_vocab_path, args.pytorch_dump_folder_path, args.model_size, )
57
1
import argparse import torch from transformers import MobileBertConfig, MobileBertForPreTraining, load_tf_weights_in_mobilebert from transformers.utils import logging logging.set_verbosity_info() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: # Initialise PyTorch model UpperCamelCase_: Dict = MobileBertConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Optional[int] = MobileBertForPreTraining(UpperCAmelCase__ ) # Load weights from tf checkpoint UpperCamelCase_: Union[str, Any] = load_tf_weights_in_mobilebert(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model print(F'''Save PyTorch model to {pytorch_dump_path}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument( '--tf_checkpoint_path', default=None, type=str, required=True, help='Path to the TensorFlow checkpoint path.' ) parser.add_argument( '--mobilebert_config_file', default=None, type=str, required=True, help=( 'The config json file corresponding to the pre-trained MobileBERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--pytorch_dump_path', default=None, type=str, required=True, help='Path to the output PyTorch model.' ) A_ : Dict = parser.parse_args() convert_tf_checkpoint_to_pytorch(args.tf_checkpoint_path, args.mobilebert_config_file, args.pytorch_dump_path)
57
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging A_ : Optional[Any] = logging.get_logger(__name__) A_ : Optional[Any] = { 'distilbert-base-uncased': 'https://huggingface.co/distilbert-base-uncased/resolve/main/config.json', 'distilbert-base-uncased-distilled-squad': ( 'https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-cased': 'https://huggingface.co/distilbert-base-cased/resolve/main/config.json', 'distilbert-base-cased-distilled-squad': ( 'https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-german-cased': 'https://huggingface.co/distilbert-base-german-cased/resolve/main/config.json', 'distilbert-base-multilingual-cased': ( 'https://huggingface.co/distilbert-base-multilingual-cased/resolve/main/config.json' ), 'distilbert-base-uncased-finetuned-sst-2-english': ( 'https://huggingface.co/distilbert-base-uncased-finetuned-sst-2-english/resolve/main/config.json' ), } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Dict ='''distilbert''' a : List[str] ={ '''hidden_size''': '''dim''', '''num_attention_heads''': '''n_heads''', '''num_hidden_layers''': '''n_layers''', } def __init__( self , _lowerCamelCase=3_0_5_2_2 , _lowerCamelCase=5_1_2 , _lowerCamelCase=False , _lowerCamelCase=6 , _lowerCamelCase=1_2 , _lowerCamelCase=7_6_8 , _lowerCamelCase=4 * 7_6_8 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=0.0_2 , _lowerCamelCase=0.1 , _lowerCamelCase=0.2 , _lowerCamelCase=0 , **_lowerCamelCase , ): UpperCamelCase_: Tuple = vocab_size UpperCamelCase_: str = max_position_embeddings UpperCamelCase_: Optional[int] = sinusoidal_pos_embds UpperCamelCase_: Union[str, Any] = n_layers UpperCamelCase_: Optional[int] = n_heads UpperCamelCase_: int = dim UpperCamelCase_: Tuple = hidden_dim UpperCamelCase_: Any = dropout UpperCamelCase_: Optional[Any] = attention_dropout UpperCamelCase_: List[str] = activation UpperCamelCase_: Optional[Any] = initializer_range UpperCamelCase_: Optional[Any] = qa_dropout UpperCamelCase_: List[str] = seq_classif_dropout super().__init__(**_lowerCamelCase , pad_token_id=_lowerCamelCase ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" @property def _a ( self ): if self.task == "multiple-choice": UpperCamelCase_: Any = {0: 'batch', 1: 'choice', 2: 'sequence'} else: UpperCamelCase_: List[Any] = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ] )
57
1
import os from typing import Optional import fsspec from fsspec.archive import AbstractArchiveFileSystem from fsspec.utils import DEFAULT_BLOCK_SIZE class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Optional[Any] ='''''' a : str =( None # protocol passed in prefix to the url. ex: "gzip", for gzip://file.txt::http://foo.bar/file.txt.gz ) a : str =None # compression type in fsspec. ex: "gzip" a : str =None # extension of the filename to strip. ex: "".gz" to get file.txt from file.txt.gz def __init__( self , _lowerCamelCase = "" , _lowerCamelCase = None , _lowerCamelCase = None , **_lowerCamelCase ): super().__init__(self , **_lowerCamelCase ) # always open as "rb" since fsspec can then use the TextIOWrapper to make it work for "r" mode UpperCamelCase_: Union[str, Any] = fsspec.open( _lowerCamelCase , mode='rb' , protocol=_lowerCamelCase , compression=self.compression , client_kwargs={ 'requote_redirect_url': False, # see https://github.com/huggingface/datasets/pull/5459 'trust_env': True, # Enable reading proxy env variables. **(target_options or {}).pop('client_kwargs' , {} ), # To avoid issues if it was already passed. } , **(target_options or {}) , ) UpperCamelCase_: Optional[Any] = os.path.basename(self.file.path.split('::' )[0] ) UpperCamelCase_: Union[str, Any] = ( self.compressed_name[: self.compressed_name.rindex('.' )] if '.' in self.compressed_name else self.compressed_name ) UpperCamelCase_: List[Any] = None @classmethod def _a ( cls , _lowerCamelCase ): # compressed file paths are always relative to the archive root return super()._strip_protocol(_lowerCamelCase ).lstrip('/' ) def _a ( self ): if self.dir_cache is None: UpperCamelCase_: Any = {**self.file.fs.info(self.file.path ), 'name': self.uncompressed_name} UpperCamelCase_: Tuple = {f['name']: f} def _a ( self , _lowerCamelCase ): return self.file.open().read() def _a ( self , _lowerCamelCase , _lowerCamelCase = "rb" , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: Union[str, Any] = self._strip_protocol(_lowerCamelCase ) if mode != "rb": raise ValueError(f'''Tried to read with mode {mode} on file {self.file.path} opened with mode \'rb\'''' ) return self.file.open() class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : int ='''bz2''' a : Union[str, Any] ='''bz2''' a : Optional[Any] ='''.bz2''' class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : List[Any] ='''gzip''' a : List[str] ='''gzip''' a : Any ='''.gz''' class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : List[Any] ='''lz4''' a : int ='''lz4''' a : Union[str, Any] ='''.lz4''' class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Optional[Any] ='''xz''' a : int ='''xz''' a : Union[str, Any] ='''.xz''' class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : List[Any] ='''zstd''' a : List[Any] ='''zstd''' a : List[str] ='''.zst''' def __init__( self , _lowerCamelCase , _lowerCamelCase = "rb" , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = DEFAULT_BLOCK_SIZE , **_lowerCamelCase , ): super().__init__( fo=_lowerCamelCase , mode=_lowerCamelCase , target_protocol=_lowerCamelCase , target_options=_lowerCamelCase , block_size=_lowerCamelCase , **_lowerCamelCase , ) # We need to wrap the zstd decompressor to avoid this error in fsspec==2021.7.0 and zstandard==0.15.2: # # File "/Users/user/.virtualenvs/hf-datasets/lib/python3.7/site-packages/fsspec/core.py", line 145, in open # out.close = close # AttributeError: 'zstd.ZstdDecompressionReader' object attribute 'close' is read-only # # see https://github.com/intake/filesystem_spec/issues/725 UpperCamelCase_: str = self.file.__enter__ class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase ): UpperCamelCase_: Any = file_ def __enter__( self ): self._file.__enter__() return self def __exit__( self , *_lowerCamelCase , **_lowerCamelCase ): self._file.__exit__(*_lowerCamelCase , **_lowerCamelCase ) def __iter__( self ): return iter(self._file ) def _a ( self ): return next(self._file ) def __getattr__( self , _lowerCamelCase ): return getattr(self._file , _lowerCamelCase ) def fixed_enter(*_lowerCamelCase , **_lowerCamelCase ): return WrappedFile(_enter(*_lowerCamelCase , **_lowerCamelCase ) ) UpperCamelCase_: Tuple = fixed_enter
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : int = { 'configuration_lilt': ['LILT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'LiltConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = [ 'LILT_PRETRAINED_MODEL_ARCHIVE_LIST', 'LiltForQuestionAnswering', 'LiltForSequenceClassification', 'LiltForTokenClassification', 'LiltModel', 'LiltPreTrainedModel', ] if TYPE_CHECKING: from .configuration_lilt import LILT_PRETRAINED_CONFIG_ARCHIVE_MAP, LiltConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_lilt import ( LILT_PRETRAINED_MODEL_ARCHIVE_LIST, LiltForQuestionAnswering, LiltForSequenceClassification, LiltForTokenClassification, LiltModel, LiltPreTrainedModel, ) else: import sys A_ : Union[str, Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
A_ : Dict = {'a': ['c', 'b'], 'b': ['d', 'e'], 'c': [], 'd': [], 'e': []} A_ : Optional[Any] = ['a', 'b', 'c', 'd', 'e'] def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> str: UpperCamelCase_: int = start # add current to visited visited.append(UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = edges[current] for neighbor in neighbors: # if neighbor not in visited, visit if neighbor not in visited: UpperCamelCase_: Optional[Any] = topological_sort(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # if all neighbors visited add current to sort sort.append(UpperCAmelCase__ ) # if all vertices haven't been visited select a new one to visit if len(UpperCAmelCase__ ) != len(UpperCAmelCase__ ): for vertice in vertices: if vertice not in visited: UpperCamelCase_: Union[str, Any] = topological_sort(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # return sort return sort if __name__ == "__main__": A_ : Dict = topological_sort('a', [], []) print(sort)
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tokenizers_available, is_torch_available A_ : List[str] = { 'configuration_roc_bert': ['ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'RoCBertConfig'], 'tokenization_roc_bert': ['RoCBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: pass try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Union[str, Any] = [ 'ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'RoCBertForCausalLM', 'RoCBertForMaskedLM', 'RoCBertForMultipleChoice', 'RoCBertForPreTraining', 'RoCBertForQuestionAnswering', 'RoCBertForSequenceClassification', 'RoCBertForTokenClassification', 'RoCBertLayer', 'RoCBertModel', 'RoCBertPreTrainedModel', 'load_tf_weights_in_roc_bert', ] if TYPE_CHECKING: from .configuration_roc_bert import ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP, RoCBertConfig from .tokenization_roc_bert import RoCBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: raise OptionalDependencyNotAvailable() try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_roc_bert import ( ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST, RoCBertForCausalLM, RoCBertForMaskedLM, RoCBertForMultipleChoice, RoCBertForPreTraining, RoCBertForQuestionAnswering, RoCBertForSequenceClassification, RoCBertForTokenClassification, RoCBertLayer, RoCBertModel, RoCBertPreTrainedModel, load_tf_weights_in_roc_bert, ) else: import sys A_ : int = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
import argparse import collections import json import os import re import string import sys import numpy as np A_ : Optional[Any] = re.compile(r'\b(a|an|the)\b', re.UNICODE) A_ : Dict = None def snake_case () -> str: UpperCamelCase_: List[Any] = argparse.ArgumentParser('Official evaluation script for SQuAD version 2.0.' ) parser.add_argument('data_file' , metavar='data.json' , help='Input data JSON file.' ) parser.add_argument('pred_file' , metavar='pred.json' , help='Model predictions.' ) parser.add_argument( '--out-file' , '-o' , metavar='eval.json' , help='Write accuracy metrics to file (default is stdout).' ) parser.add_argument( '--na-prob-file' , '-n' , metavar='na_prob.json' , help='Model estimates of probability of no answer.' ) parser.add_argument( '--na-prob-thresh' , '-t' , type=UpperCAmelCase__ , default=1.0 , help='Predict "" if no-answer probability exceeds this (default = 1.0).' , ) parser.add_argument( '--out-image-dir' , '-p' , metavar='out_images' , default=UpperCAmelCase__ , help='Save precision-recall curves to directory.' ) parser.add_argument('--verbose' , '-v' , action='store_true' ) if len(sys.argv ) == 1: parser.print_help() sys.exit(1 ) return parser.parse_args() def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Tuple = {} for article in dataset: for p in article["paragraphs"]: for qa in p["qas"]: UpperCamelCase_: List[str] = bool(qa['answers']['text'] ) return qid_to_has_ans def snake_case (UpperCAmelCase__ ) -> List[str]: def remove_articles(UpperCAmelCase__ ): return ARTICLES_REGEX.sub(' ' , UpperCAmelCase__ ) def white_space_fix(UpperCAmelCase__ ): return " ".join(text.split() ) def remove_punc(UpperCAmelCase__ ): UpperCamelCase_: Any = set(string.punctuation ) return "".join(ch for ch in text if ch not in exclude ) def lower(UpperCAmelCase__ ): return text.lower() return white_space_fix(remove_articles(remove_punc(lower(UpperCAmelCase__ ) ) ) ) def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: if not s: return [] return normalize_answer(UpperCAmelCase__ ).split() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: return int(normalize_answer(UpperCAmelCase__ ) == normalize_answer(UpperCAmelCase__ ) ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Tuple: UpperCamelCase_: Union[str, Any] = get_tokens(UpperCAmelCase__ ) UpperCamelCase_: Tuple = get_tokens(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = collections.Counter(UpperCAmelCase__ ) & collections.Counter(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = sum(common.values() ) if len(UpperCAmelCase__ ) == 0 or len(UpperCAmelCase__ ) == 0: # If either is no-answer, then F1 is 1 if they agree, 0 otherwise return int(gold_toks == pred_toks ) if num_same == 0: return 0 UpperCamelCase_: Union[str, Any] = 1.0 * num_same / len(UpperCAmelCase__ ) UpperCamelCase_: Tuple = 1.0 * num_same / len(UpperCAmelCase__ ) UpperCamelCase_: List[str] = (2 * precision * recall) / (precision + recall) return fa def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: UpperCamelCase_: str = {} UpperCamelCase_: Union[str, Any] = {} for article in dataset: for p in article["paragraphs"]: for qa in p["qas"]: UpperCamelCase_: List[str] = qa['id'] UpperCamelCase_: Union[str, Any] = [t for t in qa['answers']['text'] if normalize_answer(UpperCAmelCase__ )] if not gold_answers: # For unanswerable questions, only correct answer is empty string UpperCamelCase_: Union[str, Any] = [''] if qid not in preds: print(F'''Missing prediction for {qid}''' ) continue UpperCamelCase_: Tuple = preds[qid] # Take max over all gold answers UpperCamelCase_: Dict = max(compute_exact(UpperCAmelCase__ , UpperCAmelCase__ ) for a in gold_answers ) UpperCamelCase_: Any = max(compute_fa(UpperCAmelCase__ , UpperCAmelCase__ ) for a in gold_answers ) return exact_scores, fa_scores def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: List[Any] = {} for qid, s in scores.items(): UpperCamelCase_: Optional[Any] = na_probs[qid] > na_prob_thresh if pred_na: UpperCamelCase_: List[str] = float(not qid_to_has_ans[qid] ) else: UpperCamelCase_: int = s return new_scores def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None ) -> int: if not qid_list: UpperCamelCase_: Tuple = len(UpperCAmelCase__ ) return collections.OrderedDict( [ ('exact', 100.0 * sum(exact_scores.values() ) / total), ('f1', 100.0 * sum(fa_scores.values() ) / total), ('total', total), ] ) else: UpperCamelCase_: Optional[int] = len(UpperCAmelCase__ ) return collections.OrderedDict( [ ('exact', 100.0 * sum(exact_scores[k] for k in qid_list ) / total), ('f1', 100.0 * sum(fa_scores[k] for k in qid_list ) / total), ('total', total), ] ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: for k in new_eval: UpperCamelCase_: int = new_eval[k] def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> str: plt.step(UpperCAmelCase__ , UpperCAmelCase__ , color='b' , alpha=0.2 , where='post' ) plt.fill_between(UpperCAmelCase__ , UpperCAmelCase__ , step='post' , alpha=0.2 , color='b' ) plt.xlabel('Recall' ) plt.ylabel('Precision' ) plt.xlim([0.0, 1.05] ) plt.ylim([0.0, 1.05] ) plt.title(UpperCAmelCase__ ) plt.savefig(UpperCAmelCase__ ) plt.clf() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None ) -> Optional[int]: UpperCamelCase_: List[str] = sorted(UpperCAmelCase__ , key=lambda UpperCAmelCase__ : na_probs[k] ) UpperCamelCase_: Dict = 0.0 UpperCamelCase_: Optional[int] = 1.0 UpperCamelCase_: Optional[Any] = 0.0 UpperCamelCase_: List[str] = [1.0] UpperCamelCase_: Dict = [0.0] UpperCamelCase_: Optional[int] = 0.0 for i, qid in enumerate(UpperCAmelCase__ ): if qid_to_has_ans[qid]: true_pos += scores[qid] UpperCamelCase_: str = true_pos / float(i + 1 ) UpperCamelCase_: Any = true_pos / float(UpperCAmelCase__ ) if i == len(UpperCAmelCase__ ) - 1 or na_probs[qid] != na_probs[qid_list[i + 1]]: # i.e., if we can put a threshold after this point avg_prec += cur_p * (cur_r - recalls[-1]) precisions.append(UpperCAmelCase__ ) recalls.append(UpperCAmelCase__ ) if out_image: plot_pr_curve(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) return {"ap": 100.0 * avg_prec} def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> str: if out_image_dir and not os.path.exists(UpperCAmelCase__ ): os.makedirs(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = sum(1 for v in qid_to_has_ans.values() if v ) if num_true_pos == 0: return UpperCamelCase_: Optional[int] = make_precision_recall_eval( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , out_image=os.path.join(UpperCAmelCase__ , 'pr_exact.png' ) , title='Precision-Recall curve for Exact Match score' , ) UpperCamelCase_: Any = make_precision_recall_eval( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , out_image=os.path.join(UpperCAmelCase__ , 'pr_f1.png' ) , title='Precision-Recall curve for F1 score' , ) UpperCamelCase_: Optional[int] = {k: float(UpperCAmelCase__ ) for k, v in qid_to_has_ans.items()} UpperCamelCase_: str = make_precision_recall_eval( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , out_image=os.path.join(UpperCAmelCase__ , 'pr_oracle.png' ) , title='Oracle Precision-Recall curve (binary task of HasAns vs. NoAns)' , ) merge_eval(UpperCAmelCase__ , UpperCAmelCase__ , 'pr_exact' ) merge_eval(UpperCAmelCase__ , UpperCAmelCase__ , 'pr_f1' ) merge_eval(UpperCAmelCase__ , UpperCAmelCase__ , 'pr_oracle' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: if not qid_list: return UpperCamelCase_: Union[str, Any] = [na_probs[k] for k in qid_list] UpperCamelCase_: Optional[Any] = np.ones_like(UpperCAmelCase__ ) / float(len(UpperCAmelCase__ ) ) plt.hist(UpperCAmelCase__ , weights=UpperCAmelCase__ , bins=2_0 , range=(0.0, 1.0) ) plt.xlabel('Model probability of no-answer' ) plt.ylabel('Proportion of dataset' ) plt.title(F'''Histogram of no-answer probability: {name}''' ) plt.savefig(os.path.join(UpperCAmelCase__ , F'''na_prob_hist_{name}.png''' ) ) plt.clf() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Tuple: UpperCamelCase_: List[str] = sum(1 for k in qid_to_has_ans if not qid_to_has_ans[k] ) UpperCamelCase_: Dict = num_no_ans UpperCamelCase_: Optional[Any] = cur_score UpperCamelCase_: List[str] = 0.0 UpperCamelCase_: Union[str, Any] = sorted(UpperCAmelCase__ , key=lambda UpperCAmelCase__ : na_probs[k] ) for i, qid in enumerate(UpperCAmelCase__ ): if qid not in scores: continue if qid_to_has_ans[qid]: UpperCamelCase_: Optional[Any] = scores[qid] else: if preds[qid]: UpperCamelCase_: Tuple = -1 else: UpperCamelCase_: str = 0 cur_score += diff if cur_score > best_score: UpperCamelCase_: List[Any] = cur_score UpperCamelCase_: int = na_probs[qid] return 100.0 * best_score / len(UpperCAmelCase__ ), best_thresh def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Tuple: UpperCamelCase_ ,UpperCamelCase_: Dict = find_best_thresh(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_: Optional[int] = find_best_thresh(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Tuple = best_exact UpperCamelCase_: int = exact_thresh UpperCamelCase_: Optional[int] = best_fa UpperCamelCase_: Tuple = fa_thresh def snake_case () -> str: with open(OPTS.data_file ) as f: UpperCamelCase_: int = json.load(UpperCAmelCase__ ) UpperCamelCase_: int = dataset_json['data'] with open(OPTS.pred_file ) as f: UpperCamelCase_: Optional[int] = json.load(UpperCAmelCase__ ) if OPTS.na_prob_file: with open(OPTS.na_prob_file ) as f: UpperCamelCase_: List[str] = json.load(UpperCAmelCase__ ) else: UpperCamelCase_: int = {k: 0.0 for k in preds} UpperCamelCase_: str = make_qid_to_has_ans(UpperCAmelCase__ ) # maps qid to True/False UpperCamelCase_: int = [k for k, v in qid_to_has_ans.items() if v] UpperCamelCase_: Optional[int] = [k for k, v in qid_to_has_ans.items() if not v] UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = get_raw_scores(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = apply_no_ans_threshold(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , OPTS.na_prob_thresh ) UpperCamelCase_: Union[str, Any] = apply_no_ans_threshold(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , OPTS.na_prob_thresh ) UpperCamelCase_: Optional[Any] = make_eval_dict(UpperCAmelCase__ , UpperCAmelCase__ ) if has_ans_qids: UpperCamelCase_: Optional[Any] = make_eval_dict(UpperCAmelCase__ , UpperCAmelCase__ , qid_list=UpperCAmelCase__ ) merge_eval(UpperCAmelCase__ , UpperCAmelCase__ , 'HasAns' ) if no_ans_qids: UpperCamelCase_: Any = make_eval_dict(UpperCAmelCase__ , UpperCAmelCase__ , qid_list=UpperCAmelCase__ ) merge_eval(UpperCAmelCase__ , UpperCAmelCase__ , 'NoAns' ) if OPTS.na_prob_file: find_all_best_thresh(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) if OPTS.na_prob_file and OPTS.out_image_dir: run_precision_recall_analysis(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , OPTS.out_image_dir ) histogram_na_prob(UpperCAmelCase__ , UpperCAmelCase__ , OPTS.out_image_dir , 'hasAns' ) histogram_na_prob(UpperCAmelCase__ , UpperCAmelCase__ , OPTS.out_image_dir , 'noAns' ) if OPTS.out_file: with open(OPTS.out_file , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) else: print(json.dumps(UpperCAmelCase__ , indent=2 ) ) if __name__ == "__main__": A_ : Optional[int] = parse_args() if OPTS.out_image_dir: import matplotlib matplotlib.use('Agg') import matplotlib.pyplot as plt main()
57
from dataclasses import dataclass from enum import Enum from typing import List, Optional, Union import numpy as np import PIL from PIL import Image from ...utils import BaseOutput, is_torch_available, is_transformers_available @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[List[PIL.Image.Image], np.ndarray] a : Optional[List[bool]] if is_transformers_available() and is_torch_available(): from .pipeline_semantic_stable_diffusion import SemanticStableDiffusionPipeline
57
1
def snake_case (UpperCAmelCase__ ) -> bool: if p < 2: raise ValueError('p should not be less than 2!' ) elif p == 2: return True UpperCamelCase_: Tuple = 4 UpperCamelCase_: str = (1 << p) - 1 for _ in range(p - 2 ): UpperCamelCase_: Union[str, Any] = ((s * s) - 2) % m return s == 0 if __name__ == "__main__": print(lucas_lehmer_test(7)) print(lucas_lehmer_test(11))
57
import argparse import json import os import fairseq import torch from fairseq.data import Dictionary from transformers import ( WavaVecaConfig, WavaVecaCTCTokenizer, WavaVecaFeatureExtractor, WavaVecaForCTC, WavaVecaForPreTraining, WavaVecaProcessor, logging, ) from transformers.models.wavaveca.modeling_wavaveca import WavaVecaForSequenceClassification logging.set_verbosity_info() A_ : Tuple = logging.get_logger(__name__) A_ : Optional[int] = { 'post_extract_proj': 'feature_projection.projection', 'encoder.pos_conv.0': 'encoder.pos_conv_embed.conv', 'self_attn.k_proj': 'encoder.layers.*.attention.k_proj', 'self_attn.v_proj': 'encoder.layers.*.attention.v_proj', 'self_attn.q_proj': 'encoder.layers.*.attention.q_proj', 'self_attn.out_proj': 'encoder.layers.*.attention.out_proj', 'self_attn_layer_norm': 'encoder.layers.*.layer_norm', 'fc1': 'encoder.layers.*.feed_forward.intermediate_dense', 'fc2': 'encoder.layers.*.feed_forward.output_dense', 'final_layer_norm': 'encoder.layers.*.final_layer_norm', 'encoder.layer_norm': 'encoder.layer_norm', 'adapter_layer': 'encoder.layers.*.adapter_layer', 'w2v_model.layer_norm': 'feature_projection.layer_norm', 'quantizer.weight_proj': 'quantizer.weight_proj', 'quantizer.vars': 'quantizer.codevectors', 'project_q': 'project_q', 'final_proj': 'project_hid', 'w2v_encoder.proj': 'lm_head', 'mask_emb': 'masked_spec_embed', 'pooling_layer.linear': 'projector', 'pooling_layer.projection': 'classifier', } A_ : int = [ 'lm_head', 'quantizer.weight_proj', 'quantizer.codevectors', 'project_q', 'project_hid', 'projector', 'classifier', ] def snake_case (UpperCAmelCase__ ) -> str: UpperCamelCase_: Tuple = {} with open(UpperCAmelCase__ , 'r' ) as file: for line_number, line in enumerate(UpperCAmelCase__ ): UpperCamelCase_: List[Any] = line.strip() if line: UpperCamelCase_: List[Any] = line.split() UpperCamelCase_: Optional[Any] = line_number UpperCamelCase_: Any = words[0] UpperCamelCase_: List[Any] = value return result def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: for attribute in key.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Any = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: Dict = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: Optional[Any] = getattr(UpperCAmelCase__ , UpperCAmelCase__ ).shape elif weight_type is not None and weight_type == "param": UpperCamelCase_: Optional[Any] = hf_pointer for attribute in hf_param_name.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Tuple = shape_pointer.shape # let's reduce dimension UpperCamelCase_: int = value[0] else: UpperCamelCase_: Union[str, Any] = hf_pointer.shape if hf_shape != value.shape: raise ValueError( F'''Shape of hf {key + '.' + weight_type if weight_type is not None else ''} is {hf_shape}, but should be''' F''' {value.shape} for {full_name}''' ) if weight_type == "weight": UpperCamelCase_: Optional[int] = value elif weight_type == "weight_g": UpperCamelCase_: Any = value elif weight_type == "weight_v": UpperCamelCase_: Union[str, Any] = value elif weight_type == "bias": UpperCamelCase_: Union[str, Any] = value elif weight_type == "param": for attribute in hf_param_name.split('.' ): UpperCamelCase_: Dict = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = value else: UpperCamelCase_: int = value logger.info(F'''{key + '.' + weight_type if weight_type is not None else ''} was initialized from {full_name}.''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Union[str, Any] = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Dict = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: List[Any] = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: List[Any] = '.'.join([key, weight_type] ) elif weight_type is not None and weight_type == "param": UpperCamelCase_: Any = '.'.join([key, hf_param_name] ) else: UpperCamelCase_: Union[str, Any] = key UpperCamelCase_: Any = value if 'lm_head' in full_key else value[0] A_ : str = { 'W_a': 'linear_1.weight', 'W_b': 'linear_2.weight', 'b_a': 'linear_1.bias', 'b_b': 'linear_2.bias', 'ln_W': 'norm.weight', 'ln_b': 'norm.bias', } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None ) -> Any: UpperCamelCase_: Optional[int] = False for key, mapped_key in MAPPING.items(): UpperCamelCase_: Tuple = 'wav2vec2.' + mapped_key if mapped_key not in TOP_LEVEL_KEYS else mapped_key if key in name or key.split('w2v_model.' )[-1] == name.split('.' )[0]: UpperCamelCase_: Optional[Any] = True if "*" in mapped_key: UpperCamelCase_: Optional[int] = name.split(UpperCAmelCase__ )[0].split('.' )[-2] UpperCamelCase_: Any = mapped_key.replace('*' , UpperCAmelCase__ ) if "weight_g" in name: UpperCamelCase_: Union[str, Any] = 'weight_g' elif "weight_v" in name: UpperCamelCase_: Dict = 'weight_v' elif "bias" in name: UpperCamelCase_: int = 'bias' elif "weight" in name: # TODO: don't match quantizer.weight_proj UpperCamelCase_: str = 'weight' else: UpperCamelCase_: Union[str, Any] = None if hf_dict is not None: rename_dict(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) else: set_recursively(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) return is_used return is_used def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: List[Any] = [] UpperCamelCase_: Dict = fairseq_model.state_dict() UpperCamelCase_: Optional[Any] = hf_model.wavaveca.feature_extractor for name, value in fairseq_dict.items(): UpperCamelCase_: Union[str, Any] = False if "conv_layers" in name: load_conv_layer( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , hf_model.config.feat_extract_norm == 'group' , ) UpperCamelCase_: List[Any] = True else: UpperCamelCase_: Tuple = load_wavaveca_layer(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) if not is_used: unused_weights.append(UpperCAmelCase__ ) logger.warning(F'''Unused weights: {unused_weights}''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Any = full_name.split('conv_layers.' )[-1] UpperCamelCase_: int = name.split('.' ) UpperCamelCase_: int = int(items[0] ) UpperCamelCase_: Union[str, Any] = int(items[1] ) if type_id == 0: if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) UpperCamelCase_: int = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif (type_id == 2 and not use_group_norm) or (type_id == 2 and layer_id == 0 and use_group_norm): if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape} was found.''' ) UpperCamelCase_: List[Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(UpperCAmelCase__ ) @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=True , UpperCAmelCase__=False ) -> Dict: if config_path is not None: UpperCamelCase_: Tuple = WavaVecaConfig.from_pretrained(UpperCAmelCase__ ) else: UpperCamelCase_: List[str] = WavaVecaConfig() if is_seq_class: UpperCamelCase_: int = read_txt_into_dict(UpperCAmelCase__ ) UpperCamelCase_: Tuple = idalabel UpperCamelCase_: str = WavaVecaForSequenceClassification(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) feature_extractor.save_pretrained(UpperCAmelCase__ ) elif is_finetuned: if dict_path: UpperCamelCase_: List[Any] = Dictionary.load(UpperCAmelCase__ ) # important change bos & pad token id since CTC symbol is <pad> and # not <s> as in fairseq UpperCamelCase_: Dict = target_dict.pad_index UpperCamelCase_: Tuple = target_dict.bos_index UpperCamelCase_: Optional[Any] = target_dict.eos_index UpperCamelCase_: Union[str, Any] = len(target_dict.symbols ) UpperCamelCase_: int = os.path.join(UpperCAmelCase__ , 'vocab.json' ) if not os.path.isdir(UpperCAmelCase__ ): logger.error('--pytorch_dump_folder_path ({}) should be a directory'.format(UpperCAmelCase__ ) ) return os.makedirs(UpperCAmelCase__ , exist_ok=UpperCAmelCase__ ) UpperCamelCase_: str = target_dict.indices # fairseq has the <pad> and <s> switched UpperCamelCase_: List[str] = 0 UpperCamelCase_: List[Any] = 1 with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as vocab_handle: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = WavaVecaCTCTokenizer( UpperCAmelCase__ , unk_token=target_dict.unk_word , pad_token=target_dict.pad_word , bos_token=target_dict.bos_word , eos_token=target_dict.eos_word , word_delimiter_token='|' , do_lower_case=UpperCAmelCase__ , ) UpperCamelCase_: Any = True if config.feat_extract_norm == 'layer' else False UpperCamelCase_: Tuple = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) UpperCamelCase_: Dict = WavaVecaProcessor(feature_extractor=UpperCAmelCase__ , tokenizer=UpperCAmelCase__ ) processor.save_pretrained(UpperCAmelCase__ ) UpperCamelCase_: Any = WavaVecaForCTC(UpperCAmelCase__ ) else: UpperCamelCase_: Any = WavaVecaForPreTraining(UpperCAmelCase__ ) if is_finetuned or is_seq_class: UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Dict = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path] , arg_overrides={'data': '/'.join(dict_path.split('/' )[:-1] )} ) else: UpperCamelCase_: List[str] = argparse.Namespace(task='audio_pretraining' ) UpperCamelCase_: Any = fairseq.tasks.setup_task(UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = fairseq.checkpoint_utils.load_model_ensemble_and_task([checkpoint_path] , task=UpperCAmelCase__ ) UpperCamelCase_: str = model[0].eval() recursively_load_weights(UpperCAmelCase__ , UpperCAmelCase__ , not is_finetuned ) hf_wavavec.save_pretrained(UpperCAmelCase__ ) if __name__ == "__main__": A_ : str = argparse.ArgumentParser() parser.add_argument('--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model.') parser.add_argument('--checkpoint_path', default=None, type=str, help='Path to fairseq checkpoint') parser.add_argument('--dict_path', default=None, type=str, help='Path to dict of fine-tuned model') parser.add_argument('--config_path', default=None, type=str, help='Path to hf config.json of model to convert') parser.add_argument( '--not_finetuned', action='store_true', help='Whether the model to convert is a fine-tuned model or not' ) parser.add_argument( '--is_seq_class', action='store_true', help='Whether the model to convert is a fine-tuned sequence classification model or not', ) A_ : int = parser.parse_args() A_ : str = not args.not_finetuned and not args.is_seq_class convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.config_path, args.dict_path, is_finetuned, args.is_seq_class, )
57
1
import importlib import os from dataclasses import dataclass from enum import Enum from typing import Any, Dict, Optional, Union import torch from ..utils import BaseOutput A_ : Tuple = 'scheduler_config.json' class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =1 a : Union[str, Any] =2 a : List[str] =3 a : List[str] =4 a : Dict =5 a : List[str] =6 a : str =7 a : int =8 a : Dict =9 a : int =10 a : int =11 a : int =12 a : str =13 a : List[str] =14 @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : torch.FloatTensor class _lowerCAmelCase: """simple docstring""" a : Any =SCHEDULER_CONFIG_NAME a : Optional[int] =[] a : int =True @classmethod def _a ( cls , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase=False , **_lowerCamelCase , ): UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Any = cls.load_config( pretrained_model_name_or_path=_lowerCamelCase , subfolder=_lowerCamelCase , return_unused_kwargs=_lowerCamelCase , return_commit_hash=_lowerCamelCase , **_lowerCamelCase , ) return cls.from_config(_lowerCamelCase , return_unused_kwargs=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = False , **_lowerCamelCase ): self.save_config(save_directory=_lowerCamelCase , push_to_hub=_lowerCamelCase , **_lowerCamelCase ) @property def _a ( self ): return self._get_compatibles() @classmethod def _a ( cls ): UpperCamelCase_: Any = list(set([cls.__name__] + cls._compatibles ) ) UpperCamelCase_: int = importlib.import_module(__name__.split('.' )[0] ) UpperCamelCase_: str = [ getattr(_lowerCamelCase , _lowerCamelCase ) for c in compatible_classes_str if hasattr(_lowerCamelCase , _lowerCamelCase ) ] return compatible_classes
57
import inspect import os import unittest import torch import accelerate from accelerate import debug_launcher from accelerate.test_utils import ( execute_subprocess_async, require_cpu, require_huggingface_suite, require_multi_gpu, require_single_gpu, ) from accelerate.utils import patch_environment @require_huggingface_suite class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Optional[int] = inspect.getfile(accelerate.test_utils ) UpperCamelCase_: Dict = os.path.sep.join( mod_file.split(os.path.sep )[:-1] + ['scripts', 'external_deps', 'test_metrics.py'] ) from accelerate.test_utils.scripts.external_deps import test_metrics # noqa: F401 UpperCamelCase_: Tuple = test_metrics @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main , num_processes=1 ) @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main ) @require_single_gpu def _a ( self ): self.test_metrics.main() @require_multi_gpu def _a ( self ): print(f'''Found {torch.cuda.device_count()} devices.''' ) UpperCamelCase_: List[Any] = ['torchrun', f'''--nproc_per_node={torch.cuda.device_count()}''', self.test_file_path] with patch_environment(omp_num_threads=1 ): execute_subprocess_async(_lowerCamelCase , env=os.environ.copy() )
57
1
def snake_case (UpperCAmelCase__ ) -> list: if n_term == "": return [] UpperCamelCase_: list = [] for temp in range(int(UpperCAmelCase__ ) ): series.append(F'''1/{temp + 1}''' if series else '1' ) return series if __name__ == "__main__": A_ : Dict = input('Enter the last number (nth term) of the Harmonic Series') print('Formula of Harmonic Series => 1+1/2+1/3 ..... 1/n') print(harmonic_series(nth_term))
57
import math class _lowerCAmelCase: """simple docstring""" def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: int = 0.0 UpperCamelCase_: Tuple = 0.0 for i in range(len(_lowerCamelCase ) ): da += math.pow((sample[i] - weights[0][i]) , 2 ) da += math.pow((sample[i] - weights[1][i]) , 2 ) return 0 if da > da else 1 return 0 def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): for i in range(len(_lowerCamelCase ) ): weights[j][i] += alpha * (sample[i] - weights[j][i]) return weights def snake_case () -> None: # Training Examples ( m, n ) UpperCamelCase_: List[str] = [[1, 1, 0, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 0, 1, 1]] # weight initialization ( n, C ) UpperCamelCase_: List[Any] = [[0.2, 0.6, 0.5, 0.9], [0.8, 0.4, 0.7, 0.3]] # training UpperCamelCase_: Dict = SelfOrganizingMap() UpperCamelCase_: List[Any] = 3 UpperCamelCase_: List[str] = 0.5 for _ in range(UpperCAmelCase__ ): for j in range(len(UpperCAmelCase__ ) ): # training sample UpperCamelCase_: int = training_samples[j] # Compute the winning vector UpperCamelCase_: Tuple = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # Update the winning vector UpperCamelCase_: Union[str, Any] = self_organizing_map.update(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # classify test sample UpperCamelCase_: Dict = [0, 0, 0, 1] UpperCamelCase_: Union[str, Any] = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # results print(F'''Clusters that the test sample belongs to : {winner}''' ) print(F'''Weights that have been trained : {weights}''' ) # running the main() function if __name__ == "__main__": main()
57
1
import os import sys import unittest A_ : Union[str, Any] = os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))) sys.path.append(os.path.join(git_repo_path, 'utils')) import check_dummies # noqa: E402 from check_dummies import create_dummy_files, create_dummy_object, find_backend, read_init # noqa: E402 # Align TRANSFORMERS_PATH in check_dummies with the current path A_ : Union[str, Any] = os.path.join(git_repo_path, 'src', 'diffusers') class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Tuple = find_backend(' if not is_torch_available():' ) self.assertEqual(_lowerCamelCase , 'torch' ) # backend_with_underscore = find_backend(" if not is_tensorflow_text_available():") # self.assertEqual(backend_with_underscore, "tensorflow_text") UpperCamelCase_: int = find_backend(' if not (is_torch_available() and is_transformers_available()):' ) self.assertEqual(_lowerCamelCase , 'torch_and_transformers' ) # double_backend_with_underscore = find_backend( # " if not (is_sentencepiece_available() and is_tensorflow_text_available()):" # ) # self.assertEqual(double_backend_with_underscore, "sentencepiece_and_tensorflow_text") UpperCamelCase_: str = find_backend( ' if not (is_torch_available() and is_transformers_available() and is_onnx_available()):' ) self.assertEqual(_lowerCamelCase , 'torch_and_transformers_and_onnx' ) def _a ( self ): UpperCamelCase_: Tuple = read_init() # We don't assert on the exact list of keys to allow for smooth grow of backend-specific objects self.assertIn('torch' , _lowerCamelCase ) self.assertIn('torch_and_transformers' , _lowerCamelCase ) self.assertIn('flax_and_transformers' , _lowerCamelCase ) self.assertIn('torch_and_transformers_and_onnx' , _lowerCamelCase ) # Likewise, we can't assert on the exact content of a key self.assertIn('UNet2DModel' , objects['torch'] ) self.assertIn('FlaxUNet2DConditionModel' , objects['flax'] ) self.assertIn('StableDiffusionPipeline' , objects['torch_and_transformers'] ) self.assertIn('FlaxStableDiffusionPipeline' , objects['flax_and_transformers'] ) self.assertIn('LMSDiscreteScheduler' , objects['torch_and_scipy'] ) self.assertIn('OnnxStableDiffusionPipeline' , objects['torch_and_transformers_and_onnx'] ) def _a ( self ): UpperCamelCase_: int = create_dummy_object('CONSTANT' , '\'torch\'' ) self.assertEqual(_lowerCamelCase , '\nCONSTANT = None\n' ) UpperCamelCase_: Tuple = create_dummy_object('function' , '\'torch\'' ) self.assertEqual( _lowerCamelCase , '\ndef function(*args, **kwargs):\n requires_backends(function, \'torch\')\n' ) UpperCamelCase_: Any = '\nclass FakeClass(metaclass=DummyObject):\n _backends = \'torch\'\n\n def __init__(self, *args, **kwargs):\n requires_backends(self, \'torch\')\n\n @classmethod\n def from_config(cls, *args, **kwargs):\n requires_backends(cls, \'torch\')\n\n @classmethod\n def from_pretrained(cls, *args, **kwargs):\n requires_backends(cls, \'torch\')\n' UpperCamelCase_: Any = create_dummy_object('FakeClass' , '\'torch\'' ) self.assertEqual(_lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: Tuple = '# This file is autogenerated by the command `make fix-copies`, do not edit.\nfrom ..utils import DummyObject, requires_backends\n\n\nCONSTANT = None\n\n\ndef function(*args, **kwargs):\n requires_backends(function, ["torch"])\n\n\nclass FakeClass(metaclass=DummyObject):\n _backends = ["torch"]\n\n def __init__(self, *args, **kwargs):\n requires_backends(self, ["torch"])\n\n @classmethod\n def from_config(cls, *args, **kwargs):\n requires_backends(cls, ["torch"])\n\n @classmethod\n def from_pretrained(cls, *args, **kwargs):\n requires_backends(cls, ["torch"])\n' UpperCamelCase_: Optional[Any] = create_dummy_files({'torch': ['CONSTANT', 'function', 'FakeClass']} ) self.assertEqual(dummy_files['torch'] , _lowerCamelCase )
57
from collections import namedtuple A_ : Tuple = namedtuple('from_to', 'from_ to') A_ : int = { 'cubicmeter': from_to(1, 1), 'litre': from_to(0.001, 1000), 'kilolitre': from_to(1, 1), 'gallon': from_to(0.00454, 264.172), 'cubicyard': from_to(0.76455, 1.30795), 'cubicfoot': from_to(0.028, 35.3147), 'cup': from_to(0.000236588, 4226.75), } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> float: if from_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'from_type\' value: {from_type!r} Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) if to_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'to_type\' value: {to_type!r}. Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) return value * METRIC_CONVERSION[from_type].from_ * METRIC_CONVERSION[to_type].to if __name__ == "__main__": import doctest doctest.testmod()
57
1
import torch from diffusers import DDPMScheduler from .test_schedulers import SchedulerCommonTest class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =(DDPMScheduler,) def _a ( self , **_lowerCamelCase ): UpperCamelCase_: List[Any] = { 'num_train_timesteps': 1_0_0_0, 'beta_start': 0.0_0_0_1, 'beta_end': 0.0_2, 'beta_schedule': 'linear', 'variance_type': 'fixed_small', 'clip_sample': True, } config.update(**_lowerCamelCase ) return config def _a ( self ): for timesteps in [1, 5, 1_0_0, 1_0_0_0]: self.check_over_configs(num_train_timesteps=_lowerCamelCase ) def _a ( self ): for beta_start, beta_end in zip([0.0_0_0_1, 0.0_0_1, 0.0_1, 0.1] , [0.0_0_2, 0.0_2, 0.2, 2] ): self.check_over_configs(beta_start=_lowerCamelCase , beta_end=_lowerCamelCase ) def _a ( self ): for schedule in ["linear", "squaredcos_cap_v2"]: self.check_over_configs(beta_schedule=_lowerCamelCase ) def _a ( self ): for variance in ["fixed_small", "fixed_large", "other"]: self.check_over_configs(variance_type=_lowerCamelCase ) def _a ( self ): for clip_sample in [True, False]: self.check_over_configs(clip_sample=_lowerCamelCase ) def _a ( self ): self.check_over_configs(thresholding=_lowerCamelCase ) for threshold in [0.5, 1.0, 2.0]: for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs( thresholding=_lowerCamelCase , prediction_type=_lowerCamelCase , sample_max_value=_lowerCamelCase , ) def _a ( self ): for prediction_type in ["epsilon", "sample", "v_prediction"]: self.check_over_configs(prediction_type=_lowerCamelCase ) def _a ( self ): for t in [0, 5_0_0, 9_9_9]: self.check_over_forward(time_step=_lowerCamelCase ) def _a ( self ): UpperCamelCase_: int = self.scheduler_classes[0] UpperCamelCase_: int = self.get_scheduler_config() UpperCamelCase_: List[Any] = scheduler_class(**_lowerCamelCase ) assert torch.sum(torch.abs(scheduler._get_variance(0 ) - 0.0 ) ) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(4_8_7 ) - 0.0_0_9_7_9 ) ) < 1e-5 assert torch.sum(torch.abs(scheduler._get_variance(9_9_9 ) - 0.0_2 ) ) < 1e-5 def _a ( self ): UpperCamelCase_: Optional[int] = self.scheduler_classes[0] UpperCamelCase_: List[str] = self.get_scheduler_config() UpperCamelCase_: str = scheduler_class(**_lowerCamelCase ) UpperCamelCase_: str = len(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.dummy_model() UpperCamelCase_: int = self.dummy_sample_deter UpperCamelCase_: Optional[Any] = torch.manual_seed(0 ) for t in reversed(range(_lowerCamelCase ) ): # 1. predict noise residual UpperCamelCase_: Optional[Any] = model(_lowerCamelCase , _lowerCamelCase ) # 2. predict previous mean of sample x_t-1 UpperCamelCase_: List[str] = scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance UpperCamelCase_: List[str] = pred_prev_sample UpperCamelCase_: Union[str, Any] = torch.sum(torch.abs(_lowerCamelCase ) ) UpperCamelCase_: Optional[int] = torch.mean(torch.abs(_lowerCamelCase ) ) assert abs(result_sum.item() - 2_5_8.9_6_0_6 ) < 1e-2 assert abs(result_mean.item() - 0.3_3_7_2 ) < 1e-3 def _a ( self ): UpperCamelCase_: Dict = self.scheduler_classes[0] UpperCamelCase_: List[Any] = self.get_scheduler_config(prediction_type='v_prediction' ) UpperCamelCase_: Union[str, Any] = scheduler_class(**_lowerCamelCase ) UpperCamelCase_: Tuple = len(_lowerCamelCase ) UpperCamelCase_: Dict = self.dummy_model() UpperCamelCase_: str = self.dummy_sample_deter UpperCamelCase_: Tuple = torch.manual_seed(0 ) for t in reversed(range(_lowerCamelCase ) ): # 1. predict noise residual UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase , _lowerCamelCase ) # 2. predict previous mean of sample x_t-1 UpperCamelCase_: Optional[Any] = scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample # if t > 0: # noise = self.dummy_sample_deter # variance = scheduler.get_variance(t) ** (0.5) * noise # # sample = pred_prev_sample + variance UpperCamelCase_: str = pred_prev_sample UpperCamelCase_: Optional[Any] = torch.sum(torch.abs(_lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = torch.mean(torch.abs(_lowerCamelCase ) ) assert abs(result_sum.item() - 2_0_2.0_2_9_6 ) < 1e-2 assert abs(result_mean.item() - 0.2_6_3_1 ) < 1e-3 def _a ( self ): UpperCamelCase_: Tuple = self.scheduler_classes[0] UpperCamelCase_: Optional[Any] = self.get_scheduler_config() UpperCamelCase_: List[str] = scheduler_class(**_lowerCamelCase ) UpperCamelCase_: str = [1_0_0, 8_7, 5_0, 1, 0] scheduler.set_timesteps(timesteps=_lowerCamelCase ) UpperCamelCase_: int = scheduler.timesteps for i, timestep in enumerate(_lowerCamelCase ): if i == len(_lowerCamelCase ) - 1: UpperCamelCase_: Any = -1 else: UpperCamelCase_: Optional[Any] = timesteps[i + 1] UpperCamelCase_: Optional[int] = scheduler.previous_timestep(_lowerCamelCase ) UpperCamelCase_: str = prev_t.item() self.assertEqual(_lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.scheduler_classes[0] UpperCamelCase_: Optional[int] = self.get_scheduler_config() UpperCamelCase_: Tuple = scheduler_class(**_lowerCamelCase ) UpperCamelCase_: Any = [1_0_0, 8_7, 5_0, 5_1, 0] with self.assertRaises(_lowerCamelCase , msg='`custom_timesteps` must be in descending order.' ): scheduler.set_timesteps(timesteps=_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.scheduler_classes[0] UpperCamelCase_: List[str] = self.get_scheduler_config() UpperCamelCase_: int = scheduler_class(**_lowerCamelCase ) UpperCamelCase_: str = [1_0_0, 8_7, 5_0, 1, 0] UpperCamelCase_: int = len(_lowerCamelCase ) with self.assertRaises(_lowerCamelCase , msg='Can only pass one of `num_inference_steps` or `custom_timesteps`.' ): scheduler.set_timesteps(num_inference_steps=_lowerCamelCase , timesteps=_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Union[str, Any] = self.scheduler_classes[0] UpperCamelCase_: int = self.get_scheduler_config() UpperCamelCase_: int = scheduler_class(**_lowerCamelCase ) UpperCamelCase_: Any = [scheduler.config.num_train_timesteps] with self.assertRaises( _lowerCamelCase , msg='`timesteps` must start before `self.config.train_timesteps`: {scheduler.config.num_train_timesteps}}' , ): scheduler.set_timesteps(timesteps=_lowerCamelCase )
57
import warnings from ...utils import logging from .image_processing_clip import CLIPImageProcessor A_ : int = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , *_lowerCamelCase , **_lowerCamelCase ): warnings.warn( 'The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use CLIPImageProcessor instead.' , _lowerCamelCase , ) super().__init__(*_lowerCamelCase , **_lowerCamelCase )
57
1
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging A_ : int = logging.get_logger(__name__) A_ : Optional[int] = { 'kssteven/ibert-roberta-base': 'https://huggingface.co/kssteven/ibert-roberta-base/resolve/main/config.json', 'kssteven/ibert-roberta-large': 'https://huggingface.co/kssteven/ibert-roberta-large/resolve/main/config.json', 'kssteven/ibert-roberta-large-mnli': ( 'https://huggingface.co/kssteven/ibert-roberta-large-mnli/resolve/main/config.json' ), } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Optional[Any] ='''ibert''' def __init__( self , _lowerCamelCase=3_0_5_2_2 , _lowerCamelCase=7_6_8 , _lowerCamelCase=1_2 , _lowerCamelCase=1_2 , _lowerCamelCase=3_0_7_2 , _lowerCamelCase="gelu" , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=5_1_2 , _lowerCamelCase=2 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-12 , _lowerCamelCase=1 , _lowerCamelCase=0 , _lowerCamelCase=2 , _lowerCamelCase="absolute" , _lowerCamelCase=False , _lowerCamelCase="none" , **_lowerCamelCase , ): super().__init__(pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , **_lowerCamelCase ) UpperCamelCase_: Any = vocab_size UpperCamelCase_: Union[str, Any] = hidden_size UpperCamelCase_: str = num_hidden_layers UpperCamelCase_: List[Any] = num_attention_heads UpperCamelCase_: Dict = hidden_act UpperCamelCase_: str = intermediate_size UpperCamelCase_: Optional[int] = hidden_dropout_prob UpperCamelCase_: Dict = attention_probs_dropout_prob UpperCamelCase_: Union[str, Any] = max_position_embeddings UpperCamelCase_: str = type_vocab_size UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: Tuple = layer_norm_eps UpperCamelCase_: int = position_embedding_type UpperCamelCase_: List[str] = quant_mode UpperCamelCase_: Optional[Any] = force_dequant class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" @property def _a ( self ): if self.task == "multiple-choice": UpperCamelCase_: Union[str, Any] = {0: 'batch', 1: 'choice', 2: 'sequence'} else: UpperCamelCase_: Dict = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ] )
57
import math from typing import Any, Callable, List, Optional, Tuple, Union import numpy as np import torch from ...models import TaFilmDecoder from ...schedulers import DDPMScheduler from ...utils import is_onnx_available, logging, randn_tensor if is_onnx_available(): from ..onnx_utils import OnnxRuntimeModel from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline from .continous_encoder import SpectrogramContEncoder from .notes_encoder import SpectrogramNotesEncoder A_ : List[Any] = logging.get_logger(__name__) # pylint: disable=invalid-name A_ : Optional[int] = 256 class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[str, Any] =['''melgan'''] def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , ): super().__init__() # From MELGAN UpperCamelCase_: Any = math.log(1e-5 ) # Matches MelGAN training. UpperCamelCase_: List[Any] = 4.0 # Largest value for most examples UpperCamelCase_: Tuple = 1_2_8 self.register_modules( notes_encoder=_lowerCamelCase , continuous_encoder=_lowerCamelCase , decoder=_lowerCamelCase , scheduler=_lowerCamelCase , melgan=_lowerCamelCase , ) def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = output_range if clip: UpperCamelCase_: int = torch.clip(_lowerCamelCase , self.min_value , self.max_value ) # Scale to [0, 1]. UpperCamelCase_: List[Any] = (features - self.min_value) / (self.max_value - self.min_value) # Scale to [min_out, max_out]. return zero_one * (max_out - min_out) + min_out def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Dict = input_range UpperCamelCase_: List[str] = torch.clip(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if clip else outputs # Scale to [0, 1]. UpperCamelCase_: Optional[Any] = (outputs - min_out) / (max_out - min_out) # Scale to [self.min_value, self.max_value]. return zero_one * (self.max_value - self.min_value) + self.min_value def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = input_tokens > 0 UpperCamelCase_ ,UpperCamelCase_: Tuple = self.notes_encoder( encoder_input_tokens=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: Any = self.continuous_encoder( encoder_inputs=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) return [(tokens_encoded, tokens_mask), (continuous_encoded, continuous_mask)] def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = noise_time if not torch.is_tensor(_lowerCamelCase ): UpperCamelCase_: List[str] = torch.tensor([timesteps] , dtype=torch.long , device=input_tokens.device ) elif torch.is_tensor(_lowerCamelCase ) and len(timesteps.shape ) == 0: UpperCamelCase_: Dict = timesteps[None].to(input_tokens.device ) # broadcast to batch dimension in a way that's compatible with ONNX/Core ML UpperCamelCase_: Union[str, Any] = timesteps * torch.ones(input_tokens.shape[0] , dtype=timesteps.dtype , device=timesteps.device ) UpperCamelCase_: Any = self.decoder( encodings_and_masks=_lowerCamelCase , decoder_input_tokens=_lowerCamelCase , decoder_noise_time=_lowerCamelCase ) return logits @torch.no_grad() def __call__( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = 1_0_0 , _lowerCamelCase = True , _lowerCamelCase = "numpy" , _lowerCamelCase = None , _lowerCamelCase = 1 , ): if (callback_steps is None) or ( callback_steps is not None and (not isinstance(_lowerCamelCase , _lowerCamelCase ) or callback_steps <= 0) ): raise ValueError( f'''`callback_steps` has to be a positive integer but is {callback_steps} of type''' f''' {type(_lowerCamelCase )}.''' ) UpperCamelCase_: List[str] = np.zeros([1, TARGET_FEATURE_LENGTH, self.n_dims] , dtype=np.floataa ) UpperCamelCase_: str = np.zeros([1, 0, self.n_dims] , np.floataa ) UpperCamelCase_: Dict = torch.ones((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) for i, encoder_input_tokens in enumerate(_lowerCamelCase ): if i == 0: UpperCamelCase_: str = torch.from_numpy(pred_mel[:1].copy() ).to( device=self.device , dtype=self.decoder.dtype ) # The first chunk has no previous context. UpperCamelCase_: Tuple = torch.zeros((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) else: # The full song pipeline does not feed in a context feature, so the mask # will be all 0s after the feature converter. Because we know we're # feeding in a full context chunk from the previous prediction, set it # to all 1s. UpperCamelCase_: Any = ones UpperCamelCase_: str = self.scale_features( _lowerCamelCase , output_range=[-1.0, 1.0] , clip=_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.encode( input_tokens=torch.IntTensor([encoder_input_tokens] ).to(device=self.device ) , continuous_inputs=_lowerCamelCase , continuous_mask=_lowerCamelCase , ) # Sample encoder_continuous_inputs shaped gaussian noise to begin loop UpperCamelCase_: List[str] = randn_tensor( shape=encoder_continuous_inputs.shape , generator=_lowerCamelCase , device=self.device , dtype=self.decoder.dtype , ) # set step values self.scheduler.set_timesteps(_lowerCamelCase ) # Denoising diffusion loop for j, t in enumerate(self.progress_bar(self.scheduler.timesteps ) ): UpperCamelCase_: int = self.decode( encodings_and_masks=_lowerCamelCase , input_tokens=_lowerCamelCase , noise_time=t / self.scheduler.config.num_train_timesteps , ) # Compute previous output: x_t -> x_t-1 UpperCamelCase_: Tuple = self.scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample UpperCamelCase_: List[Any] = self.scale_to_features(_lowerCamelCase , input_range=[-1.0, 1.0] ) UpperCamelCase_: Any = mel[:1] UpperCamelCase_: List[str] = mel.cpu().float().numpy() UpperCamelCase_: Tuple = np.concatenate([full_pred_mel, pred_mel[:1]] , axis=1 ) # call the callback, if provided if callback is not None and i % callback_steps == 0: callback(_lowerCamelCase , _lowerCamelCase ) logger.info('Generated segment' , _lowerCamelCase ) if output_type == "numpy" and not is_onnx_available(): raise ValueError( 'Cannot return output in \'np\' format if ONNX is not available. Make sure to have ONNX installed or set \'output_type\' to \'mel\'.' ) elif output_type == "numpy" and self.melgan is None: raise ValueError( 'Cannot return output in \'np\' format if melgan component is not defined. Make sure to define `self.melgan` or set \'output_type\' to \'mel\'.' ) if output_type == "numpy": UpperCamelCase_: int = self.melgan(input_features=full_pred_mel.astype(np.floataa ) ) else: UpperCamelCase_: int = full_pred_mel if not return_dict: return (output,) return AudioPipelineOutput(audios=_lowerCamelCase )
57
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, BertTokenizer, BlipImageProcessor, BlipProcessor, PreTrainedTokenizerFast @require_vision class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Union[str, Any] = tempfile.mkdtemp() UpperCamelCase_: str = BlipImageProcessor() UpperCamelCase_: str = BertTokenizer.from_pretrained('hf-internal-testing/tiny-random-BertModel' ) UpperCamelCase_: Dict = BlipProcessor(_lowerCamelCase , _lowerCamelCase ) processor.save_pretrained(self.tmpdirname ) def _a ( self , **_lowerCamelCase ): return AutoProcessor.from_pretrained(self.tmpdirname , **_lowerCamelCase ).tokenizer def _a ( self , **_lowerCamelCase ): return AutoProcessor.from_pretrained(self.tmpdirname , **_lowerCamelCase ).image_processor def _a ( self ): shutil.rmtree(self.tmpdirname ) def _a ( self ): UpperCamelCase_: List[Any] = [np.random.randint(2_5_5 , size=(3, 3_0, 4_0_0) , dtype=np.uinta )] UpperCamelCase_: int = [Image.fromarray(np.moveaxis(_lowerCamelCase , 0 , -1 ) ) for x in image_inputs] return image_inputs def _a ( self ): UpperCamelCase_: Union[str, Any] = BlipProcessor(tokenizer=self.get_tokenizer() , image_processor=self.get_image_processor() ) processor.save_pretrained(self.tmpdirname ) UpperCamelCase_: List[Any] = self.get_tokenizer(bos_token='(BOS)' , eos_token='(EOS)' ) UpperCamelCase_: Any = self.get_image_processor(do_normalize=_lowerCamelCase , padding_value=1.0 ) UpperCamelCase_: List[str] = BlipProcessor.from_pretrained( self.tmpdirname , bos_token='(BOS)' , eos_token='(EOS)' , do_normalize=_lowerCamelCase , padding_value=1.0 ) self.assertEqual(processor.tokenizer.get_vocab() , tokenizer_add_kwargs.get_vocab() ) self.assertIsInstance(processor.tokenizer , _lowerCamelCase ) self.assertEqual(processor.image_processor.to_json_string() , image_processor_add_kwargs.to_json_string() ) self.assertIsInstance(processor.image_processor , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: Dict = self.get_image_processor() UpperCamelCase_: Optional[int] = self.get_tokenizer() UpperCamelCase_: Tuple = BlipProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.prepare_image_inputs() UpperCamelCase_: Optional[int] = image_processor(_lowerCamelCase , return_tensors='np' ) UpperCamelCase_: Optional[Any] = processor(images=_lowerCamelCase , 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 _a ( self ): UpperCamelCase_: Union[str, Any] = self.get_image_processor() UpperCamelCase_: Tuple = self.get_tokenizer() UpperCamelCase_: Union[str, Any] = BlipProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Any = 'lower newer' UpperCamelCase_: List[str] = processor(text=_lowerCamelCase ) UpperCamelCase_: int = tokenizer(_lowerCamelCase , return_token_type_ids=_lowerCamelCase ) for key in encoded_tok.keys(): self.assertListEqual(encoded_tok[key] , encoded_processor[key] ) def _a ( self ): UpperCamelCase_: Optional[int] = self.get_image_processor() UpperCamelCase_: Optional[int] = self.get_tokenizer() UpperCamelCase_: Optional[int] = BlipProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Optional[int] = 'lower newer' UpperCamelCase_: int = self.prepare_image_inputs() UpperCamelCase_: List[str] = processor(text=_lowerCamelCase , images=_lowerCamelCase ) self.assertListEqual(list(inputs.keys() ) , ['pixel_values', 'input_ids', 'attention_mask'] ) # test if it raises when no input is passed with pytest.raises(_lowerCamelCase ): processor() def _a ( self ): UpperCamelCase_: Optional[Any] = self.get_image_processor() UpperCamelCase_: Optional[int] = self.get_tokenizer() UpperCamelCase_: Union[str, Any] = BlipProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Optional[int] = [[1, 4, 5, 8, 1, 0, 8], [3, 4, 3, 1, 1, 8, 9]] UpperCamelCase_: List[str] = processor.batch_decode(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = tokenizer.batch_decode(_lowerCamelCase ) self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.get_image_processor() UpperCamelCase_: int = self.get_tokenizer() UpperCamelCase_: List[Any] = BlipProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Tuple = 'lower newer' UpperCamelCase_: List[str] = self.prepare_image_inputs() UpperCamelCase_: Dict = processor(text=_lowerCamelCase , images=_lowerCamelCase ) # For now the processor supports only ['pixel_values', 'input_ids', 'attention_mask'] self.assertListEqual(list(inputs.keys() ) , ['pixel_values', 'input_ids', 'attention_mask'] )
57
import itertools from dataclasses import dataclass from typing import Any, Callable, Dict, List, Optional, Union import pandas as pd import pyarrow as pa import datasets import datasets.config from datasets.features.features import require_storage_cast from datasets.table import table_cast from datasets.utils.py_utils import Literal A_ : Union[str, Any] = datasets.utils.logging.get_logger(__name__) A_ : Optional[Any] = ['names', 'prefix'] A_ : List[str] = ['warn_bad_lines', 'error_bad_lines', 'mangle_dupe_cols'] A_ : List[Any] = ['encoding_errors', 'on_bad_lines'] A_ : Optional[Any] = ['date_format'] @dataclass class _lowerCAmelCase( datasets.BuilderConfig ): """simple docstring""" a : str ="," a : Optional[str] =None a : Optional[Union[int, List[int], str]] ="infer" a : Optional[List[str]] =None a : Optional[List[str]] =None a : Optional[Union[int, str, List[int], List[str]]] =None a : Optional[Union[List[int], List[str]]] =None a : Optional[str] =None a : bool =True a : Optional[Literal["c", "python", "pyarrow"]] =None a : Dict[Union[int, str], Callable[[Any], Any]] =None a : Optional[list] =None a : Optional[list] =None a : bool =False a : Optional[Union[int, List[int]]] =None a : Optional[int] =None a : Optional[Union[str, List[str]]] =None a : bool =True a : bool =True a : bool =False a : bool =True a : Optional[str] =None a : str ="." a : Optional[str] =None a : str ='"' a : int =0 a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : bool =True a : bool =True a : int =0 a : bool =True a : bool =False a : Optional[str] =None a : int =10000 a : Optional[datasets.Features] =None a : Optional[str] ="strict" a : Literal["error", "warn", "skip"] ="error" a : Optional[str] =None def _a ( self ): if self.delimiter is not None: UpperCamelCase_: Optional[Any] = self.delimiter if self.column_names is not None: UpperCamelCase_: int = self.column_names @property def _a ( self ): UpperCamelCase_: Any = { 'sep': self.sep, 'header': self.header, 'names': self.names, 'index_col': self.index_col, 'usecols': self.usecols, 'prefix': self.prefix, 'mangle_dupe_cols': self.mangle_dupe_cols, 'engine': self.engine, 'converters': self.converters, 'true_values': self.true_values, 'false_values': self.false_values, 'skipinitialspace': self.skipinitialspace, 'skiprows': self.skiprows, 'nrows': self.nrows, 'na_values': self.na_values, 'keep_default_na': self.keep_default_na, 'na_filter': self.na_filter, 'verbose': self.verbose, 'skip_blank_lines': self.skip_blank_lines, 'thousands': self.thousands, 'decimal': self.decimal, 'lineterminator': self.lineterminator, 'quotechar': self.quotechar, 'quoting': self.quoting, 'escapechar': self.escapechar, 'comment': self.comment, 'encoding': self.encoding, 'dialect': self.dialect, 'error_bad_lines': self.error_bad_lines, 'warn_bad_lines': self.warn_bad_lines, 'skipfooter': self.skipfooter, 'doublequote': self.doublequote, 'memory_map': self.memory_map, 'float_precision': self.float_precision, 'chunksize': self.chunksize, 'encoding_errors': self.encoding_errors, 'on_bad_lines': self.on_bad_lines, 'date_format': self.date_format, } # some kwargs must not be passed if they don't have a default value # some others are deprecated and we can also not pass them if they are the default value for pd_read_csv_parameter in _PANDAS_READ_CSV_NO_DEFAULT_PARAMETERS + _PANDAS_READ_CSV_DEPRECATED_PARAMETERS: if pd_read_csv_kwargs[pd_read_csv_parameter] == getattr(CsvConfig() , _lowerCamelCase ): del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 2.0 new arguments if not (datasets.config.PANDAS_VERSION.major >= 2): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_2_0_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 1.3 new arguments if not (datasets.config.PANDAS_VERSION.major >= 1 and datasets.config.PANDAS_VERSION.minor >= 3): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_1_3_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] return pd_read_csv_kwargs class _lowerCAmelCase( datasets.ArrowBasedBuilder ): """simple docstring""" a : Dict =CsvConfig def _a ( self ): return datasets.DatasetInfo(features=self.config.features ) def _a ( self , _lowerCamelCase ): if not self.config.data_files: raise ValueError(f'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) UpperCamelCase_: Tuple = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_lowerCamelCase , (str, list, tuple) ): UpperCamelCase_: List[Any] = data_files if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = [files] UpperCamelCase_: Tuple = [dl_manager.iter_files(_lowerCamelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] UpperCamelCase_: Tuple = [] for split_name, files in data_files.items(): if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = [files] UpperCamelCase_: int = [dl_manager.iter_files(_lowerCamelCase ) for file in files] splits.append(datasets.SplitGenerator(name=_lowerCamelCase , gen_kwargs={'files': files} ) ) return splits def _a ( self , _lowerCamelCase ): if self.config.features is not None: UpperCamelCase_: List[Any] = self.config.features.arrow_schema if all(not require_storage_cast(_lowerCamelCase ) for feature in self.config.features.values() ): # cheaper cast UpperCamelCase_: Optional[int] = pa.Table.from_arrays([pa_table[field.name] for field in schema] , schema=_lowerCamelCase ) else: # more expensive cast; allows str <-> int/float or str to Audio for example UpperCamelCase_: int = table_cast(_lowerCamelCase , _lowerCamelCase ) return pa_table def _a ( self , _lowerCamelCase ): UpperCamelCase_: List[str] = self.config.features.arrow_schema if self.config.features else None # dtype allows reading an int column as str UpperCamelCase_: Dict = ( { name: dtype.to_pandas_dtype() if not require_storage_cast(_lowerCamelCase ) else object for name, dtype, feature in zip(schema.names , schema.types , self.config.features.values() ) } if schema is not None else None ) for file_idx, file in enumerate(itertools.chain.from_iterable(_lowerCamelCase ) ): UpperCamelCase_: Optional[Any] = pd.read_csv(_lowerCamelCase , iterator=_lowerCamelCase , dtype=_lowerCamelCase , **self.config.pd_read_csv_kwargs ) try: for batch_idx, df in enumerate(_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = pa.Table.from_pandas(_lowerCamelCase ) # Uncomment for debugging (will print the Arrow table size and elements) # logger.warning(f"pa_table: {pa_table} num rows: {pa_table.num_rows}") # logger.warning('\n'.join(str(pa_table.slice(i, 1).to_pydict()) for i in range(pa_table.num_rows))) yield (file_idx, batch_idx), self._cast_table(_lowerCamelCase ) except ValueError as e: logger.error(f'''Failed to read file \'{file}\' with error {type(_lowerCamelCase )}: {e}''' ) raise
57
1
def snake_case (UpperCAmelCase__ ) -> list[int]: if num <= 0: raise ValueError('Input must be a positive integer' ) UpperCamelCase_: List[str] = [True] * (num + 1) UpperCamelCase_: Union[str, Any] = 2 while p * p <= num: if primes[p]: for i in range(p * p , num + 1 , UpperCAmelCase__ ): UpperCamelCase_: Any = False p += 1 return [prime for prime in range(2 , num + 1 ) if primes[prime]] if __name__ == "__main__": import doctest doctest.testmod() A_ : Any = int(input('Enter a positive integer: ').strip()) print(prime_sieve_eratosthenes(user_num))
57
from ...configuration_utils import PretrainedConfig from ...utils import logging A_ : str = logging.get_logger(__name__) A_ : Union[str, Any] = { 's-JoL/Open-Llama-V1': 'https://huggingface.co/s-JoL/Open-Llama-V1/blob/main/config.json', } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Tuple ='''open-llama''' def __init__( self , _lowerCamelCase=1_0_0_0_0_0 , _lowerCamelCase=4_0_9_6 , _lowerCamelCase=1_1_0_0_8 , _lowerCamelCase=3_2 , _lowerCamelCase=3_2 , _lowerCamelCase="silu" , _lowerCamelCase=2_0_4_8 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-6 , _lowerCamelCase=True , _lowerCamelCase=0 , _lowerCamelCase=1 , _lowerCamelCase=2 , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: int = vocab_size UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: Dict = hidden_size UpperCamelCase_: Dict = intermediate_size UpperCamelCase_: Union[str, Any] = num_hidden_layers UpperCamelCase_: Dict = num_attention_heads UpperCamelCase_: Union[str, Any] = hidden_act UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: List[Any] = rms_norm_eps UpperCamelCase_: Union[str, Any] = use_cache UpperCamelCase_: Dict = kwargs.pop( 'use_memorry_efficient_attention' , _lowerCamelCase ) UpperCamelCase_: Union[str, Any] = hidden_dropout_prob UpperCamelCase_: Any = attention_dropout_prob UpperCamelCase_: int = use_stable_embedding UpperCamelCase_: Tuple = shared_input_output_embedding UpperCamelCase_: str = rope_scaling self._rope_scaling_validation() super().__init__( pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , tie_word_embeddings=_lowerCamelCase , **_lowerCamelCase , ) def _a ( self ): if self.rope_scaling is None: return if not isinstance(self.rope_scaling , _lowerCamelCase ) or len(self.rope_scaling ) != 2: raise ValueError( '`rope_scaling` must be a dictionary with with two fields, `name` and `factor`, ' f'''got {self.rope_scaling}''' ) UpperCamelCase_: str = self.rope_scaling.get('type' , _lowerCamelCase ) UpperCamelCase_: int = self.rope_scaling.get('factor' , _lowerCamelCase ) if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]: raise ValueError( f'''`rope_scaling`\'s name field must be one of [\'linear\', \'dynamic\'], got {rope_scaling_type}''' ) if rope_scaling_factor is None or not isinstance(_lowerCamelCase , _lowerCamelCase ) or rope_scaling_factor <= 1.0: raise ValueError(f'''`rope_scaling`\'s factor field must be an float > 1, got {rope_scaling_factor}''' )
57
1
from collections import defaultdict from pathlib import Path import pandas as pd from rouge_cli import calculate_rouge_path from utils import calculate_rouge A_ : int = [ 'Prosecutor: "No videos were used in the crash investigation" German papers say they saw a cell phone video of the' ' final seconds on board Flight 9525. The Germanwings co-pilot says he had a "previous episode of severe' ' depression\" German airline confirms it knew of Andreas Lubitz\'s depression years before he took control.', 'The Palestinian Authority officially becomes the 123rd member of the International Criminal Court. The formal' ' accession was marked with a ceremony at The Hague, in the Netherlands. The Palestinians signed the ICC\'s' ' founding Rome Statute in January. Israel and the United States opposed the Palestinians\' efforts to join the' ' body.', 'Amnesty International releases its annual report on the death penalty. The report catalogs the use of' ' state-sanctioned killing as a punitive measure across the globe. At least 607 people were executed around the' ' world in 2014, compared to 778 in 2013. The U.S. remains one of the worst offenders for imposing capital' ' punishment.', ] A_ : List[Any] = [ 'Marseille prosecutor says "so far no videos were used in the crash investigation" despite media reports .' ' Journalists at Bild and Paris Match are "very confident" the video clip is real, an editor says . Andreas Lubitz' ' had informed his Lufthansa training school of an episode of severe depression, airline says .', 'Membership gives the ICC jurisdiction over alleged crimes committed in Palestinian territories since last June .' ' Israel and the United States opposed the move, which could open the door to war crimes investigations against' ' Israelis .', 'Amnesty\'s annual death penalty report catalogs encouraging signs, but setbacks in numbers of those sentenced to' ' death . Organization claims that governments around the world are using the threat of terrorism to advance' ' executions . The number of executions worldwide has gone down by almost 22% compared with 2013, but death' ' sentences up by 28% .', ] def snake_case () -> Tuple: UpperCamelCase_: Union[str, Any] = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , bootstrap_aggregation=UpperCAmelCase__ , rouge_keys=['rouge2', 'rougeL'] ) assert isinstance(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: int = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , bootstrap_aggregation=UpperCAmelCase__ , rouge_keys=['rouge2'] ) assert ( pd.DataFrame(no_aggregation['rouge2'] ).fmeasure.mean() == pd.DataFrame(no_aggregation_just_ra['rouge2'] ).fmeasure.mean() ) def snake_case () -> Any: UpperCamelCase_: List[str] = 'rougeLsum' UpperCamelCase_: Optional[int] = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , newline_sep=UpperCAmelCase__ , rouge_keys=[k] )[k] UpperCamelCase_: str = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , newline_sep=UpperCAmelCase__ , rouge_keys=[k] )[k] assert score > score_no_sep def snake_case () -> Tuple: UpperCamelCase_: Union[str, Any] = ['rouge1', 'rouge2', 'rougeL'] UpperCamelCase_: Union[str, Any] = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , newline_sep=UpperCAmelCase__ , rouge_keys=UpperCAmelCase__ ) UpperCamelCase_: List[Any] = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , newline_sep=UpperCAmelCase__ , rouge_keys=UpperCAmelCase__ ) assert score_sep == score_no_sep def snake_case () -> Union[str, Any]: UpperCamelCase_: List[str] = [ 'Her older sister, Margot Frank, died in 1945, a month earlier than previously thought.', 'Marseille prosecutor says "so far no videos were used in the crash investigation" despite media reports .', ] UpperCamelCase_: Union[str, Any] = [ 'Margot Frank, died in 1945, a month earlier than previously thought.', 'Prosecutor: "No videos were used in the crash investigation" German papers say they saw a cell phone video of' ' the final seconds on board Flight 9525.', ] assert calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , newline_sep=UpperCAmelCase__ ) == calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , newline_sep=UpperCAmelCase__ ) def snake_case () -> Dict: UpperCamelCase_: Optional[Any] = [ '" "a person who has such a video needs to immediately give it to the investigators," prosecutor says .<n> "it is a very disturbing scene," editor-in-chief of bild online tells "erin burnett: outfront" ' ] UpperCamelCase_: Tuple = [ ' Marseille prosecutor says "so far no videos were used in the crash investigation" despite media reports . Journalists at Bild and Paris Match are "very confident" the video clip is real, an editor says . Andreas Lubitz had informed his Lufthansa training school of an episode of severe depression, airline says .' ] UpperCamelCase_: Tuple = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , rouge_keys=['rougeLsum'] , newline_sep=UpperCAmelCase__ )['rougeLsum'] UpperCamelCase_: List[str] = calculate_rouge(UpperCAmelCase__ , UpperCAmelCase__ , rouge_keys=['rougeLsum'] )['rougeLsum'] assert new_score > prev_score def snake_case () -> Union[str, Any]: UpperCamelCase_: int = Path('examples/seq2seq/test_data/wmt_en_ro' ) UpperCamelCase_: Union[str, Any] = calculate_rouge_path(data_dir.joinpath('test.source' ) , data_dir.joinpath('test.target' ) ) assert isinstance(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = calculate_rouge_path( data_dir.joinpath('test.source' ) , data_dir.joinpath('test.target' ) , bootstrap_aggregation=UpperCAmelCase__ ) assert isinstance(UpperCAmelCase__ , UpperCAmelCase__ )
57
import collections import inspect import unittest from transformers import FocalNetConfig from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_backbone_common import BackboneTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( FocalNetBackbone, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetModel, ) from transformers.models.focalnet.modeling_focalnet import FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=1_6 , _lowerCamelCase=[3_2, 6_4, 1_2_8] , _lowerCamelCase=[1, 2, 1] , _lowerCamelCase=[2, 2, 4] , _lowerCamelCase=2 , _lowerCamelCase=2.0 , _lowerCamelCase=True , _lowerCamelCase=0.0 , _lowerCamelCase=0.0 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-5 , _lowerCamelCase=True , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=1_0 , _lowerCamelCase=8 , _lowerCamelCase=["stage1", "stage2"] , _lowerCamelCase=[1, 2] , ): UpperCamelCase_: Tuple = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = image_size UpperCamelCase_: Tuple = patch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Dict = embed_dim UpperCamelCase_: List[Any] = hidden_sizes UpperCamelCase_: List[str] = depths UpperCamelCase_: List[str] = num_heads UpperCamelCase_: Optional[int] = window_size UpperCamelCase_: Tuple = mlp_ratio UpperCamelCase_: Dict = qkv_bias UpperCamelCase_: str = hidden_dropout_prob UpperCamelCase_: Optional[Any] = attention_probs_dropout_prob UpperCamelCase_: int = drop_path_rate UpperCamelCase_: Dict = hidden_act UpperCamelCase_: List[str] = use_absolute_embeddings UpperCamelCase_: Dict = patch_norm UpperCamelCase_: Optional[Any] = layer_norm_eps UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = is_training UpperCamelCase_: Optional[int] = scope UpperCamelCase_: str = use_labels UpperCamelCase_: List[str] = type_sequence_label_size UpperCamelCase_: Union[str, Any] = encoder_stride UpperCamelCase_: Dict = out_features UpperCamelCase_: str = out_indices def _a ( self ): UpperCamelCase_: int = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: List[Any] = None if self.use_labels: UpperCamelCase_: Any = ids_tensor([self.batch_size] , self.type_sequence_label_size ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return FocalNetConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , embed_dim=self.embed_dim , hidden_sizes=self.hidden_sizes , depths=self.depths , num_heads=self.num_heads , window_size=self.window_size , mlp_ratio=self.mlp_ratio , qkv_bias=self.qkv_bias , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , drop_path_rate=self.drop_path_rate , hidden_act=self.hidden_act , use_absolute_embeddings=self.use_absolute_embeddings , path_norm=self.patch_norm , layer_norm_eps=self.layer_norm_eps , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , out_features=self.out_features , out_indices=self.out_indices , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = FocalNetModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: int = model(_lowerCamelCase ) UpperCamelCase_: int = ((config.image_size // config.patch_size) ** 2) // (4 ** (len(config.depths ) - 1)) UpperCamelCase_: int = int(config.embed_dim * 2 ** (len(config.depths ) - 1) ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, expected_seq_len, expected_dim) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[str] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size, 8, 8] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[:-1] ) # verify backbone works with out_features=None UpperCamelCase_: int = None UpperCamelCase_: List[Any] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size * 2, 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = FocalNetForMaskedImageModeling(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Dict = FocalNetForMaskedImageModeling(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.type_sequence_label_size UpperCamelCase_: List[Any] = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: str = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images UpperCamelCase_: Union[str, Any] = 1 UpperCamelCase_: Dict = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Dict = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def _a ( self ): UpperCamelCase_: Dict = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: int = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =( ( FocalNetModel, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetBackbone, ) if is_torch_available() else () ) a : Any =( {'''feature-extraction''': FocalNetModel, '''image-classification''': FocalNetForImageClassification} if is_torch_available() else {} ) a : Dict =False a : Union[str, Any] =False a : Tuple =False a : Optional[int] =False a : Union[str, Any] =False def _a ( self ): UpperCamelCase_: str = FocalNetModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , embed_dim=3_7 , has_text_modality=_lowerCamelCase ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_backbone(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) @unittest.skip(reason='FocalNet does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='FocalNet does not use feedforward chunking' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Union[str, Any] = model_class(_lowerCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) UpperCamelCase_: List[str] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(_lowerCamelCase , nn.Linear ) ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: List[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Any = [*signature.parameters.keys()] UpperCamelCase_: List[Any] = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: Tuple = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = outputs.hidden_states UpperCamelCase_: Tuple = getattr( self.model_tester , 'expected_num_hidden_layers' , len(self.model_tester.depths ) + 1 ) self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) # FocalNet has a different seq_length UpperCamelCase_: Optional[Any] = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: int = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) UpperCamelCase_: Dict = outputs.reshaped_hidden_states self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = reshaped_hidden_states[0].shape UpperCamelCase_: List[str] = ( reshaped_hidden_states[0].view(_lowerCamelCase , _lowerCamelCase , height * width ).permute(0 , 2 , 1 ) ) self.assertListEqual( list(reshaped_hidden_states.shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: int = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: int = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: str = 3 UpperCamelCase_: Any = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) UpperCamelCase_: int = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: List[Any] = image_size[0] + patch_size[0] - (image_size[0] % patch_size[0]) UpperCamelCase_: str = image_size[1] + patch_size[1] - (image_size[1] % patch_size[1]) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Dict = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) @slow def _a ( self ): for model_name in FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: List[Any] = FocalNetModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = _config_zero_init(_lowerCamelCase ) for model_class in self.all_model_classes: UpperCamelCase_: List[str] = model_class(config=_lowerCamelCase ) for name, param in model.named_parameters(): if "embeddings" not in name and param.requires_grad: self.assertIn( ((param.data.mean() * 1e9).round() / 1e9).item() , [0.0, 1.0] , msg=f'''Parameter {name} of model {model_class} seems not properly initialized''' , ) @require_vision @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): # TODO update organization return AutoImageProcessor.from_pretrained('microsoft/focalnet-tiny' ) if is_vision_available() else None @slow def _a ( self ): UpperCamelCase_: Optional[int] = FocalNetForImageClassification.from_pretrained('microsoft/focalnet-tiny' ).to(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.default_image_processor UpperCamelCase_: str = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) UpperCamelCase_: str = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: List[str] = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: Optional[int] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Optional[int] = torch.tensor([0.2_1_6_6, -0.4_3_6_8, 0.2_1_9_1] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) ) self.assertTrue(outputs.logits.argmax(dim=-1 ).item() , 2_8_1 ) @require_torch class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[Any] =(FocalNetBackbone,) if is_torch_available() else () a : List[str] =FocalNetConfig a : List[str] =False def _a ( self ): UpperCamelCase_: Any = FocalNetModelTester(self )
57
1
import gc import random import unittest import numpy as np import torch from transformers import XLMRobertaTokenizer from diffusers import ( AltDiffusionImgaImgPipeline, AutoencoderKL, PNDMScheduler, UNetaDConditionModel, ) from diffusers.image_processor import VaeImageProcessor from diffusers.pipelines.alt_diffusion.modeling_roberta_series import ( RobertaSeriesConfig, RobertaSeriesModelWithTransformation, ) from diffusers.utils import floats_tensor, load_image, load_numpy, slow, torch_device from diffusers.utils.testing_utils import enable_full_determinism, require_torch_gpu enable_full_determinism() class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): # clean up the VRAM after each test super().tearDown() gc.collect() torch.cuda.empty_cache() @property def _a ( self ): UpperCamelCase_: str = 1 UpperCamelCase_: int = 3 UpperCamelCase_: List[Any] = (3_2, 3_2) UpperCamelCase_: List[Any] = floats_tensor((batch_size, num_channels) + sizes , rng=random.Random(0 ) ).to(_lowerCamelCase ) return image @property def _a ( self ): torch.manual_seed(0 ) UpperCamelCase_: Dict = UNetaDConditionModel( block_out_channels=(3_2, 6_4) , layers_per_block=2 , sample_size=3_2 , in_channels=4 , out_channels=4 , down_block_types=('DownBlock2D', 'CrossAttnDownBlock2D') , up_block_types=('CrossAttnUpBlock2D', 'UpBlock2D') , cross_attention_dim=3_2 , ) return model @property def _a ( self ): torch.manual_seed(0 ) UpperCamelCase_: Optional[int] = AutoencoderKL( block_out_channels=[3_2, 6_4] , in_channels=3 , out_channels=3 , down_block_types=['DownEncoderBlock2D', 'DownEncoderBlock2D'] , up_block_types=['UpDecoderBlock2D', 'UpDecoderBlock2D'] , latent_channels=4 , ) return model @property def _a ( self ): torch.manual_seed(0 ) UpperCamelCase_: Dict = RobertaSeriesConfig( hidden_size=3_2 , project_dim=3_2 , intermediate_size=3_7 , layer_norm_eps=1e-05 , num_attention_heads=4 , num_hidden_layers=5 , pad_token_id=1 , vocab_size=5_0_0_6 , ) return RobertaSeriesModelWithTransformation(_lowerCamelCase ) @property def _a ( self ): def extract(*_lowerCamelCase , **_lowerCamelCase ): class _lowerCAmelCase: """simple docstring""" def __init__( self ): UpperCamelCase_: Union[str, Any] = torch.ones([0] ) def _a ( self , _lowerCamelCase ): self.pixel_values.to(_lowerCamelCase ) return self return Out() return extract def _a ( self ): UpperCamelCase_: Union[str, Any] = 'cpu' # ensure determinism for the device-dependent torch.Generator UpperCamelCase_: Optional[int] = self.dummy_cond_unet UpperCamelCase_: List[str] = PNDMScheduler(skip_prk_steps=_lowerCamelCase ) UpperCamelCase_: str = self.dummy_vae UpperCamelCase_: Tuple = self.dummy_text_encoder UpperCamelCase_: Optional[Any] = XLMRobertaTokenizer.from_pretrained('hf-internal-testing/tiny-xlm-roberta' ) UpperCamelCase_: int = 7_7 UpperCamelCase_: str = self.dummy_image.to(_lowerCamelCase ) UpperCamelCase_: Optional[int] = init_image / 2 + 0.5 # make sure here that pndm scheduler skips prk UpperCamelCase_: Dict = AltDiffusionImgaImgPipeline( unet=_lowerCamelCase , scheduler=_lowerCamelCase , vae=_lowerCamelCase , text_encoder=_lowerCamelCase , tokenizer=_lowerCamelCase , safety_checker=_lowerCamelCase , feature_extractor=self.dummy_extractor , ) UpperCamelCase_: List[Any] = VaeImageProcessor(vae_scale_factor=alt_pipe.vae_scale_factor , do_normalize=_lowerCamelCase ) UpperCamelCase_: Tuple = alt_pipe.to(_lowerCamelCase ) alt_pipe.set_progress_bar_config(disable=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = 'A painting of a squirrel eating a burger' UpperCamelCase_: Dict = torch.Generator(device=_lowerCamelCase ).manual_seed(0 ) UpperCamelCase_: List[str] = alt_pipe( [prompt] , generator=_lowerCamelCase , guidance_scale=6.0 , num_inference_steps=2 , output_type='np' , image=_lowerCamelCase , ) UpperCamelCase_: Dict = output.images UpperCamelCase_: Any = torch.Generator(device=_lowerCamelCase ).manual_seed(0 ) UpperCamelCase_: Tuple = alt_pipe( [prompt] , generator=_lowerCamelCase , guidance_scale=6.0 , num_inference_steps=2 , output_type='np' , image=_lowerCamelCase , return_dict=_lowerCamelCase , )[0] UpperCamelCase_: str = image[0, -3:, -3:, -1] UpperCamelCase_: Optional[int] = image_from_tuple[0, -3:, -3:, -1] assert image.shape == (1, 3_2, 3_2, 3) UpperCamelCase_: int = np.array([0.4_4_2_7, 0.3_7_3_1, 0.4_2_4_9, 0.4_9_4_1, 0.4_5_4_6, 0.4_1_4_8, 0.4_1_9_3, 0.4_6_6_6, 0.4_4_9_9] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 5e-3 assert np.abs(image_from_tuple_slice.flatten() - expected_slice ).max() < 5e-3 @unittest.skipIf(torch_device != 'cuda' , 'This test requires a GPU' ) def _a ( self ): UpperCamelCase_: Any = self.dummy_cond_unet UpperCamelCase_: List[Any] = PNDMScheduler(skip_prk_steps=_lowerCamelCase ) UpperCamelCase_: Any = self.dummy_vae UpperCamelCase_: Tuple = self.dummy_text_encoder UpperCamelCase_: str = XLMRobertaTokenizer.from_pretrained('hf-internal-testing/tiny-xlm-roberta' ) UpperCamelCase_: Any = 7_7 UpperCamelCase_: Optional[int] = self.dummy_image.to(_lowerCamelCase ) # put models in fp16 UpperCamelCase_: Dict = unet.half() UpperCamelCase_: Union[str, Any] = vae.half() UpperCamelCase_: int = bert.half() # make sure here that pndm scheduler skips prk UpperCamelCase_: str = AltDiffusionImgaImgPipeline( unet=_lowerCamelCase , scheduler=_lowerCamelCase , vae=_lowerCamelCase , text_encoder=_lowerCamelCase , tokenizer=_lowerCamelCase , safety_checker=_lowerCamelCase , feature_extractor=self.dummy_extractor , ) UpperCamelCase_: Dict = VaeImageProcessor(vae_scale_factor=alt_pipe.vae_scale_factor , do_normalize=_lowerCamelCase ) UpperCamelCase_: Any = alt_pipe.to(_lowerCamelCase ) alt_pipe.set_progress_bar_config(disable=_lowerCamelCase ) UpperCamelCase_: Any = 'A painting of a squirrel eating a burger' UpperCamelCase_: Dict = torch.manual_seed(0 ) UpperCamelCase_: Any = alt_pipe( [prompt] , generator=_lowerCamelCase , num_inference_steps=2 , output_type='np' , image=_lowerCamelCase , ).images assert image.shape == (1, 3_2, 3_2, 3) @unittest.skipIf(torch_device != 'cuda' , 'This test requires a GPU' ) def _a ( self ): UpperCamelCase_: List[str] = load_image( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main' '/img2img/sketch-mountains-input.jpg' ) # resize to resolution that is divisible by 8 but not 16 or 32 UpperCamelCase_: Union[str, Any] = init_image.resize((7_6_0, 5_0_4) ) UpperCamelCase_: Optional[Any] = 'BAAI/AltDiffusion' UpperCamelCase_: int = AltDiffusionImgaImgPipeline.from_pretrained( _lowerCamelCase , safety_checker=_lowerCamelCase , ) pipe.to(_lowerCamelCase ) pipe.set_progress_bar_config(disable=_lowerCamelCase ) pipe.enable_attention_slicing() UpperCamelCase_: Union[str, Any] = 'A fantasy landscape, trending on artstation' UpperCamelCase_: List[str] = torch.manual_seed(0 ) UpperCamelCase_: str = pipe( prompt=_lowerCamelCase , image=_lowerCamelCase , strength=0.7_5 , guidance_scale=7.5 , generator=_lowerCamelCase , output_type='np' , ) UpperCamelCase_: int = output.images[0] UpperCamelCase_: Tuple = image[2_5_5:2_5_8, 3_8_3:3_8_6, -1] assert image.shape == (5_0_4, 7_6_0, 3) UpperCamelCase_: List[Any] = np.array([0.9_3_5_8, 0.9_3_9_7, 0.9_5_9_9, 0.9_9_0_1, 1.0_0_0_0, 1.0_0_0_0, 0.9_8_8_2, 1.0_0_0_0, 1.0_0_0_0] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2 @slow @require_torch_gpu class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): # clean up the VRAM after each test super().tearDown() gc.collect() torch.cuda.empty_cache() def _a ( self ): UpperCamelCase_: List[str] = load_image( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main' '/img2img/sketch-mountains-input.jpg' ) UpperCamelCase_: int = init_image.resize((7_6_8, 5_1_2) ) UpperCamelCase_: Dict = load_numpy( 'https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/img2img/fantasy_landscape_alt.npy' ) UpperCamelCase_: List[str] = 'BAAI/AltDiffusion' UpperCamelCase_: str = AltDiffusionImgaImgPipeline.from_pretrained( _lowerCamelCase , safety_checker=_lowerCamelCase , ) pipe.to(_lowerCamelCase ) pipe.set_progress_bar_config(disable=_lowerCamelCase ) pipe.enable_attention_slicing() UpperCamelCase_: List[Any] = 'A fantasy landscape, trending on artstation' UpperCamelCase_: Tuple = torch.manual_seed(0 ) UpperCamelCase_: Any = pipe( prompt=_lowerCamelCase , image=_lowerCamelCase , strength=0.7_5 , guidance_scale=7.5 , generator=_lowerCamelCase , output_type='np' , ) UpperCamelCase_: Tuple = output.images[0] assert image.shape == (5_1_2, 7_6_8, 3) # img2img is flaky across GPUs even in fp32, so using MAE here assert np.abs(expected_image - image ).max() < 1e-2
57
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) A_ : Tuple = { 'configuration_distilbert': [ 'DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'DistilBertConfig', 'DistilBertOnnxConfig', ], 'tokenization_distilbert': ['DistilBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Optional[Any] = ['DistilBertTokenizerFast'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'DistilBertForMaskedLM', 'DistilBertForMultipleChoice', 'DistilBertForQuestionAnswering', 'DistilBertForSequenceClassification', 'DistilBertForTokenClassification', 'DistilBertModel', 'DistilBertPreTrainedModel', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'TFDistilBertForMaskedLM', 'TFDistilBertForMultipleChoice', 'TFDistilBertForQuestionAnswering', 'TFDistilBertForSequenceClassification', 'TFDistilBertForTokenClassification', 'TFDistilBertMainLayer', 'TFDistilBertModel', 'TFDistilBertPreTrainedModel', ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'FlaxDistilBertForMaskedLM', 'FlaxDistilBertForMultipleChoice', 'FlaxDistilBertForQuestionAnswering', 'FlaxDistilBertForSequenceClassification', 'FlaxDistilBertForTokenClassification', 'FlaxDistilBertModel', 'FlaxDistilBertPreTrainedModel', ] if TYPE_CHECKING: from .configuration_distilbert import ( DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP, DistilBertConfig, DistilBertOnnxConfig, ) from .tokenization_distilbert import DistilBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_distilbert_fast import DistilBertTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_distilbert import ( DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, DistilBertForMaskedLM, DistilBertForMultipleChoice, DistilBertForQuestionAnswering, DistilBertForSequenceClassification, DistilBertForTokenClassification, DistilBertModel, DistilBertPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_distilbert import ( TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, TFDistilBertForMaskedLM, TFDistilBertForMultipleChoice, TFDistilBertForQuestionAnswering, TFDistilBertForSequenceClassification, TFDistilBertForTokenClassification, TFDistilBertMainLayer, TFDistilBertModel, TFDistilBertPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_distilbert import ( FlaxDistilBertForMaskedLM, FlaxDistilBertForMultipleChoice, FlaxDistilBertForQuestionAnswering, FlaxDistilBertForSequenceClassification, FlaxDistilBertForTokenClassification, FlaxDistilBertModel, FlaxDistilBertPreTrainedModel, ) else: import sys A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
import argparse import torch from transformers import RemBertConfig, RemBertModel, load_tf_weights_in_rembert from transformers.utils import logging logging.set_verbosity_info() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[int]: # Initialise PyTorch model UpperCamelCase_: Union[str, Any] = RemBertConfig.from_json_file(UpperCAmelCase__ ) print('Building PyTorch model from configuration: {}'.format(str(UpperCAmelCase__ ) ) ) UpperCamelCase_: Any = RemBertModel(UpperCAmelCase__ ) # Load weights from tf checkpoint load_tf_weights_in_rembert(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model print('Save PyTorch model to {}'.format(UpperCAmelCase__ ) ) torch.save(model.state_dict() , UpperCAmelCase__ ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() # Required parameters parser.add_argument( '--tf_checkpoint_path', default=None, type=str, required=True, help='Path to the TensorFlow checkpoint path.' ) parser.add_argument( '--rembert_config_file', default=None, type=str, required=True, help=( 'The config json file corresponding to the pre-trained RemBERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--pytorch_dump_path', default=None, type=str, required=True, help='Path to the output PyTorch model.' ) A_ : List[Any] = parser.parse_args() convert_rembert_tf_checkpoint_to_pytorch(args.tf_checkpoint_path, args.rembert_config_file, args.pytorch_dump_path)
57
import os import socket from contextlib import contextmanager import torch from ..commands.config.default import write_basic_config # noqa: F401 from ..state import PartialState from .dataclasses import DistributedType from .imports import is_deepspeed_available, is_tpu_available from .transformer_engine import convert_model from .versions import is_torch_version if is_deepspeed_available(): from deepspeed import DeepSpeedEngine if is_tpu_available(check_device=False): import torch_xla.core.xla_model as xm def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: if is_torch_version('<' , '2.0.0' ) or not hasattr(UpperCAmelCase__ , '_dynamo' ): return False return isinstance(UpperCAmelCase__ , torch._dynamo.eval_frame.OptimizedModule ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ = True ) -> Any: UpperCamelCase_: Optional[Any] = (torch.nn.parallel.DistributedDataParallel, torch.nn.DataParallel) UpperCamelCase_: int = is_compiled_module(UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: List[str] = model UpperCamelCase_: Dict = model._orig_mod if is_deepspeed_available(): options += (DeepSpeedEngine,) while isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Dict = model.module if not keep_fpaa_wrapper: UpperCamelCase_: int = getattr(UpperCAmelCase__ , 'forward' ) UpperCamelCase_: List[str] = model.__dict__.pop('_original_forward' , UpperCAmelCase__ ) if original_forward is not None: while hasattr(UpperCAmelCase__ , '__wrapped__' ): UpperCamelCase_: Any = forward.__wrapped__ if forward == original_forward: break UpperCamelCase_: Optional[int] = forward if getattr(UpperCAmelCase__ , '_converted_to_transformer_engine' , UpperCAmelCase__ ): convert_model(UpperCAmelCase__ , to_transformer_engine=UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: Union[str, Any] = model UpperCamelCase_: Tuple = compiled_model return model def snake_case () -> List[str]: PartialState().wait_for_everyone() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: if PartialState().distributed_type == DistributedType.TPU: xm.save(UpperCAmelCase__ , UpperCAmelCase__ ) elif PartialState().local_process_index == 0: torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) @contextmanager def snake_case (**UpperCAmelCase__ ) -> Any: for key, value in kwargs.items(): UpperCamelCase_: int = str(UpperCAmelCase__ ) yield for key in kwargs: if key.upper() in os.environ: del os.environ[key.upper()] def snake_case (UpperCAmelCase__ ) -> str: if not hasattr(UpperCAmelCase__ , '__qualname__' ) and not hasattr(UpperCAmelCase__ , '__name__' ): UpperCamelCase_: List[Any] = getattr(UpperCAmelCase__ , '__class__' , UpperCAmelCase__ ) if hasattr(UpperCAmelCase__ , '__qualname__' ): return obj.__qualname__ if hasattr(UpperCAmelCase__ , '__name__' ): return obj.__name__ return str(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: for key, value in source.items(): if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Any = destination.setdefault(UpperCAmelCase__ , {} ) merge_dicts(UpperCAmelCase__ , UpperCAmelCase__ ) else: UpperCamelCase_: str = value return destination def snake_case (UpperCAmelCase__ = None ) -> bool: if port is None: UpperCamelCase_: List[str] = 2_9_5_0_0 with socket.socket(socket.AF_INET , socket.SOCK_STREAM ) as s: return s.connect_ex(('localhost', port) ) == 0
57
1
from ...utils import ( OptionalDependencyNotAvailable, is_flax_available, is_torch_available, is_transformers_available, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .multicontrolnet import MultiControlNetModel from .pipeline_controlnet import StableDiffusionControlNetPipeline from .pipeline_controlnet_imgaimg import StableDiffusionControlNetImgaImgPipeline from .pipeline_controlnet_inpaint import StableDiffusionControlNetInpaintPipeline if is_transformers_available() and is_flax_available(): from .pipeline_flax_controlnet import FlaxStableDiffusionControlNetPipeline
57
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 A_ : Optional[Any] = data_utils.TransfoXLTokenizer A_ : Union[str, Any] = data_utils.TransfoXLCorpus A_ : Any = data_utils A_ : Optional[Any] = data_utils def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(UpperCAmelCase__ , 'rb' ) as fp: UpperCamelCase_: Union[str, Any] = pickle.load(UpperCAmelCase__ , encoding='latin1' ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) UpperCamelCase_: Any = pytorch_dump_folder_path + '/' + VOCAB_FILES_NAMES['pretrained_vocab_file'] print(F'''Save vocabulary to {pytorch_vocab_dump_path}''' ) UpperCamelCase_: Union[str, Any] = corpus.vocab.__dict__ torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = corpus.__dict__ corpus_dict_no_vocab.pop('vocab' , UpperCAmelCase__ ) UpperCamelCase_: str = pytorch_dump_folder_path + '/' + CORPUS_NAME print(F'''Save dataset to {pytorch_dataset_dump_path}''' ) torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model UpperCamelCase_: Any = os.path.abspath(UpperCAmelCase__ ) UpperCamelCase_: Dict = os.path.abspath(UpperCAmelCase__ ) print(F'''Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.''' ) # Initialise PyTorch model if transfo_xl_config_file == "": UpperCamelCase_: List[str] = TransfoXLConfig() else: UpperCamelCase_: Optional[int] = TransfoXLConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Union[str, Any] = TransfoXLLMHeadModel(UpperCAmelCase__ ) UpperCamelCase_: Tuple = load_tf_weights_in_transfo_xl(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model UpperCamelCase_: str = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''Save PyTorch model to {os.path.abspath(UpperCAmelCase__ )}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) print(F'''Save configuration file to {os.path.abspath(UpperCAmelCase__ )}''' ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the folder to store the PyTorch model or dataset/vocab.', ) parser.add_argument( '--tf_checkpoint_path', default='', type=str, help='An optional path to a TensorFlow checkpoint path to be converted.', ) parser.add_argument( '--transfo_xl_config_file', default='', type=str, help=( 'An optional config json file corresponding to the pre-trained BERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--transfo_xl_dataset_file', default='', type=str, help='An optional dataset file to be converted in a vocabulary.', ) A_ : Tuple = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
57
1
import unittest from transformers import PegasusTokenizer, PegasusTokenizerFast 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 A_ : Optional[Any] = get_tests_dir('fixtures/test_sentencepiece_no_bos.model') @require_sentencepiece @require_tokenizers class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : str =PegasusTokenizer a : List[Any] =PegasusTokenizerFast a : Optional[Any] =True a : List[Any] =True def _a ( self ): super().setUp() # We have a SentencePiece fixture for testing UpperCamelCase_: List[Any] = PegasusTokenizer(_lowerCamelCase ) tokenizer.save_pretrained(self.tmpdirname ) @cached_property def _a ( self ): return PegasusTokenizer.from_pretrained('google/pegasus-large' ) def _a ( self , **_lowerCamelCase ): return PegasusTokenizer.from_pretrained(self.tmpdirname , **_lowerCamelCase ) def _a ( self , _lowerCamelCase ): return ("This is a test", "This is a test") def _a ( self ): UpperCamelCase_: Optional[Any] = '</s>' UpperCamelCase_: Dict = 1 self.assertEqual(self.get_tokenizer()._convert_token_to_id(_lowerCamelCase ) , _lowerCamelCase ) self.assertEqual(self.get_tokenizer()._convert_id_to_token(_lowerCamelCase ) , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = list(self.get_tokenizer().get_vocab().keys() ) self.assertEqual(vocab_keys[0] , '<pad>' ) self.assertEqual(vocab_keys[1] , '</s>' ) self.assertEqual(vocab_keys[-1] , 'v' ) self.assertEqual(len(_lowerCamelCase ) , 1_1_0_3 ) def _a ( self ): self.assertEqual(self.get_tokenizer().vocab_size , 1_1_0_3 ) def _a ( self ): UpperCamelCase_: List[str] = self.rust_tokenizer_class.from_pretrained(self.tmpdirname ) UpperCamelCase_: Dict = self.tokenizer_class.from_pretrained(self.tmpdirname ) UpperCamelCase_: int = ( 'Let\'s see which <unk> is the better <unk_token_11> one <mask_1> It seems like this <mask_2> was important' ' </s> <pad> <pad> <pad>' ) UpperCamelCase_: Any = rust_tokenizer([raw_input_str] , return_tensors=_lowerCamelCase , add_special_tokens=_lowerCamelCase ).input_ids[0] UpperCamelCase_: int = py_tokenizer([raw_input_str] , return_tensors=_lowerCamelCase , add_special_tokens=_lowerCamelCase ).input_ids[0] self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: Dict = self._large_tokenizer # <mask_1> masks whole sentence while <mask_2> masks single word UpperCamelCase_: int = '<mask_1> To ensure a <mask_2> flow of bank resolutions.' UpperCamelCase_: Optional[int] = [2, 4_1_3, 6_1_5, 1_1_4, 3, 1_9_7_1, 1_1_3, 1_6_7_9, 1_0_7_1_0, 1_0_7, 1] UpperCamelCase_: Dict = tokenizer([raw_input_str] , return_tensors=_lowerCamelCase ).input_ids[0] self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self._large_tokenizer # The tracebacks for the following asserts are **better** without messages or self.assertEqual assert tokenizer.vocab_size == 9_6_1_0_3 assert tokenizer.pad_token_id == 0 assert tokenizer.eos_token_id == 1 assert tokenizer.offset == 1_0_3 assert tokenizer.unk_token_id == tokenizer.offset + 2 == 1_0_5 assert tokenizer.unk_token == "<unk>" assert tokenizer.model_max_length == 1_0_2_4 UpperCamelCase_: Union[str, Any] = 'To ensure a smooth flow of bank resolutions.' UpperCamelCase_: List[Any] = [4_1_3, 6_1_5, 1_1_4, 2_2_9_1, 1_9_7_1, 1_1_3, 1_6_7_9, 1_0_7_1_0, 1_0_7, 1] UpperCamelCase_: Optional[Any] = tokenizer([raw_input_str] , return_tensors=_lowerCamelCase ).input_ids[0] self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) assert tokenizer.convert_ids_to_tokens([0, 1, 2, 3] ) == ["<pad>", "</s>", "<mask_1>", "<mask_2>"] @require_torch def _a ( self ): UpperCamelCase_: Optional[int] = ['This is going to be way too long.' * 1_5_0, 'short example'] UpperCamelCase_: Optional[Any] = ['not super long but more than 5 tokens', 'tiny'] UpperCamelCase_: Union[str, Any] = self._large_tokenizer(_lowerCamelCase , padding=_lowerCamelCase , truncation=_lowerCamelCase , return_tensors='pt' ) UpperCamelCase_: int = self._large_tokenizer( text_target=_lowerCamelCase , max_length=5 , padding=_lowerCamelCase , truncation=_lowerCamelCase , return_tensors='pt' ) assert batch.input_ids.shape == (2, 1_0_2_4) assert batch.attention_mask.shape == (2, 1_0_2_4) assert targets["input_ids"].shape == (2, 5) assert len(_lowerCamelCase ) == 2 # input_ids, attention_mask. @slow def _a ( self ): # fmt: off UpperCamelCase_: Optional[Any] = {'input_ids': [[3_8_9_7_9, 1_4_3, 1_8_4_8_5, 6_0_6, 1_3_0, 2_6_6_6_9, 8_7_6_8_6, 1_2_1, 5_4_1_8_9, 1_1_2_9, 1_1_1, 2_6_6_6_9, 8_7_6_8_6, 1_2_1, 9_1_1_4, 1_4_7_8_7, 1_2_1, 1_3_2_4_9, 1_5_8, 5_9_2, 9_5_6, 1_2_1, 1_4_6_2_1, 3_1_5_7_6, 1_4_3, 6_2_6_1_3, 1_0_8, 9_6_8_8, 9_3_0, 4_3_4_3_0, 1_1_5_6_2, 6_2_6_1_3, 3_0_4, 1_0_8, 1_1_4_4_3, 8_9_7, 1_0_8, 9_3_1_4, 1_7_4_1_5, 6_3_3_9_9, 1_0_8, 1_1_4_4_3, 7_6_1_4, 1_8_3_1_6, 1_1_8, 4_2_8_4, 7_1_4_8, 1_2_4_3_0, 1_4_3, 1_4_0_0, 2_5_7_0_3, 1_5_8, 1_1_1, 4_2_8_4, 7_1_4_8, 1_1_7_7_2, 1_4_3, 2_1_2_9_7, 1_0_6_4, 1_5_8, 1_2_2, 2_0_4, 3_5_0_6, 1_7_5_4, 1_1_3_3, 1_4_7_8_7, 1_5_8_1, 1_1_5, 3_3_2_2_4, 4_4_8_2, 1_1_1, 1_3_5_5, 1_1_0, 2_9_1_7_3, 3_1_7, 5_0_8_3_3, 1_0_8, 2_0_1_4_7, 9_4_6_6_5, 1_1_1, 7_7_1_9_8, 1_0_7, 1], [1_1_0, 6_2_6_1_3, 1_1_7, 6_3_8, 1_1_2, 1_1_3_3, 1_2_1, 2_0_0_9_8, 1_3_5_5, 7_9_0_5_0, 1_3_8_7_2, 1_3_5, 1_5_9_6, 5_3_5_4_1, 1_3_5_2, 1_4_1, 1_3_0_3_9, 5_5_4_2, 1_2_4, 3_0_2, 5_1_8, 1_1_1, 2_6_8, 2_9_5_6, 1_1_5, 1_4_9, 4_4_2_7, 1_0_7, 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], [1_3_9, 1_2_3_5, 2_7_9_9, 1_8_2_8_9, 1_7_7_8_0, 2_0_4, 1_0_9, 9_4_7_4, 1_2_9_6, 1_0_7, 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]], '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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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=_lowerCamelCase , model_name='google/bigbird-pegasus-large-arxiv' , revision='ba85d0851d708441f91440d509690f1ab6353415' , ) @require_sentencepiece @require_tokenizers class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =PegasusTokenizer a : int =PegasusTokenizerFast a : List[str] =True a : List[Any] =True def _a ( self ): super().setUp() # We have a SentencePiece fixture for testing UpperCamelCase_: Optional[int] = PegasusTokenizer(_lowerCamelCase , offset=0 , mask_token_sent=_lowerCamelCase , mask_token='[MASK]' ) tokenizer.save_pretrained(self.tmpdirname ) @cached_property def _a ( self ): return PegasusTokenizer.from_pretrained('google/bigbird-pegasus-large-arxiv' ) def _a ( self , **_lowerCamelCase ): return PegasusTokenizer.from_pretrained(self.tmpdirname , **_lowerCamelCase ) def _a ( self , _lowerCamelCase ): return ("This is a test", "This is a test") def _a ( self ): UpperCamelCase_: List[str] = self.rust_tokenizer_class.from_pretrained(self.tmpdirname ) UpperCamelCase_: Any = self.tokenizer_class.from_pretrained(self.tmpdirname ) UpperCamelCase_: Tuple = ( 'Let\'s see which <unk> is the better <unk_token> one [MASK] It seems like this [MASK] was important </s>' ' <pad> <pad> <pad>' ) UpperCamelCase_: str = rust_tokenizer([raw_input_str] , return_tensors=_lowerCamelCase , add_special_tokens=_lowerCamelCase ).input_ids[0] UpperCamelCase_: Dict = py_tokenizer([raw_input_str] , return_tensors=_lowerCamelCase , add_special_tokens=_lowerCamelCase ).input_ids[0] self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) @require_torch def _a ( self ): UpperCamelCase_: List[str] = ['This is going to be way too long.' * 1_0_0_0, 'short example'] UpperCamelCase_: Optional[Any] = ['not super long but more than 5 tokens', 'tiny'] UpperCamelCase_: Dict = self._large_tokenizer(_lowerCamelCase , padding=_lowerCamelCase , truncation=_lowerCamelCase , return_tensors='pt' ) UpperCamelCase_: Optional[int] = self._large_tokenizer( text_target=_lowerCamelCase , max_length=5 , padding=_lowerCamelCase , truncation=_lowerCamelCase , return_tensors='pt' ) assert batch.input_ids.shape == (2, 4_0_9_6) assert batch.attention_mask.shape == (2, 4_0_9_6) assert targets["input_ids"].shape == (2, 5) assert len(_lowerCamelCase ) == 2 # input_ids, attention_mask. def _a ( self ): UpperCamelCase_: Optional[Any] = ( 'This is an example string that is used to test the original TF implementation against the HF' ' implementation' ) UpperCamelCase_: int = self._large_tokenizer(_lowerCamelCase ).input_ids self.assertListEqual( _lowerCamelCase , [1_8_2, 1_1_7, 1_4_2, 5_8_7, 4_2_1_1, 1_2_0, 1_1_7, 2_6_3, 1_1_2, 8_0_4, 1_0_9, 8_5_6, 2_5_0_1_6, 3_1_3_7, 4_6_4, 1_0_9, 2_6_9_5_5, 3_1_3_7, 1] , )
57
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 rescale, resize, to_channel_dimension_format from ...image_utils import ( ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : List[str] = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Union[str, Any]: UpperCamelCase_: Tuple = b.T UpperCamelCase_: Tuple = np.sum(np.square(UpperCAmelCase__ ) , axis=1 ) UpperCamelCase_: Optional[Any] = np.sum(np.square(UpperCAmelCase__ ) , axis=0 ) UpperCamelCase_: Optional[int] = np.matmul(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[Any] = aa[:, None] - 2 * ab + ba[None, :] return d def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: List[str] = x.reshape(-1 , 3 ) UpperCamelCase_: Union[str, Any] = squared_euclidean_distance(UpperCAmelCase__ , UpperCAmelCase__ ) return np.argmin(UpperCAmelCase__ , axis=1 ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =['''pixel_values'''] def __init__( self , _lowerCamelCase = None , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = True , _lowerCamelCase = True , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: List[str] = size if size is not None else {'height': 2_5_6, 'width': 2_5_6} UpperCamelCase_: str = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Any = np.array(_lowerCamelCase ) if clusters is not None else None UpperCamelCase_: Optional[int] = do_resize UpperCamelCase_: List[Any] = size UpperCamelCase_: Optional[int] = resample UpperCamelCase_: str = do_normalize UpperCamelCase_: str = do_color_quantize def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: Any = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''Size dictionary must contain both height and width keys. Got {size.keys()}''' ) return resize( _lowerCamelCase , size=(size['height'], size['width']) , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , ): UpperCamelCase_: Optional[Any] = rescale(image=_lowerCamelCase , scale=1 / 1_2_7.5 , data_format=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = image - 1 return image def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: Optional[Any] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: Tuple = size if size is not None else self.size UpperCamelCase_: Union[str, Any] = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = resample if resample is not None else self.resample UpperCamelCase_: Any = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: str = do_color_quantize if do_color_quantize is not None else self.do_color_quantize UpperCamelCase_: Dict = clusters if clusters is not None else self.clusters UpperCamelCase_: Dict = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[int] = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_color_quantize and clusters is None: raise ValueError('Clusters must be specified if do_color_quantize is True.' ) # All transformations expect numpy arrays. UpperCamelCase_: Union[str, Any] = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: UpperCamelCase_: Union[str, Any] = [self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) for image in images] if do_normalize: UpperCamelCase_: Optional[Any] = [self.normalize(image=_lowerCamelCase ) for image in images] if do_color_quantize: UpperCamelCase_: Any = [to_channel_dimension_format(_lowerCamelCase , ChannelDimension.LAST ) for image in images] # color quantize from (batch_size, height, width, 3) to (batch_size, height, width) UpperCamelCase_: Optional[Any] = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = color_quantize(_lowerCamelCase , _lowerCamelCase ).reshape(images.shape[:-1] ) # flatten to (batch_size, height*width) UpperCamelCase_: Dict = images.shape[0] UpperCamelCase_: Any = images.reshape(_lowerCamelCase , -1 ) # We need to convert back to a list of images to keep consistent behaviour across processors. UpperCamelCase_: List[Any] = list(_lowerCamelCase ) else: UpperCamelCase_: int = [to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) for image in images] UpperCamelCase_: str = {'input_ids': images} return BatchFeature(data=_lowerCamelCase , tensor_type=_lowerCamelCase )
57
1
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 A_ : Optional[Any] = data_utils.TransfoXLTokenizer A_ : Union[str, Any] = data_utils.TransfoXLCorpus A_ : Any = data_utils A_ : Optional[Any] = data_utils def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(UpperCAmelCase__ , 'rb' ) as fp: UpperCamelCase_: Union[str, Any] = pickle.load(UpperCAmelCase__ , encoding='latin1' ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) UpperCamelCase_: Any = pytorch_dump_folder_path + '/' + VOCAB_FILES_NAMES['pretrained_vocab_file'] print(F'''Save vocabulary to {pytorch_vocab_dump_path}''' ) UpperCamelCase_: Union[str, Any] = corpus.vocab.__dict__ torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = corpus.__dict__ corpus_dict_no_vocab.pop('vocab' , UpperCAmelCase__ ) UpperCamelCase_: str = pytorch_dump_folder_path + '/' + CORPUS_NAME print(F'''Save dataset to {pytorch_dataset_dump_path}''' ) torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model UpperCamelCase_: Any = os.path.abspath(UpperCAmelCase__ ) UpperCamelCase_: Dict = os.path.abspath(UpperCAmelCase__ ) print(F'''Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.''' ) # Initialise PyTorch model if transfo_xl_config_file == "": UpperCamelCase_: List[str] = TransfoXLConfig() else: UpperCamelCase_: Optional[int] = TransfoXLConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Union[str, Any] = TransfoXLLMHeadModel(UpperCAmelCase__ ) UpperCamelCase_: Tuple = load_tf_weights_in_transfo_xl(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model UpperCamelCase_: str = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''Save PyTorch model to {os.path.abspath(UpperCAmelCase__ )}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) print(F'''Save configuration file to {os.path.abspath(UpperCAmelCase__ )}''' ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the folder to store the PyTorch model or dataset/vocab.', ) parser.add_argument( '--tf_checkpoint_path', default='', type=str, help='An optional path to a TensorFlow checkpoint path to be converted.', ) parser.add_argument( '--transfo_xl_config_file', default='', type=str, help=( 'An optional config json file corresponding to the pre-trained BERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--transfo_xl_dataset_file', default='', type=str, help='An optional dataset file to be converted in a vocabulary.', ) A_ : Tuple = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
57
import numpy # List of input, output pairs A_ : Any = ( ((5, 2, 3), 15), ((6, 5, 9), 25), ((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41), ) A_ : List[Any] = (((515, 22, 13), 555), ((61, 35, 49), 150)) A_ : Any = [2, 4, 1, 5] A_ : List[Any] = len(train_data) A_ : List[Any] = 0.009 def snake_case (UpperCAmelCase__ , UpperCAmelCase__="train" ) -> Optional[int]: return calculate_hypothesis_value(UpperCAmelCase__ , UpperCAmelCase__ ) - output( UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[Any] = 0 for i in range(len(UpperCAmelCase__ ) - 1 ): hyp_val += data_input_tuple[i] * parameter_vector[i + 1] hyp_val += parameter_vector[0] return hyp_val def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: if data_set == "train": return train_data[example_no][1] elif data_set == "test": return test_data[example_no][1] return None def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: 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 snake_case (UpperCAmelCase__ , UpperCAmelCase__=m ) -> Optional[Any]: UpperCamelCase_: Any = 0 for i in range(UpperCAmelCase__ ): if index == -1: summation_value += _error(UpperCAmelCase__ ) else: summation_value += _error(UpperCAmelCase__ ) * train_data[i][0][index] return summation_value def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[int] = summation_of_cost_derivative(UpperCAmelCase__ , UpperCAmelCase__ ) / m return cost_derivative_value def snake_case () -> Union[str, Any]: global parameter_vector # Tune these values to set a tolerance value for predicted output UpperCamelCase_: str = 0.00_0002 UpperCamelCase_: Any = 0 UpperCamelCase_: int = 0 while True: j += 1 UpperCamelCase_: int = [0, 0, 0, 0] for i in range(0 , len(UpperCAmelCase__ ) ): UpperCamelCase_: Any = get_cost_derivative(i - 1 ) UpperCamelCase_: Optional[int] = ( parameter_vector[i] - LEARNING_RATE * cost_derivative ) if numpy.allclose( UpperCAmelCase__ , UpperCAmelCase__ , atol=UpperCAmelCase__ , rtol=UpperCAmelCase__ , ): break UpperCamelCase_: Optional[int] = temp_parameter_vector print(('Number of iterations:', j) ) def snake_case () -> int: for i in range(len(UpperCAmelCase__ ) ): print(('Actual output value:', output(UpperCAmelCase__ , 'test' )) ) print(('Hypothesis output:', calculate_hypothesis_value(UpperCAmelCase__ , 'test' )) ) if __name__ == "__main__": run_gradient_descent() print('\nTesting gradient descent for a linear hypothesis function.\n') test_gradient_descent()
57
1
import argparse import os import re import packaging.version A_ : Tuple = 'examples/' A_ : Union[str, Any] = { 'examples': (re.compile(r'^check_min_version\("[^"]+"\)\s*$', re.MULTILINE), 'check_min_version("VERSION")\n'), 'init': (re.compile(r'^__version__\s+=\s+"([^"]+)"\s*$', re.MULTILINE), '__version__ = "VERSION"\n'), 'setup': (re.compile(r'^(\s*)version\s*=\s*"[^"]+",', re.MULTILINE), r'\1version="VERSION",'), 'doc': (re.compile(r'^(\s*)release\s*=\s*"[^"]+"$', re.MULTILINE), 'release = "VERSION"\n'), } A_ : Dict = { 'init': 'src/diffusers/__init__.py', 'setup': 'setup.py', } A_ : Union[str, Any] = 'README.md' def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Tuple: with open(UpperCAmelCase__ , 'r' , encoding='utf-8' , newline='\n' ) as f: UpperCamelCase_: List[str] = f.read() UpperCamelCase_ ,UpperCamelCase_: int = REPLACE_PATTERNS[pattern] UpperCamelCase_: Tuple = replace.replace('VERSION' , UpperCAmelCase__ ) UpperCamelCase_: Tuple = re_pattern.sub(UpperCAmelCase__ , UpperCAmelCase__ ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' , newline='\n' ) as f: f.write(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Any: for folder, directories, fnames in os.walk(UpperCAmelCase__ ): # Removing some of the folders with non-actively maintained examples from the walk if "research_projects" in directories: directories.remove('research_projects' ) if "legacy" in directories: directories.remove('legacy' ) for fname in fnames: if fname.endswith('.py' ): update_version_in_file(os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) , UpperCAmelCase__ , pattern='examples' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__=False ) -> List[Any]: for pattern, fname in REPLACE_FILES.items(): update_version_in_file(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) if not patch: update_version_in_examples(UpperCAmelCase__ ) def snake_case () -> List[str]: UpperCamelCase_: Any = '🤗 Transformers currently provides the following architectures' UpperCamelCase_: Any = '1. Want to contribute a new model?' with open(UpperCAmelCase__ , 'r' , encoding='utf-8' , newline='\n' ) as f: UpperCamelCase_: List[Any] = f.readlines() # Find the start of the list. UpperCamelCase_: Optional[int] = 0 while not lines[start_index].startswith(_start_prompt ): start_index += 1 start_index += 1 UpperCamelCase_: List[Any] = start_index # Update the lines in the model list. while not lines[index].startswith(_end_prompt ): if lines[index].startswith('1.' ): UpperCamelCase_: Union[str, Any] = lines[index].replace( 'https://huggingface.co/docs/diffusers/main/model_doc' , 'https://huggingface.co/docs/diffusers/model_doc' , ) index += 1 with open(UpperCAmelCase__ , 'w' , encoding='utf-8' , newline='\n' ) as f: f.writelines(UpperCAmelCase__ ) def snake_case () -> Tuple: with open(REPLACE_FILES['init'] , 'r' ) as f: UpperCamelCase_: List[Any] = f.read() UpperCamelCase_: int = REPLACE_PATTERNS['init'][0].search(UpperCAmelCase__ ).groups()[0] return packaging.version.parse(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__=False ) -> int: UpperCamelCase_: Optional[Any] = get_version() if patch and default_version.is_devrelease: raise ValueError('Can\'t create a patch version from the dev branch, checkout a released version!' ) if default_version.is_devrelease: UpperCamelCase_: Dict = default_version.base_version elif patch: UpperCamelCase_: str = F'''{default_version.major}.{default_version.minor}.{default_version.micro + 1}''' else: UpperCamelCase_: Dict = F'''{default_version.major}.{default_version.minor + 1}.0''' # Now let's ask nicely if that's the right one. UpperCamelCase_: Tuple = input(F'''Which version are you releasing? [{default_version}]''' ) if len(UpperCAmelCase__ ) == 0: UpperCamelCase_: Optional[Any] = default_version print(F'''Updating version to {version}.''' ) global_version_update(UpperCAmelCase__ , patch=UpperCAmelCase__ ) def snake_case () -> int: UpperCamelCase_: Optional[int] = get_version() UpperCamelCase_: int = F'''{current_version.major}.{current_version.minor + 1}.0.dev0''' UpperCamelCase_: Optional[Any] = current_version.base_version # Check with the user we got that right. UpperCamelCase_: List[Any] = input(F'''Which version are we developing now? [{dev_version}]''' ) if len(UpperCAmelCase__ ) == 0: UpperCamelCase_: Dict = dev_version print(F'''Updating version to {version}.''' ) global_version_update(UpperCAmelCase__ ) # print("Cleaning main README, don't forget to run `make fix-copies`.") # clean_main_ref_in_model_list() if __name__ == "__main__": A_ : Optional[Any] = argparse.ArgumentParser() parser.add_argument('--post_release', action='store_true', help='Whether this is pre or post release.') parser.add_argument('--patch', action='store_true', help='Whether or not this is a patch release.') A_ : Union[str, Any] = parser.parse_args() if not args.post_release: pre_release_work(patch=args.patch) elif args.patch: print('Nothing to do after a patch :-)') else: post_release_work()
57
from ...utils import ( OptionalDependencyNotAvailable, is_flax_available, is_torch_available, is_transformers_available, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .multicontrolnet import MultiControlNetModel from .pipeline_controlnet import StableDiffusionControlNetPipeline from .pipeline_controlnet_imgaimg import StableDiffusionControlNetImgaImgPipeline from .pipeline_controlnet_inpaint import StableDiffusionControlNetInpaintPipeline if is_transformers_available() and is_flax_available(): from .pipeline_flax_controlnet import FlaxStableDiffusionControlNetPipeline
57
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : Any = { 'configuration_x_clip': [ 'XCLIP_PRETRAINED_CONFIG_ARCHIVE_MAP', 'XCLIPConfig', 'XCLIPTextConfig', 'XCLIPVisionConfig', ], 'processing_x_clip': ['XCLIPProcessor'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'XCLIP_PRETRAINED_MODEL_ARCHIVE_LIST', 'XCLIPModel', 'XCLIPPreTrainedModel', 'XCLIPTextModel', 'XCLIPVisionModel', ] if TYPE_CHECKING: from .configuration_x_clip import ( XCLIP_PRETRAINED_CONFIG_ARCHIVE_MAP, XCLIPConfig, XCLIPTextConfig, XCLIPVisionConfig, ) from .processing_x_clip import XCLIPProcessor try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_x_clip import ( XCLIP_PRETRAINED_MODEL_ARCHIVE_LIST, XCLIPModel, XCLIPPreTrainedModel, XCLIPTextModel, XCLIPVisionModel, ) else: import sys A_ : Dict = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
from __future__ import annotations import unittest from transformers import AutoTokenizer, PegasusConfig, is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, require_tokenizers, slow from transformers.utils import cached_property from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import TFAutoModelForSeqaSeqLM, TFPegasusForConditionalGeneration, TFPegasusModel @require_tf class _lowerCAmelCase: """simple docstring""" a : int =PegasusConfig a : List[str] ={} a : Optional[int] ='''gelu''' def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=False , _lowerCamelCase=9_9 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=4_0 , _lowerCamelCase=2 , _lowerCamelCase=1 , _lowerCamelCase=0 , ): UpperCamelCase_: List[Any] = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = seq_length UpperCamelCase_: List[str] = is_training UpperCamelCase_: Any = use_labels UpperCamelCase_: Optional[Any] = vocab_size UpperCamelCase_: Tuple = hidden_size UpperCamelCase_: List[Any] = num_hidden_layers UpperCamelCase_: Any = num_attention_heads UpperCamelCase_: Optional[Any] = intermediate_size UpperCamelCase_: Optional[int] = hidden_dropout_prob UpperCamelCase_: int = attention_probs_dropout_prob UpperCamelCase_: Union[str, Any] = max_position_embeddings UpperCamelCase_: Dict = eos_token_id UpperCamelCase_: Union[str, Any] = pad_token_id UpperCamelCase_: List[Any] = bos_token_id def _a ( self ): UpperCamelCase_: Union[str, Any] = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size ) UpperCamelCase_: int = tf.expand_dims(tf.constant([self.eos_token_id] * self.batch_size ) , 1 ) UpperCamelCase_: List[str] = tf.concat([input_ids, eos_tensor] , axis=1 ) UpperCamelCase_: Tuple = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) UpperCamelCase_: Tuple = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_ffn_dim=self.intermediate_size , dropout=self.hidden_dropout_prob , attention_dropout=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , eos_token_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) UpperCamelCase_: Optional[Any] = prepare_pegasus_inputs_dict(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) return config, inputs_dict def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = TFPegasusModel(config=_lowerCamelCase ).get_decoder() UpperCamelCase_: Optional[int] = inputs_dict['input_ids'] UpperCamelCase_: Optional[int] = input_ids[:1, :] UpperCamelCase_: int = inputs_dict['attention_mask'][:1, :] UpperCamelCase_: Optional[int] = inputs_dict['head_mask'] UpperCamelCase_: Optional[int] = 1 # first forward pass UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase , attention_mask=_lowerCamelCase , head_mask=_lowerCamelCase , use_cache=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: int = outputs.to_tuple() # create hypothetical next token and extent to next_input_ids UpperCamelCase_: int = ids_tensor((self.batch_size, 3) , config.vocab_size ) UpperCamelCase_: List[Any] = tf.cast(ids_tensor((self.batch_size, 3) , 2 ) , tf.inta ) # append to next input_ids and UpperCamelCase_: Union[str, Any] = tf.concat([input_ids, next_tokens] , axis=-1 ) UpperCamelCase_: int = tf.concat([attention_mask, next_attn_mask] , axis=-1 ) UpperCamelCase_: Any = model(_lowerCamelCase , attention_mask=_lowerCamelCase )[0] UpperCamelCase_: int = model(_lowerCamelCase , attention_mask=_lowerCamelCase , past_key_values=_lowerCamelCase )[0] self.parent.assertEqual(next_tokens.shape[1] , output_from_past.shape[1] ) # select random slice UpperCamelCase_: Optional[int] = int(ids_tensor((1,) , output_from_past.shape[-1] ) ) UpperCamelCase_: Any = output_from_no_past[:, -3:, random_slice_idx] UpperCamelCase_: Union[str, Any] = output_from_past[:, :, random_slice_idx] # test that outputs are equal for slice tf.debugging.assert_near(_lowerCamelCase , _lowerCamelCase , rtol=1e-3 ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , ) -> str: if attention_mask is None: UpperCamelCase_: Optional[Any] = tf.cast(tf.math.not_equal(UpperCAmelCase__ , config.pad_token_id ) , tf.inta ) if decoder_attention_mask is None: UpperCamelCase_: int = tf.concat( [ tf.ones(decoder_input_ids[:, :1].shape , dtype=tf.inta ), tf.cast(tf.math.not_equal(decoder_input_ids[:, 1:] , config.pad_token_id ) , tf.inta ), ] , axis=-1 , ) if head_mask is None: UpperCamelCase_: str = tf.ones((config.encoder_layers, config.encoder_attention_heads) ) if decoder_head_mask is None: UpperCamelCase_: Any = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) if cross_attn_head_mask is None: UpperCamelCase_: int = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, "head_mask": head_mask, "decoder_head_mask": decoder_head_mask, "cross_attn_head_mask": cross_attn_head_mask, } @require_tf class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Tuple =(TFPegasusForConditionalGeneration, TFPegasusModel) if is_tf_available() else () a : int =(TFPegasusForConditionalGeneration,) if is_tf_available() else () a : Tuple =( { '''conversational''': TFPegasusForConditionalGeneration, '''feature-extraction''': TFPegasusModel, '''summarization''': TFPegasusForConditionalGeneration, '''text2text-generation''': TFPegasusForConditionalGeneration, '''translation''': TFPegasusForConditionalGeneration, } if is_tf_available() else {} ) a : List[str] =True a : List[str] =False a : Tuple =False def _a ( self ): UpperCamelCase_: Dict = TFPegasusModelTester(self ) UpperCamelCase_: Any = ConfigTester(self , config_class=_lowerCamelCase ) def _a ( self ): self.config_tester.run_common_tests() def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs_for_common() self.model_tester.check_decoder_model_past_large_inputs(*_lowerCamelCase ) @require_sentencepiece @require_tokenizers @require_tf class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : Dict =[ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] a : int =[ '''California\'s largest electricity provider has cut power to hundreds of thousands of customers in an effort to''' ''' reduce the risk of wildfires.''', '''N-Dubz have revealed they\'re "grateful" to have been nominated for four Mobo Awards.''', ] # differs slightly from pytorch, likely due to numerical differences in linear layers a : Union[str, Any] ='''google/pegasus-xsum''' @cached_property def _a ( self ): return AutoTokenizer.from_pretrained(self.model_name ) @cached_property def _a ( self ): UpperCamelCase_: Optional[Any] = TFAutoModelForSeqaSeqLM.from_pretrained(self.model_name ) return model def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Dict = self.translate_src_text(**_lowerCamelCase ) assert self.expected_text == generated_words def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = self.tokenizer(self.src_text , **_lowerCamelCase , padding=_lowerCamelCase , return_tensors='tf' ) UpperCamelCase_: Any = self.model.generate( model_inputs.input_ids , attention_mask=model_inputs.attention_mask , num_beams=2 , use_cache=_lowerCamelCase , ) UpperCamelCase_: str = self.tokenizer.batch_decode(generated_ids.numpy() , skip_special_tokens=_lowerCamelCase ) return generated_words @slow def _a ( self ): self._assert_generated_batch_equal_expected()
57
1
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 convert_to_rgb, normalize, rescale, resize, to_channel_dimension_format from ...image_utils import ( OPENAI_CLIP_MEAN, OPENAI_CLIP_STD, ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : Optional[Any] = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Optional[Any] =['''pixel_values'''] def __init__( self , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BICUBIC , _lowerCamelCase = True , _lowerCamelCase = 1 / 2_5_5 , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = True , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: List[str] = size if size is not None else {'height': 3_8_4, 'width': 3_8_4} UpperCamelCase_: str = get_size_dict(_lowerCamelCase , default_to_square=_lowerCamelCase ) UpperCamelCase_: int = do_resize UpperCamelCase_: Union[str, Any] = size UpperCamelCase_: str = resample UpperCamelCase_: str = do_rescale UpperCamelCase_: Tuple = rescale_factor UpperCamelCase_: Any = do_normalize UpperCamelCase_: Optional[int] = image_mean if image_mean is not None else OPENAI_CLIP_MEAN UpperCamelCase_: List[Any] = image_std if image_std is not None else OPENAI_CLIP_STD UpperCamelCase_: str = do_convert_rgb def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BICUBIC , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: Union[str, Any] = get_size_dict(_lowerCamelCase , default_to_square=_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''The `size` dictionary must contain the keys `height` and `width`. Got {size.keys()}''' ) UpperCamelCase_: int = (size['height'], size['width']) return resize(_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = None , **_lowerCamelCase , ): return rescale(_lowerCamelCase , scale=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = None , **_lowerCamelCase , ): return normalize(_lowerCamelCase , mean=_lowerCamelCase , std=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: List[str] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: str = resample if resample is not None else self.resample UpperCamelCase_: List[Any] = do_rescale if do_rescale is not None else self.do_rescale UpperCamelCase_: Union[str, Any] = rescale_factor if rescale_factor is not None else self.rescale_factor UpperCamelCase_: Tuple = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: List[str] = image_mean if image_mean is not None else self.image_mean UpperCamelCase_: Any = image_std if image_std is not None else self.image_std UpperCamelCase_: Optional[Any] = do_convert_rgb if do_convert_rgb is not None else self.do_convert_rgb UpperCamelCase_: int = size if size is not None else self.size UpperCamelCase_: str = get_size_dict(_lowerCamelCase , default_to_square=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # PIL RGBA images are converted to RGB if do_convert_rgb: UpperCamelCase_: str = [convert_to_rgb(_lowerCamelCase ) for image in images] # All transformations expect numpy arrays. UpperCamelCase_: int = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: UpperCamelCase_: Union[str, Any] = [self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) for image in images] if do_rescale: UpperCamelCase_: List[str] = [self.rescale(image=_lowerCamelCase , scale=_lowerCamelCase ) for image in images] if do_normalize: UpperCamelCase_: Optional[Any] = [self.normalize(image=_lowerCamelCase , mean=_lowerCamelCase , std=_lowerCamelCase ) for image in images] UpperCamelCase_: Dict = [to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) for image in images] UpperCamelCase_: int = BatchFeature(data={'pixel_values': images} , tensor_type=_lowerCamelCase ) return encoded_outputs
57
import unittest import numpy as np def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = None , ) -> np.ndarray: UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: List[Any] = np.shape(UpperCAmelCase__ ) if shape_a[0] != shape_b[0]: UpperCamelCase_: Any = ( 'Expected the same number of rows for A and B. ' F'''Instead found A of size {shape_a} and B of size {shape_b}''' ) raise ValueError(UpperCAmelCase__ ) if shape_b[1] != shape_c[1]: UpperCamelCase_: int = ( 'Expected the same number of columns for B and C. ' F'''Instead found B of size {shape_b} and C of size {shape_c}''' ) raise ValueError(UpperCAmelCase__ ) UpperCamelCase_: Dict = pseudo_inv if a_inv is None: try: UpperCamelCase_: Optional[Any] = np.linalg.inv(UpperCAmelCase__ ) except np.linalg.LinAlgError: raise ValueError( 'Input matrix A is not invertible. Cannot compute Schur complement.' ) return mat_c - mat_b.T @ a_inv @ mat_b class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Any = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: Dict = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: Tuple = np.array([[2, 1], [6, 3]] ) UpperCamelCase_: Tuple = schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = np.block([[a, b], [b.T, c]] ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: Dict = np.linalg.det(_lowerCamelCase ) self.assertAlmostEqual(_lowerCamelCase , det_a * det_s ) def _a ( self ): UpperCamelCase_: int = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: List[str] = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[str] = np.array([[2, 1], [6, 3]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: str = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[Any] = np.array([[2, 1, 3], [6, 3, 5]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if __name__ == "__main__": import doctest doctest.testmod() unittest.main()
57
1
import argparse import pytorch_lightning as pl import torch from torch import nn from transformers import LongformerForQuestionAnswering, LongformerModel class _lowerCAmelCase( pl.LightningModule ): """simple docstring""" def __init__( self , _lowerCamelCase ): super().__init__() UpperCamelCase_: Optional[Any] = model UpperCamelCase_: Any = 2 UpperCamelCase_: Tuple = nn.Linear(self.model.config.hidden_size , self.num_labels ) def _a ( self ): pass def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Tuple: # load longformer model from model identifier UpperCamelCase_: List[str] = LongformerModel.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: Dict = LightningModel(UpperCAmelCase__ ) UpperCamelCase_: int = torch.load(UpperCAmelCase__ , map_location=torch.device('cpu' ) ) lightning_model.load_state_dict(ckpt['state_dict'] ) # init longformer question answering model UpperCamelCase_: Optional[Any] = LongformerForQuestionAnswering.from_pretrained(UpperCAmelCase__ ) # transfer weights longformer_for_qa.longformer.load_state_dict(lightning_model.model.state_dict() ) longformer_for_qa.qa_outputs.load_state_dict(lightning_model.qa_outputs.state_dict() ) longformer_for_qa.eval() # save model longformer_for_qa.save_pretrained(UpperCAmelCase__ ) print(F'''Conversion successful. Model saved under {pytorch_dump_folder_path}''' ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() # Required parameters parser.add_argument( '--longformer_model', default=None, type=str, required=True, help='model identifier of longformer. Should be either `longformer-base-4096` or `longformer-large-4096`.', ) parser.add_argument( '--longformer_question_answering_ckpt_path', default=None, type=str, required=True, help='Path the official PyTorch Lightning Checkpoint.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the output PyTorch model.' ) A_ : Dict = parser.parse_args() convert_longformer_qa_checkpoint_to_pytorch( args.longformer_model, args.longformer_question_answering_ckpt_path, args.pytorch_dump_folder_path )
57
import argparse import json import os from collections import OrderedDict import torch from transformers import LukeConfig, LukeForMaskedLM, MLukeTokenizer, XLMRobertaTokenizer from transformers.tokenization_utils_base import AddedToken @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> int: # Load configuration defined in the metadata file with open(UpperCAmelCase__ ) as metadata_file: UpperCamelCase_: Tuple = json.load(UpperCAmelCase__ ) UpperCamelCase_: List[str] = LukeConfig(use_entity_aware_attention=UpperCAmelCase__ , **metadata['model_config'] ) # Load in the weights from the checkpoint_path UpperCamelCase_: Optional[int] = torch.load(UpperCAmelCase__ , map_location='cpu' )['module'] # Load the entity vocab file UpperCamelCase_: Any = load_original_entity_vocab(UpperCAmelCase__ ) # add an entry for [MASK2] UpperCamelCase_: List[str] = max(entity_vocab.values() ) + 1 config.entity_vocab_size += 1 UpperCamelCase_: Union[str, Any] = XLMRobertaTokenizer.from_pretrained(metadata['model_config']['bert_model_name'] ) # Add special tokens to the token vocabulary for downstream tasks UpperCamelCase_: Any = AddedToken('<ent>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = AddedToken('<ent2>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) tokenizer.add_special_tokens({'additional_special_tokens': [entity_token_a, entity_token_a]} ) config.vocab_size += 2 print(F'''Saving tokenizer to {pytorch_dump_folder_path}''' ) tokenizer.save_pretrained(UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'r' ) as f: UpperCamelCase_: Union[str, Any] = json.load(UpperCAmelCase__ ) UpperCamelCase_: str = 'MLukeTokenizer' with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , MLukeTokenizer.vocab_files_names['entity_vocab_file'] ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) # Initialize the embeddings of the special tokens UpperCamelCase_: Any = tokenizer.convert_tokens_to_ids(['@'] )[0] UpperCamelCase_: List[str] = tokenizer.convert_tokens_to_ids(['#'] )[0] UpperCamelCase_: Tuple = state_dict['embeddings.word_embeddings.weight'] UpperCamelCase_: int = word_emb[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = word_emb[enta_init_index].unsqueeze(0 ) UpperCamelCase_: str = torch.cat([word_emb, ent_emb, enta_emb] ) # add special tokens for 'entity_predictions.bias' for bias_name in ["lm_head.decoder.bias", "lm_head.bias"]: UpperCamelCase_: Union[str, Any] = state_dict[bias_name] UpperCamelCase_: Tuple = decoder_bias[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = decoder_bias[enta_init_index].unsqueeze(0 ) UpperCamelCase_: Optional[Any] = torch.cat([decoder_bias, ent_decoder_bias, enta_decoder_bias] ) # Initialize the query layers of the entity-aware self-attention mechanism for layer_index in range(config.num_hidden_layers ): for matrix_name in ["query.weight", "query.bias"]: UpperCamelCase_: List[Any] = F'''encoder.layer.{layer_index}.attention.self.''' UpperCamelCase_: str = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] # Initialize the embedding of the [MASK2] entity using that of the [MASK] entity for downstream tasks UpperCamelCase_: List[str] = state_dict['entity_embeddings.entity_embeddings.weight'] UpperCamelCase_: int = entity_emb[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: Tuple = torch.cat([entity_emb, entity_mask_emb] ) # add [MASK2] for 'entity_predictions.bias' UpperCamelCase_: Optional[Any] = state_dict['entity_predictions.bias'] UpperCamelCase_: List[str] = entity_prediction_bias[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: List[Any] = torch.cat([entity_prediction_bias, entity_mask_bias] ) UpperCamelCase_: List[Any] = LukeForMaskedLM(config=UpperCAmelCase__ ).eval() state_dict.pop('entity_predictions.decoder.weight' ) state_dict.pop('lm_head.decoder.weight' ) state_dict.pop('lm_head.decoder.bias' ) UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if not (key.startswith('lm_head' ) or key.startswith('entity_predictions' )): UpperCamelCase_: Union[str, Any] = state_dict[key] else: UpperCamelCase_: Dict = state_dict[key] UpperCamelCase_ ,UpperCamelCase_: Optional[int] = model.load_state_dict(UpperCAmelCase__ , strict=UpperCAmelCase__ ) if set(UpperCAmelCase__ ) != {"luke.embeddings.position_ids"}: raise ValueError(F'''Unexpected unexpected_keys: {unexpected_keys}''' ) if set(UpperCAmelCase__ ) != { "lm_head.decoder.weight", "lm_head.decoder.bias", "entity_predictions.decoder.weight", }: raise ValueError(F'''Unexpected missing_keys: {missing_keys}''' ) model.tie_weights() assert (model.luke.embeddings.word_embeddings.weight == model.lm_head.decoder.weight).all() assert (model.luke.entity_embeddings.entity_embeddings.weight == model.entity_predictions.decoder.weight).all() # Check outputs UpperCamelCase_: Optional[int] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ , task='entity_classification' ) UpperCamelCase_: Tuple = 'ISO 639-3 uses the code fas for the dialects spoken across Iran and アフガニスタン (Afghanistan).' UpperCamelCase_: Optional[int] = (0, 9) UpperCamelCase_: Union[str, Any] = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: str = model(**UpperCAmelCase__ ) # Verify word hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: int = torch.Size((1, 3_3, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[0.0892, 0.0596, -0.2819], [0.0134, 0.1199, 0.0573], [-0.0169, 0.0927, 0.0644]] ) if not (outputs.last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.last_hidden_state.shape is {outputs.last_hidden_state.shape}, Expected shape is {expected_shape}''' ) if not torch.allclose(outputs.last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify entity hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: Dict = torch.Size((1, 1, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[-0.1482, 0.0609, 0.0322]] ) if not (outputs.entity_last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.entity_last_hidden_state.shape is {outputs.entity_last_hidden_state.shape}, Expected shape is''' F''' {expected_shape}''' ) if not torch.allclose(outputs.entity_last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify masked word/entity prediction UpperCamelCase_: str = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = 'Tokyo is the capital of <mask>.' UpperCamelCase_: Dict = (2_4, 3_0) UpperCamelCase_: int = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: Dict = model(**UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = encoding['input_ids'][0].tolist() UpperCamelCase_: List[Any] = input_ids.index(tokenizer.convert_tokens_to_ids('<mask>' ) ) UpperCamelCase_: Any = outputs.logits[0][mask_position_id].argmax(dim=-1 ) assert "Japan" == tokenizer.decode(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.entity_logits[0][0].argmax().item() UpperCamelCase_: Optional[Any] = [ entity for entity, entity_id in tokenizer.entity_vocab.items() if entity_id == predicted_entity_id ] assert [e for e in multilingual_predicted_entities if e.startswith('en:' )][0] == "en:Japan" # Finally, save our PyTorch model and tokenizer print('Saving PyTorch model to {}'.format(UpperCAmelCase__ ) ) model.save_pretrained(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: Optional[Any] = ['[MASK]', '[PAD]', '[UNK]'] UpperCamelCase_: Any = [json.loads(UpperCAmelCase__ ) for line in open(UpperCAmelCase__ )] UpperCamelCase_: Tuple = {} for entry in data: UpperCamelCase_: Optional[int] = entry['id'] for entity_name, language in entry["entities"]: if entity_name in SPECIAL_TOKENS: UpperCamelCase_: Union[str, Any] = entity_id break UpperCamelCase_: Dict = F'''{language}:{entity_name}''' UpperCamelCase_: Optional[int] = entity_id return new_mapping if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument('--checkpoint_path', type=str, help='Path to a pytorch_model.bin file.') parser.add_argument( '--metadata_path', default=None, type=str, help='Path to a metadata.json file, defining the configuration.' ) parser.add_argument( '--entity_vocab_path', default=None, type=str, help='Path to an entity_vocab.tsv file, containing the entity vocabulary.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to where to dump the output PyTorch model.' ) parser.add_argument( '--model_size', default='base', type=str, choices=['base', 'large'], help='Size of the model to be converted.' ) A_ : List[str] = parser.parse_args() convert_luke_checkpoint( args.checkpoint_path, args.metadata_path, args.entity_vocab_path, args.pytorch_dump_folder_path, args.model_size, )
57
1
import torch import torch.nn as nn from transformers.modeling_utils import ModuleUtilsMixin from transformers.models.ta.modeling_ta import TaBlock, TaConfig, TaLayerNorm from ...configuration_utils import ConfigMixin, register_to_config from ...models import ModelMixin class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_ ): """simple docstring""" @register_to_config def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = False , ): super().__init__() UpperCamelCase_: Optional[int] = nn.Embedding(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[int] = nn.Embedding(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = False UpperCamelCase_: Optional[int] = nn.Dropout(p=_lowerCamelCase ) UpperCamelCase_: Dict = TaConfig( vocab_size=_lowerCamelCase , d_model=_lowerCamelCase , num_heads=_lowerCamelCase , d_kv=_lowerCamelCase , d_ff=_lowerCamelCase , dropout_rate=_lowerCamelCase , feed_forward_proj=_lowerCamelCase , is_decoder=_lowerCamelCase , is_encoder_decoder=_lowerCamelCase , ) UpperCamelCase_: List[str] = nn.ModuleList() for lyr_num in range(_lowerCamelCase ): UpperCamelCase_: Tuple = TaBlock(_lowerCamelCase ) self.encoders.append(_lowerCamelCase ) UpperCamelCase_: Tuple = TaLayerNorm(_lowerCamelCase ) UpperCamelCase_: Dict = nn.Dropout(p=_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[Any] = self.token_embedder(_lowerCamelCase ) UpperCamelCase_: Tuple = encoder_input_tokens.shape[1] UpperCamelCase_: Optional[Any] = torch.arange(_lowerCamelCase , device=encoder_input_tokens.device ) x += self.position_encoding(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.dropout_pre(_lowerCamelCase ) # inverted the attention mask UpperCamelCase_: Dict = encoder_input_tokens.size() UpperCamelCase_: str = self.get_extended_attention_mask(_lowerCamelCase , _lowerCamelCase ) for lyr in self.encoders: UpperCamelCase_: Optional[Any] = lyr(_lowerCamelCase , _lowerCamelCase )[0] UpperCamelCase_: Union[str, Any] = self.layer_norm(_lowerCamelCase ) return self.dropout_post(_lowerCamelCase ), encoder_inputs_mask
57
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging A_ : Optional[Any] = logging.get_logger(__name__) A_ : Optional[Any] = { 'distilbert-base-uncased': 'https://huggingface.co/distilbert-base-uncased/resolve/main/config.json', 'distilbert-base-uncased-distilled-squad': ( 'https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-cased': 'https://huggingface.co/distilbert-base-cased/resolve/main/config.json', 'distilbert-base-cased-distilled-squad': ( 'https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-german-cased': 'https://huggingface.co/distilbert-base-german-cased/resolve/main/config.json', 'distilbert-base-multilingual-cased': ( 'https://huggingface.co/distilbert-base-multilingual-cased/resolve/main/config.json' ), 'distilbert-base-uncased-finetuned-sst-2-english': ( 'https://huggingface.co/distilbert-base-uncased-finetuned-sst-2-english/resolve/main/config.json' ), } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Dict ='''distilbert''' a : List[str] ={ '''hidden_size''': '''dim''', '''num_attention_heads''': '''n_heads''', '''num_hidden_layers''': '''n_layers''', } def __init__( self , _lowerCamelCase=3_0_5_2_2 , _lowerCamelCase=5_1_2 , _lowerCamelCase=False , _lowerCamelCase=6 , _lowerCamelCase=1_2 , _lowerCamelCase=7_6_8 , _lowerCamelCase=4 * 7_6_8 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=0.0_2 , _lowerCamelCase=0.1 , _lowerCamelCase=0.2 , _lowerCamelCase=0 , **_lowerCamelCase , ): UpperCamelCase_: Tuple = vocab_size UpperCamelCase_: str = max_position_embeddings UpperCamelCase_: Optional[int] = sinusoidal_pos_embds UpperCamelCase_: Union[str, Any] = n_layers UpperCamelCase_: Optional[int] = n_heads UpperCamelCase_: int = dim UpperCamelCase_: Tuple = hidden_dim UpperCamelCase_: Any = dropout UpperCamelCase_: Optional[Any] = attention_dropout UpperCamelCase_: List[str] = activation UpperCamelCase_: Optional[Any] = initializer_range UpperCamelCase_: Optional[Any] = qa_dropout UpperCamelCase_: List[str] = seq_classif_dropout super().__init__(**_lowerCamelCase , pad_token_id=_lowerCamelCase ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" @property def _a ( self ): if self.task == "multiple-choice": UpperCamelCase_: Any = {0: 'batch', 1: 'choice', 2: 'sequence'} else: UpperCamelCase_: List[Any] = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ] )
57
1
from __future__ import annotations import unittest from transformers import AutoTokenizer, PegasusConfig, is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, require_tokenizers, slow from transformers.utils import cached_property from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import TFAutoModelForSeqaSeqLM, TFPegasusForConditionalGeneration, TFPegasusModel @require_tf class _lowerCAmelCase: """simple docstring""" a : int =PegasusConfig a : List[str] ={} a : Optional[int] ='''gelu''' def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=False , _lowerCamelCase=9_9 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=4_0 , _lowerCamelCase=2 , _lowerCamelCase=1 , _lowerCamelCase=0 , ): UpperCamelCase_: List[Any] = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = seq_length UpperCamelCase_: List[str] = is_training UpperCamelCase_: Any = use_labels UpperCamelCase_: Optional[Any] = vocab_size UpperCamelCase_: Tuple = hidden_size UpperCamelCase_: List[Any] = num_hidden_layers UpperCamelCase_: Any = num_attention_heads UpperCamelCase_: Optional[Any] = intermediate_size UpperCamelCase_: Optional[int] = hidden_dropout_prob UpperCamelCase_: int = attention_probs_dropout_prob UpperCamelCase_: Union[str, Any] = max_position_embeddings UpperCamelCase_: Dict = eos_token_id UpperCamelCase_: Union[str, Any] = pad_token_id UpperCamelCase_: List[Any] = bos_token_id def _a ( self ): UpperCamelCase_: Union[str, Any] = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size ) UpperCamelCase_: int = tf.expand_dims(tf.constant([self.eos_token_id] * self.batch_size ) , 1 ) UpperCamelCase_: List[str] = tf.concat([input_ids, eos_tensor] , axis=1 ) UpperCamelCase_: Tuple = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) UpperCamelCase_: Tuple = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_ffn_dim=self.intermediate_size , dropout=self.hidden_dropout_prob , attention_dropout=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , eos_token_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) UpperCamelCase_: Optional[Any] = prepare_pegasus_inputs_dict(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) return config, inputs_dict def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = TFPegasusModel(config=_lowerCamelCase ).get_decoder() UpperCamelCase_: Optional[int] = inputs_dict['input_ids'] UpperCamelCase_: Optional[int] = input_ids[:1, :] UpperCamelCase_: int = inputs_dict['attention_mask'][:1, :] UpperCamelCase_: Optional[int] = inputs_dict['head_mask'] UpperCamelCase_: Optional[int] = 1 # first forward pass UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase , attention_mask=_lowerCamelCase , head_mask=_lowerCamelCase , use_cache=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: int = outputs.to_tuple() # create hypothetical next token and extent to next_input_ids UpperCamelCase_: int = ids_tensor((self.batch_size, 3) , config.vocab_size ) UpperCamelCase_: List[Any] = tf.cast(ids_tensor((self.batch_size, 3) , 2 ) , tf.inta ) # append to next input_ids and UpperCamelCase_: Union[str, Any] = tf.concat([input_ids, next_tokens] , axis=-1 ) UpperCamelCase_: int = tf.concat([attention_mask, next_attn_mask] , axis=-1 ) UpperCamelCase_: Any = model(_lowerCamelCase , attention_mask=_lowerCamelCase )[0] UpperCamelCase_: int = model(_lowerCamelCase , attention_mask=_lowerCamelCase , past_key_values=_lowerCamelCase )[0] self.parent.assertEqual(next_tokens.shape[1] , output_from_past.shape[1] ) # select random slice UpperCamelCase_: Optional[int] = int(ids_tensor((1,) , output_from_past.shape[-1] ) ) UpperCamelCase_: Any = output_from_no_past[:, -3:, random_slice_idx] UpperCamelCase_: Union[str, Any] = output_from_past[:, :, random_slice_idx] # test that outputs are equal for slice tf.debugging.assert_near(_lowerCamelCase , _lowerCamelCase , rtol=1e-3 ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , ) -> str: if attention_mask is None: UpperCamelCase_: Optional[Any] = tf.cast(tf.math.not_equal(UpperCAmelCase__ , config.pad_token_id ) , tf.inta ) if decoder_attention_mask is None: UpperCamelCase_: int = tf.concat( [ tf.ones(decoder_input_ids[:, :1].shape , dtype=tf.inta ), tf.cast(tf.math.not_equal(decoder_input_ids[:, 1:] , config.pad_token_id ) , tf.inta ), ] , axis=-1 , ) if head_mask is None: UpperCamelCase_: str = tf.ones((config.encoder_layers, config.encoder_attention_heads) ) if decoder_head_mask is None: UpperCamelCase_: Any = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) if cross_attn_head_mask is None: UpperCamelCase_: int = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, "head_mask": head_mask, "decoder_head_mask": decoder_head_mask, "cross_attn_head_mask": cross_attn_head_mask, } @require_tf class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Tuple =(TFPegasusForConditionalGeneration, TFPegasusModel) if is_tf_available() else () a : int =(TFPegasusForConditionalGeneration,) if is_tf_available() else () a : Tuple =( { '''conversational''': TFPegasusForConditionalGeneration, '''feature-extraction''': TFPegasusModel, '''summarization''': TFPegasusForConditionalGeneration, '''text2text-generation''': TFPegasusForConditionalGeneration, '''translation''': TFPegasusForConditionalGeneration, } if is_tf_available() else {} ) a : List[str] =True a : List[str] =False a : Tuple =False def _a ( self ): UpperCamelCase_: Dict = TFPegasusModelTester(self ) UpperCamelCase_: Any = ConfigTester(self , config_class=_lowerCamelCase ) def _a ( self ): self.config_tester.run_common_tests() def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs_for_common() self.model_tester.check_decoder_model_past_large_inputs(*_lowerCamelCase ) @require_sentencepiece @require_tokenizers @require_tf class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : Dict =[ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] a : int =[ '''California\'s largest electricity provider has cut power to hundreds of thousands of customers in an effort to''' ''' reduce the risk of wildfires.''', '''N-Dubz have revealed they\'re "grateful" to have been nominated for four Mobo Awards.''', ] # differs slightly from pytorch, likely due to numerical differences in linear layers a : Union[str, Any] ='''google/pegasus-xsum''' @cached_property def _a ( self ): return AutoTokenizer.from_pretrained(self.model_name ) @cached_property def _a ( self ): UpperCamelCase_: Optional[Any] = TFAutoModelForSeqaSeqLM.from_pretrained(self.model_name ) return model def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Dict = self.translate_src_text(**_lowerCamelCase ) assert self.expected_text == generated_words def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = self.tokenizer(self.src_text , **_lowerCamelCase , padding=_lowerCamelCase , return_tensors='tf' ) UpperCamelCase_: Any = self.model.generate( model_inputs.input_ids , attention_mask=model_inputs.attention_mask , num_beams=2 , use_cache=_lowerCamelCase , ) UpperCamelCase_: str = self.tokenizer.batch_decode(generated_ids.numpy() , skip_special_tokens=_lowerCamelCase ) return generated_words @slow def _a ( self ): self._assert_generated_batch_equal_expected()
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : int = { 'configuration_lilt': ['LILT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'LiltConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = [ 'LILT_PRETRAINED_MODEL_ARCHIVE_LIST', 'LiltForQuestionAnswering', 'LiltForSequenceClassification', 'LiltForTokenClassification', 'LiltModel', 'LiltPreTrainedModel', ] if TYPE_CHECKING: from .configuration_lilt import LILT_PRETRAINED_CONFIG_ARCHIVE_MAP, LiltConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_lilt import ( LILT_PRETRAINED_MODEL_ARCHIVE_LIST, LiltForQuestionAnswering, LiltForSequenceClassification, LiltForTokenClassification, LiltModel, LiltPreTrainedModel, ) else: import sys A_ : Union[str, Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
from __future__ import annotations from collections.abc import Callable from typing import Any, Generic, TypeVar A_ : Dict = TypeVar('T') class _lowerCAmelCase( Generic[T] ): """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Any | T = None UpperCamelCase_: int = len(_lowerCamelCase ) UpperCamelCase_: list[T] = [any_type for _ in range(self.N )] + arr UpperCamelCase_: str = fnc self.build() def _a ( self ): for p in range(self.N - 1 , 0 , -1 ): UpperCamelCase_: Optional[Any] = self.fn(self.st[p * 2] , self.st[p * 2 + 1] ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): p += self.N UpperCamelCase_: str = v while p > 1: UpperCamelCase_: Union[str, Any] = p // 2 UpperCamelCase_: Tuple = self.fn(self.st[p * 2] , self.st[p * 2 + 1] ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): # noqa: E741 UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = l + self.N, r + self.N UpperCamelCase_: T | None = None while l <= r: if l % 2 == 1: UpperCamelCase_: Optional[Any] = self.st[l] if res is None else self.fn(_lowerCamelCase , self.st[l] ) if r % 2 == 0: UpperCamelCase_: Union[str, Any] = self.st[r] if res is None else self.fn(_lowerCamelCase , self.st[r] ) UpperCamelCase_ ,UpperCamelCase_: Tuple = (l + 1) // 2, (r - 1) // 2 return res if __name__ == "__main__": from functools import reduce A_ : Dict = [1, 10, -2, 9, -3, 8, 4, -7, 5, 6, 11, -12] A_ : Optional[int] = { 0: 7, 1: 2, 2: 6, 3: -14, 4: 5, 5: 4, 6: 7, 7: -10, 8: 9, 9: 10, 10: 12, 11: 1, } A_ : str = SegmentTree(test_array, min) A_ : Tuple = SegmentTree(test_array, max) A_ : int = SegmentTree(test_array, lambda a, b: a + b) def snake_case () -> None: for i in range(len(UpperCAmelCase__ ) ): for j in range(UpperCAmelCase__ , len(UpperCAmelCase__ ) ): UpperCamelCase_: List[Any] = reduce(UpperCAmelCase__ , test_array[i : j + 1] ) UpperCamelCase_: Any = reduce(UpperCAmelCase__ , test_array[i : j + 1] ) UpperCamelCase_: Optional[int] = reduce(lambda UpperCAmelCase__ , UpperCAmelCase__ : a + b , test_array[i : j + 1] ) assert min_range == min_segment_tree.query(UpperCAmelCase__ , UpperCAmelCase__ ) assert max_range == max_segment_tree.query(UpperCAmelCase__ , UpperCAmelCase__ ) assert sum_range == sum_segment_tree.query(UpperCAmelCase__ , UpperCAmelCase__ ) test_all_segments() for index, value in test_updates.items(): A_ : Any = value min_segment_tree.update(index, value) max_segment_tree.update(index, value) sum_segment_tree.update(index, value) test_all_segments()
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tokenizers_available, is_torch_available A_ : List[str] = { 'configuration_roc_bert': ['ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'RoCBertConfig'], 'tokenization_roc_bert': ['RoCBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: pass try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Union[str, Any] = [ 'ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'RoCBertForCausalLM', 'RoCBertForMaskedLM', 'RoCBertForMultipleChoice', 'RoCBertForPreTraining', 'RoCBertForQuestionAnswering', 'RoCBertForSequenceClassification', 'RoCBertForTokenClassification', 'RoCBertLayer', 'RoCBertModel', 'RoCBertPreTrainedModel', 'load_tf_weights_in_roc_bert', ] if TYPE_CHECKING: from .configuration_roc_bert import ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP, RoCBertConfig from .tokenization_roc_bert import RoCBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: raise OptionalDependencyNotAvailable() try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_roc_bert import ( ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST, RoCBertForCausalLM, RoCBertForMaskedLM, RoCBertForMultipleChoice, RoCBertForPreTraining, RoCBertForQuestionAnswering, RoCBertForSequenceClassification, RoCBertForTokenClassification, RoCBertLayer, RoCBertModel, RoCBertPreTrainedModel, load_tf_weights_in_roc_bert, ) else: import sys A_ : int = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
import unittest from transformers import MODEL_FOR_VISUAL_QUESTION_ANSWERING_MAPPING, is_vision_available from transformers.pipelines import pipeline from transformers.testing_utils import ( is_pipeline_test, nested_simplify, require_tf, require_torch, require_vision, slow, ) from .test_pipelines_common import ANY if is_vision_available(): from PIL import Image else: class _lowerCAmelCase: """simple docstring""" @staticmethod def _a ( *_lowerCamelCase , **_lowerCamelCase ): pass @is_pipeline_test @require_torch @require_vision class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : List[Any] =MODEL_FOR_VISUAL_QUESTION_ANSWERING_MAPPING def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = pipeline('visual-question-answering' , model='hf-internal-testing/tiny-vilt-random-vqa' ) UpperCamelCase_: Optional[Any] = [ { 'image': Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ), 'question': 'How many cats are there?', }, { 'image': './tests/fixtures/tests_samples/COCO/000000039769.png', 'question': 'How many cats are there?', }, ] return vqa_pipeline, examples def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = vqa_pipeline(_lowerCamelCase , top_k=1 ) self.assertEqual( _lowerCamelCase , [ [{'score': ANY(_lowerCamelCase ), 'answer': ANY(_lowerCamelCase )}], [{'score': ANY(_lowerCamelCase ), 'answer': ANY(_lowerCamelCase )}], ] , ) @require_torch def _a ( self ): UpperCamelCase_: Tuple = pipeline('visual-question-answering' , model='hf-internal-testing/tiny-vilt-random-vqa' ) UpperCamelCase_: Any = './tests/fixtures/tests_samples/COCO/000000039769.png' UpperCamelCase_: int = 'How many cats are there?' UpperCamelCase_: int = vqa_pipeline(image=_lowerCamelCase , question='How many cats are there?' , top_k=2 ) self.assertEqual( _lowerCamelCase , [{'score': ANY(_lowerCamelCase ), 'answer': ANY(_lowerCamelCase )}, {'score': ANY(_lowerCamelCase ), 'answer': ANY(_lowerCamelCase )}] ) UpperCamelCase_: Optional[Any] = vqa_pipeline({'image': image, 'question': question} , top_k=2 ) self.assertEqual( _lowerCamelCase , [{'score': ANY(_lowerCamelCase ), 'answer': ANY(_lowerCamelCase )}, {'score': ANY(_lowerCamelCase ), 'answer': ANY(_lowerCamelCase )}] ) @slow @require_torch def _a ( self ): UpperCamelCase_: Optional[Any] = pipeline('visual-question-answering' , model='dandelin/vilt-b32-finetuned-vqa' ) UpperCamelCase_: List[str] = './tests/fixtures/tests_samples/COCO/000000039769.png' UpperCamelCase_: str = 'How many cats are there?' UpperCamelCase_: Optional[Any] = vqa_pipeline(image=_lowerCamelCase , question=_lowerCamelCase , top_k=2 ) self.assertEqual( nested_simplify(_lowerCamelCase , decimals=4 ) , [{'score': 0.8_7_9_9, 'answer': '2'}, {'score': 0.2_9_6, 'answer': '1'}] ) UpperCamelCase_: Tuple = vqa_pipeline({'image': image, 'question': question} , top_k=2 ) self.assertEqual( nested_simplify(_lowerCamelCase , decimals=4 ) , [{'score': 0.8_7_9_9, 'answer': '2'}, {'score': 0.2_9_6, 'answer': '1'}] ) UpperCamelCase_: Optional[int] = vqa_pipeline( [{'image': image, 'question': question}, {'image': image, 'question': question}] , top_k=2 ) self.assertEqual( nested_simplify(_lowerCamelCase , decimals=4 ) , [[{'score': 0.8_7_9_9, 'answer': '2'}, {'score': 0.2_9_6, 'answer': '1'}]] * 2 , ) @require_tf @unittest.skip('Visual question answering not implemented in TF' ) def _a ( self ): pass
57
from dataclasses import dataclass from enum import Enum from typing import List, Optional, Union import numpy as np import PIL from PIL import Image from ...utils import BaseOutput, is_torch_available, is_transformers_available @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[List[PIL.Image.Image], np.ndarray] a : Optional[List[bool]] if is_transformers_available() and is_torch_available(): from .pipeline_semantic_stable_diffusion import SemanticStableDiffusionPipeline
57
1
# # This a `torch.distributed` diagnostics script that checks that all GPUs in the cluster (one or # many nodes) can talk to each other via nccl and allocate gpu memory. # # To run first adjust the number of processes and nodes: # # python -m torch.distributed.run --nproc_per_node 2 --nnodes 1 torch-distributed-gpu-test.py # # You may need to add --master_addr $MASTER_ADDR --master_port $MASTER_PORT if using a custom addr:port # # You can also use the rdzv API: --rdzv_endpoint $MASTER_ADDR:$MASTER_PORT --rdzv_backend c10d # # use torch.distributed.launch instead of torch.distributed.run for torch < 1.9 # # If you get a hanging in `barrier` calls you have some network issues, you may try to debug this with: # # NCCL_DEBUG=INFO python -m torch.distributed.run --nproc_per_node 2 --nnodes 1 torch-distributed-gpu-test.py # # which should tell you what's going on behind the scenes. # # # This script can be run via `srun` in the SLURM environment as well. Here is a SLURM script that # runs on 2 nodes of 4 gpus per node: # # #SBATCH --job-name=test-nodes # name # #SBATCH --nodes=2 # nodes # #SBATCH --ntasks-per-node=1 # crucial - only 1 task per dist per node! # #SBATCH --cpus-per-task=10 # number of cores per tasks # #SBATCH --gres=gpu:4 # number of gpus # #SBATCH --time 0:05:00 # maximum execution time (HH:MM:SS) # #SBATCH --output=%x-%j.out # output file name # # GPUS_PER_NODE=4 # MASTER_ADDR=$(scontrol show hostnames $SLURM_JOB_NODELIST | head -n 1) # MASTER_PORT=6000 # # srun --jobid $SLURM_JOBID bash -c 'python -m torch.distributed.run \ # --nproc_per_node $GPUS_PER_NODE --nnodes $SLURM_NNODES --node_rank $SLURM_PROCID \ # --master_addr $MASTER_ADDR --master_port $MASTER_PORT \ # torch-distributed-gpu-test.py' # import fcntl import os import socket import torch import torch.distributed as dist def snake_case (*UpperCAmelCase__ ) -> Dict: with open(UpperCAmelCase__ , 'r' ) as fh: fcntl.flock(UpperCAmelCase__ , fcntl.LOCK_EX ) try: print(*UpperCAmelCase__ ) finally: fcntl.flock(UpperCAmelCase__ , fcntl.LOCK_UN ) A_ : Dict = int(os.environ['LOCAL_RANK']) torch.cuda.set_device(local_rank) A_ : List[Any] = torch.device('cuda', local_rank) A_ : List[str] = socket.gethostname() A_ : List[str] = F'''[{hostname}-{local_rank}]''' try: # test distributed dist.init_process_group('nccl') dist.all_reduce(torch.ones(1).to(device), op=dist.ReduceOp.SUM) dist.barrier() # test cuda is available and can allocate memory torch.cuda.is_available() torch.ones(1).cuda(local_rank) # global rank A_ : Optional[Any] = dist.get_rank() A_ : Optional[Any] = dist.get_world_size() printflock(F'''{gpu} is OK (global rank: {rank}/{world_size})''') dist.barrier() if rank == 0: printflock(F'''pt={torch.__version__}, cuda={torch.version.cuda}, nccl={torch.cuda.nccl.version()}''') except Exception: printflock(F'''{gpu} is broken''') raise
57
import argparse import json import os import fairseq import torch from fairseq.data import Dictionary from transformers import ( WavaVecaConfig, WavaVecaCTCTokenizer, WavaVecaFeatureExtractor, WavaVecaForCTC, WavaVecaForPreTraining, WavaVecaProcessor, logging, ) from transformers.models.wavaveca.modeling_wavaveca import WavaVecaForSequenceClassification logging.set_verbosity_info() A_ : Tuple = logging.get_logger(__name__) A_ : Optional[int] = { 'post_extract_proj': 'feature_projection.projection', 'encoder.pos_conv.0': 'encoder.pos_conv_embed.conv', 'self_attn.k_proj': 'encoder.layers.*.attention.k_proj', 'self_attn.v_proj': 'encoder.layers.*.attention.v_proj', 'self_attn.q_proj': 'encoder.layers.*.attention.q_proj', 'self_attn.out_proj': 'encoder.layers.*.attention.out_proj', 'self_attn_layer_norm': 'encoder.layers.*.layer_norm', 'fc1': 'encoder.layers.*.feed_forward.intermediate_dense', 'fc2': 'encoder.layers.*.feed_forward.output_dense', 'final_layer_norm': 'encoder.layers.*.final_layer_norm', 'encoder.layer_norm': 'encoder.layer_norm', 'adapter_layer': 'encoder.layers.*.adapter_layer', 'w2v_model.layer_norm': 'feature_projection.layer_norm', 'quantizer.weight_proj': 'quantizer.weight_proj', 'quantizer.vars': 'quantizer.codevectors', 'project_q': 'project_q', 'final_proj': 'project_hid', 'w2v_encoder.proj': 'lm_head', 'mask_emb': 'masked_spec_embed', 'pooling_layer.linear': 'projector', 'pooling_layer.projection': 'classifier', } A_ : int = [ 'lm_head', 'quantizer.weight_proj', 'quantizer.codevectors', 'project_q', 'project_hid', 'projector', 'classifier', ] def snake_case (UpperCAmelCase__ ) -> str: UpperCamelCase_: Tuple = {} with open(UpperCAmelCase__ , 'r' ) as file: for line_number, line in enumerate(UpperCAmelCase__ ): UpperCamelCase_: List[Any] = line.strip() if line: UpperCamelCase_: List[Any] = line.split() UpperCamelCase_: Optional[Any] = line_number UpperCamelCase_: Any = words[0] UpperCamelCase_: List[Any] = value return result def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: for attribute in key.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Any = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: Dict = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: Optional[Any] = getattr(UpperCAmelCase__ , UpperCAmelCase__ ).shape elif weight_type is not None and weight_type == "param": UpperCamelCase_: Optional[Any] = hf_pointer for attribute in hf_param_name.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Tuple = shape_pointer.shape # let's reduce dimension UpperCamelCase_: int = value[0] else: UpperCamelCase_: Union[str, Any] = hf_pointer.shape if hf_shape != value.shape: raise ValueError( F'''Shape of hf {key + '.' + weight_type if weight_type is not None else ''} is {hf_shape}, but should be''' F''' {value.shape} for {full_name}''' ) if weight_type == "weight": UpperCamelCase_: Optional[int] = value elif weight_type == "weight_g": UpperCamelCase_: Any = value elif weight_type == "weight_v": UpperCamelCase_: Union[str, Any] = value elif weight_type == "bias": UpperCamelCase_: Union[str, Any] = value elif weight_type == "param": for attribute in hf_param_name.split('.' ): UpperCamelCase_: Dict = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = value else: UpperCamelCase_: int = value logger.info(F'''{key + '.' + weight_type if weight_type is not None else ''} was initialized from {full_name}.''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Union[str, Any] = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Dict = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: List[Any] = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: List[Any] = '.'.join([key, weight_type] ) elif weight_type is not None and weight_type == "param": UpperCamelCase_: Any = '.'.join([key, hf_param_name] ) else: UpperCamelCase_: Union[str, Any] = key UpperCamelCase_: Any = value if 'lm_head' in full_key else value[0] A_ : str = { 'W_a': 'linear_1.weight', 'W_b': 'linear_2.weight', 'b_a': 'linear_1.bias', 'b_b': 'linear_2.bias', 'ln_W': 'norm.weight', 'ln_b': 'norm.bias', } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None ) -> Any: UpperCamelCase_: Optional[int] = False for key, mapped_key in MAPPING.items(): UpperCamelCase_: Tuple = 'wav2vec2.' + mapped_key if mapped_key not in TOP_LEVEL_KEYS else mapped_key if key in name or key.split('w2v_model.' )[-1] == name.split('.' )[0]: UpperCamelCase_: Optional[Any] = True if "*" in mapped_key: UpperCamelCase_: Optional[int] = name.split(UpperCAmelCase__ )[0].split('.' )[-2] UpperCamelCase_: Any = mapped_key.replace('*' , UpperCAmelCase__ ) if "weight_g" in name: UpperCamelCase_: Union[str, Any] = 'weight_g' elif "weight_v" in name: UpperCamelCase_: Dict = 'weight_v' elif "bias" in name: UpperCamelCase_: int = 'bias' elif "weight" in name: # TODO: don't match quantizer.weight_proj UpperCamelCase_: str = 'weight' else: UpperCamelCase_: Union[str, Any] = None if hf_dict is not None: rename_dict(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) else: set_recursively(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) return is_used return is_used def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: List[Any] = [] UpperCamelCase_: Dict = fairseq_model.state_dict() UpperCamelCase_: Optional[Any] = hf_model.wavaveca.feature_extractor for name, value in fairseq_dict.items(): UpperCamelCase_: Union[str, Any] = False if "conv_layers" in name: load_conv_layer( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , hf_model.config.feat_extract_norm == 'group' , ) UpperCamelCase_: List[Any] = True else: UpperCamelCase_: Tuple = load_wavaveca_layer(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) if not is_used: unused_weights.append(UpperCAmelCase__ ) logger.warning(F'''Unused weights: {unused_weights}''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Any = full_name.split('conv_layers.' )[-1] UpperCamelCase_: int = name.split('.' ) UpperCamelCase_: int = int(items[0] ) UpperCamelCase_: Union[str, Any] = int(items[1] ) if type_id == 0: if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) UpperCamelCase_: int = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif (type_id == 2 and not use_group_norm) or (type_id == 2 and layer_id == 0 and use_group_norm): if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape} was found.''' ) UpperCamelCase_: List[Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(UpperCAmelCase__ ) @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=True , UpperCAmelCase__=False ) -> Dict: if config_path is not None: UpperCamelCase_: Tuple = WavaVecaConfig.from_pretrained(UpperCAmelCase__ ) else: UpperCamelCase_: List[str] = WavaVecaConfig() if is_seq_class: UpperCamelCase_: int = read_txt_into_dict(UpperCAmelCase__ ) UpperCamelCase_: Tuple = idalabel UpperCamelCase_: str = WavaVecaForSequenceClassification(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) feature_extractor.save_pretrained(UpperCAmelCase__ ) elif is_finetuned: if dict_path: UpperCamelCase_: List[Any] = Dictionary.load(UpperCAmelCase__ ) # important change bos & pad token id since CTC symbol is <pad> and # not <s> as in fairseq UpperCamelCase_: Dict = target_dict.pad_index UpperCamelCase_: Tuple = target_dict.bos_index UpperCamelCase_: Optional[Any] = target_dict.eos_index UpperCamelCase_: Union[str, Any] = len(target_dict.symbols ) UpperCamelCase_: int = os.path.join(UpperCAmelCase__ , 'vocab.json' ) if not os.path.isdir(UpperCAmelCase__ ): logger.error('--pytorch_dump_folder_path ({}) should be a directory'.format(UpperCAmelCase__ ) ) return os.makedirs(UpperCAmelCase__ , exist_ok=UpperCAmelCase__ ) UpperCamelCase_: str = target_dict.indices # fairseq has the <pad> and <s> switched UpperCamelCase_: List[str] = 0 UpperCamelCase_: List[Any] = 1 with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as vocab_handle: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = WavaVecaCTCTokenizer( UpperCAmelCase__ , unk_token=target_dict.unk_word , pad_token=target_dict.pad_word , bos_token=target_dict.bos_word , eos_token=target_dict.eos_word , word_delimiter_token='|' , do_lower_case=UpperCAmelCase__ , ) UpperCamelCase_: Any = True if config.feat_extract_norm == 'layer' else False UpperCamelCase_: Tuple = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) UpperCamelCase_: Dict = WavaVecaProcessor(feature_extractor=UpperCAmelCase__ , tokenizer=UpperCAmelCase__ ) processor.save_pretrained(UpperCAmelCase__ ) UpperCamelCase_: Any = WavaVecaForCTC(UpperCAmelCase__ ) else: UpperCamelCase_: Any = WavaVecaForPreTraining(UpperCAmelCase__ ) if is_finetuned or is_seq_class: UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Dict = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path] , arg_overrides={'data': '/'.join(dict_path.split('/' )[:-1] )} ) else: UpperCamelCase_: List[str] = argparse.Namespace(task='audio_pretraining' ) UpperCamelCase_: Any = fairseq.tasks.setup_task(UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = fairseq.checkpoint_utils.load_model_ensemble_and_task([checkpoint_path] , task=UpperCAmelCase__ ) UpperCamelCase_: str = model[0].eval() recursively_load_weights(UpperCAmelCase__ , UpperCAmelCase__ , not is_finetuned ) hf_wavavec.save_pretrained(UpperCAmelCase__ ) if __name__ == "__main__": A_ : str = argparse.ArgumentParser() parser.add_argument('--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model.') parser.add_argument('--checkpoint_path', default=None, type=str, help='Path to fairseq checkpoint') parser.add_argument('--dict_path', default=None, type=str, help='Path to dict of fine-tuned model') parser.add_argument('--config_path', default=None, type=str, help='Path to hf config.json of model to convert') parser.add_argument( '--not_finetuned', action='store_true', help='Whether the model to convert is a fine-tuned model or not' ) parser.add_argument( '--is_seq_class', action='store_true', help='Whether the model to convert is a fine-tuned sequence classification model or not', ) A_ : int = parser.parse_args() A_ : str = not args.not_finetuned and not args.is_seq_class convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.config_path, args.dict_path, is_finetuned, args.is_seq_class, )
57
1
import math from collections.abc import Iterator from itertools import takewhile def snake_case (UpperCAmelCase__ ) -> bool: if 1 < number < 4: # 2 and 3 are primes return True elif number < 2 or number % 2 == 0 or number % 3 == 0: # Negatives, 0, 1, all even numbers, all multiples of 3 are not primes return False # All primes number are in format of 6k +/- 1 for i in range(5 , int(math.sqrt(UpperCAmelCase__ ) + 1 ) , 6 ): if number % i == 0 or number % (i + 2) == 0: return False return True def snake_case () -> Iterator[int]: UpperCamelCase_: Optional[int] = 2 while True: if is_prime(UpperCAmelCase__ ): yield num num += 1 def snake_case (UpperCAmelCase__ = 2_0_0_0_0_0_0 ) -> int: return sum(takewhile(lambda UpperCAmelCase__ : x < n , prime_generator() ) ) if __name__ == "__main__": print(F'''{solution() = }''')
57
import inspect import os import unittest import torch import accelerate from accelerate import debug_launcher from accelerate.test_utils import ( execute_subprocess_async, require_cpu, require_huggingface_suite, require_multi_gpu, require_single_gpu, ) from accelerate.utils import patch_environment @require_huggingface_suite class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Optional[int] = inspect.getfile(accelerate.test_utils ) UpperCamelCase_: Dict = os.path.sep.join( mod_file.split(os.path.sep )[:-1] + ['scripts', 'external_deps', 'test_metrics.py'] ) from accelerate.test_utils.scripts.external_deps import test_metrics # noqa: F401 UpperCamelCase_: Tuple = test_metrics @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main , num_processes=1 ) @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main ) @require_single_gpu def _a ( self ): self.test_metrics.main() @require_multi_gpu def _a ( self ): print(f'''Found {torch.cuda.device_count()} devices.''' ) UpperCamelCase_: List[Any] = ['torchrun', f'''--nproc_per_node={torch.cuda.device_count()}''', self.test_file_path] with patch_environment(omp_num_threads=1 ): execute_subprocess_async(_lowerCamelCase , env=os.environ.copy() )
57
1
import argparse import json import os from collections import OrderedDict import torch from transformers import LukeConfig, LukeForMaskedLM, MLukeTokenizer, XLMRobertaTokenizer from transformers.tokenization_utils_base import AddedToken @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> int: # Load configuration defined in the metadata file with open(UpperCAmelCase__ ) as metadata_file: UpperCamelCase_: Tuple = json.load(UpperCAmelCase__ ) UpperCamelCase_: List[str] = LukeConfig(use_entity_aware_attention=UpperCAmelCase__ , **metadata['model_config'] ) # Load in the weights from the checkpoint_path UpperCamelCase_: Optional[int] = torch.load(UpperCAmelCase__ , map_location='cpu' )['module'] # Load the entity vocab file UpperCamelCase_: Any = load_original_entity_vocab(UpperCAmelCase__ ) # add an entry for [MASK2] UpperCamelCase_: List[str] = max(entity_vocab.values() ) + 1 config.entity_vocab_size += 1 UpperCamelCase_: Union[str, Any] = XLMRobertaTokenizer.from_pretrained(metadata['model_config']['bert_model_name'] ) # Add special tokens to the token vocabulary for downstream tasks UpperCamelCase_: Any = AddedToken('<ent>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = AddedToken('<ent2>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) tokenizer.add_special_tokens({'additional_special_tokens': [entity_token_a, entity_token_a]} ) config.vocab_size += 2 print(F'''Saving tokenizer to {pytorch_dump_folder_path}''' ) tokenizer.save_pretrained(UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'r' ) as f: UpperCamelCase_: Union[str, Any] = json.load(UpperCAmelCase__ ) UpperCamelCase_: str = 'MLukeTokenizer' with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , MLukeTokenizer.vocab_files_names['entity_vocab_file'] ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) # Initialize the embeddings of the special tokens UpperCamelCase_: Any = tokenizer.convert_tokens_to_ids(['@'] )[0] UpperCamelCase_: List[str] = tokenizer.convert_tokens_to_ids(['#'] )[0] UpperCamelCase_: Tuple = state_dict['embeddings.word_embeddings.weight'] UpperCamelCase_: int = word_emb[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = word_emb[enta_init_index].unsqueeze(0 ) UpperCamelCase_: str = torch.cat([word_emb, ent_emb, enta_emb] ) # add special tokens for 'entity_predictions.bias' for bias_name in ["lm_head.decoder.bias", "lm_head.bias"]: UpperCamelCase_: Union[str, Any] = state_dict[bias_name] UpperCamelCase_: Tuple = decoder_bias[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = decoder_bias[enta_init_index].unsqueeze(0 ) UpperCamelCase_: Optional[Any] = torch.cat([decoder_bias, ent_decoder_bias, enta_decoder_bias] ) # Initialize the query layers of the entity-aware self-attention mechanism for layer_index in range(config.num_hidden_layers ): for matrix_name in ["query.weight", "query.bias"]: UpperCamelCase_: List[Any] = F'''encoder.layer.{layer_index}.attention.self.''' UpperCamelCase_: str = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] # Initialize the embedding of the [MASK2] entity using that of the [MASK] entity for downstream tasks UpperCamelCase_: List[str] = state_dict['entity_embeddings.entity_embeddings.weight'] UpperCamelCase_: int = entity_emb[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: Tuple = torch.cat([entity_emb, entity_mask_emb] ) # add [MASK2] for 'entity_predictions.bias' UpperCamelCase_: Optional[Any] = state_dict['entity_predictions.bias'] UpperCamelCase_: List[str] = entity_prediction_bias[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: List[Any] = torch.cat([entity_prediction_bias, entity_mask_bias] ) UpperCamelCase_: List[Any] = LukeForMaskedLM(config=UpperCAmelCase__ ).eval() state_dict.pop('entity_predictions.decoder.weight' ) state_dict.pop('lm_head.decoder.weight' ) state_dict.pop('lm_head.decoder.bias' ) UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if not (key.startswith('lm_head' ) or key.startswith('entity_predictions' )): UpperCamelCase_: Union[str, Any] = state_dict[key] else: UpperCamelCase_: Dict = state_dict[key] UpperCamelCase_ ,UpperCamelCase_: Optional[int] = model.load_state_dict(UpperCAmelCase__ , strict=UpperCAmelCase__ ) if set(UpperCAmelCase__ ) != {"luke.embeddings.position_ids"}: raise ValueError(F'''Unexpected unexpected_keys: {unexpected_keys}''' ) if set(UpperCAmelCase__ ) != { "lm_head.decoder.weight", "lm_head.decoder.bias", "entity_predictions.decoder.weight", }: raise ValueError(F'''Unexpected missing_keys: {missing_keys}''' ) model.tie_weights() assert (model.luke.embeddings.word_embeddings.weight == model.lm_head.decoder.weight).all() assert (model.luke.entity_embeddings.entity_embeddings.weight == model.entity_predictions.decoder.weight).all() # Check outputs UpperCamelCase_: Optional[int] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ , task='entity_classification' ) UpperCamelCase_: Tuple = 'ISO 639-3 uses the code fas for the dialects spoken across Iran and アフガニスタン (Afghanistan).' UpperCamelCase_: Optional[int] = (0, 9) UpperCamelCase_: Union[str, Any] = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: str = model(**UpperCAmelCase__ ) # Verify word hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: int = torch.Size((1, 3_3, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[0.0892, 0.0596, -0.2819], [0.0134, 0.1199, 0.0573], [-0.0169, 0.0927, 0.0644]] ) if not (outputs.last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.last_hidden_state.shape is {outputs.last_hidden_state.shape}, Expected shape is {expected_shape}''' ) if not torch.allclose(outputs.last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify entity hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: Dict = torch.Size((1, 1, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[-0.1482, 0.0609, 0.0322]] ) if not (outputs.entity_last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.entity_last_hidden_state.shape is {outputs.entity_last_hidden_state.shape}, Expected shape is''' F''' {expected_shape}''' ) if not torch.allclose(outputs.entity_last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify masked word/entity prediction UpperCamelCase_: str = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = 'Tokyo is the capital of <mask>.' UpperCamelCase_: Dict = (2_4, 3_0) UpperCamelCase_: int = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: Dict = model(**UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = encoding['input_ids'][0].tolist() UpperCamelCase_: List[Any] = input_ids.index(tokenizer.convert_tokens_to_ids('<mask>' ) ) UpperCamelCase_: Any = outputs.logits[0][mask_position_id].argmax(dim=-1 ) assert "Japan" == tokenizer.decode(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.entity_logits[0][0].argmax().item() UpperCamelCase_: Optional[Any] = [ entity for entity, entity_id in tokenizer.entity_vocab.items() if entity_id == predicted_entity_id ] assert [e for e in multilingual_predicted_entities if e.startswith('en:' )][0] == "en:Japan" # Finally, save our PyTorch model and tokenizer print('Saving PyTorch model to {}'.format(UpperCAmelCase__ ) ) model.save_pretrained(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: Optional[Any] = ['[MASK]', '[PAD]', '[UNK]'] UpperCamelCase_: Any = [json.loads(UpperCAmelCase__ ) for line in open(UpperCAmelCase__ )] UpperCamelCase_: Tuple = {} for entry in data: UpperCamelCase_: Optional[int] = entry['id'] for entity_name, language in entry["entities"]: if entity_name in SPECIAL_TOKENS: UpperCamelCase_: Union[str, Any] = entity_id break UpperCamelCase_: Dict = F'''{language}:{entity_name}''' UpperCamelCase_: Optional[int] = entity_id return new_mapping if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument('--checkpoint_path', type=str, help='Path to a pytorch_model.bin file.') parser.add_argument( '--metadata_path', default=None, type=str, help='Path to a metadata.json file, defining the configuration.' ) parser.add_argument( '--entity_vocab_path', default=None, type=str, help='Path to an entity_vocab.tsv file, containing the entity vocabulary.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to where to dump the output PyTorch model.' ) parser.add_argument( '--model_size', default='base', type=str, choices=['base', 'large'], help='Size of the model to be converted.' ) A_ : List[str] = parser.parse_args() convert_luke_checkpoint( args.checkpoint_path, args.metadata_path, args.entity_vocab_path, args.pytorch_dump_folder_path, args.model_size, )
57
import math class _lowerCAmelCase: """simple docstring""" def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: int = 0.0 UpperCamelCase_: Tuple = 0.0 for i in range(len(_lowerCamelCase ) ): da += math.pow((sample[i] - weights[0][i]) , 2 ) da += math.pow((sample[i] - weights[1][i]) , 2 ) return 0 if da > da else 1 return 0 def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): for i in range(len(_lowerCamelCase ) ): weights[j][i] += alpha * (sample[i] - weights[j][i]) return weights def snake_case () -> None: # Training Examples ( m, n ) UpperCamelCase_: List[str] = [[1, 1, 0, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 0, 1, 1]] # weight initialization ( n, C ) UpperCamelCase_: List[Any] = [[0.2, 0.6, 0.5, 0.9], [0.8, 0.4, 0.7, 0.3]] # training UpperCamelCase_: Dict = SelfOrganizingMap() UpperCamelCase_: List[Any] = 3 UpperCamelCase_: List[str] = 0.5 for _ in range(UpperCAmelCase__ ): for j in range(len(UpperCAmelCase__ ) ): # training sample UpperCamelCase_: int = training_samples[j] # Compute the winning vector UpperCamelCase_: Tuple = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # Update the winning vector UpperCamelCase_: Union[str, Any] = self_organizing_map.update(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # classify test sample UpperCamelCase_: Dict = [0, 0, 0, 1] UpperCamelCase_: Union[str, Any] = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # results print(F'''Clusters that the test sample belongs to : {winner}''' ) print(F'''Weights that have been trained : {weights}''' ) # running the main() function if __name__ == "__main__": main()
57
1
from dataclasses import dataclass from enum import Enum from typing import List, Optional, Union import numpy as np import PIL from PIL import Image from ...utils import BaseOutput, is_torch_available, is_transformers_available @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[List[PIL.Image.Image], np.ndarray] a : Optional[List[bool]] if is_transformers_available() and is_torch_available(): from .pipeline_semantic_stable_diffusion import SemanticStableDiffusionPipeline
57
from collections import namedtuple A_ : Tuple = namedtuple('from_to', 'from_ to') A_ : int = { 'cubicmeter': from_to(1, 1), 'litre': from_to(0.001, 1000), 'kilolitre': from_to(1, 1), 'gallon': from_to(0.00454, 264.172), 'cubicyard': from_to(0.76455, 1.30795), 'cubicfoot': from_to(0.028, 35.3147), 'cup': from_to(0.000236588, 4226.75), } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> float: if from_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'from_type\' value: {from_type!r} Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) if to_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'to_type\' value: {to_type!r}. Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) return value * METRIC_CONVERSION[from_type].from_ * METRIC_CONVERSION[to_type].to if __name__ == "__main__": import doctest doctest.testmod()
57
1
import math class _lowerCAmelCase: """simple docstring""" def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: int = 0.0 UpperCamelCase_: Tuple = 0.0 for i in range(len(_lowerCamelCase ) ): da += math.pow((sample[i] - weights[0][i]) , 2 ) da += math.pow((sample[i] - weights[1][i]) , 2 ) return 0 if da > da else 1 return 0 def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): for i in range(len(_lowerCamelCase ) ): weights[j][i] += alpha * (sample[i] - weights[j][i]) return weights def snake_case () -> None: # Training Examples ( m, n ) UpperCamelCase_: List[str] = [[1, 1, 0, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 0, 1, 1]] # weight initialization ( n, C ) UpperCamelCase_: List[Any] = [[0.2, 0.6, 0.5, 0.9], [0.8, 0.4, 0.7, 0.3]] # training UpperCamelCase_: Dict = SelfOrganizingMap() UpperCamelCase_: List[Any] = 3 UpperCamelCase_: List[str] = 0.5 for _ in range(UpperCAmelCase__ ): for j in range(len(UpperCAmelCase__ ) ): # training sample UpperCamelCase_: int = training_samples[j] # Compute the winning vector UpperCamelCase_: Tuple = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # Update the winning vector UpperCamelCase_: Union[str, Any] = self_organizing_map.update(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # classify test sample UpperCamelCase_: Dict = [0, 0, 0, 1] UpperCamelCase_: Union[str, Any] = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # results print(F'''Clusters that the test sample belongs to : {winner}''' ) print(F'''Weights that have been trained : {weights}''' ) # running the main() function if __name__ == "__main__": main()
57
import warnings from ...utils import logging from .image_processing_clip import CLIPImageProcessor A_ : int = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , *_lowerCamelCase , **_lowerCamelCase ): warnings.warn( 'The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use CLIPImageProcessor instead.' , _lowerCamelCase , ) super().__init__(*_lowerCamelCase , **_lowerCamelCase )
57
1
def snake_case (UpperCAmelCase__ ) -> list: if len(UpperCAmelCase__ ) < 2: return collection def circle_sort_util(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> bool: UpperCamelCase_: List[Any] = False if low == high: return swapped UpperCamelCase_: Optional[Any] = low UpperCamelCase_: str = high while left < right: if collection[left] > collection[right]: UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = ( collection[right], collection[left], ) UpperCamelCase_: Any = True left += 1 right -= 1 if left == right and collection[left] > collection[right + 1]: UpperCamelCase_ ,UpperCamelCase_: int = ( collection[right + 1], collection[left], ) UpperCamelCase_: Dict = True UpperCamelCase_: Optional[int] = low + int((high - low) / 2 ) UpperCamelCase_: Optional[int] = circle_sort_util(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[str] = circle_sort_util(UpperCAmelCase__ , mid + 1 , UpperCAmelCase__ ) return swapped or left_swap or right_swap UpperCamelCase_: List[Any] = True while is_not_sorted is True: UpperCamelCase_: Union[str, Any] = circle_sort_util(UpperCAmelCase__ , 0 , len(UpperCAmelCase__ ) - 1 ) return collection if __name__ == "__main__": A_ : Any = input('Enter numbers separated by a comma:\n').strip() A_ : Tuple = [int(item) for item in user_input.split(',')] print(circle_sort(unsorted))
57
import math from typing import Any, Callable, List, Optional, Tuple, Union import numpy as np import torch from ...models import TaFilmDecoder from ...schedulers import DDPMScheduler from ...utils import is_onnx_available, logging, randn_tensor if is_onnx_available(): from ..onnx_utils import OnnxRuntimeModel from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline from .continous_encoder import SpectrogramContEncoder from .notes_encoder import SpectrogramNotesEncoder A_ : List[Any] = logging.get_logger(__name__) # pylint: disable=invalid-name A_ : Optional[int] = 256 class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[str, Any] =['''melgan'''] def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , ): super().__init__() # From MELGAN UpperCamelCase_: Any = math.log(1e-5 ) # Matches MelGAN training. UpperCamelCase_: List[Any] = 4.0 # Largest value for most examples UpperCamelCase_: Tuple = 1_2_8 self.register_modules( notes_encoder=_lowerCamelCase , continuous_encoder=_lowerCamelCase , decoder=_lowerCamelCase , scheduler=_lowerCamelCase , melgan=_lowerCamelCase , ) def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = output_range if clip: UpperCamelCase_: int = torch.clip(_lowerCamelCase , self.min_value , self.max_value ) # Scale to [0, 1]. UpperCamelCase_: List[Any] = (features - self.min_value) / (self.max_value - self.min_value) # Scale to [min_out, max_out]. return zero_one * (max_out - min_out) + min_out def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Dict = input_range UpperCamelCase_: List[str] = torch.clip(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if clip else outputs # Scale to [0, 1]. UpperCamelCase_: Optional[Any] = (outputs - min_out) / (max_out - min_out) # Scale to [self.min_value, self.max_value]. return zero_one * (self.max_value - self.min_value) + self.min_value def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = input_tokens > 0 UpperCamelCase_ ,UpperCamelCase_: Tuple = self.notes_encoder( encoder_input_tokens=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: Any = self.continuous_encoder( encoder_inputs=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) return [(tokens_encoded, tokens_mask), (continuous_encoded, continuous_mask)] def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = noise_time if not torch.is_tensor(_lowerCamelCase ): UpperCamelCase_: List[str] = torch.tensor([timesteps] , dtype=torch.long , device=input_tokens.device ) elif torch.is_tensor(_lowerCamelCase ) and len(timesteps.shape ) == 0: UpperCamelCase_: Dict = timesteps[None].to(input_tokens.device ) # broadcast to batch dimension in a way that's compatible with ONNX/Core ML UpperCamelCase_: Union[str, Any] = timesteps * torch.ones(input_tokens.shape[0] , dtype=timesteps.dtype , device=timesteps.device ) UpperCamelCase_: Any = self.decoder( encodings_and_masks=_lowerCamelCase , decoder_input_tokens=_lowerCamelCase , decoder_noise_time=_lowerCamelCase ) return logits @torch.no_grad() def __call__( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = 1_0_0 , _lowerCamelCase = True , _lowerCamelCase = "numpy" , _lowerCamelCase = None , _lowerCamelCase = 1 , ): if (callback_steps is None) or ( callback_steps is not None and (not isinstance(_lowerCamelCase , _lowerCamelCase ) or callback_steps <= 0) ): raise ValueError( f'''`callback_steps` has to be a positive integer but is {callback_steps} of type''' f''' {type(_lowerCamelCase )}.''' ) UpperCamelCase_: List[str] = np.zeros([1, TARGET_FEATURE_LENGTH, self.n_dims] , dtype=np.floataa ) UpperCamelCase_: str = np.zeros([1, 0, self.n_dims] , np.floataa ) UpperCamelCase_: Dict = torch.ones((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) for i, encoder_input_tokens in enumerate(_lowerCamelCase ): if i == 0: UpperCamelCase_: str = torch.from_numpy(pred_mel[:1].copy() ).to( device=self.device , dtype=self.decoder.dtype ) # The first chunk has no previous context. UpperCamelCase_: Tuple = torch.zeros((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) else: # The full song pipeline does not feed in a context feature, so the mask # will be all 0s after the feature converter. Because we know we're # feeding in a full context chunk from the previous prediction, set it # to all 1s. UpperCamelCase_: Any = ones UpperCamelCase_: str = self.scale_features( _lowerCamelCase , output_range=[-1.0, 1.0] , clip=_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.encode( input_tokens=torch.IntTensor([encoder_input_tokens] ).to(device=self.device ) , continuous_inputs=_lowerCamelCase , continuous_mask=_lowerCamelCase , ) # Sample encoder_continuous_inputs shaped gaussian noise to begin loop UpperCamelCase_: List[str] = randn_tensor( shape=encoder_continuous_inputs.shape , generator=_lowerCamelCase , device=self.device , dtype=self.decoder.dtype , ) # set step values self.scheduler.set_timesteps(_lowerCamelCase ) # Denoising diffusion loop for j, t in enumerate(self.progress_bar(self.scheduler.timesteps ) ): UpperCamelCase_: int = self.decode( encodings_and_masks=_lowerCamelCase , input_tokens=_lowerCamelCase , noise_time=t / self.scheduler.config.num_train_timesteps , ) # Compute previous output: x_t -> x_t-1 UpperCamelCase_: Tuple = self.scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample UpperCamelCase_: List[Any] = self.scale_to_features(_lowerCamelCase , input_range=[-1.0, 1.0] ) UpperCamelCase_: Any = mel[:1] UpperCamelCase_: List[str] = mel.cpu().float().numpy() UpperCamelCase_: Tuple = np.concatenate([full_pred_mel, pred_mel[:1]] , axis=1 ) # call the callback, if provided if callback is not None and i % callback_steps == 0: callback(_lowerCamelCase , _lowerCamelCase ) logger.info('Generated segment' , _lowerCamelCase ) if output_type == "numpy" and not is_onnx_available(): raise ValueError( 'Cannot return output in \'np\' format if ONNX is not available. Make sure to have ONNX installed or set \'output_type\' to \'mel\'.' ) elif output_type == "numpy" and self.melgan is None: raise ValueError( 'Cannot return output in \'np\' format if melgan component is not defined. Make sure to define `self.melgan` or set \'output_type\' to \'mel\'.' ) if output_type == "numpy": UpperCamelCase_: int = self.melgan(input_features=full_pred_mel.astype(np.floataa ) ) else: UpperCamelCase_: int = full_pred_mel if not return_dict: return (output,) return AudioPipelineOutput(audios=_lowerCamelCase )
57
1
import json import os import unittest from transformers.models.ctrl.tokenization_ctrl import VOCAB_FILES_NAMES, CTRLTokenizer from ...test_tokenization_common import TokenizerTesterMixin class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =CTRLTokenizer a : Tuple =False a : Any =False def _a ( self ): super().setUp() # Adapted from Sennrich et al. 2015 and https://github.com/rsennrich/subword-nmt UpperCamelCase_: Any = ['adapt', 're@@', 'a@@', 'apt', 'c@@', 't', '<unk>'] UpperCamelCase_: str = dict(zip(_lowerCamelCase , range(len(_lowerCamelCase ) ) ) ) UpperCamelCase_: Union[str, Any] = ['#version: 0.2', 'a p', 'ap t</w>', 'r e', 'a d', 'ad apt</w>', ''] UpperCamelCase_: Any = {'unk_token': '<unk>'} UpperCamelCase_: Tuple = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['vocab_file'] ) UpperCamelCase_: Optional[int] = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['merges_file'] ) with open(self.vocab_file , 'w' , encoding='utf-8' ) as fp: fp.write(json.dumps(_lowerCamelCase ) + '\n' ) with open(self.merges_file , 'w' , encoding='utf-8' ) as fp: fp.write('\n'.join(_lowerCamelCase ) ) def _a ( self , **_lowerCamelCase ): kwargs.update(self.special_tokens_map ) return CTRLTokenizer.from_pretrained(self.tmpdirname , **_lowerCamelCase ) def _a ( self , _lowerCamelCase ): UpperCamelCase_: Dict = 'adapt react readapt apt' UpperCamelCase_: int = 'adapt react readapt apt' return input_text, output_text def _a ( self ): UpperCamelCase_: Any = CTRLTokenizer(self.vocab_file , self.merges_file , **self.special_tokens_map ) UpperCamelCase_: Optional[Any] = 'adapt react readapt apt' UpperCamelCase_: Union[str, Any] = 'adapt re@@ a@@ c@@ t re@@ adapt apt'.split() UpperCamelCase_: Any = tokenizer.tokenize(_lowerCamelCase ) self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Any = tokens + [tokenizer.unk_token] UpperCamelCase_: Any = [0, 1, 2, 4, 5, 1, 0, 3, 6] self.assertListEqual(tokenizer.convert_tokens_to_ids(_lowerCamelCase ) , _lowerCamelCase )
57
import itertools from dataclasses import dataclass from typing import Any, Callable, Dict, List, Optional, Union import pandas as pd import pyarrow as pa import datasets import datasets.config from datasets.features.features import require_storage_cast from datasets.table import table_cast from datasets.utils.py_utils import Literal A_ : Union[str, Any] = datasets.utils.logging.get_logger(__name__) A_ : Optional[Any] = ['names', 'prefix'] A_ : List[str] = ['warn_bad_lines', 'error_bad_lines', 'mangle_dupe_cols'] A_ : List[Any] = ['encoding_errors', 'on_bad_lines'] A_ : Optional[Any] = ['date_format'] @dataclass class _lowerCAmelCase( datasets.BuilderConfig ): """simple docstring""" a : str ="," a : Optional[str] =None a : Optional[Union[int, List[int], str]] ="infer" a : Optional[List[str]] =None a : Optional[List[str]] =None a : Optional[Union[int, str, List[int], List[str]]] =None a : Optional[Union[List[int], List[str]]] =None a : Optional[str] =None a : bool =True a : Optional[Literal["c", "python", "pyarrow"]] =None a : Dict[Union[int, str], Callable[[Any], Any]] =None a : Optional[list] =None a : Optional[list] =None a : bool =False a : Optional[Union[int, List[int]]] =None a : Optional[int] =None a : Optional[Union[str, List[str]]] =None a : bool =True a : bool =True a : bool =False a : bool =True a : Optional[str] =None a : str ="." a : Optional[str] =None a : str ='"' a : int =0 a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : bool =True a : bool =True a : int =0 a : bool =True a : bool =False a : Optional[str] =None a : int =10000 a : Optional[datasets.Features] =None a : Optional[str] ="strict" a : Literal["error", "warn", "skip"] ="error" a : Optional[str] =None def _a ( self ): if self.delimiter is not None: UpperCamelCase_: Optional[Any] = self.delimiter if self.column_names is not None: UpperCamelCase_: int = self.column_names @property def _a ( self ): UpperCamelCase_: Any = { 'sep': self.sep, 'header': self.header, 'names': self.names, 'index_col': self.index_col, 'usecols': self.usecols, 'prefix': self.prefix, 'mangle_dupe_cols': self.mangle_dupe_cols, 'engine': self.engine, 'converters': self.converters, 'true_values': self.true_values, 'false_values': self.false_values, 'skipinitialspace': self.skipinitialspace, 'skiprows': self.skiprows, 'nrows': self.nrows, 'na_values': self.na_values, 'keep_default_na': self.keep_default_na, 'na_filter': self.na_filter, 'verbose': self.verbose, 'skip_blank_lines': self.skip_blank_lines, 'thousands': self.thousands, 'decimal': self.decimal, 'lineterminator': self.lineterminator, 'quotechar': self.quotechar, 'quoting': self.quoting, 'escapechar': self.escapechar, 'comment': self.comment, 'encoding': self.encoding, 'dialect': self.dialect, 'error_bad_lines': self.error_bad_lines, 'warn_bad_lines': self.warn_bad_lines, 'skipfooter': self.skipfooter, 'doublequote': self.doublequote, 'memory_map': self.memory_map, 'float_precision': self.float_precision, 'chunksize': self.chunksize, 'encoding_errors': self.encoding_errors, 'on_bad_lines': self.on_bad_lines, 'date_format': self.date_format, } # some kwargs must not be passed if they don't have a default value # some others are deprecated and we can also not pass them if they are the default value for pd_read_csv_parameter in _PANDAS_READ_CSV_NO_DEFAULT_PARAMETERS + _PANDAS_READ_CSV_DEPRECATED_PARAMETERS: if pd_read_csv_kwargs[pd_read_csv_parameter] == getattr(CsvConfig() , _lowerCamelCase ): del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 2.0 new arguments if not (datasets.config.PANDAS_VERSION.major >= 2): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_2_0_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 1.3 new arguments if not (datasets.config.PANDAS_VERSION.major >= 1 and datasets.config.PANDAS_VERSION.minor >= 3): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_1_3_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] return pd_read_csv_kwargs class _lowerCAmelCase( datasets.ArrowBasedBuilder ): """simple docstring""" a : Dict =CsvConfig def _a ( self ): return datasets.DatasetInfo(features=self.config.features ) def _a ( self , _lowerCamelCase ): if not self.config.data_files: raise ValueError(f'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) UpperCamelCase_: Tuple = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_lowerCamelCase , (str, list, tuple) ): UpperCamelCase_: List[Any] = data_files if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = [files] UpperCamelCase_: Tuple = [dl_manager.iter_files(_lowerCamelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] UpperCamelCase_: Tuple = [] for split_name, files in data_files.items(): if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = [files] UpperCamelCase_: int = [dl_manager.iter_files(_lowerCamelCase ) for file in files] splits.append(datasets.SplitGenerator(name=_lowerCamelCase , gen_kwargs={'files': files} ) ) return splits def _a ( self , _lowerCamelCase ): if self.config.features is not None: UpperCamelCase_: List[Any] = self.config.features.arrow_schema if all(not require_storage_cast(_lowerCamelCase ) for feature in self.config.features.values() ): # cheaper cast UpperCamelCase_: Optional[int] = pa.Table.from_arrays([pa_table[field.name] for field in schema] , schema=_lowerCamelCase ) else: # more expensive cast; allows str <-> int/float or str to Audio for example UpperCamelCase_: int = table_cast(_lowerCamelCase , _lowerCamelCase ) return pa_table def _a ( self , _lowerCamelCase ): UpperCamelCase_: List[str] = self.config.features.arrow_schema if self.config.features else None # dtype allows reading an int column as str UpperCamelCase_: Dict = ( { name: dtype.to_pandas_dtype() if not require_storage_cast(_lowerCamelCase ) else object for name, dtype, feature in zip(schema.names , schema.types , self.config.features.values() ) } if schema is not None else None ) for file_idx, file in enumerate(itertools.chain.from_iterable(_lowerCamelCase ) ): UpperCamelCase_: Optional[Any] = pd.read_csv(_lowerCamelCase , iterator=_lowerCamelCase , dtype=_lowerCamelCase , **self.config.pd_read_csv_kwargs ) try: for batch_idx, df in enumerate(_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = pa.Table.from_pandas(_lowerCamelCase ) # Uncomment for debugging (will print the Arrow table size and elements) # logger.warning(f"pa_table: {pa_table} num rows: {pa_table.num_rows}") # logger.warning('\n'.join(str(pa_table.slice(i, 1).to_pydict()) for i in range(pa_table.num_rows))) yield (file_idx, batch_idx), self._cast_table(_lowerCamelCase ) except ValueError as e: logger.error(f'''Failed to read file \'{file}\' with error {type(_lowerCamelCase )}: {e}''' ) raise
57
1
import inspect import unittest import warnings from math import ceil, floor from transformers import LevitConfig from transformers.file_utils import cached_property, is_torch_available, is_vision_available from transformers.models.auto import get_values from transformers.testing_utils import require_torch, require_vision, slow, torch_device from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from transformers import ( MODEL_FOR_IMAGE_CLASSIFICATION_MAPPING, MODEL_MAPPING, LevitForImageClassification, LevitForImageClassificationWithTeacher, LevitModel, ) from transformers.models.levit.modeling_levit import LEVIT_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import LevitImageProcessor class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def _a ( self ): UpperCamelCase_: Optional[Any] = self.config_class(**self.inputs_dict ) self.parent.assertTrue(hasattr(_lowerCamelCase , 'hidden_sizes' ) ) self.parent.assertTrue(hasattr(_lowerCamelCase , 'num_attention_heads' ) ) class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=6_4 , _lowerCamelCase=3 , _lowerCamelCase=3 , _lowerCamelCase=2 , _lowerCamelCase=1 , _lowerCamelCase=1_6 , _lowerCamelCase=[1_2_8, 2_5_6, 3_8_4] , _lowerCamelCase=[4, 6, 8] , _lowerCamelCase=[2, 3, 4] , _lowerCamelCase=[1_6, 1_6, 1_6] , _lowerCamelCase=0 , _lowerCamelCase=[2, 2, 2] , _lowerCamelCase=[2, 2, 2] , _lowerCamelCase=0.0_2 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=2 , ): UpperCamelCase_: Optional[Any] = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: Tuple = image_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Optional[Any] = kernel_size UpperCamelCase_: List[Any] = stride UpperCamelCase_: List[str] = padding UpperCamelCase_: List[str] = hidden_sizes UpperCamelCase_: Optional[Any] = num_attention_heads UpperCamelCase_: Union[str, Any] = depths UpperCamelCase_: str = key_dim UpperCamelCase_: Optional[int] = drop_path_rate UpperCamelCase_: List[str] = patch_size UpperCamelCase_: str = attention_ratio UpperCamelCase_: Dict = mlp_ratio UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = [ ['Subsample', key_dim[0], hidden_sizes[0] // key_dim[0], 4, 2, 2], ['Subsample', key_dim[0], hidden_sizes[1] // key_dim[0], 4, 2, 2], ] UpperCamelCase_: Optional[Any] = is_training UpperCamelCase_: Union[str, Any] = use_labels UpperCamelCase_: int = num_labels UpperCamelCase_: Union[str, Any] = initializer_range def _a ( self ): UpperCamelCase_: Tuple = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: str = None if self.use_labels: UpperCamelCase_: Dict = ids_tensor([self.batch_size] , self.num_labels ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return LevitConfig( image_size=self.image_size , num_channels=self.num_channels , kernel_size=self.kernel_size , stride=self.stride , padding=self.padding , patch_size=self.patch_size , hidden_sizes=self.hidden_sizes , num_attention_heads=self.num_attention_heads , depths=self.depths , key_dim=self.key_dim , drop_path_rate=self.drop_path_rate , mlp_ratio=self.mlp_ratio , attention_ratio=self.attention_ratio , initializer_range=self.initializer_range , down_ops=self.down_ops , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Any = LevitModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[Any] = model(_lowerCamelCase ) UpperCamelCase_: str = (self.image_size, self.image_size) UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = image_size[0], image_size[1] for _ in range(4 ): UpperCamelCase_: List[Any] = floor(((height + 2 * self.padding - self.kernel_size) / self.stride) + 1 ) UpperCamelCase_: List[Any] = floor(((width + 2 * self.padding - self.kernel_size) / self.stride) + 1 ) self.parent.assertEqual( result.last_hidden_state.shape , (self.batch_size, ceil(height / 4 ) * ceil(width / 4 ), self.hidden_sizes[-1]) , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.num_labels UpperCamelCase_: str = LevitForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Tuple = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.num_labels) ) def _a ( self ): UpperCamelCase_: Any = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[Any] = config_and_inputs UpperCamelCase_: Dict = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Dict =( (LevitModel, LevitForImageClassification, LevitForImageClassificationWithTeacher) if is_torch_available() else () ) a : Tuple =( { '''feature-extraction''': LevitModel, '''image-classification''': (LevitForImageClassification, LevitForImageClassificationWithTeacher), } if is_torch_available() else {} ) a : Union[str, Any] =False a : int =False a : Tuple =False a : Tuple =False a : Any =False def _a ( self ): UpperCamelCase_: Optional[int] = LevitModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , has_text_modality=_lowerCamelCase , hidden_size=3_7 ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return @unittest.skip(reason='Levit does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='Levit does not support input and output embeddings' ) def _a ( self ): pass @unittest.skip(reason='Levit does not output attentions' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCamelCase_: Optional[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Union[str, Any] = [*signature.parameters.keys()] UpperCamelCase_: Dict = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self ): def check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: List[str] = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Optional[int] = outputs.hidden_states UpperCamelCase_: Any = len(self.model_tester.depths ) + 1 self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_: str = (self.model_tester.image_size, self.model_tester.image_size) UpperCamelCase_ ,UpperCamelCase_: List[Any] = image_size[0], image_size[1] for _ in range(4 ): UpperCamelCase_: str = floor( ( (height + 2 * self.model_tester.padding - self.model_tester.kernel_size) / self.model_tester.stride ) + 1 ) UpperCamelCase_: str = floor( ( (width + 2 * self.model_tester.padding - self.model_tester.kernel_size) / self.model_tester.stride ) + 1 ) # verify the first hidden states (first block) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [ height * width, self.model_tester.hidden_sizes[0], ] , ) UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes: UpperCamelCase_: Optional[int] = True check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) @unittest.skip('Will be fixed soon by reducing the size of the model used for common tests.' ) def _a ( self ): pass def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=False ): UpperCamelCase_: Any = super()._prepare_for_class(_lowerCamelCase , _lowerCamelCase , return_labels=_lowerCamelCase ) if return_labels: if model_class.__name__ == "LevitForImageClassificationWithTeacher": del inputs_dict["labels"] return inputs_dict def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) def _a ( self ): if not self.model_tester.is_training: return UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = True for model_class in self.all_model_classes: # LevitForImageClassificationWithTeacher supports inference-only if ( model_class in get_values(_lowerCamelCase ) or model_class.__name__ == "LevitForImageClassificationWithTeacher" ): continue UpperCamelCase_: int = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.train() UpperCamelCase_: Union[str, Any] = self._prepare_for_class(_lowerCamelCase , _lowerCamelCase , return_labels=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = model(**_lowerCamelCase ).loss loss.backward() def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: int = self.model_tester.prepare_config_and_inputs_for_common() if not self.model_tester.is_training: return UpperCamelCase_: Union[str, Any] = False UpperCamelCase_: Union[str, Any] = True for model_class in self.all_model_classes: if model_class in get_values(_lowerCamelCase ) or not model_class.supports_gradient_checkpointing: continue # LevitForImageClassificationWithTeacher supports inference-only if model_class.__name__ == "LevitForImageClassificationWithTeacher": continue UpperCamelCase_: Optional[int] = model_class(_lowerCamelCase ) model.gradient_checkpointing_enable() model.to(_lowerCamelCase ) model.train() UpperCamelCase_: Dict = self._prepare_for_class(_lowerCamelCase , _lowerCamelCase , return_labels=_lowerCamelCase ) UpperCamelCase_: str = model(**_lowerCamelCase ).loss loss.backward() def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: List[str] = [ {'title': 'multi_label_classification', 'num_labels': 2, 'dtype': torch.float}, {'title': 'single_label_classification', 'num_labels': 1, 'dtype': torch.long}, {'title': 'regression', 'num_labels': 1, 'dtype': torch.float}, ] for model_class in self.all_model_classes: if ( model_class not in [ *get_values(_lowerCamelCase ), ] or model_class.__name__ == "LevitForImageClassificationWithTeacher" ): continue for problem_type in problem_types: with self.subTest(msg=f'''Testing {model_class} with {problem_type['title']}''' ): UpperCamelCase_: Dict = problem_type['title'] UpperCamelCase_: Any = problem_type['num_labels'] UpperCamelCase_: List[str] = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.train() UpperCamelCase_: Union[str, Any] = self._prepare_for_class(_lowerCamelCase , _lowerCamelCase , return_labels=_lowerCamelCase ) if problem_type["num_labels"] > 1: UpperCamelCase_: Optional[int] = inputs['labels'].unsqueeze(1 ).repeat(1 , problem_type['num_labels'] ) UpperCamelCase_: List[str] = inputs['labels'].to(problem_type['dtype'] ) # This tests that we do not trigger the warning form PyTorch "Using a target size that is different # to the input size. This will likely lead to incorrect results due to broadcasting. Please ensure # they have the same size." which is a symptom something in wrong for the regression problem. # See https://github.com/huggingface/transformers/issues/11780 with warnings.catch_warnings(record=_lowerCamelCase ) as warning_list: UpperCamelCase_: int = model(**_lowerCamelCase ).loss for w in warning_list: if "Using a target size that is different to the input size" in str(w.message ): raise ValueError( f'''Something is going wrong in the regression problem: intercepted {w.message}''' ) loss.backward() @slow def _a ( self ): for model_name in LEVIT_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: Any = LevitModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def snake_case () -> List[Any]: UpperCamelCase_: Any = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) return image @require_torch @require_vision class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): return LevitImageProcessor.from_pretrained(LEVIT_PRETRAINED_MODEL_ARCHIVE_LIST[0] ) @slow def _a ( self ): UpperCamelCase_: Optional[int] = LevitForImageClassificationWithTeacher.from_pretrained(LEVIT_PRETRAINED_MODEL_ARCHIVE_LIST[0] ).to( _lowerCamelCase ) UpperCamelCase_: int = self.default_image_processor UpperCamelCase_: int = prepare_img() UpperCamelCase_: Union[str, Any] = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: str = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: List[str] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Any = torch.tensor([1.0_4_4_8, -0.3_7_4_5, -1.8_3_1_7] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) )
57
from ...configuration_utils import PretrainedConfig from ...utils import logging A_ : str = logging.get_logger(__name__) A_ : Union[str, Any] = { 's-JoL/Open-Llama-V1': 'https://huggingface.co/s-JoL/Open-Llama-V1/blob/main/config.json', } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Tuple ='''open-llama''' def __init__( self , _lowerCamelCase=1_0_0_0_0_0 , _lowerCamelCase=4_0_9_6 , _lowerCamelCase=1_1_0_0_8 , _lowerCamelCase=3_2 , _lowerCamelCase=3_2 , _lowerCamelCase="silu" , _lowerCamelCase=2_0_4_8 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-6 , _lowerCamelCase=True , _lowerCamelCase=0 , _lowerCamelCase=1 , _lowerCamelCase=2 , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: int = vocab_size UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: Dict = hidden_size UpperCamelCase_: Dict = intermediate_size UpperCamelCase_: Union[str, Any] = num_hidden_layers UpperCamelCase_: Dict = num_attention_heads UpperCamelCase_: Union[str, Any] = hidden_act UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: List[Any] = rms_norm_eps UpperCamelCase_: Union[str, Any] = use_cache UpperCamelCase_: Dict = kwargs.pop( 'use_memorry_efficient_attention' , _lowerCamelCase ) UpperCamelCase_: Union[str, Any] = hidden_dropout_prob UpperCamelCase_: Any = attention_dropout_prob UpperCamelCase_: int = use_stable_embedding UpperCamelCase_: Tuple = shared_input_output_embedding UpperCamelCase_: str = rope_scaling self._rope_scaling_validation() super().__init__( pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , tie_word_embeddings=_lowerCamelCase , **_lowerCamelCase , ) def _a ( self ): if self.rope_scaling is None: return if not isinstance(self.rope_scaling , _lowerCamelCase ) or len(self.rope_scaling ) != 2: raise ValueError( '`rope_scaling` must be a dictionary with with two fields, `name` and `factor`, ' f'''got {self.rope_scaling}''' ) UpperCamelCase_: str = self.rope_scaling.get('type' , _lowerCamelCase ) UpperCamelCase_: int = self.rope_scaling.get('factor' , _lowerCamelCase ) if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]: raise ValueError( f'''`rope_scaling`\'s name field must be one of [\'linear\', \'dynamic\'], got {rope_scaling_type}''' ) if rope_scaling_factor is None or not isinstance(_lowerCamelCase , _lowerCamelCase ) or rope_scaling_factor <= 1.0: raise ValueError(f'''`rope_scaling`\'s factor field must be an float > 1, got {rope_scaling_factor}''' )
57
1
from abc import ABC, abstractmethod from argparse import ArgumentParser class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" @staticmethod @abstractmethod def _a ( _lowerCamelCase ): raise NotImplementedError() @abstractmethod def _a ( self ): raise NotImplementedError()
57
import collections import inspect import unittest from transformers import FocalNetConfig from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_backbone_common import BackboneTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( FocalNetBackbone, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetModel, ) from transformers.models.focalnet.modeling_focalnet import FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=1_6 , _lowerCamelCase=[3_2, 6_4, 1_2_8] , _lowerCamelCase=[1, 2, 1] , _lowerCamelCase=[2, 2, 4] , _lowerCamelCase=2 , _lowerCamelCase=2.0 , _lowerCamelCase=True , _lowerCamelCase=0.0 , _lowerCamelCase=0.0 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-5 , _lowerCamelCase=True , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=1_0 , _lowerCamelCase=8 , _lowerCamelCase=["stage1", "stage2"] , _lowerCamelCase=[1, 2] , ): UpperCamelCase_: Tuple = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = image_size UpperCamelCase_: Tuple = patch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Dict = embed_dim UpperCamelCase_: List[Any] = hidden_sizes UpperCamelCase_: List[str] = depths UpperCamelCase_: List[str] = num_heads UpperCamelCase_: Optional[int] = window_size UpperCamelCase_: Tuple = mlp_ratio UpperCamelCase_: Dict = qkv_bias UpperCamelCase_: str = hidden_dropout_prob UpperCamelCase_: Optional[Any] = attention_probs_dropout_prob UpperCamelCase_: int = drop_path_rate UpperCamelCase_: Dict = hidden_act UpperCamelCase_: List[str] = use_absolute_embeddings UpperCamelCase_: Dict = patch_norm UpperCamelCase_: Optional[Any] = layer_norm_eps UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = is_training UpperCamelCase_: Optional[int] = scope UpperCamelCase_: str = use_labels UpperCamelCase_: List[str] = type_sequence_label_size UpperCamelCase_: Union[str, Any] = encoder_stride UpperCamelCase_: Dict = out_features UpperCamelCase_: str = out_indices def _a ( self ): UpperCamelCase_: int = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: List[Any] = None if self.use_labels: UpperCamelCase_: Any = ids_tensor([self.batch_size] , self.type_sequence_label_size ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return FocalNetConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , embed_dim=self.embed_dim , hidden_sizes=self.hidden_sizes , depths=self.depths , num_heads=self.num_heads , window_size=self.window_size , mlp_ratio=self.mlp_ratio , qkv_bias=self.qkv_bias , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , drop_path_rate=self.drop_path_rate , hidden_act=self.hidden_act , use_absolute_embeddings=self.use_absolute_embeddings , path_norm=self.patch_norm , layer_norm_eps=self.layer_norm_eps , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , out_features=self.out_features , out_indices=self.out_indices , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = FocalNetModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: int = model(_lowerCamelCase ) UpperCamelCase_: int = ((config.image_size // config.patch_size) ** 2) // (4 ** (len(config.depths ) - 1)) UpperCamelCase_: int = int(config.embed_dim * 2 ** (len(config.depths ) - 1) ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, expected_seq_len, expected_dim) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[str] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size, 8, 8] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[:-1] ) # verify backbone works with out_features=None UpperCamelCase_: int = None UpperCamelCase_: List[Any] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size * 2, 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = FocalNetForMaskedImageModeling(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Dict = FocalNetForMaskedImageModeling(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.type_sequence_label_size UpperCamelCase_: List[Any] = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: str = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images UpperCamelCase_: Union[str, Any] = 1 UpperCamelCase_: Dict = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Dict = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def _a ( self ): UpperCamelCase_: Dict = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: int = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =( ( FocalNetModel, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetBackbone, ) if is_torch_available() else () ) a : Any =( {'''feature-extraction''': FocalNetModel, '''image-classification''': FocalNetForImageClassification} if is_torch_available() else {} ) a : Dict =False a : Union[str, Any] =False a : Tuple =False a : Optional[int] =False a : Union[str, Any] =False def _a ( self ): UpperCamelCase_: str = FocalNetModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , embed_dim=3_7 , has_text_modality=_lowerCamelCase ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_backbone(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) @unittest.skip(reason='FocalNet does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='FocalNet does not use feedforward chunking' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Union[str, Any] = model_class(_lowerCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) UpperCamelCase_: List[str] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(_lowerCamelCase , nn.Linear ) ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: List[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Any = [*signature.parameters.keys()] UpperCamelCase_: List[Any] = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: Tuple = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = outputs.hidden_states UpperCamelCase_: Tuple = getattr( self.model_tester , 'expected_num_hidden_layers' , len(self.model_tester.depths ) + 1 ) self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) # FocalNet has a different seq_length UpperCamelCase_: Optional[Any] = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: int = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) UpperCamelCase_: Dict = outputs.reshaped_hidden_states self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = reshaped_hidden_states[0].shape UpperCamelCase_: List[str] = ( reshaped_hidden_states[0].view(_lowerCamelCase , _lowerCamelCase , height * width ).permute(0 , 2 , 1 ) ) self.assertListEqual( list(reshaped_hidden_states.shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: int = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: int = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: str = 3 UpperCamelCase_: Any = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) UpperCamelCase_: int = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: List[Any] = image_size[0] + patch_size[0] - (image_size[0] % patch_size[0]) UpperCamelCase_: str = image_size[1] + patch_size[1] - (image_size[1] % patch_size[1]) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Dict = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) @slow def _a ( self ): for model_name in FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: List[Any] = FocalNetModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = _config_zero_init(_lowerCamelCase ) for model_class in self.all_model_classes: UpperCamelCase_: List[str] = model_class(config=_lowerCamelCase ) for name, param in model.named_parameters(): if "embeddings" not in name and param.requires_grad: self.assertIn( ((param.data.mean() * 1e9).round() / 1e9).item() , [0.0, 1.0] , msg=f'''Parameter {name} of model {model_class} seems not properly initialized''' , ) @require_vision @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): # TODO update organization return AutoImageProcessor.from_pretrained('microsoft/focalnet-tiny' ) if is_vision_available() else None @slow def _a ( self ): UpperCamelCase_: Optional[int] = FocalNetForImageClassification.from_pretrained('microsoft/focalnet-tiny' ).to(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.default_image_processor UpperCamelCase_: str = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) UpperCamelCase_: str = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: List[str] = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: Optional[int] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Optional[int] = torch.tensor([0.2_1_6_6, -0.4_3_6_8, 0.2_1_9_1] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) ) self.assertTrue(outputs.logits.argmax(dim=-1 ).item() , 2_8_1 ) @require_torch class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[Any] =(FocalNetBackbone,) if is_torch_available() else () a : List[str] =FocalNetConfig a : List[str] =False def _a ( self ): UpperCamelCase_: Any = FocalNetModelTester(self )
57
1
# Copyright 2022 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. import argparse import os import platform import numpy as np import psutil import torch from accelerate import __version__ as version from accelerate.commands.config import default_config_file, load_config_from_file from ..utils import is_npu_available, is_xpu_available def snake_case (UpperCAmelCase__=None ) -> Any: if subparsers is not None: UpperCamelCase_: Optional[Any] = subparsers.add_parser('env' ) else: UpperCamelCase_: List[str] = argparse.ArgumentParser('Accelerate env command' ) parser.add_argument( '--config_file' , default=UpperCAmelCase__ , help='The config file to use for the default values in the launching script.' ) if subparsers is not None: parser.set_defaults(func=UpperCAmelCase__ ) return parser def snake_case (UpperCAmelCase__ ) -> Optional[int]: UpperCamelCase_: Dict = torch.__version__ UpperCamelCase_: Optional[Any] = torch.cuda.is_available() UpperCamelCase_: Optional[int] = is_xpu_available() UpperCamelCase_: str = is_npu_available() UpperCamelCase_: str = 'Not found' # Get the default from the config file. if args.config_file is not None or os.path.isfile(UpperCAmelCase__ ): UpperCamelCase_: int = load_config_from_file(args.config_file ).to_dict() UpperCamelCase_: List[str] = { '`Accelerate` version': version, 'Platform': platform.platform(), 'Python version': platform.python_version(), 'Numpy version': np.__version__, 'PyTorch version (GPU?)': F'''{pt_version} ({pt_cuda_available})''', 'PyTorch XPU available': str(UpperCAmelCase__ ), 'PyTorch NPU available': str(UpperCAmelCase__ ), 'System RAM': F'''{psutil.virtual_memory().total / 1_0_2_4 ** 3:.2f} GB''', } if pt_cuda_available: UpperCamelCase_: List[Any] = torch.cuda.get_device_name() print('\nCopy-and-paste the text below in your GitHub issue\n' ) print('\n'.join([F'''- {prop}: {val}''' for prop, val in info.items()] ) ) print('- `Accelerate` default config:' if args.config_file is None else '- `Accelerate` config passed:' ) UpperCamelCase_: Optional[Any] = ( '\n'.join([F'''\t- {prop}: {val}''' for prop, val in accelerate_config.items()] ) if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ) else F'''\t{accelerate_config}''' ) print(UpperCAmelCase__ ) UpperCamelCase_: str = accelerate_config return info def snake_case () -> int: UpperCamelCase_: Tuple = env_command_parser() UpperCamelCase_: Optional[int] = parser.parse_args() env_command(UpperCAmelCase__ ) return 0 if __name__ == "__main__": raise SystemExit(main())
57
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) A_ : Tuple = { 'configuration_distilbert': [ 'DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'DistilBertConfig', 'DistilBertOnnxConfig', ], 'tokenization_distilbert': ['DistilBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Optional[Any] = ['DistilBertTokenizerFast'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'DistilBertForMaskedLM', 'DistilBertForMultipleChoice', 'DistilBertForQuestionAnswering', 'DistilBertForSequenceClassification', 'DistilBertForTokenClassification', 'DistilBertModel', 'DistilBertPreTrainedModel', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'TFDistilBertForMaskedLM', 'TFDistilBertForMultipleChoice', 'TFDistilBertForQuestionAnswering', 'TFDistilBertForSequenceClassification', 'TFDistilBertForTokenClassification', 'TFDistilBertMainLayer', 'TFDistilBertModel', 'TFDistilBertPreTrainedModel', ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'FlaxDistilBertForMaskedLM', 'FlaxDistilBertForMultipleChoice', 'FlaxDistilBertForQuestionAnswering', 'FlaxDistilBertForSequenceClassification', 'FlaxDistilBertForTokenClassification', 'FlaxDistilBertModel', 'FlaxDistilBertPreTrainedModel', ] if TYPE_CHECKING: from .configuration_distilbert import ( DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP, DistilBertConfig, DistilBertOnnxConfig, ) from .tokenization_distilbert import DistilBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_distilbert_fast import DistilBertTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_distilbert import ( DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, DistilBertForMaskedLM, DistilBertForMultipleChoice, DistilBertForQuestionAnswering, DistilBertForSequenceClassification, DistilBertForTokenClassification, DistilBertModel, DistilBertPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_distilbert import ( TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, TFDistilBertForMaskedLM, TFDistilBertForMultipleChoice, TFDistilBertForQuestionAnswering, TFDistilBertForSequenceClassification, TFDistilBertForTokenClassification, TFDistilBertMainLayer, TFDistilBertModel, TFDistilBertPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_distilbert import ( FlaxDistilBertForMaskedLM, FlaxDistilBertForMultipleChoice, FlaxDistilBertForQuestionAnswering, FlaxDistilBertForSequenceClassification, FlaxDistilBertForTokenClassification, FlaxDistilBertModel, FlaxDistilBertPreTrainedModel, ) else: import sys A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
import argparse import json from typing import List from ltp import LTP from transformers import BertTokenizer def snake_case (UpperCAmelCase__ ) -> Optional[int]: # This defines a "chinese character" as anything in the CJK Unicode block: # https://en.wikipedia.org/wiki/CJK_Unified_Ideographs_(Unicode_block) # # Note that the CJK Unicode block is NOT all Japanese and Korean characters, # despite its name. The modern Korean Hangul alphabet is a different block, # as is Japanese Hiragana and Katakana. Those alphabets are used to write # space-separated words, so they are not treated specially and handled # like the all of the other languages. if ( (cp >= 0x4_E00 and cp <= 0x9_FFF) or (cp >= 0x3_400 and cp <= 0x4_DBF) # or (cp >= 0x20_000 and cp <= 0x2A_6DF) # or (cp >= 0x2A_700 and cp <= 0x2B_73F) # or (cp >= 0x2B_740 and cp <= 0x2B_81F) # or (cp >= 0x2B_820 and cp <= 0x2C_EAF) # or (cp >= 0xF_900 and cp <= 0xF_AFF) or (cp >= 0x2F_800 and cp <= 0x2F_A1F) # ): # return True return False def snake_case (UpperCAmelCase__ ) -> Tuple: # word like '180' or '身高' or '神' for char in word: UpperCamelCase_: int = ord(UpperCAmelCase__ ) if not _is_chinese_char(UpperCAmelCase__ ): return 0 return 1 def snake_case (UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: Tuple = set() for token in tokens: UpperCamelCase_: str = len(UpperCAmelCase__ ) > 1 and is_chinese(UpperCAmelCase__ ) if chinese_word: word_set.add(UpperCAmelCase__ ) UpperCamelCase_: Tuple = list(UpperCAmelCase__ ) return word_list def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: if not chinese_word_set: return bert_tokens UpperCamelCase_: Tuple = max([len(UpperCAmelCase__ ) for w in chinese_word_set] ) UpperCamelCase_: Dict = bert_tokens UpperCamelCase_ ,UpperCamelCase_: Dict = 0, len(UpperCAmelCase__ ) while start < end: UpperCamelCase_: Optional[Any] = True if is_chinese(bert_word[start] ): UpperCamelCase_: List[str] = min(end - start , UpperCAmelCase__ ) for i in range(UpperCAmelCase__ , 1 , -1 ): UpperCamelCase_: Any = ''.join(bert_word[start : start + i] ) if whole_word in chinese_word_set: for j in range(start + 1 , start + i ): UpperCamelCase_: List[Any] = '##' + bert_word[j] UpperCamelCase_: Dict = start + i UpperCamelCase_: str = False break if single_word: start += 1 return bert_word def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: int = [] for i in range(0 , len(UpperCAmelCase__ ) , 1_0_0 ): UpperCamelCase_: int = ltp_tokenizer.seg(lines[i : i + 1_0_0] )[0] UpperCamelCase_: Dict = [get_chinese_word(UpperCAmelCase__ ) for r in res] ltp_res.extend(UpperCAmelCase__ ) assert len(UpperCAmelCase__ ) == len(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = [] for i in range(0 , len(UpperCAmelCase__ ) , 1_0_0 ): UpperCamelCase_: Any = bert_tokenizer(lines[i : i + 1_0_0] , add_special_tokens=UpperCAmelCase__ , truncation=UpperCAmelCase__ , max_length=5_1_2 ) bert_res.extend(res['input_ids'] ) assert len(UpperCAmelCase__ ) == len(UpperCAmelCase__ ) UpperCamelCase_: List[str] = [] for input_ids, chinese_word in zip(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Tuple = [] for id in input_ids: UpperCamelCase_: int = bert_tokenizer._convert_id_to_token(UpperCAmelCase__ ) input_tokens.append(UpperCAmelCase__ ) UpperCamelCase_: List[Any] = add_sub_symbol(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[str] = [] # We only save pos of chinese subwords start with ##, which mean is part of a whole word. for i, token in enumerate(UpperCAmelCase__ ): if token[:2] == "##": UpperCamelCase_: str = token[2:] # save chinese tokens' pos if len(UpperCAmelCase__ ) == 1 and _is_chinese_char(ord(UpperCAmelCase__ ) ): ref_id.append(UpperCAmelCase__ ) ref_ids.append(UpperCAmelCase__ ) assert len(UpperCAmelCase__ ) == len(UpperCAmelCase__ ) return ref_ids def snake_case (UpperCAmelCase__ ) -> List[Any]: # For Chinese (Ro)Bert, the best result is from : RoBERTa-wwm-ext (https://github.com/ymcui/Chinese-BERT-wwm) # If we want to fine-tune these model, we have to use same tokenizer : LTP (https://github.com/HIT-SCIR/ltp) with open(args.file_name , 'r' , encoding='utf-8' ) as f: UpperCamelCase_: List[Any] = f.readlines() UpperCamelCase_: int = [line.strip() for line in data if len(UpperCAmelCase__ ) > 0 and not line.isspace()] # avoid delimiter like '\u2029' UpperCamelCase_: List[str] = LTP(args.ltp ) # faster in GPU device UpperCamelCase_: List[str] = BertTokenizer.from_pretrained(args.bert ) UpperCamelCase_: Union[str, Any] = prepare_ref(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) with open(args.save_path , 'w' , encoding='utf-8' ) as f: UpperCamelCase_: Any = [json.dumps(UpperCAmelCase__ ) + '\n' for ref in ref_ids] f.writelines(UpperCAmelCase__ ) if __name__ == "__main__": A_ : Any = argparse.ArgumentParser(description='prepare_chinese_ref') parser.add_argument( '--file_name', type=str, default='./resources/chinese-demo.txt', help='file need process, same as training data in lm', ) parser.add_argument( '--ltp', type=str, default='./resources/ltp', help='resources for LTP tokenizer, usually a path' ) parser.add_argument('--bert', type=str, default='./resources/robert', help='resources for Bert tokenizer') parser.add_argument('--save_path', type=str, default='./resources/ref.txt', help='path to save res') A_ : int = parser.parse_args() main(args)
57
import os import socket from contextlib import contextmanager import torch from ..commands.config.default import write_basic_config # noqa: F401 from ..state import PartialState from .dataclasses import DistributedType from .imports import is_deepspeed_available, is_tpu_available from .transformer_engine import convert_model from .versions import is_torch_version if is_deepspeed_available(): from deepspeed import DeepSpeedEngine if is_tpu_available(check_device=False): import torch_xla.core.xla_model as xm def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: if is_torch_version('<' , '2.0.0' ) or not hasattr(UpperCAmelCase__ , '_dynamo' ): return False return isinstance(UpperCAmelCase__ , torch._dynamo.eval_frame.OptimizedModule ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ = True ) -> Any: UpperCamelCase_: Optional[Any] = (torch.nn.parallel.DistributedDataParallel, torch.nn.DataParallel) UpperCamelCase_: int = is_compiled_module(UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: List[str] = model UpperCamelCase_: Dict = model._orig_mod if is_deepspeed_available(): options += (DeepSpeedEngine,) while isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Dict = model.module if not keep_fpaa_wrapper: UpperCamelCase_: int = getattr(UpperCAmelCase__ , 'forward' ) UpperCamelCase_: List[str] = model.__dict__.pop('_original_forward' , UpperCAmelCase__ ) if original_forward is not None: while hasattr(UpperCAmelCase__ , '__wrapped__' ): UpperCamelCase_: Any = forward.__wrapped__ if forward == original_forward: break UpperCamelCase_: Optional[int] = forward if getattr(UpperCAmelCase__ , '_converted_to_transformer_engine' , UpperCAmelCase__ ): convert_model(UpperCAmelCase__ , to_transformer_engine=UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: Union[str, Any] = model UpperCamelCase_: Tuple = compiled_model return model def snake_case () -> List[str]: PartialState().wait_for_everyone() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: if PartialState().distributed_type == DistributedType.TPU: xm.save(UpperCAmelCase__ , UpperCAmelCase__ ) elif PartialState().local_process_index == 0: torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) @contextmanager def snake_case (**UpperCAmelCase__ ) -> Any: for key, value in kwargs.items(): UpperCamelCase_: int = str(UpperCAmelCase__ ) yield for key in kwargs: if key.upper() in os.environ: del os.environ[key.upper()] def snake_case (UpperCAmelCase__ ) -> str: if not hasattr(UpperCAmelCase__ , '__qualname__' ) and not hasattr(UpperCAmelCase__ , '__name__' ): UpperCamelCase_: List[Any] = getattr(UpperCAmelCase__ , '__class__' , UpperCAmelCase__ ) if hasattr(UpperCAmelCase__ , '__qualname__' ): return obj.__qualname__ if hasattr(UpperCAmelCase__ , '__name__' ): return obj.__name__ return str(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: for key, value in source.items(): if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Any = destination.setdefault(UpperCAmelCase__ , {} ) merge_dicts(UpperCAmelCase__ , UpperCAmelCase__ ) else: UpperCamelCase_: str = value return destination def snake_case (UpperCAmelCase__ = None ) -> bool: if port is None: UpperCamelCase_: List[str] = 2_9_5_0_0 with socket.socket(socket.AF_INET , socket.SOCK_STREAM ) as s: return s.connect_ex(('localhost', port) ) == 0
57
1
import os try: from .build_directory_md import good_file_paths except ImportError: from build_directory_md import good_file_paths # type: ignore A_ : Union[str, Any] = list(good_file_paths()) assert filepaths, "good_file_paths() failed!" A_ : Optional[int] = [file for file in filepaths if file != file.lower()] if upper_files: print(F'''{len(upper_files)} files contain uppercase characters:''') print('\n'.join(upper_files) + '\n') A_ : Any = [file for file in filepaths if ' ' in file] if space_files: print(F'''{len(space_files)} files contain space characters:''') print('\n'.join(space_files) + '\n') A_ : Optional[Any] = [file for file in filepaths if '-' in file] if hyphen_files: print(F'''{len(hyphen_files)} files contain hyphen characters:''') print('\n'.join(hyphen_files) + '\n') A_ : Any = [file for file in filepaths if os.sep not in file] if nodir_files: print(F'''{len(nodir_files)} files are not in a directory:''') print('\n'.join(nodir_files) + '\n') A_ : Dict = len(upper_files + space_files + hyphen_files + nodir_files) if bad_files: import sys sys.exit(bad_files)
57
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 A_ : Optional[Any] = data_utils.TransfoXLTokenizer A_ : Union[str, Any] = data_utils.TransfoXLCorpus A_ : Any = data_utils A_ : Optional[Any] = data_utils def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(UpperCAmelCase__ , 'rb' ) as fp: UpperCamelCase_: Union[str, Any] = pickle.load(UpperCAmelCase__ , encoding='latin1' ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) UpperCamelCase_: Any = pytorch_dump_folder_path + '/' + VOCAB_FILES_NAMES['pretrained_vocab_file'] print(F'''Save vocabulary to {pytorch_vocab_dump_path}''' ) UpperCamelCase_: Union[str, Any] = corpus.vocab.__dict__ torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = corpus.__dict__ corpus_dict_no_vocab.pop('vocab' , UpperCAmelCase__ ) UpperCamelCase_: str = pytorch_dump_folder_path + '/' + CORPUS_NAME print(F'''Save dataset to {pytorch_dataset_dump_path}''' ) torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model UpperCamelCase_: Any = os.path.abspath(UpperCAmelCase__ ) UpperCamelCase_: Dict = os.path.abspath(UpperCAmelCase__ ) print(F'''Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.''' ) # Initialise PyTorch model if transfo_xl_config_file == "": UpperCamelCase_: List[str] = TransfoXLConfig() else: UpperCamelCase_: Optional[int] = TransfoXLConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Union[str, Any] = TransfoXLLMHeadModel(UpperCAmelCase__ ) UpperCamelCase_: Tuple = load_tf_weights_in_transfo_xl(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model UpperCamelCase_: str = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''Save PyTorch model to {os.path.abspath(UpperCAmelCase__ )}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) print(F'''Save configuration file to {os.path.abspath(UpperCAmelCase__ )}''' ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the folder to store the PyTorch model or dataset/vocab.', ) parser.add_argument( '--tf_checkpoint_path', default='', type=str, help='An optional path to a TensorFlow checkpoint path to be converted.', ) parser.add_argument( '--transfo_xl_config_file', default='', type=str, help=( 'An optional config json file corresponding to the pre-trained BERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--transfo_xl_dataset_file', default='', type=str, help='An optional dataset file to be converted in a vocabulary.', ) A_ : Tuple = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
57
1
import argparse import json import os import fairseq import torch from torch import nn from transformers import ( SpeechaTextaConfig, SpeechaTextaForCausalLM, SpeechaTextaTokenizer, SpeechEncoderDecoderConfig, SpeechEncoderDecoderModel, WavaVecaConfig, WavaVecaFeatureExtractor, WavaVecaModel, logging, ) logging.set_verbosity_info() A_ : Any = logging.get_logger(__name__) A_ : List[Any] = { 'post_extract_proj': 'feature_projection.projection', 'encoder.pos_conv.0': 'encoder.pos_conv_embed.conv', 'self_attn.k_proj': 'encoder.layers.*.attention.k_proj', 'self_attn.v_proj': 'encoder.layers.*.attention.v_proj', 'self_attn.q_proj': 'encoder.layers.*.attention.q_proj', 'self_attn.out_proj': 'encoder.layers.*.attention.out_proj', 'self_attn_layer_norm': 'encoder.layers.*.layer_norm', 'fc1': 'encoder.layers.*.feed_forward.intermediate_dense', 'fc2': 'encoder.layers.*.feed_forward.output_dense', 'final_layer_norm': 'encoder.layers.*.final_layer_norm', 'encoder.layer_norm': 'encoder.layer_norm', 'w2v_model.layer_norm': 'feature_projection.layer_norm', 'quantizer.weight_proj': 'quantizer.weight_proj', 'quantizer.vars': 'quantizer.codevectors', 'project_q': 'project_q', 'final_proj': 'project_hid', 'w2v_encoder.proj': 'lm_head', 'mask_emb': 'masked_spec_embed', } A_ : Dict = [ 'lm_head', 'quantizer.weight_proj', 'quantizer.codevectors', 'project_q', 'project_hid', ] def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Tuple: for attribute in key.split('.' ): UpperCamelCase_: Dict = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) if weight_type is not None: UpperCamelCase_: int = getattr(UpperCAmelCase__ , UpperCAmelCase__ ).shape else: UpperCamelCase_: List[Any] = hf_pointer.shape assert hf_shape == value.shape, ( F'''Shape of hf {key + '.' + weight_type if weight_type is not None else ''} is {hf_shape}, but should be''' F''' {value.shape} for {full_name}''' ) if weight_type == "weight": UpperCamelCase_: Optional[Any] = value elif weight_type == "weight_g": UpperCamelCase_: Any = value elif weight_type == "weight_v": UpperCamelCase_: Optional[int] = value elif weight_type == "bias": UpperCamelCase_: Any = value else: UpperCamelCase_: List[Any] = value logger.info(F'''{key + '.' + weight_type if weight_type is not None else ''} was initialized from {full_name}.''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> str: UpperCamelCase_: Any = [] UpperCamelCase_: str = fairseq_model.state_dict() UpperCamelCase_: int = hf_model.feature_extractor # if encoder has different dim to decoder -> use proj_weight UpperCamelCase_: Optional[int] = None for name, value in fairseq_dict.items(): UpperCamelCase_: Optional[int] = False if "conv_layers" in name: load_conv_layer( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , hf_model.config.feat_extract_norm == 'group' , ) UpperCamelCase_: Optional[Any] = True elif name.split('.' )[0] == "proj": UpperCamelCase_: Union[str, Any] = fairseq_model.proj UpperCamelCase_: int = True else: for key, mapped_key in MAPPING.items(): if key in name or key.split('w2v_model.' )[-1] == name.split('.' )[0]: UpperCamelCase_: int = True if "*" in mapped_key: UpperCamelCase_: List[Any] = name.split(UpperCAmelCase__ )[0].split('.' )[-2] UpperCamelCase_: Tuple = mapped_key.replace('*' , UpperCAmelCase__ ) if "weight_g" in name: UpperCamelCase_: Optional[int] = 'weight_g' elif "weight_v" in name: UpperCamelCase_: List[str] = 'weight_v' elif "bias" in name: UpperCamelCase_: int = 'bias' elif "weight" in name: UpperCamelCase_: Optional[Any] = 'weight' else: UpperCamelCase_: List[str] = None set_recursively(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) continue if not is_used: unused_weights.append(UpperCAmelCase__ ) logger.warning(F'''Unused weights: {unused_weights}''' ) return proj_weight def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: UpperCamelCase_: Union[str, Any] = full_name.split('conv_layers.' )[-1] UpperCamelCase_: Tuple = name.split('.' ) UpperCamelCase_: Dict = int(items[0] ) UpperCamelCase_: str = int(items[1] ) if type_id == 0: if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.bias.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) UpperCamelCase_: int = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].conv.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) UpperCamelCase_: int = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif (type_id == 2 and not use_group_norm) or (type_id == 2 and layer_id == 0 and use_group_norm): if "bias" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape, ( F'''{full_name} has size {value.shape}, but {feature_extractor[layer_id].layer_norm.bias.data.shape} was''' " found." ) UpperCamelCase_: Dict = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: assert value.shape == feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape, ( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor[layer_id].layer_norm.weight.data.shape} was found.''' ) UpperCamelCase_: Optional[Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = emb.weight.shape UpperCamelCase_: Union[str, Any] = nn.Linear(UpperCAmelCase__ , UpperCAmelCase__ , bias=UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = emb.weight.data return lin_layer def snake_case (UpperCAmelCase__ ) -> int: with open(UpperCAmelCase__ , 'r' , encoding='utf-8' ) as f: UpperCamelCase_: str = f.readlines() UpperCamelCase_: List[Any] = [line.split(' ' )[0] for line in lines] UpperCamelCase_: Dict = len(UpperCAmelCase__ ) UpperCamelCase_: Tuple = { '<s>': 0, '<pad>': 1, '</s>': 2, '<unk>': 3, } vocab_dict.update(dict(zip(UpperCAmelCase__ , range(4 , num_words + 4 ) ) ) ) return vocab_dict @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) -> Tuple: UpperCamelCase_: Dict = WavaVecaConfig.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: Tuple = SpeechaTextaConfig.from_pretrained( UpperCAmelCase__ , vocab_size=UpperCAmelCase__ , decoder_layers=UpperCAmelCase__ , do_stable_layer_norm=UpperCAmelCase__ ) UpperCamelCase_: Any = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path] , arg_overrides={'data': '/'.join(dict_path.split('/' )[:-1] )} ) UpperCamelCase_: Optional[int] = model[0].eval() # set weights for wav2vec2 encoder UpperCamelCase_: Tuple = WavaVecaModel(UpperCAmelCase__ ) UpperCamelCase_: Any = recursively_load_weights_wavaveca(model.encoder , UpperCAmelCase__ ) UpperCamelCase_: Any = SpeechaTextaForCausalLM(UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_: Tuple = hf_decoder.model.decoder.load_state_dict(model.decoder.state_dict() , strict=UpperCAmelCase__ ) # set output linear layer unexpected_keys.remove('embed_out' ) UpperCamelCase_: Dict = nn.Parameter(model.decoder.embed_out.detach() ) # layer norm is init to identity matrix so leaving it is fine logger.warning(F'''The following keys are missing when loading the decoder weights: {missing_keys}''' ) logger.warning(F'''The following keys are unexpected when loading the decoder weights: {unexpected_keys}''' ) UpperCamelCase_: Any = SpeechEncoderDecoderModel(encoder=UpperCAmelCase__ , decoder=UpperCAmelCase__ ) UpperCamelCase_: Any = False # add projection layer UpperCamelCase_: int = nn.Parameter(projection_layer.weight ) UpperCamelCase_: str = nn.Parameter(projection_layer.bias ) UpperCamelCase_: Dict = create_vocab_dict(UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , 'vocab.json' ) , 'w' ) as fp: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Dict = SpeechaTextaTokenizer(os.path.join(UpperCAmelCase__ , 'vocab.json' ) ) tokenizer.save_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = hf_wavavec.config.to_dict() UpperCamelCase_: Union[str, Any] = tokenizer.pad_token_id UpperCamelCase_: List[Any] = tokenizer.bos_token_id UpperCamelCase_: Any = tokenizer.eos_token_id UpperCamelCase_: Any = 'speech_to_text_2' UpperCamelCase_: List[Any] = 'wav2vec2' UpperCamelCase_: int = SpeechEncoderDecoderConfig.from_dict(UpperCAmelCase__ ) hf_wavavec.save_pretrained(UpperCAmelCase__ ) feature_extractor.save_pretrained(UpperCAmelCase__ ) if __name__ == "__main__": A_ : Dict = argparse.ArgumentParser() parser.add_argument('--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model.') parser.add_argument('--checkpoint_path', default=None, type=str, help='Path to fairseq checkpoint') parser.add_argument('--dict_path', default=None, type=str, help='Path to dict of fine-tuned model') parser.add_argument( '--encoder_config_path', default='facebook/wav2vec2-large-lv60', type=str, help='Path to hf encoder wav2vec2 checkpoint config', ) parser.add_argument( '--decoder_config_path', default='facebook/s2t-small-mustc-en-fr-st', type=str, help='Path to hf decoder s2t checkpoint config', ) parser.add_argument('--vocab_size', default=10224, type=int, help='Vocab size of decoder') parser.add_argument('--num_decoder_layers', default=7, type=int, help='Number of decoder layers') A_ : Dict = parser.parse_args() convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.dict_path, encoder_config_path=args.encoder_config_path, decoder_config_path=args.decoder_config_path, vocab_size=args.vocab_size, num_decoder_layers=args.num_decoder_layers, )
57
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 rescale, resize, to_channel_dimension_format from ...image_utils import ( ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : List[str] = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Union[str, Any]: UpperCamelCase_: Tuple = b.T UpperCamelCase_: Tuple = np.sum(np.square(UpperCAmelCase__ ) , axis=1 ) UpperCamelCase_: Optional[Any] = np.sum(np.square(UpperCAmelCase__ ) , axis=0 ) UpperCamelCase_: Optional[int] = np.matmul(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[Any] = aa[:, None] - 2 * ab + ba[None, :] return d def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: List[str] = x.reshape(-1 , 3 ) UpperCamelCase_: Union[str, Any] = squared_euclidean_distance(UpperCAmelCase__ , UpperCAmelCase__ ) return np.argmin(UpperCAmelCase__ , axis=1 ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =['''pixel_values'''] def __init__( self , _lowerCamelCase = None , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = True , _lowerCamelCase = True , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: List[str] = size if size is not None else {'height': 2_5_6, 'width': 2_5_6} UpperCamelCase_: str = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Any = np.array(_lowerCamelCase ) if clusters is not None else None UpperCamelCase_: Optional[int] = do_resize UpperCamelCase_: List[Any] = size UpperCamelCase_: Optional[int] = resample UpperCamelCase_: str = do_normalize UpperCamelCase_: str = do_color_quantize def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: Any = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''Size dictionary must contain both height and width keys. Got {size.keys()}''' ) return resize( _lowerCamelCase , size=(size['height'], size['width']) , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , ): UpperCamelCase_: Optional[Any] = rescale(image=_lowerCamelCase , scale=1 / 1_2_7.5 , data_format=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = image - 1 return image def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: Optional[Any] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: Tuple = size if size is not None else self.size UpperCamelCase_: Union[str, Any] = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = resample if resample is not None else self.resample UpperCamelCase_: Any = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: str = do_color_quantize if do_color_quantize is not None else self.do_color_quantize UpperCamelCase_: Dict = clusters if clusters is not None else self.clusters UpperCamelCase_: Dict = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[int] = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_color_quantize and clusters is None: raise ValueError('Clusters must be specified if do_color_quantize is True.' ) # All transformations expect numpy arrays. UpperCamelCase_: Union[str, Any] = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: UpperCamelCase_: Union[str, Any] = [self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) for image in images] if do_normalize: UpperCamelCase_: Optional[Any] = [self.normalize(image=_lowerCamelCase ) for image in images] if do_color_quantize: UpperCamelCase_: Any = [to_channel_dimension_format(_lowerCamelCase , ChannelDimension.LAST ) for image in images] # color quantize from (batch_size, height, width, 3) to (batch_size, height, width) UpperCamelCase_: Optional[Any] = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = color_quantize(_lowerCamelCase , _lowerCamelCase ).reshape(images.shape[:-1] ) # flatten to (batch_size, height*width) UpperCamelCase_: Dict = images.shape[0] UpperCamelCase_: Any = images.reshape(_lowerCamelCase , -1 ) # We need to convert back to a list of images to keep consistent behaviour across processors. UpperCamelCase_: List[Any] = list(_lowerCamelCase ) else: UpperCamelCase_: int = [to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) for image in images] UpperCamelCase_: str = {'input_ids': images} return BatchFeature(data=_lowerCamelCase , tensor_type=_lowerCamelCase )
57
1
A_ : Any = '0.18.2' from .configuration_utils import ConfigMixin from .utils import ( OptionalDependencyNotAvailable, is_flax_available, is_inflect_available, is_invisible_watermark_available, is_k_diffusion_available, is_k_diffusion_version, is_librosa_available, is_note_seq_available, is_onnx_available, is_scipy_available, is_torch_available, is_torchsde_available, is_transformers_available, is_transformers_version, is_unidecode_available, logging, ) try: if not is_onnx_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_onnx_objects import * # noqa F403 else: from .pipelines import OnnxRuntimeModel try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_pt_objects import * # noqa F403 else: from .models import ( AutoencoderKL, ControlNetModel, ModelMixin, PriorTransformer, TaFilmDecoder, TransformeraDModel, UNetaDModel, UNetaDConditionModel, UNetaDModel, UNetaDConditionModel, VQModel, ) from .optimization import ( get_constant_schedule, get_constant_schedule_with_warmup, get_cosine_schedule_with_warmup, get_cosine_with_hard_restarts_schedule_with_warmup, get_linear_schedule_with_warmup, get_polynomial_decay_schedule_with_warmup, get_scheduler, ) from .pipelines import ( AudioPipelineOutput, ConsistencyModelPipeline, DanceDiffusionPipeline, DDIMPipeline, DDPMPipeline, DiffusionPipeline, DiTPipeline, ImagePipelineOutput, KarrasVePipeline, LDMPipeline, LDMSuperResolutionPipeline, PNDMPipeline, RePaintPipeline, ScoreSdeVePipeline, ) from .schedulers import ( CMStochasticIterativeScheduler, DDIMInverseScheduler, DDIMParallelScheduler, DDIMScheduler, DDPMParallelScheduler, DDPMScheduler, DEISMultistepScheduler, DPMSolverMultistepInverseScheduler, DPMSolverMultistepScheduler, DPMSolverSinglestepScheduler, EulerAncestralDiscreteScheduler, EulerDiscreteScheduler, HeunDiscreteScheduler, IPNDMScheduler, KarrasVeScheduler, KDPMaAncestralDiscreteScheduler, KDPMaDiscreteScheduler, PNDMScheduler, RePaintScheduler, SchedulerMixin, ScoreSdeVeScheduler, UnCLIPScheduler, UniPCMultistepScheduler, VQDiffusionScheduler, ) from .training_utils import EMAModel try: if not (is_torch_available() and is_scipy_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_scipy_objects import * # noqa F403 else: from .schedulers import LMSDiscreteScheduler try: if not (is_torch_available() and is_torchsde_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_torchsde_objects import * # noqa F403 else: from .schedulers import DPMSolverSDEScheduler try: if not (is_torch_available() and is_transformers_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .pipelines import ( AltDiffusionImgaImgPipeline, AltDiffusionPipeline, AudioLDMPipeline, CycleDiffusionPipeline, IFImgaImgPipeline, IFImgaImgSuperResolutionPipeline, IFInpaintingPipeline, IFInpaintingSuperResolutionPipeline, IFPipeline, IFSuperResolutionPipeline, ImageTextPipelineOutput, KandinskyImgaImgPipeline, KandinskyInpaintPipeline, KandinskyPipeline, KandinskyPriorPipeline, KandinskyVaaControlnetImgaImgPipeline, KandinskyVaaControlnetPipeline, KandinskyVaaImgaImgPipeline, KandinskyVaaInpaintPipeline, KandinskyVaaPipeline, KandinskyVaaPriorEmbaEmbPipeline, KandinskyVaaPriorPipeline, LDMTextToImagePipeline, PaintByExamplePipeline, SemanticStableDiffusionPipeline, ShapEImgaImgPipeline, ShapEPipeline, StableDiffusionAttendAndExcitePipeline, StableDiffusionControlNetImgaImgPipeline, StableDiffusionControlNetInpaintPipeline, StableDiffusionControlNetPipeline, StableDiffusionDepthaImgPipeline, StableDiffusionDiffEditPipeline, StableDiffusionImageVariationPipeline, StableDiffusionImgaImgPipeline, StableDiffusionInpaintPipeline, StableDiffusionInpaintPipelineLegacy, StableDiffusionInstructPixaPixPipeline, StableDiffusionLatentUpscalePipeline, StableDiffusionLDMaDPipeline, StableDiffusionModelEditingPipeline, StableDiffusionPanoramaPipeline, StableDiffusionParadigmsPipeline, StableDiffusionPipeline, StableDiffusionPipelineSafe, StableDiffusionPixaPixZeroPipeline, StableDiffusionSAGPipeline, StableDiffusionUpscalePipeline, StableUnCLIPImgaImgPipeline, StableUnCLIPPipeline, TextToVideoSDPipeline, TextToVideoZeroPipeline, UnCLIPImageVariationPipeline, UnCLIPPipeline, UniDiffuserModel, UniDiffuserPipeline, UniDiffuserTextDecoder, VersatileDiffusionDualGuidedPipeline, VersatileDiffusionImageVariationPipeline, VersatileDiffusionPipeline, VersatileDiffusionTextToImagePipeline, VideoToVideoSDPipeline, VQDiffusionPipeline, ) try: if not (is_torch_available() and is_transformers_available() and is_invisible_watermark_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_transformers_and_invisible_watermark_objects import * # noqa F403 else: from .pipelines import StableDiffusionXLImgaImgPipeline, StableDiffusionXLPipeline try: if not (is_torch_available() and is_transformers_available() and is_k_diffusion_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_transformers_and_k_diffusion_objects import * # noqa F403 else: from .pipelines import StableDiffusionKDiffusionPipeline try: if not (is_torch_available() and is_transformers_available() and is_onnx_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_transformers_and_onnx_objects import * # noqa F403 else: from .pipelines import ( OnnxStableDiffusionImgaImgPipeline, OnnxStableDiffusionInpaintPipeline, OnnxStableDiffusionInpaintPipelineLegacy, OnnxStableDiffusionPipeline, OnnxStableDiffusionUpscalePipeline, StableDiffusionOnnxPipeline, ) try: if not (is_torch_available() and is_librosa_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_torch_and_librosa_objects import * # noqa F403 else: from .pipelines import AudioDiffusionPipeline, Mel try: if not (is_transformers_available() and is_torch_available() and is_note_seq_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_transformers_and_torch_and_note_seq_objects import * # noqa F403 else: from .pipelines import SpectrogramDiffusionPipeline try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_flax_objects import * # noqa F403 else: from .models.controlnet_flax import FlaxControlNetModel from .models.modeling_flax_utils import FlaxModelMixin from .models.unet_ad_condition_flax import FlaxUNetaDConditionModel from .models.vae_flax import FlaxAutoencoderKL from .pipelines import FlaxDiffusionPipeline from .schedulers import ( FlaxDDIMScheduler, FlaxDDPMScheduler, FlaxDPMSolverMultistepScheduler, FlaxKarrasVeScheduler, FlaxLMSDiscreteScheduler, FlaxPNDMScheduler, FlaxSchedulerMixin, FlaxScoreSdeVeScheduler, ) try: if not (is_flax_available() and is_transformers_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_flax_and_transformers_objects import * # noqa F403 else: from .pipelines import ( FlaxStableDiffusionControlNetPipeline, FlaxStableDiffusionImgaImgPipeline, FlaxStableDiffusionInpaintPipeline, FlaxStableDiffusionPipeline, ) try: if not (is_note_seq_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from .utils.dummy_note_seq_objects import * # noqa F403 else: from .pipelines import MidiProcessor
57
import numpy # List of input, output pairs A_ : Any = ( ((5, 2, 3), 15), ((6, 5, 9), 25), ((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41), ) A_ : List[Any] = (((515, 22, 13), 555), ((61, 35, 49), 150)) A_ : Any = [2, 4, 1, 5] A_ : List[Any] = len(train_data) A_ : List[Any] = 0.009 def snake_case (UpperCAmelCase__ , UpperCAmelCase__="train" ) -> Optional[int]: return calculate_hypothesis_value(UpperCAmelCase__ , UpperCAmelCase__ ) - output( UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[Any] = 0 for i in range(len(UpperCAmelCase__ ) - 1 ): hyp_val += data_input_tuple[i] * parameter_vector[i + 1] hyp_val += parameter_vector[0] return hyp_val def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: if data_set == "train": return train_data[example_no][1] elif data_set == "test": return test_data[example_no][1] return None def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: 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 snake_case (UpperCAmelCase__ , UpperCAmelCase__=m ) -> Optional[Any]: UpperCamelCase_: Any = 0 for i in range(UpperCAmelCase__ ): if index == -1: summation_value += _error(UpperCAmelCase__ ) else: summation_value += _error(UpperCAmelCase__ ) * train_data[i][0][index] return summation_value def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[int] = summation_of_cost_derivative(UpperCAmelCase__ , UpperCAmelCase__ ) / m return cost_derivative_value def snake_case () -> Union[str, Any]: global parameter_vector # Tune these values to set a tolerance value for predicted output UpperCamelCase_: str = 0.00_0002 UpperCamelCase_: Any = 0 UpperCamelCase_: int = 0 while True: j += 1 UpperCamelCase_: int = [0, 0, 0, 0] for i in range(0 , len(UpperCAmelCase__ ) ): UpperCamelCase_: Any = get_cost_derivative(i - 1 ) UpperCamelCase_: Optional[int] = ( parameter_vector[i] - LEARNING_RATE * cost_derivative ) if numpy.allclose( UpperCAmelCase__ , UpperCAmelCase__ , atol=UpperCAmelCase__ , rtol=UpperCAmelCase__ , ): break UpperCamelCase_: Optional[int] = temp_parameter_vector print(('Number of iterations:', j) ) def snake_case () -> int: for i in range(len(UpperCAmelCase__ ) ): print(('Actual output value:', output(UpperCAmelCase__ , 'test' )) ) print(('Hypothesis output:', calculate_hypothesis_value(UpperCAmelCase__ , 'test' )) ) if __name__ == "__main__": run_gradient_descent() print('\nTesting gradient descent for a linear hypothesis function.\n') test_gradient_descent()
57
1
import json import os import shutil import tempfile import unittest import numpy as np import pytest from transformers import CLIPTokenizer, CLIPTokenizerFast from transformers.models.clip.tokenization_clip import VOCAB_FILES_NAMES from transformers.testing_utils import require_vision from transformers.utils import IMAGE_PROCESSOR_NAME, is_vision_available if is_vision_available(): from PIL import Image from transformers import CLIPImageProcessor, CLIPProcessor @require_vision class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: int = tempfile.mkdtemp() # fmt: off UpperCamelCase_: str = ['l', 'o', 'w', 'e', 'r', 's', 't', 'i', 'd', 'n', 'lo', 'l</w>', 'w</w>', 'r</w>', 't</w>', 'low</w>', 'er</w>', 'lowest</w>', 'newer</w>', 'wider', '<unk>', '<|startoftext|>', '<|endoftext|>'] # fmt: on UpperCamelCase_: Optional[int] = dict(zip(_lowerCamelCase , range(len(_lowerCamelCase ) ) ) ) UpperCamelCase_: List[str] = ['#version: 0.2', 'l o', 'lo w</w>', 'e r</w>', ''] UpperCamelCase_: List[Any] = {'unk_token': '<unk>'} UpperCamelCase_: Optional[int] = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['vocab_file'] ) UpperCamelCase_: int = os.path.join(self.tmpdirname , VOCAB_FILES_NAMES['merges_file'] ) with open(self.vocab_file , 'w' , encoding='utf-8' ) as fp: fp.write(json.dumps(_lowerCamelCase ) + '\n' ) with open(self.merges_file , 'w' , encoding='utf-8' ) as fp: fp.write('\n'.join(_lowerCamelCase ) ) UpperCamelCase_: Optional[Any] = { 'do_resize': True, 'size': 2_0, 'do_center_crop': True, 'crop_size': 1_8, 'do_normalize': True, 'image_mean': [0.4_8_1_4_5_4_6_6, 0.4_5_7_8_2_7_5, 0.4_0_8_2_1_0_7_3], 'image_std': [0.2_6_8_6_2_9_5_4, 0.2_6_1_3_0_2_5_8, 0.2_7_5_7_7_7_1_1], } UpperCamelCase_: Optional[Any] = os.path.join(self.tmpdirname , _lowerCamelCase ) with open(self.image_processor_file , 'w' , encoding='utf-8' ) as fp: json.dump(_lowerCamelCase , _lowerCamelCase ) def _a ( self , **_lowerCamelCase ): return CLIPTokenizer.from_pretrained(self.tmpdirname , **_lowerCamelCase ) def _a ( self , **_lowerCamelCase ): return CLIPTokenizerFast.from_pretrained(self.tmpdirname , **_lowerCamelCase ) def _a ( self , **_lowerCamelCase ): return CLIPImageProcessor.from_pretrained(self.tmpdirname , **_lowerCamelCase ) def _a ( self ): shutil.rmtree(self.tmpdirname ) def _a ( self ): UpperCamelCase_: List[str] = [np.random.randint(2_5_5 , size=(3, 3_0, 4_0_0) , dtype=np.uinta )] UpperCamelCase_: List[str] = [Image.fromarray(np.moveaxis(_lowerCamelCase , 0 , -1 ) ) for x in image_inputs] return image_inputs def _a ( self ): UpperCamelCase_: Optional[Any] = self.get_tokenizer() UpperCamelCase_: Optional[int] = self.get_rust_tokenizer() UpperCamelCase_: Optional[int] = self.get_image_processor() UpperCamelCase_: List[Any] = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) processor_slow.save_pretrained(self.tmpdirname ) UpperCamelCase_: Tuple = CLIPProcessor.from_pretrained(self.tmpdirname , use_fast=_lowerCamelCase ) UpperCamelCase_: Optional[int] = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) processor_fast.save_pretrained(self.tmpdirname ) UpperCamelCase_: List[Any] = CLIPProcessor.from_pretrained(self.tmpdirname ) self.assertEqual(processor_slow.tokenizer.get_vocab() , tokenizer_slow.get_vocab() ) self.assertEqual(processor_fast.tokenizer.get_vocab() , tokenizer_fast.get_vocab() ) self.assertEqual(tokenizer_slow.get_vocab() , tokenizer_fast.get_vocab() ) self.assertIsInstance(processor_slow.tokenizer , _lowerCamelCase ) self.assertIsInstance(processor_fast.tokenizer , _lowerCamelCase ) self.assertEqual(processor_slow.image_processor.to_json_string() , image_processor.to_json_string() ) self.assertEqual(processor_fast.image_processor.to_json_string() , image_processor.to_json_string() ) self.assertIsInstance(processor_slow.image_processor , _lowerCamelCase ) self.assertIsInstance(processor_fast.image_processor , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: str = CLIPProcessor(tokenizer=self.get_tokenizer() , image_processor=self.get_image_processor() ) processor.save_pretrained(self.tmpdirname ) UpperCamelCase_: Dict = self.get_tokenizer(bos_token='(BOS)' , eos_token='(EOS)' ) UpperCamelCase_: Dict = self.get_image_processor(do_normalize=_lowerCamelCase , padding_value=1.0 ) UpperCamelCase_: Optional[Any] = CLIPProcessor.from_pretrained( self.tmpdirname , bos_token='(BOS)' , eos_token='(EOS)' , do_normalize=_lowerCamelCase , padding_value=1.0 ) self.assertEqual(processor.tokenizer.get_vocab() , tokenizer_add_kwargs.get_vocab() ) self.assertIsInstance(processor.tokenizer , _lowerCamelCase ) self.assertEqual(processor.image_processor.to_json_string() , image_processor_add_kwargs.to_json_string() ) self.assertIsInstance(processor.image_processor , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: int = self.get_image_processor() UpperCamelCase_: Tuple = self.get_tokenizer() UpperCamelCase_: Tuple = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: List[str] = self.prepare_image_inputs() UpperCamelCase_: Tuple = image_processor(_lowerCamelCase , return_tensors='np' ) UpperCamelCase_: List[str] = processor(images=_lowerCamelCase , return_tensors='np' ) for key in input_image_proc.keys(): self.assertAlmostEqual(input_image_proc[key].sum() , input_processor[key].sum() , delta=1e-2 ) def _a ( self ): UpperCamelCase_: Any = self.get_image_processor() UpperCamelCase_: List[Any] = self.get_tokenizer() UpperCamelCase_: Optional[Any] = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: List[Any] = 'lower newer' UpperCamelCase_: List[str] = processor(text=_lowerCamelCase ) UpperCamelCase_: str = tokenizer(_lowerCamelCase ) for key in encoded_tok.keys(): self.assertListEqual(encoded_tok[key] , encoded_processor[key] ) def _a ( self ): UpperCamelCase_: Optional[Any] = self.get_image_processor() UpperCamelCase_: Tuple = self.get_tokenizer() UpperCamelCase_: Union[str, Any] = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = 'lower newer' UpperCamelCase_: List[str] = self.prepare_image_inputs() UpperCamelCase_: Optional[Any] = processor(text=_lowerCamelCase , images=_lowerCamelCase ) self.assertListEqual(list(inputs.keys() ) , ['input_ids', 'attention_mask', 'pixel_values'] ) # test if it raises when no input is passed with pytest.raises(_lowerCamelCase ): processor() def _a ( self ): UpperCamelCase_: str = self.get_image_processor() UpperCamelCase_: Any = self.get_tokenizer() UpperCamelCase_: List[str] = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: List[Any] = [[1, 4, 5, 8, 1, 0, 8], [3, 4, 3, 1, 1, 8, 9]] UpperCamelCase_: Any = processor.batch_decode(_lowerCamelCase ) UpperCamelCase_: str = tokenizer.batch_decode(_lowerCamelCase ) self.assertListEqual(_lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: Tuple = self.get_image_processor() UpperCamelCase_: Tuple = self.get_tokenizer() UpperCamelCase_: List[str] = CLIPProcessor(tokenizer=_lowerCamelCase , image_processor=_lowerCamelCase ) UpperCamelCase_: Any = 'lower newer' UpperCamelCase_: int = self.prepare_image_inputs() UpperCamelCase_: Dict = processor(text=_lowerCamelCase , images=_lowerCamelCase ) self.assertListEqual(list(inputs.keys() ) , processor.model_input_names )
57
from ...utils import ( OptionalDependencyNotAvailable, is_flax_available, is_torch_available, is_transformers_available, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .multicontrolnet import MultiControlNetModel from .pipeline_controlnet import StableDiffusionControlNetPipeline from .pipeline_controlnet_imgaimg import StableDiffusionControlNetImgaImgPipeline from .pipeline_controlnet_inpaint import StableDiffusionControlNetInpaintPipeline if is_transformers_available() and is_flax_available(): from .pipeline_flax_controlnet import FlaxStableDiffusionControlNetPipeline
57
1
import numpy as np def snake_case (UpperCAmelCase__ ) -> np.array: return (2 / (1 + np.exp(-2 * vector ))) - 1 if __name__ == "__main__": import doctest doctest.testmod()
57
from __future__ import annotations import unittest from transformers import AutoTokenizer, PegasusConfig, is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, require_tokenizers, slow from transformers.utils import cached_property from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import TFAutoModelForSeqaSeqLM, TFPegasusForConditionalGeneration, TFPegasusModel @require_tf class _lowerCAmelCase: """simple docstring""" a : int =PegasusConfig a : List[str] ={} a : Optional[int] ='''gelu''' def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=False , _lowerCamelCase=9_9 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=4_0 , _lowerCamelCase=2 , _lowerCamelCase=1 , _lowerCamelCase=0 , ): UpperCamelCase_: List[Any] = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = seq_length UpperCamelCase_: List[str] = is_training UpperCamelCase_: Any = use_labels UpperCamelCase_: Optional[Any] = vocab_size UpperCamelCase_: Tuple = hidden_size UpperCamelCase_: List[Any] = num_hidden_layers UpperCamelCase_: Any = num_attention_heads UpperCamelCase_: Optional[Any] = intermediate_size UpperCamelCase_: Optional[int] = hidden_dropout_prob UpperCamelCase_: int = attention_probs_dropout_prob UpperCamelCase_: Union[str, Any] = max_position_embeddings UpperCamelCase_: Dict = eos_token_id UpperCamelCase_: Union[str, Any] = pad_token_id UpperCamelCase_: List[Any] = bos_token_id def _a ( self ): UpperCamelCase_: Union[str, Any] = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size ) UpperCamelCase_: int = tf.expand_dims(tf.constant([self.eos_token_id] * self.batch_size ) , 1 ) UpperCamelCase_: List[str] = tf.concat([input_ids, eos_tensor] , axis=1 ) UpperCamelCase_: Tuple = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) UpperCamelCase_: Tuple = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_ffn_dim=self.intermediate_size , dropout=self.hidden_dropout_prob , attention_dropout=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , eos_token_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) UpperCamelCase_: Optional[Any] = prepare_pegasus_inputs_dict(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) return config, inputs_dict def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = TFPegasusModel(config=_lowerCamelCase ).get_decoder() UpperCamelCase_: Optional[int] = inputs_dict['input_ids'] UpperCamelCase_: Optional[int] = input_ids[:1, :] UpperCamelCase_: int = inputs_dict['attention_mask'][:1, :] UpperCamelCase_: Optional[int] = inputs_dict['head_mask'] UpperCamelCase_: Optional[int] = 1 # first forward pass UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase , attention_mask=_lowerCamelCase , head_mask=_lowerCamelCase , use_cache=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: int = outputs.to_tuple() # create hypothetical next token and extent to next_input_ids UpperCamelCase_: int = ids_tensor((self.batch_size, 3) , config.vocab_size ) UpperCamelCase_: List[Any] = tf.cast(ids_tensor((self.batch_size, 3) , 2 ) , tf.inta ) # append to next input_ids and UpperCamelCase_: Union[str, Any] = tf.concat([input_ids, next_tokens] , axis=-1 ) UpperCamelCase_: int = tf.concat([attention_mask, next_attn_mask] , axis=-1 ) UpperCamelCase_: Any = model(_lowerCamelCase , attention_mask=_lowerCamelCase )[0] UpperCamelCase_: int = model(_lowerCamelCase , attention_mask=_lowerCamelCase , past_key_values=_lowerCamelCase )[0] self.parent.assertEqual(next_tokens.shape[1] , output_from_past.shape[1] ) # select random slice UpperCamelCase_: Optional[int] = int(ids_tensor((1,) , output_from_past.shape[-1] ) ) UpperCamelCase_: Any = output_from_no_past[:, -3:, random_slice_idx] UpperCamelCase_: Union[str, Any] = output_from_past[:, :, random_slice_idx] # test that outputs are equal for slice tf.debugging.assert_near(_lowerCamelCase , _lowerCamelCase , rtol=1e-3 ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , ) -> str: if attention_mask is None: UpperCamelCase_: Optional[Any] = tf.cast(tf.math.not_equal(UpperCAmelCase__ , config.pad_token_id ) , tf.inta ) if decoder_attention_mask is None: UpperCamelCase_: int = tf.concat( [ tf.ones(decoder_input_ids[:, :1].shape , dtype=tf.inta ), tf.cast(tf.math.not_equal(decoder_input_ids[:, 1:] , config.pad_token_id ) , tf.inta ), ] , axis=-1 , ) if head_mask is None: UpperCamelCase_: str = tf.ones((config.encoder_layers, config.encoder_attention_heads) ) if decoder_head_mask is None: UpperCamelCase_: Any = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) if cross_attn_head_mask is None: UpperCamelCase_: int = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, "head_mask": head_mask, "decoder_head_mask": decoder_head_mask, "cross_attn_head_mask": cross_attn_head_mask, } @require_tf class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Tuple =(TFPegasusForConditionalGeneration, TFPegasusModel) if is_tf_available() else () a : int =(TFPegasusForConditionalGeneration,) if is_tf_available() else () a : Tuple =( { '''conversational''': TFPegasusForConditionalGeneration, '''feature-extraction''': TFPegasusModel, '''summarization''': TFPegasusForConditionalGeneration, '''text2text-generation''': TFPegasusForConditionalGeneration, '''translation''': TFPegasusForConditionalGeneration, } if is_tf_available() else {} ) a : List[str] =True a : List[str] =False a : Tuple =False def _a ( self ): UpperCamelCase_: Dict = TFPegasusModelTester(self ) UpperCamelCase_: Any = ConfigTester(self , config_class=_lowerCamelCase ) def _a ( self ): self.config_tester.run_common_tests() def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs_for_common() self.model_tester.check_decoder_model_past_large_inputs(*_lowerCamelCase ) @require_sentencepiece @require_tokenizers @require_tf class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : Dict =[ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] a : int =[ '''California\'s largest electricity provider has cut power to hundreds of thousands of customers in an effort to''' ''' reduce the risk of wildfires.''', '''N-Dubz have revealed they\'re "grateful" to have been nominated for four Mobo Awards.''', ] # differs slightly from pytorch, likely due to numerical differences in linear layers a : Union[str, Any] ='''google/pegasus-xsum''' @cached_property def _a ( self ): return AutoTokenizer.from_pretrained(self.model_name ) @cached_property def _a ( self ): UpperCamelCase_: Optional[Any] = TFAutoModelForSeqaSeqLM.from_pretrained(self.model_name ) return model def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Dict = self.translate_src_text(**_lowerCamelCase ) assert self.expected_text == generated_words def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = self.tokenizer(self.src_text , **_lowerCamelCase , padding=_lowerCamelCase , return_tensors='tf' ) UpperCamelCase_: Any = self.model.generate( model_inputs.input_ids , attention_mask=model_inputs.attention_mask , num_beams=2 , use_cache=_lowerCamelCase , ) UpperCamelCase_: str = self.tokenizer.batch_decode(generated_ids.numpy() , skip_special_tokens=_lowerCamelCase ) return generated_words @slow def _a ( self ): self._assert_generated_batch_equal_expected()
57
1
import itertools import json import linecache import os import pickle import re import socket import string from collections import Counter from logging import getLogger from pathlib import Path from typing import Callable, Dict, Iterable, List import git import torch from torch.utils.data import Dataset from transformers import BartTokenizer, RagTokenizer, TaTokenizer def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=True , UpperCAmelCase__="pt" ) -> List[str]: UpperCamelCase_: List[str] = {'add_prefix_space': True} if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ) and not line.startswith(' ' ) else {} UpperCamelCase_: List[Any] = padding_side return tokenizer( [line] , max_length=UpperCAmelCase__ , padding='max_length' if pad_to_max_length else None , truncation=UpperCAmelCase__ , return_tensors=UpperCAmelCase__ , add_special_tokens=UpperCAmelCase__ , **UpperCAmelCase__ , ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , ) -> Tuple: UpperCamelCase_: Dict = input_ids.ne(UpperCAmelCase__ ).any(dim=0 ) if attention_mask is None: return input_ids[:, keep_column_mask] else: return (input_ids[:, keep_column_mask], attention_mask[:, keep_column_mask]) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase="train" , _lowerCamelCase=None , _lowerCamelCase=None , _lowerCamelCase=None , _lowerCamelCase="" , ): super().__init__() UpperCamelCase_: str = Path(_lowerCamelCase ).joinpath(type_path + '.source' ) UpperCamelCase_: Optional[int] = Path(_lowerCamelCase ).joinpath(type_path + '.target' ) UpperCamelCase_: Dict = self.get_char_lens(self.src_file ) UpperCamelCase_: Optional[int] = max_source_length UpperCamelCase_: Any = max_target_length assert min(self.src_lens ) > 0, f'''found empty line in {self.src_file}''' UpperCamelCase_: str = tokenizer UpperCamelCase_: str = prefix if n_obs is not None: UpperCamelCase_: Optional[Any] = self.src_lens[:n_obs] UpperCamelCase_: str = src_lang UpperCamelCase_: Optional[Any] = tgt_lang def __len__( self ): return len(self.src_lens ) def __getitem__( self , _lowerCamelCase ): UpperCamelCase_: Union[str, Any] = index + 1 # linecache starts at 1 UpperCamelCase_: Any = self.prefix + linecache.getline(str(self.src_file ) , _lowerCamelCase ).rstrip('\n' ) UpperCamelCase_: str = linecache.getline(str(self.tgt_file ) , _lowerCamelCase ).rstrip('\n' ) assert source_line, f'''empty source line for index {index}''' assert tgt_line, f'''empty tgt line for index {index}''' # Need to add eos token manually for T5 if isinstance(self.tokenizer , _lowerCamelCase ): source_line += self.tokenizer.eos_token tgt_line += self.tokenizer.eos_token # Pad source and target to the right UpperCamelCase_: int = ( self.tokenizer.question_encoder if isinstance(self.tokenizer , _lowerCamelCase ) else self.tokenizer ) UpperCamelCase_: Optional[Any] = self.tokenizer.generator if isinstance(self.tokenizer , _lowerCamelCase ) else self.tokenizer UpperCamelCase_: Optional[int] = encode_line(_lowerCamelCase , _lowerCamelCase , self.max_source_length , 'right' ) UpperCamelCase_: Optional[Any] = encode_line(_lowerCamelCase , _lowerCamelCase , self.max_target_length , 'right' ) UpperCamelCase_: Optional[Any] = source_inputs['input_ids'].squeeze() UpperCamelCase_: Union[str, Any] = target_inputs['input_ids'].squeeze() UpperCamelCase_: List[Any] = source_inputs['attention_mask'].squeeze() return { "input_ids": source_ids, "attention_mask": src_mask, "decoder_input_ids": target_ids, } @staticmethod def _a ( _lowerCamelCase ): return [len(_lowerCamelCase ) for x in Path(_lowerCamelCase ).open().readlines()] def _a ( self , _lowerCamelCase ): UpperCamelCase_: str = torch.stack([x['input_ids'] for x in batch] ) UpperCamelCase_: Optional[Any] = torch.stack([x['attention_mask'] for x in batch] ) UpperCamelCase_: Dict = torch.stack([x['decoder_input_ids'] for x in batch] ) UpperCamelCase_: Optional[int] = ( self.tokenizer.generator.pad_token_id if isinstance(self.tokenizer , _lowerCamelCase ) else self.tokenizer.pad_token_id ) UpperCamelCase_: int = ( self.tokenizer.question_encoder.pad_token_id if isinstance(self.tokenizer , _lowerCamelCase ) else self.tokenizer.pad_token_id ) UpperCamelCase_: Any = trim_batch(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: int = trim_batch(_lowerCamelCase , _lowerCamelCase , attention_mask=_lowerCamelCase ) UpperCamelCase_: List[str] = { 'input_ids': source_ids, 'attention_mask': source_mask, 'decoder_input_ids': y, } return batch A_ : int = getLogger(__name__) def snake_case (UpperCAmelCase__ ) -> Optional[int]: return list(itertools.chain.from_iterable(UpperCAmelCase__ ) ) def snake_case (UpperCAmelCase__ ) -> None: UpperCamelCase_: Any = get_git_info() save_json(UpperCAmelCase__ , os.path.join(UpperCAmelCase__ , 'git_log.json' ) ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=4 , **UpperCAmelCase__ ) -> Dict: with open(UpperCAmelCase__ , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ , indent=UpperCAmelCase__ , **UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Any: with open(UpperCAmelCase__ ) as f: return json.load(UpperCAmelCase__ ) def snake_case () -> Optional[Any]: UpperCamelCase_: List[Any] = git.Repo(search_parent_directories=UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = { 'repo_id': str(UpperCAmelCase__ ), 'repo_sha': str(repo.head.object.hexsha ), 'repo_branch': str(repo.active_branch ), 'hostname': str(socket.gethostname() ), } return repo_infos def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List: return list(map(UpperCAmelCase__ , UpperCAmelCase__ ) ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> str: with open(UpperCAmelCase__ , 'wb' ) as f: return pickle.dump(UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Tuple: def remove_articles(UpperCAmelCase__ ): return re.sub(R'\b(a|an|the)\b' , ' ' , UpperCAmelCase__ ) def white_space_fix(UpperCAmelCase__ ): return " ".join(text.split() ) def remove_punc(UpperCAmelCase__ ): UpperCamelCase_: Dict = set(string.punctuation ) return "".join(ch for ch in text if ch not in exclude ) def lower(UpperCAmelCase__ ): return text.lower() return white_space_fix(remove_articles(remove_punc(lower(UpperCAmelCase__ ) ) ) ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> str: UpperCamelCase_: int = normalize_answer(UpperCAmelCase__ ).split() UpperCamelCase_: Optional[int] = normalize_answer(UpperCAmelCase__ ).split() UpperCamelCase_: Any = Counter(UpperCAmelCase__ ) & Counter(UpperCAmelCase__ ) UpperCamelCase_: List[str] = sum(common.values() ) if num_same == 0: return 0 UpperCamelCase_: List[str] = 1.0 * num_same / len(UpperCAmelCase__ ) UpperCamelCase_: str = 1.0 * num_same / len(UpperCAmelCase__ ) UpperCamelCase_: int = (2 * precision * recall) / (precision + recall) return fa def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: return normalize_answer(UpperCAmelCase__ ) == normalize_answer(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: assert len(UpperCAmelCase__ ) == len(UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = 0 for hypo, pred in zip(UpperCAmelCase__ , UpperCAmelCase__ ): em += exact_match_score(UpperCAmelCase__ , UpperCAmelCase__ ) if len(UpperCAmelCase__ ) > 0: em /= len(UpperCAmelCase__ ) return {"em": em} def snake_case (UpperCAmelCase__ ) -> int: return model_prefix.startswith('rag' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: UpperCamelCase_: Any = {p: p for p in extra_params} # T5 models don't have `dropout` param, they have `dropout_rate` instead UpperCamelCase_: Any = 'dropout_rate' for p in extra_params: if getattr(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ): if not hasattr(UpperCAmelCase__ , UpperCAmelCase__ ) and not hasattr(UpperCAmelCase__ , equivalent_param[p] ): logger.info('config doesn\'t have a `{}` attribute'.format(UpperCAmelCase__ ) ) delattr(UpperCAmelCase__ , UpperCAmelCase__ ) continue UpperCamelCase_: List[str] = p if hasattr(UpperCAmelCase__ , UpperCAmelCase__ ) else equivalent_param[p] setattr(UpperCAmelCase__ , UpperCAmelCase__ , getattr(UpperCAmelCase__ , UpperCAmelCase__ ) ) delattr(UpperCAmelCase__ , UpperCAmelCase__ ) return hparams, config
57
import unittest import numpy as np def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = None , ) -> np.ndarray: UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: List[Any] = np.shape(UpperCAmelCase__ ) if shape_a[0] != shape_b[0]: UpperCamelCase_: Any = ( 'Expected the same number of rows for A and B. ' F'''Instead found A of size {shape_a} and B of size {shape_b}''' ) raise ValueError(UpperCAmelCase__ ) if shape_b[1] != shape_c[1]: UpperCamelCase_: int = ( 'Expected the same number of columns for B and C. ' F'''Instead found B of size {shape_b} and C of size {shape_c}''' ) raise ValueError(UpperCAmelCase__ ) UpperCamelCase_: Dict = pseudo_inv if a_inv is None: try: UpperCamelCase_: Optional[Any] = np.linalg.inv(UpperCAmelCase__ ) except np.linalg.LinAlgError: raise ValueError( 'Input matrix A is not invertible. Cannot compute Schur complement.' ) return mat_c - mat_b.T @ a_inv @ mat_b class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Any = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: Dict = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: Tuple = np.array([[2, 1], [6, 3]] ) UpperCamelCase_: Tuple = schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = np.block([[a, b], [b.T, c]] ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: Dict = np.linalg.det(_lowerCamelCase ) self.assertAlmostEqual(_lowerCamelCase , det_a * det_s ) def _a ( self ): UpperCamelCase_: int = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: List[str] = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[str] = np.array([[2, 1], [6, 3]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: str = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[Any] = np.array([[2, 1, 3], [6, 3, 5]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if __name__ == "__main__": import doctest doctest.testmod() unittest.main()
57
1
import argparse import os from transformers.utils import direct_transformers_import # All paths are set with the intent you should run this script from the root of the repo with the command # python utils/check_task_guides.py A_ : Optional[Any] = 'src/transformers' A_ : Any = 'docs/source/en/tasks' def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> int: with open(UpperCAmelCase__ , 'r' , encoding='utf-8' , newline='\n' ) as f: UpperCamelCase_: Union[str, Any] = f.readlines() # Find the start prompt. UpperCamelCase_: str = 0 while not lines[start_index].startswith(UpperCAmelCase__ ): start_index += 1 start_index += 1 UpperCamelCase_: Union[str, Any] = start_index while not lines[end_index].startswith(UpperCAmelCase__ ): end_index += 1 end_index -= 1 while len(lines[start_index] ) <= 1: start_index += 1 while len(lines[end_index] ) <= 1: end_index -= 1 end_index += 1 return "".join(lines[start_index:end_index] ), start_index, end_index, lines # This is to make sure the transformers module imported is the one in the repo. A_ : List[Any] = direct_transformers_import(TRANSFORMERS_PATH) A_ : Union[str, Any] = { 'asr.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_CTC_MAPPING_NAMES, 'audio_classification.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_AUDIO_CLASSIFICATION_MAPPING_NAMES, 'language_modeling.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_CAUSAL_LM_MAPPING_NAMES, 'image_classification.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_IMAGE_CLASSIFICATION_MAPPING_NAMES, 'masked_language_modeling.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_MASKED_LM_MAPPING_NAMES, 'multiple_choice.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_MULTIPLE_CHOICE_MAPPING_NAMES, 'object_detection.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_OBJECT_DETECTION_MAPPING_NAMES, 'question_answering.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_QUESTION_ANSWERING_MAPPING_NAMES, 'semantic_segmentation.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_SEMANTIC_SEGMENTATION_MAPPING_NAMES, 'sequence_classification.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_SEQUENCE_CLASSIFICATION_MAPPING_NAMES, 'summarization.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_SEQ_TO_SEQ_CAUSAL_LM_MAPPING_NAMES, 'token_classification.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_TOKEN_CLASSIFICATION_MAPPING_NAMES, 'translation.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_SEQ_TO_SEQ_CAUSAL_LM_MAPPING_NAMES, 'video_classification.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_VIDEO_CLASSIFICATION_MAPPING_NAMES, 'document_question_answering.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_DOCUMENT_QUESTION_ANSWERING_MAPPING_NAMES, 'monocular_depth_estimation.md': transformers_module.models.auto.modeling_auto.MODEL_FOR_DEPTH_ESTIMATION_MAPPING_NAMES, } # This list contains model types used in some task guides that are not in `CONFIG_MAPPING_NAMES` (therefore not in any # `MODEL_MAPPING_NAMES` or any `MODEL_FOR_XXX_MAPPING_NAMES`). A_ : List[Any] = { 'summarization.md': ('nllb',), 'translation.md': ('nllb',), } def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: UpperCamelCase_: List[str] = TASK_GUIDE_TO_MODELS[task_guide] UpperCamelCase_: Union[str, Any] = SPECIAL_TASK_GUIDE_TO_MODEL_TYPES.get(UpperCAmelCase__ , set() ) UpperCamelCase_: str = { code: name for code, name in transformers_module.MODEL_NAMES_MAPPING.items() if (code in model_maping_names or code in special_model_types) } return ", ".join([F'''[{name}](../model_doc/{code})''' for code, name in model_names.items()] ) + "\n" def snake_case (UpperCAmelCase__ , UpperCAmelCase__=False ) -> Any: UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: str = _find_text_in_file( filename=os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) , start_prompt='<!--This tip is automatically generated by `make fix-copies`, do not fill manually!-->' , end_prompt='<!--End of the generated tip-->' , ) UpperCamelCase_: Optional[Any] = get_model_list_for_task(UpperCAmelCase__ ) if current_list != new_list: if overwrite: with open(os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) , 'w' , encoding='utf-8' , newline='\n' ) as f: f.writelines(lines[:start_index] + [new_list] + lines[end_index:] ) else: raise ValueError( F'''The list of models that can be used in the {task_guide} guide needs an update. Run `make fix-copies`''' ' to fix this.' ) if __name__ == "__main__": A_ : Optional[int] = argparse.ArgumentParser() parser.add_argument('--fix_and_overwrite', action='store_true', help='Whether to fix inconsistencies.') A_ : str = parser.parse_args() for task_guide in TASK_GUIDE_TO_MODELS.keys(): check_model_list_for_task(task_guide, args.fix_and_overwrite)
57
import argparse import json import os from collections import OrderedDict import torch from transformers import LukeConfig, LukeForMaskedLM, MLukeTokenizer, XLMRobertaTokenizer from transformers.tokenization_utils_base import AddedToken @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> int: # Load configuration defined in the metadata file with open(UpperCAmelCase__ ) as metadata_file: UpperCamelCase_: Tuple = json.load(UpperCAmelCase__ ) UpperCamelCase_: List[str] = LukeConfig(use_entity_aware_attention=UpperCAmelCase__ , **metadata['model_config'] ) # Load in the weights from the checkpoint_path UpperCamelCase_: Optional[int] = torch.load(UpperCAmelCase__ , map_location='cpu' )['module'] # Load the entity vocab file UpperCamelCase_: Any = load_original_entity_vocab(UpperCAmelCase__ ) # add an entry for [MASK2] UpperCamelCase_: List[str] = max(entity_vocab.values() ) + 1 config.entity_vocab_size += 1 UpperCamelCase_: Union[str, Any] = XLMRobertaTokenizer.from_pretrained(metadata['model_config']['bert_model_name'] ) # Add special tokens to the token vocabulary for downstream tasks UpperCamelCase_: Any = AddedToken('<ent>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = AddedToken('<ent2>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) tokenizer.add_special_tokens({'additional_special_tokens': [entity_token_a, entity_token_a]} ) config.vocab_size += 2 print(F'''Saving tokenizer to {pytorch_dump_folder_path}''' ) tokenizer.save_pretrained(UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'r' ) as f: UpperCamelCase_: Union[str, Any] = json.load(UpperCAmelCase__ ) UpperCamelCase_: str = 'MLukeTokenizer' with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , MLukeTokenizer.vocab_files_names['entity_vocab_file'] ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) # Initialize the embeddings of the special tokens UpperCamelCase_: Any = tokenizer.convert_tokens_to_ids(['@'] )[0] UpperCamelCase_: List[str] = tokenizer.convert_tokens_to_ids(['#'] )[0] UpperCamelCase_: Tuple = state_dict['embeddings.word_embeddings.weight'] UpperCamelCase_: int = word_emb[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = word_emb[enta_init_index].unsqueeze(0 ) UpperCamelCase_: str = torch.cat([word_emb, ent_emb, enta_emb] ) # add special tokens for 'entity_predictions.bias' for bias_name in ["lm_head.decoder.bias", "lm_head.bias"]: UpperCamelCase_: Union[str, Any] = state_dict[bias_name] UpperCamelCase_: Tuple = decoder_bias[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = decoder_bias[enta_init_index].unsqueeze(0 ) UpperCamelCase_: Optional[Any] = torch.cat([decoder_bias, ent_decoder_bias, enta_decoder_bias] ) # Initialize the query layers of the entity-aware self-attention mechanism for layer_index in range(config.num_hidden_layers ): for matrix_name in ["query.weight", "query.bias"]: UpperCamelCase_: List[Any] = F'''encoder.layer.{layer_index}.attention.self.''' UpperCamelCase_: str = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] # Initialize the embedding of the [MASK2] entity using that of the [MASK] entity for downstream tasks UpperCamelCase_: List[str] = state_dict['entity_embeddings.entity_embeddings.weight'] UpperCamelCase_: int = entity_emb[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: Tuple = torch.cat([entity_emb, entity_mask_emb] ) # add [MASK2] for 'entity_predictions.bias' UpperCamelCase_: Optional[Any] = state_dict['entity_predictions.bias'] UpperCamelCase_: List[str] = entity_prediction_bias[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: List[Any] = torch.cat([entity_prediction_bias, entity_mask_bias] ) UpperCamelCase_: List[Any] = LukeForMaskedLM(config=UpperCAmelCase__ ).eval() state_dict.pop('entity_predictions.decoder.weight' ) state_dict.pop('lm_head.decoder.weight' ) state_dict.pop('lm_head.decoder.bias' ) UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if not (key.startswith('lm_head' ) or key.startswith('entity_predictions' )): UpperCamelCase_: Union[str, Any] = state_dict[key] else: UpperCamelCase_: Dict = state_dict[key] UpperCamelCase_ ,UpperCamelCase_: Optional[int] = model.load_state_dict(UpperCAmelCase__ , strict=UpperCAmelCase__ ) if set(UpperCAmelCase__ ) != {"luke.embeddings.position_ids"}: raise ValueError(F'''Unexpected unexpected_keys: {unexpected_keys}''' ) if set(UpperCAmelCase__ ) != { "lm_head.decoder.weight", "lm_head.decoder.bias", "entity_predictions.decoder.weight", }: raise ValueError(F'''Unexpected missing_keys: {missing_keys}''' ) model.tie_weights() assert (model.luke.embeddings.word_embeddings.weight == model.lm_head.decoder.weight).all() assert (model.luke.entity_embeddings.entity_embeddings.weight == model.entity_predictions.decoder.weight).all() # Check outputs UpperCamelCase_: Optional[int] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ , task='entity_classification' ) UpperCamelCase_: Tuple = 'ISO 639-3 uses the code fas for the dialects spoken across Iran and アフガニスタン (Afghanistan).' UpperCamelCase_: Optional[int] = (0, 9) UpperCamelCase_: Union[str, Any] = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: str = model(**UpperCAmelCase__ ) # Verify word hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: int = torch.Size((1, 3_3, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[0.0892, 0.0596, -0.2819], [0.0134, 0.1199, 0.0573], [-0.0169, 0.0927, 0.0644]] ) if not (outputs.last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.last_hidden_state.shape is {outputs.last_hidden_state.shape}, Expected shape is {expected_shape}''' ) if not torch.allclose(outputs.last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify entity hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: Dict = torch.Size((1, 1, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[-0.1482, 0.0609, 0.0322]] ) if not (outputs.entity_last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.entity_last_hidden_state.shape is {outputs.entity_last_hidden_state.shape}, Expected shape is''' F''' {expected_shape}''' ) if not torch.allclose(outputs.entity_last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify masked word/entity prediction UpperCamelCase_: str = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = 'Tokyo is the capital of <mask>.' UpperCamelCase_: Dict = (2_4, 3_0) UpperCamelCase_: int = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: Dict = model(**UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = encoding['input_ids'][0].tolist() UpperCamelCase_: List[Any] = input_ids.index(tokenizer.convert_tokens_to_ids('<mask>' ) ) UpperCamelCase_: Any = outputs.logits[0][mask_position_id].argmax(dim=-1 ) assert "Japan" == tokenizer.decode(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.entity_logits[0][0].argmax().item() UpperCamelCase_: Optional[Any] = [ entity for entity, entity_id in tokenizer.entity_vocab.items() if entity_id == predicted_entity_id ] assert [e for e in multilingual_predicted_entities if e.startswith('en:' )][0] == "en:Japan" # Finally, save our PyTorch model and tokenizer print('Saving PyTorch model to {}'.format(UpperCAmelCase__ ) ) model.save_pretrained(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: Optional[Any] = ['[MASK]', '[PAD]', '[UNK]'] UpperCamelCase_: Any = [json.loads(UpperCAmelCase__ ) for line in open(UpperCAmelCase__ )] UpperCamelCase_: Tuple = {} for entry in data: UpperCamelCase_: Optional[int] = entry['id'] for entity_name, language in entry["entities"]: if entity_name in SPECIAL_TOKENS: UpperCamelCase_: Union[str, Any] = entity_id break UpperCamelCase_: Dict = F'''{language}:{entity_name}''' UpperCamelCase_: Optional[int] = entity_id return new_mapping if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument('--checkpoint_path', type=str, help='Path to a pytorch_model.bin file.') parser.add_argument( '--metadata_path', default=None, type=str, help='Path to a metadata.json file, defining the configuration.' ) parser.add_argument( '--entity_vocab_path', default=None, type=str, help='Path to an entity_vocab.tsv file, containing the entity vocabulary.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to where to dump the output PyTorch model.' ) parser.add_argument( '--model_size', default='base', type=str, choices=['base', 'large'], help='Size of the model to be converted.' ) A_ : List[str] = parser.parse_args() convert_luke_checkpoint( args.checkpoint_path, args.metadata_path, args.entity_vocab_path, args.pytorch_dump_folder_path, args.model_size, )
57
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_sentencepiece_available A_ : List[str] = {} try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = ['BartphoTokenizer'] if TYPE_CHECKING: try: if not is_sentencepiece_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_bartpho import BartphoTokenizer else: import sys A_ : Optional[Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging A_ : Optional[Any] = logging.get_logger(__name__) A_ : Optional[Any] = { 'distilbert-base-uncased': 'https://huggingface.co/distilbert-base-uncased/resolve/main/config.json', 'distilbert-base-uncased-distilled-squad': ( 'https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-cased': 'https://huggingface.co/distilbert-base-cased/resolve/main/config.json', 'distilbert-base-cased-distilled-squad': ( 'https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-german-cased': 'https://huggingface.co/distilbert-base-german-cased/resolve/main/config.json', 'distilbert-base-multilingual-cased': ( 'https://huggingface.co/distilbert-base-multilingual-cased/resolve/main/config.json' ), 'distilbert-base-uncased-finetuned-sst-2-english': ( 'https://huggingface.co/distilbert-base-uncased-finetuned-sst-2-english/resolve/main/config.json' ), } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Dict ='''distilbert''' a : List[str] ={ '''hidden_size''': '''dim''', '''num_attention_heads''': '''n_heads''', '''num_hidden_layers''': '''n_layers''', } def __init__( self , _lowerCamelCase=3_0_5_2_2 , _lowerCamelCase=5_1_2 , _lowerCamelCase=False , _lowerCamelCase=6 , _lowerCamelCase=1_2 , _lowerCamelCase=7_6_8 , _lowerCamelCase=4 * 7_6_8 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=0.0_2 , _lowerCamelCase=0.1 , _lowerCamelCase=0.2 , _lowerCamelCase=0 , **_lowerCamelCase , ): UpperCamelCase_: Tuple = vocab_size UpperCamelCase_: str = max_position_embeddings UpperCamelCase_: Optional[int] = sinusoidal_pos_embds UpperCamelCase_: Union[str, Any] = n_layers UpperCamelCase_: Optional[int] = n_heads UpperCamelCase_: int = dim UpperCamelCase_: Tuple = hidden_dim UpperCamelCase_: Any = dropout UpperCamelCase_: Optional[Any] = attention_dropout UpperCamelCase_: List[str] = activation UpperCamelCase_: Optional[Any] = initializer_range UpperCamelCase_: Optional[Any] = qa_dropout UpperCamelCase_: List[str] = seq_classif_dropout super().__init__(**_lowerCamelCase , pad_token_id=_lowerCamelCase ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" @property def _a ( self ): if self.task == "multiple-choice": UpperCamelCase_: Any = {0: 'batch', 1: 'choice', 2: 'sequence'} else: UpperCamelCase_: List[Any] = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ] )
57
1
import doctest import glob import importlib import inspect import os import re from contextlib import contextmanager from functools import wraps from unittest.mock import patch import numpy as np import pytest from absl.testing import parameterized import datasets from datasets import load_metric from .utils import for_all_test_methods, local, slow # mark all tests as integration A_ : Union[str, Any] = pytest.mark.integration A_ : Any = {'comet'} A_ : Tuple = importlib.util.find_spec('fairseq') is not None A_ : List[Any] = {'code_eval'} A_ : Union[str, Any] = os.name == 'nt' A_ : Union[str, Any] = {'bertscore', 'frugalscore', 'perplexity'} A_ : List[str] = importlib.util.find_spec('transformers') is not None def snake_case (UpperCAmelCase__ ) -> Tuple: @wraps(UpperCAmelCase__ ) def wrapper(self , UpperCAmelCase__ ): if not _has_fairseq and metric_name in REQUIRE_FAIRSEQ: self.skipTest('"test requires Fairseq"' ) else: test_case(self , UpperCAmelCase__ ) return wrapper def snake_case (UpperCAmelCase__ ) -> Any: @wraps(UpperCAmelCase__ ) def wrapper(self , UpperCAmelCase__ ): if not _has_transformers and metric_name in REQUIRE_TRANSFORMERS: self.skipTest('"test requires transformers"' ) else: test_case(self , UpperCAmelCase__ ) return wrapper def snake_case (UpperCAmelCase__ ) -> Optional[int]: @wraps(UpperCAmelCase__ ) def wrapper(self , UpperCAmelCase__ ): if _on_windows and metric_name in UNSUPPORTED_ON_WINDOWS: self.skipTest('"test not supported on Windows"' ) else: test_case(self , UpperCAmelCase__ ) return wrapper def snake_case () -> List[Any]: UpperCamelCase_: Optional[int] = [metric_dir.split(os.sep )[-2] for metric_dir in glob.glob('./metrics/*/' )] return [{"testcase_name": x, "metric_name": x} for x in metrics if x != "gleu"] # gleu is unfinished @parameterized.named_parameters(get_local_metric_names() ) @for_all_test_methods( UpperCAmelCase_ , UpperCAmelCase_ , UpperCAmelCase_ ) @local class _lowerCAmelCase( parameterized.TestCase ): """simple docstring""" a : Tuple ={} a : str =None @pytest.mark.filterwarnings('ignore:metric_module_factory is deprecated:FutureWarning' ) @pytest.mark.filterwarnings('ignore:load_metric is deprecated:FutureWarning' ) def _a ( self , _lowerCamelCase ): UpperCamelCase_: Any = '[...]' UpperCamelCase_: int = importlib.import_module( datasets.load.metric_module_factory(os.path.join('metrics' , _lowerCamelCase ) ).module_path ) UpperCamelCase_: List[Any] = datasets.load.import_main_class(metric_module.__name__ , dataset=_lowerCamelCase ) # check parameters UpperCamelCase_: Optional[Any] = inspect.signature(metric._compute ).parameters self.assertTrue(all(p.kind != p.VAR_KEYWORD for p in parameters.values() ) ) # no **kwargs # run doctest with self.patch_intensive_calls(_lowerCamelCase , metric_module.__name__ ): with self.use_local_metrics(): try: UpperCamelCase_: Union[str, Any] = doctest.testmod(_lowerCamelCase , verbose=_lowerCamelCase , raise_on_error=_lowerCamelCase ) except doctest.UnexpectedException as e: raise e.exc_info[1] # raise the exception that doctest caught self.assertEqual(results.failed , 0 ) self.assertGreater(results.attempted , 1 ) @slow def _a ( self , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = '[...]' UpperCamelCase_: Optional[int] = importlib.import_module( datasets.load.metric_module_factory(os.path.join('metrics' , _lowerCamelCase ) ).module_path ) # run doctest with self.use_local_metrics(): UpperCamelCase_: Union[str, Any] = doctest.testmod(_lowerCamelCase , verbose=_lowerCamelCase , raise_on_error=_lowerCamelCase ) self.assertEqual(results.failed , 0 ) self.assertGreater(results.attempted , 1 ) @contextmanager def _a ( self , _lowerCamelCase , _lowerCamelCase ): if metric_name in self.INTENSIVE_CALLS_PATCHER: with self.INTENSIVE_CALLS_PATCHER[metric_name](_lowerCamelCase ): yield else: yield @contextmanager def _a ( self ): def load_local_metric(_lowerCamelCase , *_lowerCamelCase , **_lowerCamelCase ): return load_metric(os.path.join('metrics' , _lowerCamelCase ) , *_lowerCamelCase , **_lowerCamelCase ) with patch('datasets.load_metric' ) as mock_load_metric: UpperCamelCase_: List[Any] = load_local_metric yield @classmethod def _a ( cls , _lowerCamelCase ): def wrapper(_lowerCamelCase ): UpperCamelCase_: Optional[Any] = contextmanager(_lowerCamelCase ) UpperCamelCase_: int = patcher return patcher return wrapper @LocalMetricTest.register_intensive_calls_patcher('bleurt' ) def snake_case (UpperCAmelCase__ ) -> Dict: import tensorflow.compat.va as tf from bleurt.score import Predictor tf.flags.DEFINE_string('sv' , '' , '' ) # handle pytest cli flags class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def _a ( self , _lowerCamelCase ): assert len(input_dict['input_ids'] ) == 2 return np.array([1.0_3, 1.0_4] ) # mock predict_fn which is supposed to do a forward pass with a bleurt model with patch('bleurt.score._create_predictor' ) as mock_create_predictor: UpperCamelCase_: Dict = MockedPredictor() yield @LocalMetricTest.register_intensive_calls_patcher('bertscore' ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: import torch def bert_cos_score_idf(UpperCAmelCase__ , UpperCAmelCase__ , *UpperCAmelCase__ , **UpperCAmelCase__ ): return torch.tensor([[1.0, 1.0, 1.0]] * len(UpperCAmelCase__ ) ) # mock get_model which is supposed to do download a bert model # mock bert_cos_score_idf which is supposed to do a forward pass with a bert model with patch('bert_score.scorer.get_model' ), patch( 'bert_score.scorer.bert_cos_score_idf' ) as mock_bert_cos_score_idf: UpperCamelCase_: Dict = bert_cos_score_idf yield @LocalMetricTest.register_intensive_calls_patcher('comet' ) def snake_case (UpperCAmelCase__ ) -> List[str]: def load_from_checkpoint(UpperCAmelCase__ ): class _lowerCAmelCase: """simple docstring""" def _a ( self , _lowerCamelCase , *_lowerCamelCase , **_lowerCamelCase ): assert len(_lowerCamelCase ) == 2 UpperCamelCase_: List[Any] = [0.1_9, 0.9_2] return scores, sum(_lowerCamelCase ) / len(_lowerCamelCase ) return Model() # mock load_from_checkpoint which is supposed to do download a bert model # mock load_from_checkpoint which is supposed to do download a bert model with patch('comet.download_model' ) as mock_download_model: UpperCamelCase_: Union[str, Any] = None with patch('comet.load_from_checkpoint' ) as mock_load_from_checkpoint: UpperCamelCase_: int = load_from_checkpoint yield def snake_case () -> str: UpperCamelCase_: Union[str, Any] = load_metric(os.path.join('metrics' , 'seqeval' ) ) UpperCamelCase_: Any = 'ERROR' UpperCamelCase_: List[Any] = F'''Scheme should be one of [IOB1, IOB2, IOE1, IOE2, IOBES, BILOU], got {wrong_scheme}''' with pytest.raises(UpperCAmelCase__ , match=re.escape(UpperCAmelCase__ ) ): metric.compute(predictions=[] , references=[] , scheme=UpperCAmelCase__ )
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : int = { 'configuration_lilt': ['LILT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'LiltConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = [ 'LILT_PRETRAINED_MODEL_ARCHIVE_LIST', 'LiltForQuestionAnswering', 'LiltForSequenceClassification', 'LiltForTokenClassification', 'LiltModel', 'LiltPreTrainedModel', ] if TYPE_CHECKING: from .configuration_lilt import LILT_PRETRAINED_CONFIG_ARCHIVE_MAP, LiltConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_lilt import ( LILT_PRETRAINED_MODEL_ARCHIVE_LIST, LiltForQuestionAnswering, LiltForSequenceClassification, LiltForTokenClassification, LiltModel, LiltPreTrainedModel, ) else: import sys A_ : Union[str, Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
from statistics import mean import numpy as np def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> list: UpperCamelCase_: Any = 0 # Number of processes finished UpperCamelCase_: str = 0 # Displays the finished process. # If it is 0, the performance is completed if it is 1, before the performance. UpperCamelCase_: Union[str, Any] = [0] * no_of_process # List to include calculation results UpperCamelCase_: Union[str, Any] = [0] * no_of_process # Sort by arrival time. UpperCamelCase_: List[Any] = [burst_time[i] for i in np.argsort(UpperCAmelCase__ )] UpperCamelCase_: List[Any] = [process_name[i] for i in np.argsort(UpperCAmelCase__ )] arrival_time.sort() while no_of_process > finished_process_count: UpperCamelCase_: str = 0 while finished_process[i] == 1: i += 1 if current_time < arrival_time[i]: UpperCamelCase_: List[Any] = arrival_time[i] UpperCamelCase_: Optional[Any] = 0 # Index showing the location of the process being performed UpperCamelCase_: Dict = 0 # Saves the current response ratio. UpperCamelCase_: int = 0 for i in range(0 , UpperCAmelCase__ ): if finished_process[i] == 0 and arrival_time[i] <= current_time: UpperCamelCase_: Union[str, Any] = (burst_time[i] + (current_time - arrival_time[i])) / burst_time[ i ] if response_ratio < temp: UpperCamelCase_: Dict = temp UpperCamelCase_: Union[str, Any] = i # Calculate the turn around time UpperCamelCase_: int = current_time + burst_time[loc] - arrival_time[loc] current_time += burst_time[loc] # Indicates that the process has been performed. UpperCamelCase_: Union[str, Any] = 1 # Increase finished_process_count by 1 finished_process_count += 1 return turn_around_time def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> list: UpperCamelCase_: Any = [0] * no_of_process for i in range(0 , UpperCAmelCase__ ): UpperCamelCase_: Tuple = turn_around_time[i] - burst_time[i] return waiting_time if __name__ == "__main__": A_ : List[str] = 5 A_ : Dict = ['A', 'B', 'C', 'D', 'E'] A_ : str = [1, 2, 3, 4, 5] A_ : Union[str, Any] = [1, 2, 3, 4, 5] A_ : Dict = calculate_turn_around_time( process_name, arrival_time, burst_time, no_of_process ) A_ : Tuple = calculate_waiting_time( process_name, turn_around_time, burst_time, no_of_process ) print('Process name \tArrival time \tBurst time \tTurn around time \tWaiting time') for i in range(0, no_of_process): print( F'''{process_name[i]}\t\t{arrival_time[i]}\t\t{burst_time[i]}\t\t''' F'''{turn_around_time[i]}\t\t\t{waiting_time[i]}''' ) print(F'''average waiting time : {mean(waiting_time):.5f}''') print(F'''average turn around time : {mean(turn_around_time):.5f}''')
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tokenizers_available, is_torch_available A_ : List[str] = { 'configuration_roc_bert': ['ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'RoCBertConfig'], 'tokenization_roc_bert': ['RoCBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: pass try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Union[str, Any] = [ 'ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'RoCBertForCausalLM', 'RoCBertForMaskedLM', 'RoCBertForMultipleChoice', 'RoCBertForPreTraining', 'RoCBertForQuestionAnswering', 'RoCBertForSequenceClassification', 'RoCBertForTokenClassification', 'RoCBertLayer', 'RoCBertModel', 'RoCBertPreTrainedModel', 'load_tf_weights_in_roc_bert', ] if TYPE_CHECKING: from .configuration_roc_bert import ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP, RoCBertConfig from .tokenization_roc_bert import RoCBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: raise OptionalDependencyNotAvailable() try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_roc_bert import ( ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST, RoCBertForCausalLM, RoCBertForMaskedLM, RoCBertForMultipleChoice, RoCBertForPreTraining, RoCBertForQuestionAnswering, RoCBertForSequenceClassification, RoCBertForTokenClassification, RoCBertLayer, RoCBertModel, RoCBertPreTrainedModel, load_tf_weights_in_roc_bert, ) else: import sys A_ : int = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
from abc import ABC, abstractmethod from typing import List, Optional class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self ): # test for the above condition self.test() def _a ( self ): UpperCamelCase_: List[str] = 0 UpperCamelCase_: List[Any] = False while not completed: if counter == 1: self.reset() UpperCamelCase_: Union[str, Any] = self.advance() if not self.does_advance(_lowerCamelCase ): raise Exception( 'Custom Constraint is not defined correctly. self.does_advance(self.advance()) must be true.' ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = self.update(_lowerCamelCase ) counter += 1 if counter > 1_0_0_0_0: raise Exception('update() does not fulfill the constraint.' ) if self.remaining() != 0: raise Exception('Custom Constraint is not defined correctly.' ) @abstractmethod def _a ( self ): raise NotImplementedError( f'''{self.__class__} is an abstract class. Only classes inheriting this class can be called.''' ) @abstractmethod def _a ( self , _lowerCamelCase ): raise NotImplementedError( f'''{self.__class__} is an abstract class. Only classes inheriting this class can be called.''' ) @abstractmethod def _a ( self , _lowerCamelCase ): raise NotImplementedError( f'''{self.__class__} is an abstract class. Only classes inheriting this class can be called.''' ) @abstractmethod def _a ( self ): raise NotImplementedError( f'''{self.__class__} is an abstract class. Only classes inheriting this class can be called.''' ) @abstractmethod def _a ( self ): raise NotImplementedError( f'''{self.__class__} is an abstract class. Only classes inheriting this class can be called.''' ) @abstractmethod def _a ( self , _lowerCamelCase=False ): raise NotImplementedError( f'''{self.__class__} is an abstract class. Only classes inheriting this class can be called.''' ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , _lowerCamelCase ): super(_lowerCamelCase , self ).__init__() if not isinstance(_lowerCamelCase , _lowerCamelCase ) or len(_lowerCamelCase ) == 0: raise ValueError(f'''`token_ids` has to be a non-empty list, but is {token_ids}.''' ) if any((not isinstance(_lowerCamelCase , _lowerCamelCase ) or token_id < 0) for token_id in token_ids ): raise ValueError(f'''Each list in `token_ids` has to be a list of positive integers, but is {token_ids}.''' ) UpperCamelCase_: Optional[Any] = token_ids UpperCamelCase_: Optional[int] = len(self.token_ids ) UpperCamelCase_: Union[str, Any] = -1 # the index of the currently fulfilled step UpperCamelCase_: List[str] = False def _a ( self ): if self.completed: return None return self.token_ids[self.fulfilled_idx + 1] def _a ( self , _lowerCamelCase ): if not isinstance(_lowerCamelCase , _lowerCamelCase ): raise ValueError(f'''`token_id` has to be an `int`, but is {token_id} of type {type(_lowerCamelCase )}''' ) if self.completed: return False return token_id == self.token_ids[self.fulfilled_idx + 1] def _a ( self , _lowerCamelCase ): if not isinstance(_lowerCamelCase , _lowerCamelCase ): raise ValueError(f'''`token_id` has to be an `int`, but is {token_id} of type {type(_lowerCamelCase )}''' ) UpperCamelCase_: Dict = False UpperCamelCase_: Optional[Any] = False UpperCamelCase_: int = False if self.does_advance(_lowerCamelCase ): self.fulfilled_idx += 1 UpperCamelCase_: Tuple = True if self.fulfilled_idx == (self.seqlen - 1): UpperCamelCase_: Tuple = True UpperCamelCase_: List[Any] = completed else: # failed to make progress. UpperCamelCase_: Tuple = True self.reset() return stepped, completed, reset def _a ( self ): UpperCamelCase_: str = False UpperCamelCase_: List[Any] = 0 def _a ( self ): return self.seqlen - (self.fulfilled_idx + 1) def _a ( self , _lowerCamelCase=False ): UpperCamelCase_: Union[str, Any] = PhrasalConstraint(self.token_ids ) if stateful: UpperCamelCase_: Any = self.seqlen UpperCamelCase_: Any = self.fulfilled_idx UpperCamelCase_: List[Any] = self.completed return new_constraint class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=True ): UpperCamelCase_: Dict = max([len(_lowerCamelCase ) for one in nested_token_ids] ) UpperCamelCase_: Dict = {} for token_ids in nested_token_ids: UpperCamelCase_: str = root for tidx, token_id in enumerate(_lowerCamelCase ): if token_id not in level: UpperCamelCase_: Optional[Any] = {} UpperCamelCase_: Dict = level[token_id] if no_subsets and self.has_subsets(_lowerCamelCase , _lowerCamelCase ): raise ValueError( 'Each list in `nested_token_ids` can\'t be a complete subset of another list, but is' f''' {nested_token_ids}.''' ) UpperCamelCase_: int = root def _a ( self , _lowerCamelCase ): UpperCamelCase_: Union[str, Any] = self.trie for current_token in current_seq: UpperCamelCase_: Optional[Any] = start[current_token] UpperCamelCase_: Dict = list(start.keys() ) return next_tokens def _a ( self , _lowerCamelCase ): UpperCamelCase_: Tuple = self.next_tokens(_lowerCamelCase ) return len(_lowerCamelCase ) == 0 def _a ( self , _lowerCamelCase ): UpperCamelCase_: Union[str, Any] = list(root.values() ) if len(_lowerCamelCase ) == 0: return 1 else: return sum([self.count_leaves(_lowerCamelCase ) for nn in next_nodes] ) def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = self.count_leaves(_lowerCamelCase ) return len(_lowerCamelCase ) != leaf_count class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , _lowerCamelCase ): super(_lowerCamelCase , self ).__init__() if not isinstance(_lowerCamelCase , _lowerCamelCase ) or len(_lowerCamelCase ) == 0: raise ValueError(f'''`nested_token_ids` has to be a non-empty list, but is {nested_token_ids}.''' ) if any(not isinstance(_lowerCamelCase , _lowerCamelCase ) for token_ids in nested_token_ids ): raise ValueError(f'''`nested_token_ids` has to be a list of lists, but is {nested_token_ids}.''' ) if any( any((not isinstance(_lowerCamelCase , _lowerCamelCase ) or token_id < 0) for token_id in token_ids ) for token_ids in nested_token_ids ): raise ValueError( f'''Each list in `nested_token_ids` has to be a list of positive integers, but is {nested_token_ids}.''' ) UpperCamelCase_: Any = DisjunctiveTrie(_lowerCamelCase ) UpperCamelCase_: Dict = nested_token_ids UpperCamelCase_: Union[str, Any] = self.trie.max_height UpperCamelCase_: Any = [] UpperCamelCase_: Optional[Any] = False def _a ( self ): UpperCamelCase_: Optional[int] = self.trie.next_tokens(self.current_seq ) if len(_lowerCamelCase ) == 0: return None else: return token_list def _a ( self , _lowerCamelCase ): if not isinstance(_lowerCamelCase , _lowerCamelCase ): raise ValueError(f'''`token_id` is supposed to be type `int`, but is {token_id} of type {type(_lowerCamelCase )}''' ) UpperCamelCase_: Union[str, Any] = self.trie.next_tokens(self.current_seq ) return token_id in next_tokens def _a ( self , _lowerCamelCase ): if not isinstance(_lowerCamelCase , _lowerCamelCase ): raise ValueError(f'''`token_id` is supposed to be type `int`, but is {token_id} of type {type(_lowerCamelCase )}''' ) UpperCamelCase_: int = False UpperCamelCase_: Dict = False UpperCamelCase_: int = False if self.does_advance(_lowerCamelCase ): self.current_seq.append(_lowerCamelCase ) UpperCamelCase_: List[str] = True else: UpperCamelCase_: Tuple = True self.reset() UpperCamelCase_: Any = self.trie.reached_leaf(self.current_seq ) UpperCamelCase_: Union[str, Any] = completed return stepped, completed, reset def _a ( self ): UpperCamelCase_: Dict = False UpperCamelCase_: List[str] = [] def _a ( self ): if self.completed: # since this can be completed without reaching max height return 0 else: return self.seqlen - len(self.current_seq ) def _a ( self , _lowerCamelCase=False ): UpperCamelCase_: Optional[int] = DisjunctiveConstraint(self.token_ids ) if stateful: UpperCamelCase_: str = self.seqlen UpperCamelCase_: Any = self.current_seq UpperCamelCase_: Any = self.completed return new_constraint class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase ): UpperCamelCase_: Tuple = constraints # max # of steps required to fulfill a given constraint UpperCamelCase_: List[Any] = max([c.seqlen for c in constraints] ) UpperCamelCase_: Optional[int] = len(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = False self.init_state() def _a ( self ): UpperCamelCase_: str = [] UpperCamelCase_: Union[str, Any] = None UpperCamelCase_: Tuple = [constraint.copy(stateful=_lowerCamelCase ) for constraint in self.constraints] def _a ( self ): UpperCamelCase_: Tuple = 0 if self.inprogress_constraint: # extra points for having a constraint mid-fulfilled add += self.max_seqlen - self.inprogress_constraint.remaining() return (len(self.complete_constraints ) * self.max_seqlen) + add def _a ( self ): UpperCamelCase_: List[str] = [] if self.inprogress_constraint is None: for constraint in self.pending_constraints: # "pending" == "unfulfilled yet" UpperCamelCase_: Tuple = constraint.advance() if isinstance(_lowerCamelCase , _lowerCamelCase ): token_list.append(_lowerCamelCase ) elif isinstance(_lowerCamelCase , _lowerCamelCase ): token_list.extend(_lowerCamelCase ) else: UpperCamelCase_: Dict = self.inprogress_constraint.advance() if isinstance(_lowerCamelCase , _lowerCamelCase ): token_list.append(_lowerCamelCase ) elif isinstance(_lowerCamelCase , _lowerCamelCase ): token_list.extend(_lowerCamelCase ) if len(_lowerCamelCase ) == 0: return None else: return token_list def _a ( self , _lowerCamelCase ): self.init_state() if token_ids is not None: for token in token_ids: # completes or steps **one** constraint UpperCamelCase_ ,UpperCamelCase_: Any = self.add(_lowerCamelCase ) # the entire list of constraints are fulfilled if self.completed: break def _a ( self , _lowerCamelCase ): if not isinstance(_lowerCamelCase , _lowerCamelCase ): raise ValueError(f'''`token_id` should be an `int`, but is `{token_id}`.''' ) UpperCamelCase_ ,UpperCamelCase_: int = False, False if self.completed: UpperCamelCase_: List[Any] = True UpperCamelCase_: List[Any] = False return complete, stepped if self.inprogress_constraint is not None: # In the middle of fulfilling a constraint. If the `token_id` *does* makes an incremental progress to current # job, simply update the state UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = self.inprogress_constraint.update(_lowerCamelCase ) if reset: # 1. If the next token breaks the progress, then we must restart. # e.g. constraint = "I love pies" and sequence so far is "I love" but `token_id` == "books". # But that doesn't mean we self.init_state(), since we only reset the state for this particular # constraint, not the full list of constraints. self.pending_constraints.append(self.inprogress_constraint.copy(stateful=_lowerCamelCase ) ) UpperCamelCase_: str = None if complete: # 2. If the next token completes the constraint, move it to completed list, set # inprogress to None. If there are no pending constraints either, then this full list of constraints # is complete. self.complete_constraints.append(self.inprogress_constraint ) UpperCamelCase_: List[Any] = None if len(self.pending_constraints ) == 0: # we're done! UpperCamelCase_: Any = True else: # Not in the middle of fulfilling a constraint. So does this `token_id` helps us step towards any of our list # of constraints? for cidx, pending_constraint in enumerate(self.pending_constraints ): if pending_constraint.does_advance(_lowerCamelCase ): UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = pending_constraint.update(_lowerCamelCase ) if not stepped: raise Exception( '`constraint.update(token_id)` is not yielding incremental progress, ' 'even though `constraint.does_advance(token_id)` is true.' ) if complete: self.complete_constraints.append(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = None if not complete and stepped: UpperCamelCase_: List[str] = pending_constraint if complete or stepped: # If we made any progress at all, then it's at least not a "pending constraint". UpperCamelCase_: List[Any] = ( self.pending_constraints[:cidx] + self.pending_constraints[cidx + 1 :] ) if len(self.pending_constraints ) == 0 and self.inprogress_constraint is None: # If there's no longer any pending after this and no inprogress either, then we must be # complete. UpperCamelCase_: str = True break # prevent accidentally stepping through multiple constraints with just one token. return complete, stepped def _a ( self , _lowerCamelCase=True ): UpperCamelCase_: List[Any] = ConstraintListState(self.constraints ) # we actually never though self.constraints objects # throughout this process. So it's at initialization state. if stateful: UpperCamelCase_: Optional[int] = [ constraint.copy(stateful=_lowerCamelCase ) for constraint in self.complete_constraints ] if self.inprogress_constraint is not None: UpperCamelCase_: Tuple = self.inprogress_constraint.copy(stateful=_lowerCamelCase ) UpperCamelCase_: Optional[int] = [constraint.copy() for constraint in self.pending_constraints] return new_state
57
from dataclasses import dataclass from enum import Enum from typing import List, Optional, Union import numpy as np import PIL from PIL import Image from ...utils import BaseOutput, is_torch_available, is_transformers_available @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[List[PIL.Image.Image], np.ndarray] a : Optional[List[bool]] if is_transformers_available() and is_torch_available(): from .pipeline_semantic_stable_diffusion import SemanticStableDiffusionPipeline
57
1
from __future__ import annotations A_ : Union[str, Any] = [] def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> bool: for i in range(len(UpperCAmelCase__ ) ): if board[row][i] == 1: return False for i in range(len(UpperCAmelCase__ ) ): if board[i][column] == 1: return False for i, j in zip(range(UpperCAmelCase__ , -1 , -1 ) , range(UpperCAmelCase__ , -1 , -1 ) ): if board[i][j] == 1: return False for i, j in zip(range(UpperCAmelCase__ , -1 , -1 ) , range(UpperCAmelCase__ , len(UpperCAmelCase__ ) ) ): if board[i][j] == 1: return False return True def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> bool: if row >= len(UpperCAmelCase__ ): solution.append(UpperCAmelCase__ ) printboard(UpperCAmelCase__ ) print() return True for i in range(len(UpperCAmelCase__ ) ): if is_safe(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: str = 1 solve(UpperCAmelCase__ , row + 1 ) UpperCamelCase_: Optional[Any] = 0 return False def snake_case (UpperCAmelCase__ ) -> None: for i in range(len(UpperCAmelCase__ ) ): for j in range(len(UpperCAmelCase__ ) ): if board[i][j] == 1: print('Q' , end=' ' ) else: print('.' , end=' ' ) print() # n=int(input("The no. of queens")) A_ : Optional[Any] = 8 A_ : str = [[0 for i in range(n)] for j in range(n)] solve(board, 0) print('The total no. of solutions are :', len(solution))
57
import argparse import json import os import fairseq import torch from fairseq.data import Dictionary from transformers import ( WavaVecaConfig, WavaVecaCTCTokenizer, WavaVecaFeatureExtractor, WavaVecaForCTC, WavaVecaForPreTraining, WavaVecaProcessor, logging, ) from transformers.models.wavaveca.modeling_wavaveca import WavaVecaForSequenceClassification logging.set_verbosity_info() A_ : Tuple = logging.get_logger(__name__) A_ : Optional[int] = { 'post_extract_proj': 'feature_projection.projection', 'encoder.pos_conv.0': 'encoder.pos_conv_embed.conv', 'self_attn.k_proj': 'encoder.layers.*.attention.k_proj', 'self_attn.v_proj': 'encoder.layers.*.attention.v_proj', 'self_attn.q_proj': 'encoder.layers.*.attention.q_proj', 'self_attn.out_proj': 'encoder.layers.*.attention.out_proj', 'self_attn_layer_norm': 'encoder.layers.*.layer_norm', 'fc1': 'encoder.layers.*.feed_forward.intermediate_dense', 'fc2': 'encoder.layers.*.feed_forward.output_dense', 'final_layer_norm': 'encoder.layers.*.final_layer_norm', 'encoder.layer_norm': 'encoder.layer_norm', 'adapter_layer': 'encoder.layers.*.adapter_layer', 'w2v_model.layer_norm': 'feature_projection.layer_norm', 'quantizer.weight_proj': 'quantizer.weight_proj', 'quantizer.vars': 'quantizer.codevectors', 'project_q': 'project_q', 'final_proj': 'project_hid', 'w2v_encoder.proj': 'lm_head', 'mask_emb': 'masked_spec_embed', 'pooling_layer.linear': 'projector', 'pooling_layer.projection': 'classifier', } A_ : int = [ 'lm_head', 'quantizer.weight_proj', 'quantizer.codevectors', 'project_q', 'project_hid', 'projector', 'classifier', ] def snake_case (UpperCAmelCase__ ) -> str: UpperCamelCase_: Tuple = {} with open(UpperCAmelCase__ , 'r' ) as file: for line_number, line in enumerate(UpperCAmelCase__ ): UpperCamelCase_: List[Any] = line.strip() if line: UpperCamelCase_: List[Any] = line.split() UpperCamelCase_: Optional[Any] = line_number UpperCamelCase_: Any = words[0] UpperCamelCase_: List[Any] = value return result def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: for attribute in key.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Any = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: Dict = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: Optional[Any] = getattr(UpperCAmelCase__ , UpperCAmelCase__ ).shape elif weight_type is not None and weight_type == "param": UpperCamelCase_: Optional[Any] = hf_pointer for attribute in hf_param_name.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Tuple = shape_pointer.shape # let's reduce dimension UpperCamelCase_: int = value[0] else: UpperCamelCase_: Union[str, Any] = hf_pointer.shape if hf_shape != value.shape: raise ValueError( F'''Shape of hf {key + '.' + weight_type if weight_type is not None else ''} is {hf_shape}, but should be''' F''' {value.shape} for {full_name}''' ) if weight_type == "weight": UpperCamelCase_: Optional[int] = value elif weight_type == "weight_g": UpperCamelCase_: Any = value elif weight_type == "weight_v": UpperCamelCase_: Union[str, Any] = value elif weight_type == "bias": UpperCamelCase_: Union[str, Any] = value elif weight_type == "param": for attribute in hf_param_name.split('.' ): UpperCamelCase_: Dict = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = value else: UpperCamelCase_: int = value logger.info(F'''{key + '.' + weight_type if weight_type is not None else ''} was initialized from {full_name}.''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Union[str, Any] = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Dict = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: List[Any] = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: List[Any] = '.'.join([key, weight_type] ) elif weight_type is not None and weight_type == "param": UpperCamelCase_: Any = '.'.join([key, hf_param_name] ) else: UpperCamelCase_: Union[str, Any] = key UpperCamelCase_: Any = value if 'lm_head' in full_key else value[0] A_ : str = { 'W_a': 'linear_1.weight', 'W_b': 'linear_2.weight', 'b_a': 'linear_1.bias', 'b_b': 'linear_2.bias', 'ln_W': 'norm.weight', 'ln_b': 'norm.bias', } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None ) -> Any: UpperCamelCase_: Optional[int] = False for key, mapped_key in MAPPING.items(): UpperCamelCase_: Tuple = 'wav2vec2.' + mapped_key if mapped_key not in TOP_LEVEL_KEYS else mapped_key if key in name or key.split('w2v_model.' )[-1] == name.split('.' )[0]: UpperCamelCase_: Optional[Any] = True if "*" in mapped_key: UpperCamelCase_: Optional[int] = name.split(UpperCAmelCase__ )[0].split('.' )[-2] UpperCamelCase_: Any = mapped_key.replace('*' , UpperCAmelCase__ ) if "weight_g" in name: UpperCamelCase_: Union[str, Any] = 'weight_g' elif "weight_v" in name: UpperCamelCase_: Dict = 'weight_v' elif "bias" in name: UpperCamelCase_: int = 'bias' elif "weight" in name: # TODO: don't match quantizer.weight_proj UpperCamelCase_: str = 'weight' else: UpperCamelCase_: Union[str, Any] = None if hf_dict is not None: rename_dict(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) else: set_recursively(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) return is_used return is_used def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: List[Any] = [] UpperCamelCase_: Dict = fairseq_model.state_dict() UpperCamelCase_: Optional[Any] = hf_model.wavaveca.feature_extractor for name, value in fairseq_dict.items(): UpperCamelCase_: Union[str, Any] = False if "conv_layers" in name: load_conv_layer( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , hf_model.config.feat_extract_norm == 'group' , ) UpperCamelCase_: List[Any] = True else: UpperCamelCase_: Tuple = load_wavaveca_layer(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) if not is_used: unused_weights.append(UpperCAmelCase__ ) logger.warning(F'''Unused weights: {unused_weights}''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Any = full_name.split('conv_layers.' )[-1] UpperCamelCase_: int = name.split('.' ) UpperCamelCase_: int = int(items[0] ) UpperCamelCase_: Union[str, Any] = int(items[1] ) if type_id == 0: if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) UpperCamelCase_: int = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif (type_id == 2 and not use_group_norm) or (type_id == 2 and layer_id == 0 and use_group_norm): if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape} was found.''' ) UpperCamelCase_: List[Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(UpperCAmelCase__ ) @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=True , UpperCAmelCase__=False ) -> Dict: if config_path is not None: UpperCamelCase_: Tuple = WavaVecaConfig.from_pretrained(UpperCAmelCase__ ) else: UpperCamelCase_: List[str] = WavaVecaConfig() if is_seq_class: UpperCamelCase_: int = read_txt_into_dict(UpperCAmelCase__ ) UpperCamelCase_: Tuple = idalabel UpperCamelCase_: str = WavaVecaForSequenceClassification(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) feature_extractor.save_pretrained(UpperCAmelCase__ ) elif is_finetuned: if dict_path: UpperCamelCase_: List[Any] = Dictionary.load(UpperCAmelCase__ ) # important change bos & pad token id since CTC symbol is <pad> and # not <s> as in fairseq UpperCamelCase_: Dict = target_dict.pad_index UpperCamelCase_: Tuple = target_dict.bos_index UpperCamelCase_: Optional[Any] = target_dict.eos_index UpperCamelCase_: Union[str, Any] = len(target_dict.symbols ) UpperCamelCase_: int = os.path.join(UpperCAmelCase__ , 'vocab.json' ) if not os.path.isdir(UpperCAmelCase__ ): logger.error('--pytorch_dump_folder_path ({}) should be a directory'.format(UpperCAmelCase__ ) ) return os.makedirs(UpperCAmelCase__ , exist_ok=UpperCAmelCase__ ) UpperCamelCase_: str = target_dict.indices # fairseq has the <pad> and <s> switched UpperCamelCase_: List[str] = 0 UpperCamelCase_: List[Any] = 1 with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as vocab_handle: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = WavaVecaCTCTokenizer( UpperCAmelCase__ , unk_token=target_dict.unk_word , pad_token=target_dict.pad_word , bos_token=target_dict.bos_word , eos_token=target_dict.eos_word , word_delimiter_token='|' , do_lower_case=UpperCAmelCase__ , ) UpperCamelCase_: Any = True if config.feat_extract_norm == 'layer' else False UpperCamelCase_: Tuple = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) UpperCamelCase_: Dict = WavaVecaProcessor(feature_extractor=UpperCAmelCase__ , tokenizer=UpperCAmelCase__ ) processor.save_pretrained(UpperCAmelCase__ ) UpperCamelCase_: Any = WavaVecaForCTC(UpperCAmelCase__ ) else: UpperCamelCase_: Any = WavaVecaForPreTraining(UpperCAmelCase__ ) if is_finetuned or is_seq_class: UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Dict = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path] , arg_overrides={'data': '/'.join(dict_path.split('/' )[:-1] )} ) else: UpperCamelCase_: List[str] = argparse.Namespace(task='audio_pretraining' ) UpperCamelCase_: Any = fairseq.tasks.setup_task(UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = fairseq.checkpoint_utils.load_model_ensemble_and_task([checkpoint_path] , task=UpperCAmelCase__ ) UpperCamelCase_: str = model[0].eval() recursively_load_weights(UpperCAmelCase__ , UpperCAmelCase__ , not is_finetuned ) hf_wavavec.save_pretrained(UpperCAmelCase__ ) if __name__ == "__main__": A_ : str = argparse.ArgumentParser() parser.add_argument('--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model.') parser.add_argument('--checkpoint_path', default=None, type=str, help='Path to fairseq checkpoint') parser.add_argument('--dict_path', default=None, type=str, help='Path to dict of fine-tuned model') parser.add_argument('--config_path', default=None, type=str, help='Path to hf config.json of model to convert') parser.add_argument( '--not_finetuned', action='store_true', help='Whether the model to convert is a fine-tuned model or not' ) parser.add_argument( '--is_seq_class', action='store_true', help='Whether the model to convert is a fine-tuned sequence classification model or not', ) A_ : int = parser.parse_args() A_ : str = not args.not_finetuned and not args.is_seq_class convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.config_path, args.dict_path, is_finetuned, args.is_seq_class, )
57
1
def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> str: UpperCamelCase_: list[list[str]] = [[] for _ in range(UpperCAmelCase__ )] UpperCamelCase_: Optional[Any] = key - 1 if key <= 0: raise ValueError('Height of grid can\'t be 0 or negative' ) if key == 1 or len(UpperCAmelCase__ ) <= key: return input_string for position, character in enumerate(UpperCAmelCase__ ): UpperCamelCase_: int = position % (lowest * 2) # puts it in bounds UpperCamelCase_: int = min(UpperCAmelCase__ , lowest * 2 - num ) # creates zigzag pattern temp_grid[num].append(UpperCAmelCase__ ) UpperCamelCase_: str = [''.join(UpperCAmelCase__ ) for row in temp_grid] UpperCamelCase_: Dict = ''.join(UpperCAmelCase__ ) return output_string def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> str: UpperCamelCase_: str = [] UpperCamelCase_: Union[str, Any] = key - 1 if key <= 0: raise ValueError('Height of grid can\'t be 0 or negative' ) if key == 1: return input_string UpperCamelCase_: list[list[str]] = [[] for _ in range(UpperCAmelCase__ )] # generates template for position in range(len(UpperCAmelCase__ ) ): UpperCamelCase_: Tuple = position % (lowest * 2) # puts it in bounds UpperCamelCase_: List[Any] = min(UpperCAmelCase__ , lowest * 2 - num ) # creates zigzag pattern temp_grid[num].append('*' ) UpperCamelCase_: Optional[int] = 0 for row in temp_grid: # fills in the characters UpperCamelCase_: List[str] = input_string[counter : counter + len(UpperCAmelCase__ )] grid.append(list(UpperCAmelCase__ ) ) counter += len(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = '' # reads as zigzag for position in range(len(UpperCAmelCase__ ) ): UpperCamelCase_: int = position % (lowest * 2) # puts it in bounds UpperCamelCase_: Tuple = min(UpperCAmelCase__ , lowest * 2 - num ) # creates zigzag pattern output_string += grid[num][0] grid[num].pop(0 ) return output_string def snake_case (UpperCAmelCase__ ) -> dict[int, str]: UpperCamelCase_: int = {} for key_guess in range(1 , len(UpperCAmelCase__ ) ): # tries every key UpperCamelCase_: str = decrypt(UpperCAmelCase__ , UpperCAmelCase__ ) return results if __name__ == "__main__": import doctest doctest.testmod()
57
import inspect import os import unittest import torch import accelerate from accelerate import debug_launcher from accelerate.test_utils import ( execute_subprocess_async, require_cpu, require_huggingface_suite, require_multi_gpu, require_single_gpu, ) from accelerate.utils import patch_environment @require_huggingface_suite class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Optional[int] = inspect.getfile(accelerate.test_utils ) UpperCamelCase_: Dict = os.path.sep.join( mod_file.split(os.path.sep )[:-1] + ['scripts', 'external_deps', 'test_metrics.py'] ) from accelerate.test_utils.scripts.external_deps import test_metrics # noqa: F401 UpperCamelCase_: Tuple = test_metrics @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main , num_processes=1 ) @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main ) @require_single_gpu def _a ( self ): self.test_metrics.main() @require_multi_gpu def _a ( self ): print(f'''Found {torch.cuda.device_count()} devices.''' ) UpperCamelCase_: List[Any] = ['torchrun', f'''--nproc_per_node={torch.cuda.device_count()}''', self.test_file_path] with patch_environment(omp_num_threads=1 ): execute_subprocess_async(_lowerCamelCase , env=os.environ.copy() )
57
1
import json import unittest import numpy as np from huggingface_hub import hf_hub_download from transformers.testing_utils import require_torch, require_vision from transformers.utils import is_torch_available, is_vision_available from ...test_image_processing_common import ImageProcessingSavingTestMixin, prepare_image_inputs if is_torch_available(): import torch if is_vision_available(): from transformers import OneFormerImageProcessor from transformers.models.oneformer.image_processing_oneformer import binary_mask_to_rle from transformers.models.oneformer.modeling_oneformer import OneFormerForUniversalSegmentationOutput if is_vision_available(): from PIL import Image def snake_case (UpperCAmelCase__ , UpperCAmelCase__="shi-labs/oneformer_demo" ) -> Any: with open(hf_hub_download(UpperCAmelCase__ , UpperCAmelCase__ , repo_type='dataset' ) , 'r' ) as f: UpperCamelCase_: Tuple = json.load(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = {} UpperCamelCase_: Dict = [] UpperCamelCase_: str = [] for key, info in class_info.items(): UpperCamelCase_: Optional[Any] = info['name'] class_names.append(info['name'] ) if info["isthing"]: thing_ids.append(int(UpperCAmelCase__ ) ) UpperCamelCase_: Tuple = thing_ids UpperCamelCase_: Optional[Any] = class_names return metadata class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=7 , _lowerCamelCase=3 , _lowerCamelCase=3_0 , _lowerCamelCase=4_0_0 , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=[0.5, 0.5, 0.5] , _lowerCamelCase=[0.5, 0.5, 0.5] , _lowerCamelCase=1_0 , _lowerCamelCase=False , _lowerCamelCase=2_5_5 , _lowerCamelCase="shi-labs/oneformer_demo" , _lowerCamelCase="ade20k_panoptic.json" , _lowerCamelCase=1_0 , ): UpperCamelCase_: Union[str, Any] = parent UpperCamelCase_: Tuple = batch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Optional[Any] = min_resolution UpperCamelCase_: Any = max_resolution UpperCamelCase_: int = do_resize UpperCamelCase_: List[str] = {'shortest_edge': 3_2, 'longest_edge': 1_3_3_3} if size is None else size UpperCamelCase_: str = do_normalize UpperCamelCase_: str = image_mean UpperCamelCase_: Tuple = image_std UpperCamelCase_: Optional[Any] = class_info_file UpperCamelCase_: Optional[Any] = prepare_metadata(_lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: str = num_text UpperCamelCase_: Tuple = repo_path # for the post_process_functions UpperCamelCase_: int = 2 UpperCamelCase_: List[str] = 1_0 UpperCamelCase_: List[Any] = 1_0 UpperCamelCase_: Optional[int] = 3 UpperCamelCase_: Dict = 4 UpperCamelCase_: str = num_labels UpperCamelCase_: List[str] = do_reduce_labels UpperCamelCase_: Tuple = ignore_index def _a ( self ): return { "do_resize": self.do_resize, "size": self.size, "do_normalize": self.do_normalize, "image_mean": self.image_mean, "image_std": self.image_std, "num_labels": self.num_labels, "do_reduce_labels": self.do_reduce_labels, "ignore_index": self.ignore_index, "class_info_file": self.class_info_file, "metadata": self.metadata, "num_text": self.num_text, } def _a ( self , _lowerCamelCase , _lowerCamelCase=False ): if not batched: UpperCamelCase_: int = image_inputs[0] if isinstance(_lowerCamelCase , Image.Image ): UpperCamelCase_ ,UpperCamelCase_: str = image.size else: UpperCamelCase_ ,UpperCamelCase_: Any = image.shape[1], image.shape[2] if w < h: UpperCamelCase_: int = int(self.size['shortest_edge'] * h / w ) UpperCamelCase_: Dict = self.size['shortest_edge'] elif w > h: UpperCamelCase_: Tuple = self.size['shortest_edge'] UpperCamelCase_: Union[str, Any] = int(self.size['shortest_edge'] * w / h ) else: UpperCamelCase_: List[str] = self.size['shortest_edge'] UpperCamelCase_: Dict = self.size['shortest_edge'] else: UpperCamelCase_: Optional[int] = [] for image in image_inputs: UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.get_expected_values([image] ) expected_values.append((expected_height, expected_width) ) UpperCamelCase_: List[Any] = max(_lowerCamelCase , key=lambda _lowerCamelCase : item[0] )[0] UpperCamelCase_: Tuple = max(_lowerCamelCase , key=lambda _lowerCamelCase : item[1] )[1] return expected_height, expected_width def _a ( self ): return OneFormerForUniversalSegmentationOutput( # +1 for null class class_queries_logits=torch.randn((self.batch_size, self.num_queries, self.num_classes + 1) ) , masks_queries_logits=torch.randn((self.batch_size, self.num_queries, self.height, self.width) ) , ) @require_torch @require_vision class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Any =OneFormerImageProcessor if (is_vision_available() and is_torch_available()) else None # only for test_image_processing_common.test_image_proc_to_json_string a : Any =image_processing_class def _a ( self ): UpperCamelCase_: Optional[int] = OneFormerImageProcessorTester(self ) @property def _a ( self ): return self.image_processing_tester.prepare_image_processor_dict() def _a ( self ): UpperCamelCase_: Union[str, Any] = self.image_processing_class(**self.image_processor_dict ) self.assertTrue(hasattr(_lowerCamelCase , 'image_mean' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'image_std' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'do_normalize' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'do_resize' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'size' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'ignore_index' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'class_info_file' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'num_text' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'repo_path' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'metadata' ) ) self.assertTrue(hasattr(_lowerCamelCase , 'do_reduce_labels' ) ) def _a ( self ): pass def _a ( self ): # Initialize image_processor UpperCamelCase_: Optional[Any] = self.image_processing_class(**self.image_processor_dict ) # create random PIL images UpperCamelCase_: List[Any] = prepare_image_inputs(self.image_processing_tester , equal_resolution=_lowerCamelCase ) for image in image_inputs: self.assertIsInstance(_lowerCamelCase , Image.Image ) # Test not batched input UpperCamelCase_: str = image_processor(image_inputs[0] , ['semantic'] , return_tensors='pt' ).pixel_values UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.image_processing_tester.get_expected_values(_lowerCamelCase ) self.assertEqual( encoded_images.shape , (1, self.image_processing_tester.num_channels, expected_height, expected_width) , ) # Test batched UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.image_processing_tester.get_expected_values(_lowerCamelCase , batched=_lowerCamelCase ) UpperCamelCase_: str = image_processor( _lowerCamelCase , ['semantic'] * len(_lowerCamelCase ) , return_tensors='pt' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processing_tester.batch_size, self.image_processing_tester.num_channels, expected_height, expected_width, ) , ) def _a ( self ): # Initialize image_processor UpperCamelCase_: Any = self.image_processing_class(**self.image_processor_dict ) # create random numpy tensors UpperCamelCase_: Optional[int] = prepare_image_inputs(self.image_processing_tester , equal_resolution=_lowerCamelCase , numpify=_lowerCamelCase ) for image in image_inputs: self.assertIsInstance(_lowerCamelCase , np.ndarray ) # Test not batched input UpperCamelCase_: int = image_processor(image_inputs[0] , ['semantic'] , return_tensors='pt' ).pixel_values UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = self.image_processing_tester.get_expected_values(_lowerCamelCase ) self.assertEqual( encoded_images.shape , (1, self.image_processing_tester.num_channels, expected_height, expected_width) , ) # Test batched UpperCamelCase_ ,UpperCamelCase_: str = self.image_processing_tester.get_expected_values(_lowerCamelCase , batched=_lowerCamelCase ) UpperCamelCase_: int = image_processor( _lowerCamelCase , ['semantic'] * len(_lowerCamelCase ) , return_tensors='pt' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processing_tester.batch_size, self.image_processing_tester.num_channels, expected_height, expected_width, ) , ) def _a ( self ): # Initialize image_processor UpperCamelCase_: Dict = self.image_processing_class(**self.image_processor_dict ) # create random PyTorch tensors UpperCamelCase_: Optional[Any] = prepare_image_inputs(self.image_processing_tester , equal_resolution=_lowerCamelCase , torchify=_lowerCamelCase ) for image in image_inputs: self.assertIsInstance(_lowerCamelCase , torch.Tensor ) # Test not batched input UpperCamelCase_: Union[str, Any] = image_processor(image_inputs[0] , ['semantic'] , return_tensors='pt' ).pixel_values UpperCamelCase_ ,UpperCamelCase_: int = self.image_processing_tester.get_expected_values(_lowerCamelCase ) self.assertEqual( encoded_images.shape , (1, self.image_processing_tester.num_channels, expected_height, expected_width) , ) # Test batched UpperCamelCase_ ,UpperCamelCase_: str = self.image_processing_tester.get_expected_values(_lowerCamelCase , batched=_lowerCamelCase ) UpperCamelCase_: str = image_processor( _lowerCamelCase , ['semantic'] * len(_lowerCamelCase ) , return_tensors='pt' ).pixel_values self.assertEqual( encoded_images.shape , ( self.image_processing_tester.batch_size, self.image_processing_tester.num_channels, expected_height, expected_width, ) , ) def _a ( self , _lowerCamelCase=False , _lowerCamelCase=False , _lowerCamelCase="np" ): UpperCamelCase_: List[str] = self.image_processing_class(**self.image_processor_dict ) # prepare image and target UpperCamelCase_: List[str] = self.image_processing_tester.num_labels UpperCamelCase_: Union[str, Any] = None UpperCamelCase_: Optional[int] = None UpperCamelCase_: Tuple = prepare_image_inputs(self.image_processing_tester , equal_resolution=_lowerCamelCase ) if with_segmentation_maps: UpperCamelCase_: Dict = num_labels if is_instance_map: UpperCamelCase_: List[Any] = list(range(_lowerCamelCase ) ) * 2 UpperCamelCase_: Dict = dict(enumerate(_lowerCamelCase ) ) UpperCamelCase_: Dict = [ np.random.randint(0 , high * 2 , (img.size[1], img.size[0]) ).astype(np.uinta ) for img in image_inputs ] if segmentation_type == "pil": UpperCamelCase_: Dict = [Image.fromarray(_lowerCamelCase ) for annotation in annotations] UpperCamelCase_: Dict = image_processor( _lowerCamelCase , ['semantic'] * len(_lowerCamelCase ) , _lowerCamelCase , return_tensors='pt' , instance_id_to_semantic_id=_lowerCamelCase , pad_and_return_pixel_mask=_lowerCamelCase , ) return inputs def _a ( self ): pass def _a ( self ): def common(_lowerCamelCase=False , _lowerCamelCase=None ): UpperCamelCase_: Tuple = self.comm_get_image_processor_inputs( with_segmentation_maps=_lowerCamelCase , is_instance_map=_lowerCamelCase , segmentation_type=_lowerCamelCase ) UpperCamelCase_: str = inputs['mask_labels'] UpperCamelCase_: Any = inputs['class_labels'] UpperCamelCase_: List[str] = inputs['pixel_values'] UpperCamelCase_: Optional[int] = inputs['text_inputs'] # check the batch_size for mask_label, class_label, text_input in zip(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): self.assertEqual(mask_label.shape[0] , class_label.shape[0] ) # this ensure padding has happened self.assertEqual(mask_label.shape[1:] , pixel_values.shape[2:] ) self.assertEqual(len(_lowerCamelCase ) , self.image_processing_tester.num_text ) common() common(is_instance_map=_lowerCamelCase ) common(is_instance_map=_lowerCamelCase , segmentation_type='pil' ) common(is_instance_map=_lowerCamelCase , segmentation_type='pil' ) def _a ( self ): UpperCamelCase_: List[Any] = np.zeros((2_0, 5_0) ) UpperCamelCase_: int = 1 UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Any = 1 UpperCamelCase_: int = binary_mask_to_rle(_lowerCamelCase ) self.assertEqual(len(_lowerCamelCase ) , 4 ) self.assertEqual(rle[0] , 2_1 ) self.assertEqual(rle[1] , 4_5 ) def _a ( self ): UpperCamelCase_: Any = self.image_processing_class( num_labels=self.image_processing_tester.num_classes , max_seq_length=7_7 , task_seq_length=7_7 , class_info_file='ade20k_panoptic.json' , num_text=self.image_processing_tester.num_text , repo_path='shi-labs/oneformer_demo' , ) UpperCamelCase_: str = self.image_processing_tester.get_fake_oneformer_outputs() UpperCamelCase_: Any = fature_extractor.post_process_semantic_segmentation(_lowerCamelCase ) self.assertEqual(len(_lowerCamelCase ) , self.image_processing_tester.batch_size ) self.assertEqual( segmentation[0].shape , ( self.image_processing_tester.height, self.image_processing_tester.width, ) , ) UpperCamelCase_: Dict = [(1, 4) for i in range(self.image_processing_tester.batch_size )] UpperCamelCase_: List[Any] = fature_extractor.post_process_semantic_segmentation(_lowerCamelCase , target_sizes=_lowerCamelCase ) self.assertEqual(segmentation[0].shape , target_sizes[0] ) def _a ( self ): UpperCamelCase_: Union[str, Any] = self.image_processing_class( num_labels=self.image_processing_tester.num_classes , max_seq_length=7_7 , task_seq_length=7_7 , class_info_file='ade20k_panoptic.json' , num_text=self.image_processing_tester.num_text , repo_path='shi-labs/oneformer_demo' , ) UpperCamelCase_: List[Any] = self.image_processing_tester.get_fake_oneformer_outputs() UpperCamelCase_: Union[str, Any] = image_processor.post_process_instance_segmentation(_lowerCamelCase , threshold=0 ) self.assertTrue(len(_lowerCamelCase ) == self.image_processing_tester.batch_size ) for el in segmentation: self.assertTrue('segmentation' in el ) self.assertTrue('segments_info' in el ) self.assertEqual(type(el['segments_info'] ) , _lowerCamelCase ) self.assertEqual( el['segmentation'].shape , (self.image_processing_tester.height, self.image_processing_tester.width) ) def _a ( self ): UpperCamelCase_: List[str] = self.image_processing_class( num_labels=self.image_processing_tester.num_classes , max_seq_length=7_7 , task_seq_length=7_7 , class_info_file='ade20k_panoptic.json' , num_text=self.image_processing_tester.num_text , repo_path='shi-labs/oneformer_demo' , ) UpperCamelCase_: List[str] = self.image_processing_tester.get_fake_oneformer_outputs() UpperCamelCase_: Optional[int] = image_processor.post_process_panoptic_segmentation(_lowerCamelCase , threshold=0 ) self.assertTrue(len(_lowerCamelCase ) == self.image_processing_tester.batch_size ) for el in segmentation: self.assertTrue('segmentation' in el ) self.assertTrue('segments_info' in el ) self.assertEqual(type(el['segments_info'] ) , _lowerCamelCase ) self.assertEqual( el['segmentation'].shape , (self.image_processing_tester.height, self.image_processing_tester.width) )
57
import math class _lowerCAmelCase: """simple docstring""" def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: int = 0.0 UpperCamelCase_: Tuple = 0.0 for i in range(len(_lowerCamelCase ) ): da += math.pow((sample[i] - weights[0][i]) , 2 ) da += math.pow((sample[i] - weights[1][i]) , 2 ) return 0 if da > da else 1 return 0 def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): for i in range(len(_lowerCamelCase ) ): weights[j][i] += alpha * (sample[i] - weights[j][i]) return weights def snake_case () -> None: # Training Examples ( m, n ) UpperCamelCase_: List[str] = [[1, 1, 0, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 0, 1, 1]] # weight initialization ( n, C ) UpperCamelCase_: List[Any] = [[0.2, 0.6, 0.5, 0.9], [0.8, 0.4, 0.7, 0.3]] # training UpperCamelCase_: Dict = SelfOrganizingMap() UpperCamelCase_: List[Any] = 3 UpperCamelCase_: List[str] = 0.5 for _ in range(UpperCAmelCase__ ): for j in range(len(UpperCAmelCase__ ) ): # training sample UpperCamelCase_: int = training_samples[j] # Compute the winning vector UpperCamelCase_: Tuple = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # Update the winning vector UpperCamelCase_: Union[str, Any] = self_organizing_map.update(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # classify test sample UpperCamelCase_: Dict = [0, 0, 0, 1] UpperCamelCase_: Union[str, Any] = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # results print(F'''Clusters that the test sample belongs to : {winner}''' ) print(F'''Weights that have been trained : {weights}''' ) # running the main() function if __name__ == "__main__": main()
57
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : Union[str, Any] = { 'configuration_upernet': ['UperNetConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Dict = [ 'UperNetForSemanticSegmentation', 'UperNetPreTrainedModel', ] if TYPE_CHECKING: from .configuration_upernet import UperNetConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_upernet import UperNetForSemanticSegmentation, UperNetPreTrainedModel else: import sys A_ : Optional[int] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
from collections import namedtuple A_ : Tuple = namedtuple('from_to', 'from_ to') A_ : int = { 'cubicmeter': from_to(1, 1), 'litre': from_to(0.001, 1000), 'kilolitre': from_to(1, 1), 'gallon': from_to(0.00454, 264.172), 'cubicyard': from_to(0.76455, 1.30795), 'cubicfoot': from_to(0.028, 35.3147), 'cup': from_to(0.000236588, 4226.75), } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> float: if from_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'from_type\' value: {from_type!r} Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) if to_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'to_type\' value: {to_type!r}. Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) return value * METRIC_CONVERSION[from_type].from_ * METRIC_CONVERSION[to_type].to if __name__ == "__main__": import doctest doctest.testmod()
57
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tokenizers_available, is_torch_available A_ : Tuple = { 'configuration_graphormer': ['GRAPHORMER_PRETRAINED_CONFIG_ARCHIVE_MAP', 'GraphormerConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = [ 'GRAPHORMER_PRETRAINED_MODEL_ARCHIVE_LIST', 'GraphormerForGraphClassification', 'GraphormerModel', 'GraphormerPreTrainedModel', ] if TYPE_CHECKING: from .configuration_graphormer import GRAPHORMER_PRETRAINED_CONFIG_ARCHIVE_MAP, GraphormerConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_graphormer import ( GRAPHORMER_PRETRAINED_MODEL_ARCHIVE_LIST, GraphormerForGraphClassification, GraphormerModel, GraphormerPreTrainedModel, ) else: import sys A_ : List[str] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
import warnings from ...utils import logging from .image_processing_clip import CLIPImageProcessor A_ : int = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , *_lowerCamelCase , **_lowerCamelCase ): warnings.warn( 'The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use CLIPImageProcessor instead.' , _lowerCamelCase , ) super().__init__(*_lowerCamelCase , **_lowerCamelCase )
57
1
from __future__ import annotations class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase ): UpperCamelCase_: Union[str, Any] = order # a_{0} ... a_{k} UpperCamelCase_: Tuple = [1.0] + [0.0] * order # b_{0} ... b_{k} UpperCamelCase_: List[Any] = [1.0] + [0.0] * order # x[n-1] ... x[n-k] UpperCamelCase_: Union[str, Any] = [0.0] * self.order # y[n-1] ... y[n-k] UpperCamelCase_: int = [0.0] * self.order def _a ( self , _lowerCamelCase , _lowerCamelCase ): if len(_lowerCamelCase ) < self.order: UpperCamelCase_: Any = [1.0, *a_coeffs] if len(_lowerCamelCase ) != self.order + 1: UpperCamelCase_: Union[str, Any] = ( f'''Expected a_coeffs to have {self.order + 1} elements ''' f'''for {self.order}-order filter, got {len(_lowerCamelCase )}''' ) raise ValueError(_lowerCamelCase ) if len(_lowerCamelCase ) != self.order + 1: UpperCamelCase_: int = ( f'''Expected b_coeffs to have {self.order + 1} elements ''' f'''for {self.order}-order filter, got {len(_lowerCamelCase )}''' ) raise ValueError(_lowerCamelCase ) UpperCamelCase_: int = a_coeffs UpperCamelCase_: Optional[Any] = b_coeffs def _a ( self , _lowerCamelCase ): UpperCamelCase_: List[str] = 0.0 # Start at index 1 and do index 0 at the end. for i in range(1 , self.order + 1 ): result += ( self.b_coeffs[i] * self.input_history[i - 1] - self.a_coeffs[i] * self.output_history[i - 1] ) UpperCamelCase_: Any = (result + self.b_coeffs[0] * sample) / self.a_coeffs[0] UpperCamelCase_: Union[str, Any] = self.input_history[:-1] UpperCamelCase_: int = self.output_history[:-1] UpperCamelCase_: List[Any] = sample UpperCamelCase_: List[str] = result return result
57
import math from typing import Any, Callable, List, Optional, Tuple, Union import numpy as np import torch from ...models import TaFilmDecoder from ...schedulers import DDPMScheduler from ...utils import is_onnx_available, logging, randn_tensor if is_onnx_available(): from ..onnx_utils import OnnxRuntimeModel from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline from .continous_encoder import SpectrogramContEncoder from .notes_encoder import SpectrogramNotesEncoder A_ : List[Any] = logging.get_logger(__name__) # pylint: disable=invalid-name A_ : Optional[int] = 256 class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[str, Any] =['''melgan'''] def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , ): super().__init__() # From MELGAN UpperCamelCase_: Any = math.log(1e-5 ) # Matches MelGAN training. UpperCamelCase_: List[Any] = 4.0 # Largest value for most examples UpperCamelCase_: Tuple = 1_2_8 self.register_modules( notes_encoder=_lowerCamelCase , continuous_encoder=_lowerCamelCase , decoder=_lowerCamelCase , scheduler=_lowerCamelCase , melgan=_lowerCamelCase , ) def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = output_range if clip: UpperCamelCase_: int = torch.clip(_lowerCamelCase , self.min_value , self.max_value ) # Scale to [0, 1]. UpperCamelCase_: List[Any] = (features - self.min_value) / (self.max_value - self.min_value) # Scale to [min_out, max_out]. return zero_one * (max_out - min_out) + min_out def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Dict = input_range UpperCamelCase_: List[str] = torch.clip(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if clip else outputs # Scale to [0, 1]. UpperCamelCase_: Optional[Any] = (outputs - min_out) / (max_out - min_out) # Scale to [self.min_value, self.max_value]. return zero_one * (self.max_value - self.min_value) + self.min_value def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = input_tokens > 0 UpperCamelCase_ ,UpperCamelCase_: Tuple = self.notes_encoder( encoder_input_tokens=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: Any = self.continuous_encoder( encoder_inputs=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) return [(tokens_encoded, tokens_mask), (continuous_encoded, continuous_mask)] def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = noise_time if not torch.is_tensor(_lowerCamelCase ): UpperCamelCase_: List[str] = torch.tensor([timesteps] , dtype=torch.long , device=input_tokens.device ) elif torch.is_tensor(_lowerCamelCase ) and len(timesteps.shape ) == 0: UpperCamelCase_: Dict = timesteps[None].to(input_tokens.device ) # broadcast to batch dimension in a way that's compatible with ONNX/Core ML UpperCamelCase_: Union[str, Any] = timesteps * torch.ones(input_tokens.shape[0] , dtype=timesteps.dtype , device=timesteps.device ) UpperCamelCase_: Any = self.decoder( encodings_and_masks=_lowerCamelCase , decoder_input_tokens=_lowerCamelCase , decoder_noise_time=_lowerCamelCase ) return logits @torch.no_grad() def __call__( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = 1_0_0 , _lowerCamelCase = True , _lowerCamelCase = "numpy" , _lowerCamelCase = None , _lowerCamelCase = 1 , ): if (callback_steps is None) or ( callback_steps is not None and (not isinstance(_lowerCamelCase , _lowerCamelCase ) or callback_steps <= 0) ): raise ValueError( f'''`callback_steps` has to be a positive integer but is {callback_steps} of type''' f''' {type(_lowerCamelCase )}.''' ) UpperCamelCase_: List[str] = np.zeros([1, TARGET_FEATURE_LENGTH, self.n_dims] , dtype=np.floataa ) UpperCamelCase_: str = np.zeros([1, 0, self.n_dims] , np.floataa ) UpperCamelCase_: Dict = torch.ones((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) for i, encoder_input_tokens in enumerate(_lowerCamelCase ): if i == 0: UpperCamelCase_: str = torch.from_numpy(pred_mel[:1].copy() ).to( device=self.device , dtype=self.decoder.dtype ) # The first chunk has no previous context. UpperCamelCase_: Tuple = torch.zeros((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) else: # The full song pipeline does not feed in a context feature, so the mask # will be all 0s after the feature converter. Because we know we're # feeding in a full context chunk from the previous prediction, set it # to all 1s. UpperCamelCase_: Any = ones UpperCamelCase_: str = self.scale_features( _lowerCamelCase , output_range=[-1.0, 1.0] , clip=_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.encode( input_tokens=torch.IntTensor([encoder_input_tokens] ).to(device=self.device ) , continuous_inputs=_lowerCamelCase , continuous_mask=_lowerCamelCase , ) # Sample encoder_continuous_inputs shaped gaussian noise to begin loop UpperCamelCase_: List[str] = randn_tensor( shape=encoder_continuous_inputs.shape , generator=_lowerCamelCase , device=self.device , dtype=self.decoder.dtype , ) # set step values self.scheduler.set_timesteps(_lowerCamelCase ) # Denoising diffusion loop for j, t in enumerate(self.progress_bar(self.scheduler.timesteps ) ): UpperCamelCase_: int = self.decode( encodings_and_masks=_lowerCamelCase , input_tokens=_lowerCamelCase , noise_time=t / self.scheduler.config.num_train_timesteps , ) # Compute previous output: x_t -> x_t-1 UpperCamelCase_: Tuple = self.scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample UpperCamelCase_: List[Any] = self.scale_to_features(_lowerCamelCase , input_range=[-1.0, 1.0] ) UpperCamelCase_: Any = mel[:1] UpperCamelCase_: List[str] = mel.cpu().float().numpy() UpperCamelCase_: Tuple = np.concatenate([full_pred_mel, pred_mel[:1]] , axis=1 ) # call the callback, if provided if callback is not None and i % callback_steps == 0: callback(_lowerCamelCase , _lowerCamelCase ) logger.info('Generated segment' , _lowerCamelCase ) if output_type == "numpy" and not is_onnx_available(): raise ValueError( 'Cannot return output in \'np\' format if ONNX is not available. Make sure to have ONNX installed or set \'output_type\' to \'mel\'.' ) elif output_type == "numpy" and self.melgan is None: raise ValueError( 'Cannot return output in \'np\' format if melgan component is not defined. Make sure to define `self.melgan` or set \'output_type\' to \'mel\'.' ) if output_type == "numpy": UpperCamelCase_: int = self.melgan(input_features=full_pred_mel.astype(np.floataa ) ) else: UpperCamelCase_: int = full_pred_mel if not return_dict: return (output,) return AudioPipelineOutput(audios=_lowerCamelCase )
57
1
import unittest import numpy as np def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = None , ) -> np.ndarray: UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: List[Any] = np.shape(UpperCAmelCase__ ) if shape_a[0] != shape_b[0]: UpperCamelCase_: Any = ( 'Expected the same number of rows for A and B. ' F'''Instead found A of size {shape_a} and B of size {shape_b}''' ) raise ValueError(UpperCAmelCase__ ) if shape_b[1] != shape_c[1]: UpperCamelCase_: int = ( 'Expected the same number of columns for B and C. ' F'''Instead found B of size {shape_b} and C of size {shape_c}''' ) raise ValueError(UpperCAmelCase__ ) UpperCamelCase_: Dict = pseudo_inv if a_inv is None: try: UpperCamelCase_: Optional[Any] = np.linalg.inv(UpperCAmelCase__ ) except np.linalg.LinAlgError: raise ValueError( 'Input matrix A is not invertible. Cannot compute Schur complement.' ) return mat_c - mat_b.T @ a_inv @ mat_b class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Any = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: Dict = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: Tuple = np.array([[2, 1], [6, 3]] ) UpperCamelCase_: Tuple = schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = np.block([[a, b], [b.T, c]] ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: Dict = np.linalg.det(_lowerCamelCase ) self.assertAlmostEqual(_lowerCamelCase , det_a * det_s ) def _a ( self ): UpperCamelCase_: int = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: List[str] = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[str] = np.array([[2, 1], [6, 3]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: str = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[Any] = np.array([[2, 1, 3], [6, 3, 5]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if __name__ == "__main__": import doctest doctest.testmod() unittest.main()
57
import itertools from dataclasses import dataclass from typing import Any, Callable, Dict, List, Optional, Union import pandas as pd import pyarrow as pa import datasets import datasets.config from datasets.features.features import require_storage_cast from datasets.table import table_cast from datasets.utils.py_utils import Literal A_ : Union[str, Any] = datasets.utils.logging.get_logger(__name__) A_ : Optional[Any] = ['names', 'prefix'] A_ : List[str] = ['warn_bad_lines', 'error_bad_lines', 'mangle_dupe_cols'] A_ : List[Any] = ['encoding_errors', 'on_bad_lines'] A_ : Optional[Any] = ['date_format'] @dataclass class _lowerCAmelCase( datasets.BuilderConfig ): """simple docstring""" a : str ="," a : Optional[str] =None a : Optional[Union[int, List[int], str]] ="infer" a : Optional[List[str]] =None a : Optional[List[str]] =None a : Optional[Union[int, str, List[int], List[str]]] =None a : Optional[Union[List[int], List[str]]] =None a : Optional[str] =None a : bool =True a : Optional[Literal["c", "python", "pyarrow"]] =None a : Dict[Union[int, str], Callable[[Any], Any]] =None a : Optional[list] =None a : Optional[list] =None a : bool =False a : Optional[Union[int, List[int]]] =None a : Optional[int] =None a : Optional[Union[str, List[str]]] =None a : bool =True a : bool =True a : bool =False a : bool =True a : Optional[str] =None a : str ="." a : Optional[str] =None a : str ='"' a : int =0 a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : bool =True a : bool =True a : int =0 a : bool =True a : bool =False a : Optional[str] =None a : int =10000 a : Optional[datasets.Features] =None a : Optional[str] ="strict" a : Literal["error", "warn", "skip"] ="error" a : Optional[str] =None def _a ( self ): if self.delimiter is not None: UpperCamelCase_: Optional[Any] = self.delimiter if self.column_names is not None: UpperCamelCase_: int = self.column_names @property def _a ( self ): UpperCamelCase_: Any = { 'sep': self.sep, 'header': self.header, 'names': self.names, 'index_col': self.index_col, 'usecols': self.usecols, 'prefix': self.prefix, 'mangle_dupe_cols': self.mangle_dupe_cols, 'engine': self.engine, 'converters': self.converters, 'true_values': self.true_values, 'false_values': self.false_values, 'skipinitialspace': self.skipinitialspace, 'skiprows': self.skiprows, 'nrows': self.nrows, 'na_values': self.na_values, 'keep_default_na': self.keep_default_na, 'na_filter': self.na_filter, 'verbose': self.verbose, 'skip_blank_lines': self.skip_blank_lines, 'thousands': self.thousands, 'decimal': self.decimal, 'lineterminator': self.lineterminator, 'quotechar': self.quotechar, 'quoting': self.quoting, 'escapechar': self.escapechar, 'comment': self.comment, 'encoding': self.encoding, 'dialect': self.dialect, 'error_bad_lines': self.error_bad_lines, 'warn_bad_lines': self.warn_bad_lines, 'skipfooter': self.skipfooter, 'doublequote': self.doublequote, 'memory_map': self.memory_map, 'float_precision': self.float_precision, 'chunksize': self.chunksize, 'encoding_errors': self.encoding_errors, 'on_bad_lines': self.on_bad_lines, 'date_format': self.date_format, } # some kwargs must not be passed if they don't have a default value # some others are deprecated and we can also not pass them if they are the default value for pd_read_csv_parameter in _PANDAS_READ_CSV_NO_DEFAULT_PARAMETERS + _PANDAS_READ_CSV_DEPRECATED_PARAMETERS: if pd_read_csv_kwargs[pd_read_csv_parameter] == getattr(CsvConfig() , _lowerCamelCase ): del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 2.0 new arguments if not (datasets.config.PANDAS_VERSION.major >= 2): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_2_0_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 1.3 new arguments if not (datasets.config.PANDAS_VERSION.major >= 1 and datasets.config.PANDAS_VERSION.minor >= 3): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_1_3_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] return pd_read_csv_kwargs class _lowerCAmelCase( datasets.ArrowBasedBuilder ): """simple docstring""" a : Dict =CsvConfig def _a ( self ): return datasets.DatasetInfo(features=self.config.features ) def _a ( self , _lowerCamelCase ): if not self.config.data_files: raise ValueError(f'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) UpperCamelCase_: Tuple = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_lowerCamelCase , (str, list, tuple) ): UpperCamelCase_: List[Any] = data_files if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = [files] UpperCamelCase_: Tuple = [dl_manager.iter_files(_lowerCamelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] UpperCamelCase_: Tuple = [] for split_name, files in data_files.items(): if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = [files] UpperCamelCase_: int = [dl_manager.iter_files(_lowerCamelCase ) for file in files] splits.append(datasets.SplitGenerator(name=_lowerCamelCase , gen_kwargs={'files': files} ) ) return splits def _a ( self , _lowerCamelCase ): if self.config.features is not None: UpperCamelCase_: List[Any] = self.config.features.arrow_schema if all(not require_storage_cast(_lowerCamelCase ) for feature in self.config.features.values() ): # cheaper cast UpperCamelCase_: Optional[int] = pa.Table.from_arrays([pa_table[field.name] for field in schema] , schema=_lowerCamelCase ) else: # more expensive cast; allows str <-> int/float or str to Audio for example UpperCamelCase_: int = table_cast(_lowerCamelCase , _lowerCamelCase ) return pa_table def _a ( self , _lowerCamelCase ): UpperCamelCase_: List[str] = self.config.features.arrow_schema if self.config.features else None # dtype allows reading an int column as str UpperCamelCase_: Dict = ( { name: dtype.to_pandas_dtype() if not require_storage_cast(_lowerCamelCase ) else object for name, dtype, feature in zip(schema.names , schema.types , self.config.features.values() ) } if schema is not None else None ) for file_idx, file in enumerate(itertools.chain.from_iterable(_lowerCamelCase ) ): UpperCamelCase_: Optional[Any] = pd.read_csv(_lowerCamelCase , iterator=_lowerCamelCase , dtype=_lowerCamelCase , **self.config.pd_read_csv_kwargs ) try: for batch_idx, df in enumerate(_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = pa.Table.from_pandas(_lowerCamelCase ) # Uncomment for debugging (will print the Arrow table size and elements) # logger.warning(f"pa_table: {pa_table} num rows: {pa_table.num_rows}") # logger.warning('\n'.join(str(pa_table.slice(i, 1).to_pydict()) for i in range(pa_table.num_rows))) yield (file_idx, batch_idx), self._cast_table(_lowerCamelCase ) except ValueError as e: logger.error(f'''Failed to read file \'{file}\' with error {type(_lowerCamelCase )}: {e}''' ) raise
57
1
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : int = { 'configuration_lilt': ['LILT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'LiltConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = [ 'LILT_PRETRAINED_MODEL_ARCHIVE_LIST', 'LiltForQuestionAnswering', 'LiltForSequenceClassification', 'LiltForTokenClassification', 'LiltModel', 'LiltPreTrainedModel', ] if TYPE_CHECKING: from .configuration_lilt import LILT_PRETRAINED_CONFIG_ARCHIVE_MAP, LiltConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_lilt import ( LILT_PRETRAINED_MODEL_ARCHIVE_LIST, LiltForQuestionAnswering, LiltForSequenceClassification, LiltForTokenClassification, LiltModel, LiltPreTrainedModel, ) else: import sys A_ : Union[str, Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
from ...configuration_utils import PretrainedConfig from ...utils import logging A_ : str = logging.get_logger(__name__) A_ : Union[str, Any] = { 's-JoL/Open-Llama-V1': 'https://huggingface.co/s-JoL/Open-Llama-V1/blob/main/config.json', } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Tuple ='''open-llama''' def __init__( self , _lowerCamelCase=1_0_0_0_0_0 , _lowerCamelCase=4_0_9_6 , _lowerCamelCase=1_1_0_0_8 , _lowerCamelCase=3_2 , _lowerCamelCase=3_2 , _lowerCamelCase="silu" , _lowerCamelCase=2_0_4_8 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-6 , _lowerCamelCase=True , _lowerCamelCase=0 , _lowerCamelCase=1 , _lowerCamelCase=2 , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: int = vocab_size UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: Dict = hidden_size UpperCamelCase_: Dict = intermediate_size UpperCamelCase_: Union[str, Any] = num_hidden_layers UpperCamelCase_: Dict = num_attention_heads UpperCamelCase_: Union[str, Any] = hidden_act UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: List[Any] = rms_norm_eps UpperCamelCase_: Union[str, Any] = use_cache UpperCamelCase_: Dict = kwargs.pop( 'use_memorry_efficient_attention' , _lowerCamelCase ) UpperCamelCase_: Union[str, Any] = hidden_dropout_prob UpperCamelCase_: Any = attention_dropout_prob UpperCamelCase_: int = use_stable_embedding UpperCamelCase_: Tuple = shared_input_output_embedding UpperCamelCase_: str = rope_scaling self._rope_scaling_validation() super().__init__( pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , tie_word_embeddings=_lowerCamelCase , **_lowerCamelCase , ) def _a ( self ): if self.rope_scaling is None: return if not isinstance(self.rope_scaling , _lowerCamelCase ) or len(self.rope_scaling ) != 2: raise ValueError( '`rope_scaling` must be a dictionary with with two fields, `name` and `factor`, ' f'''got {self.rope_scaling}''' ) UpperCamelCase_: str = self.rope_scaling.get('type' , _lowerCamelCase ) UpperCamelCase_: int = self.rope_scaling.get('factor' , _lowerCamelCase ) if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]: raise ValueError( f'''`rope_scaling`\'s name field must be one of [\'linear\', \'dynamic\'], got {rope_scaling_type}''' ) if rope_scaling_factor is None or not isinstance(_lowerCamelCase , _lowerCamelCase ) or rope_scaling_factor <= 1.0: raise ValueError(f'''`rope_scaling`\'s factor field must be an float > 1, got {rope_scaling_factor}''' )
57
1
import os from shutil import copyfile from typing import List, Optional, Tuple from ...tokenization_utils import AddedToken from ...tokenization_utils_fast import PreTrainedTokenizerFast from ...utils import is_sentencepiece_available, logging if is_sentencepiece_available(): from .tokenization_camembert import CamembertTokenizer else: A_ : int = None A_ : str = logging.get_logger(__name__) A_ : List[Any] = {'vocab_file': 'sentencepiece.bpe.model', 'tokenizer_file': 'tokenizer.json'} A_ : Any = { 'vocab_file': { 'camembert-base': 'https://huggingface.co/camembert-base/resolve/main/sentencepiece.bpe.model', }, 'tokenizer_file': { 'camembert-base': 'https://huggingface.co/camembert-base/resolve/main/tokenizer.json', }, } A_ : Tuple = { 'camembert-base': 512, } A_ : List[Any] = '▁' class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Dict =VOCAB_FILES_NAMES a : Union[str, Any] =PRETRAINED_VOCAB_FILES_MAP a : Optional[Any] =PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES a : Dict =['''input_ids''', '''attention_mask'''] a : List[Any] =CamembertTokenizer def __init__( self , _lowerCamelCase=None , _lowerCamelCase=None , _lowerCamelCase="<s>" , _lowerCamelCase="</s>" , _lowerCamelCase="</s>" , _lowerCamelCase="<s>" , _lowerCamelCase="<unk>" , _lowerCamelCase="<pad>" , _lowerCamelCase="<mask>" , _lowerCamelCase=["<s>NOTUSED", "</s>NOTUSED"] , **_lowerCamelCase , ): # Mask token behave like a normal word, i.e. include the space before it UpperCamelCase_: Optional[int] = AddedToken(_lowerCamelCase , lstrip=_lowerCamelCase , rstrip=_lowerCamelCase ) if isinstance(_lowerCamelCase , _lowerCamelCase ) else mask_token super().__init__( _lowerCamelCase , tokenizer_file=_lowerCamelCase , bos_token=_lowerCamelCase , eos_token=_lowerCamelCase , sep_token=_lowerCamelCase , cls_token=_lowerCamelCase , unk_token=_lowerCamelCase , pad_token=_lowerCamelCase , mask_token=_lowerCamelCase , additional_special_tokens=_lowerCamelCase , **_lowerCamelCase , ) UpperCamelCase_: Union[str, Any] = vocab_file UpperCamelCase_: Tuple = False if not self.vocab_file else True def _a ( self , _lowerCamelCase , _lowerCamelCase = None ): if token_ids_a is None: return [self.cls_token_id] + token_ids_a + [self.sep_token_id] UpperCamelCase_: List[Any] = [self.cls_token_id] UpperCamelCase_: Tuple = [self.sep_token_id] return cls + token_ids_a + sep + sep + token_ids_a + sep def _a ( self , _lowerCamelCase , _lowerCamelCase = None ): UpperCamelCase_: List[Any] = [self.sep_token_id] UpperCamelCase_: Tuple = [self.cls_token_id] if token_ids_a is None: return len(cls + token_ids_a + sep ) * [0] return len(cls + token_ids_a + sep + sep + token_ids_a + sep ) * [0] def _a ( self , _lowerCamelCase , _lowerCamelCase = None ): if not self.can_save_slow_tokenizer: raise ValueError( 'Your fast tokenizer does not have the necessary information to save the vocabulary for a slow ' 'tokenizer.' ) if not os.path.isdir(_lowerCamelCase ): logger.error(f'''Vocabulary path ({save_directory}) should be a directory''' ) return UpperCamelCase_: int = os.path.join( _lowerCamelCase , (filename_prefix + '-' if filename_prefix else '') + VOCAB_FILES_NAMES['vocab_file'] ) if os.path.abspath(self.vocab_file ) != os.path.abspath(_lowerCamelCase ): copyfile(self.vocab_file , _lowerCamelCase ) return (out_vocab_file,)
57
import collections import inspect import unittest from transformers import FocalNetConfig from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_backbone_common import BackboneTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( FocalNetBackbone, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetModel, ) from transformers.models.focalnet.modeling_focalnet import FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=1_6 , _lowerCamelCase=[3_2, 6_4, 1_2_8] , _lowerCamelCase=[1, 2, 1] , _lowerCamelCase=[2, 2, 4] , _lowerCamelCase=2 , _lowerCamelCase=2.0 , _lowerCamelCase=True , _lowerCamelCase=0.0 , _lowerCamelCase=0.0 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-5 , _lowerCamelCase=True , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=1_0 , _lowerCamelCase=8 , _lowerCamelCase=["stage1", "stage2"] , _lowerCamelCase=[1, 2] , ): UpperCamelCase_: Tuple = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = image_size UpperCamelCase_: Tuple = patch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Dict = embed_dim UpperCamelCase_: List[Any] = hidden_sizes UpperCamelCase_: List[str] = depths UpperCamelCase_: List[str] = num_heads UpperCamelCase_: Optional[int] = window_size UpperCamelCase_: Tuple = mlp_ratio UpperCamelCase_: Dict = qkv_bias UpperCamelCase_: str = hidden_dropout_prob UpperCamelCase_: Optional[Any] = attention_probs_dropout_prob UpperCamelCase_: int = drop_path_rate UpperCamelCase_: Dict = hidden_act UpperCamelCase_: List[str] = use_absolute_embeddings UpperCamelCase_: Dict = patch_norm UpperCamelCase_: Optional[Any] = layer_norm_eps UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = is_training UpperCamelCase_: Optional[int] = scope UpperCamelCase_: str = use_labels UpperCamelCase_: List[str] = type_sequence_label_size UpperCamelCase_: Union[str, Any] = encoder_stride UpperCamelCase_: Dict = out_features UpperCamelCase_: str = out_indices def _a ( self ): UpperCamelCase_: int = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: List[Any] = None if self.use_labels: UpperCamelCase_: Any = ids_tensor([self.batch_size] , self.type_sequence_label_size ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return FocalNetConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , embed_dim=self.embed_dim , hidden_sizes=self.hidden_sizes , depths=self.depths , num_heads=self.num_heads , window_size=self.window_size , mlp_ratio=self.mlp_ratio , qkv_bias=self.qkv_bias , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , drop_path_rate=self.drop_path_rate , hidden_act=self.hidden_act , use_absolute_embeddings=self.use_absolute_embeddings , path_norm=self.patch_norm , layer_norm_eps=self.layer_norm_eps , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , out_features=self.out_features , out_indices=self.out_indices , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = FocalNetModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: int = model(_lowerCamelCase ) UpperCamelCase_: int = ((config.image_size // config.patch_size) ** 2) // (4 ** (len(config.depths ) - 1)) UpperCamelCase_: int = int(config.embed_dim * 2 ** (len(config.depths ) - 1) ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, expected_seq_len, expected_dim) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[str] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size, 8, 8] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[:-1] ) # verify backbone works with out_features=None UpperCamelCase_: int = None UpperCamelCase_: List[Any] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size * 2, 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = FocalNetForMaskedImageModeling(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Dict = FocalNetForMaskedImageModeling(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.type_sequence_label_size UpperCamelCase_: List[Any] = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: str = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images UpperCamelCase_: Union[str, Any] = 1 UpperCamelCase_: Dict = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Dict = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def _a ( self ): UpperCamelCase_: Dict = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: int = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =( ( FocalNetModel, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetBackbone, ) if is_torch_available() else () ) a : Any =( {'''feature-extraction''': FocalNetModel, '''image-classification''': FocalNetForImageClassification} if is_torch_available() else {} ) a : Dict =False a : Union[str, Any] =False a : Tuple =False a : Optional[int] =False a : Union[str, Any] =False def _a ( self ): UpperCamelCase_: str = FocalNetModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , embed_dim=3_7 , has_text_modality=_lowerCamelCase ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_backbone(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) @unittest.skip(reason='FocalNet does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='FocalNet does not use feedforward chunking' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Union[str, Any] = model_class(_lowerCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) UpperCamelCase_: List[str] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(_lowerCamelCase , nn.Linear ) ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: List[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Any = [*signature.parameters.keys()] UpperCamelCase_: List[Any] = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: Tuple = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = outputs.hidden_states UpperCamelCase_: Tuple = getattr( self.model_tester , 'expected_num_hidden_layers' , len(self.model_tester.depths ) + 1 ) self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) # FocalNet has a different seq_length UpperCamelCase_: Optional[Any] = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: int = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) UpperCamelCase_: Dict = outputs.reshaped_hidden_states self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = reshaped_hidden_states[0].shape UpperCamelCase_: List[str] = ( reshaped_hidden_states[0].view(_lowerCamelCase , _lowerCamelCase , height * width ).permute(0 , 2 , 1 ) ) self.assertListEqual( list(reshaped_hidden_states.shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: int = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: int = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: str = 3 UpperCamelCase_: Any = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) UpperCamelCase_: int = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: List[Any] = image_size[0] + patch_size[0] - (image_size[0] % patch_size[0]) UpperCamelCase_: str = image_size[1] + patch_size[1] - (image_size[1] % patch_size[1]) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Dict = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) @slow def _a ( self ): for model_name in FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: List[Any] = FocalNetModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = _config_zero_init(_lowerCamelCase ) for model_class in self.all_model_classes: UpperCamelCase_: List[str] = model_class(config=_lowerCamelCase ) for name, param in model.named_parameters(): if "embeddings" not in name and param.requires_grad: self.assertIn( ((param.data.mean() * 1e9).round() / 1e9).item() , [0.0, 1.0] , msg=f'''Parameter {name} of model {model_class} seems not properly initialized''' , ) @require_vision @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): # TODO update organization return AutoImageProcessor.from_pretrained('microsoft/focalnet-tiny' ) if is_vision_available() else None @slow def _a ( self ): UpperCamelCase_: Optional[int] = FocalNetForImageClassification.from_pretrained('microsoft/focalnet-tiny' ).to(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.default_image_processor UpperCamelCase_: str = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) UpperCamelCase_: str = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: List[str] = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: Optional[int] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Optional[int] = torch.tensor([0.2_1_6_6, -0.4_3_6_8, 0.2_1_9_1] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) ) self.assertTrue(outputs.logits.argmax(dim=-1 ).item() , 2_8_1 ) @require_torch class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[Any] =(FocalNetBackbone,) if is_torch_available() else () a : List[str] =FocalNetConfig a : List[str] =False def _a ( self ): UpperCamelCase_: Any = FocalNetModelTester(self )
57
1
import inspect import os import unittest from pathlib import Path import torch import accelerate from accelerate.test_utils import execute_subprocess_async from accelerate.test_utils.testing import run_command class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : str =inspect.getfile(accelerate.test_utils ) a : Any =os.path.sep.join(mod_file.split(os.path.sep )[:-1] + ['''scripts''', '''test_cli.py'''] ) a : int =['''accelerate''', '''launch'''] a : str =Path.home() / '''.cache/huggingface/accelerate''' a : str ='''default_config.yaml''' a : Optional[int] =config_folder / config_file a : int =config_folder / '''_default_config.yaml''' a : List[Any] =Path('''tests/test_configs''' ) @classmethod def _a ( cls ): if cls.config_path.is_file(): cls.config_path.rename(cls.changed_path ) @classmethod def _a ( cls ): if cls.changed_path.is_file(): cls.changed_path.rename(cls.config_path ) def _a ( self ): UpperCamelCase_: Dict = self.base_cmd if torch.cuda.is_available() and (torch.cuda.device_count() > 1): cmd += ["--multi_gpu"] execute_subprocess_async(cmd + [self.test_file_path] , env=os.environ.copy() ) def _a ( self ): for config in sorted(self.test_config_path.glob('**/*.yaml' ) ): with self.subTest(config_file=_lowerCamelCase ): execute_subprocess_async( self.base_cmd + ['--config_file', str(_lowerCamelCase ), self.test_file_path] , env=os.environ.copy() ) def _a ( self ): execute_subprocess_async(['accelerate', 'test'] , env=os.environ.copy() ) class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : List[Any] ='''test-tpu''' a : str ='''us-central1-a''' a : str ='''ls''' a : List[Any] =['''accelerate''', '''tpu-config'''] a : List[Any] ='''cd /usr/share''' a : List[str] ='''tests/test_samples/test_command_file.sh''' a : Dict ='''Running gcloud compute tpus tpu-vm ssh''' def _a ( self ): UpperCamelCase_: Union[str, Any] = run_command( self.cmd + ['--command', self.command, '--tpu_zone', self.tpu_zone, '--tpu_name', self.tpu_name, '--debug'] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: int = run_command( self.cmd + [ '--config_file', 'tests/test_configs/0_12_0.yaml', '--command', self.command, '--tpu_zone', self.tpu_zone, '--tpu_name', self.tpu_name, '--debug', ] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: List[Any] = run_command( self.cmd + ['--config_file', 'tests/test_configs/latest.yaml', '--debug'] , return_stdout=_lowerCamelCase ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; echo "hello world"; echo "this is a second command" --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: Optional[Any] = run_command( self.cmd + ['--config_file', 'tests/test_configs/latest.yaml', '--command', self.command, '--debug'] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: str = run_command( self.cmd + [ '--config_file', 'tests/test_configs/latest.yaml', '--command', self.command, '--command', 'echo "Hello World"', '--debug', ] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; ls; echo "Hello World" --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: Dict = run_command( self.cmd + ['--config_file', 'tests/test_configs/latest.yaml', '--command_file', self.command_file, '--debug'] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; echo "hello world"; echo "this is a second command" --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: Dict = run_command( self.cmd + [ '--config_file', 'tests/test_configs/0_12_0.yaml', '--command_file', self.command_file, '--tpu_zone', self.tpu_zone, '--tpu_name', self.tpu_name, '--debug', ] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; echo "hello world"; echo "this is a second command" --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: Optional[int] = run_command( self.cmd + ['--config_file', 'tests/test_configs/latest.yaml', '--install_accelerate', '--debug'] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; pip install accelerate -U; echo "hello world"; echo "this is a second command" --worker all''' , _lowerCamelCase , ) def _a ( self ): UpperCamelCase_: Optional[Any] = run_command( self.cmd + [ '--config_file', 'tests/test_configs/latest.yaml', '--install_accelerate', '--accelerate_version', '12.0.0', '--debug', ] , return_stdout=_lowerCamelCase , ) self.assertIn( f'''{self.gcloud} test-tpu --zone us-central1-a --command {self.base_output}; pip install accelerate==12.0.0; echo "hello world"; echo "this is a second command" --worker all''' , _lowerCamelCase , )
57
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) A_ : Tuple = { 'configuration_distilbert': [ 'DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'DistilBertConfig', 'DistilBertOnnxConfig', ], 'tokenization_distilbert': ['DistilBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Optional[Any] = ['DistilBertTokenizerFast'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'DistilBertForMaskedLM', 'DistilBertForMultipleChoice', 'DistilBertForQuestionAnswering', 'DistilBertForSequenceClassification', 'DistilBertForTokenClassification', 'DistilBertModel', 'DistilBertPreTrainedModel', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'TFDistilBertForMaskedLM', 'TFDistilBertForMultipleChoice', 'TFDistilBertForQuestionAnswering', 'TFDistilBertForSequenceClassification', 'TFDistilBertForTokenClassification', 'TFDistilBertMainLayer', 'TFDistilBertModel', 'TFDistilBertPreTrainedModel', ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'FlaxDistilBertForMaskedLM', 'FlaxDistilBertForMultipleChoice', 'FlaxDistilBertForQuestionAnswering', 'FlaxDistilBertForSequenceClassification', 'FlaxDistilBertForTokenClassification', 'FlaxDistilBertModel', 'FlaxDistilBertPreTrainedModel', ] if TYPE_CHECKING: from .configuration_distilbert import ( DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP, DistilBertConfig, DistilBertOnnxConfig, ) from .tokenization_distilbert import DistilBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_distilbert_fast import DistilBertTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_distilbert import ( DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, DistilBertForMaskedLM, DistilBertForMultipleChoice, DistilBertForQuestionAnswering, DistilBertForSequenceClassification, DistilBertForTokenClassification, DistilBertModel, DistilBertPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_distilbert import ( TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, TFDistilBertForMaskedLM, TFDistilBertForMultipleChoice, TFDistilBertForQuestionAnswering, TFDistilBertForSequenceClassification, TFDistilBertForTokenClassification, TFDistilBertMainLayer, TFDistilBertModel, TFDistilBertPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_distilbert import ( FlaxDistilBertForMaskedLM, FlaxDistilBertForMultipleChoice, FlaxDistilBertForQuestionAnswering, FlaxDistilBertForSequenceClassification, FlaxDistilBertForTokenClassification, FlaxDistilBertModel, FlaxDistilBertPreTrainedModel, ) else: import sys A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) A_ : Tuple = { 'configuration_distilbert': [ 'DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'DistilBertConfig', 'DistilBertOnnxConfig', ], 'tokenization_distilbert': ['DistilBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Optional[Any] = ['DistilBertTokenizerFast'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'DistilBertForMaskedLM', 'DistilBertForMultipleChoice', 'DistilBertForQuestionAnswering', 'DistilBertForSequenceClassification', 'DistilBertForTokenClassification', 'DistilBertModel', 'DistilBertPreTrainedModel', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'TFDistilBertForMaskedLM', 'TFDistilBertForMultipleChoice', 'TFDistilBertForQuestionAnswering', 'TFDistilBertForSequenceClassification', 'TFDistilBertForTokenClassification', 'TFDistilBertMainLayer', 'TFDistilBertModel', 'TFDistilBertPreTrainedModel', ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'FlaxDistilBertForMaskedLM', 'FlaxDistilBertForMultipleChoice', 'FlaxDistilBertForQuestionAnswering', 'FlaxDistilBertForSequenceClassification', 'FlaxDistilBertForTokenClassification', 'FlaxDistilBertModel', 'FlaxDistilBertPreTrainedModel', ] if TYPE_CHECKING: from .configuration_distilbert import ( DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP, DistilBertConfig, DistilBertOnnxConfig, ) from .tokenization_distilbert import DistilBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_distilbert_fast import DistilBertTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_distilbert import ( DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, DistilBertForMaskedLM, DistilBertForMultipleChoice, DistilBertForQuestionAnswering, DistilBertForSequenceClassification, DistilBertForTokenClassification, DistilBertModel, DistilBertPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_distilbert import ( TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, TFDistilBertForMaskedLM, TFDistilBertForMultipleChoice, TFDistilBertForQuestionAnswering, TFDistilBertForSequenceClassification, TFDistilBertForTokenClassification, TFDistilBertMainLayer, TFDistilBertModel, TFDistilBertPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_distilbert import ( FlaxDistilBertForMaskedLM, FlaxDistilBertForMultipleChoice, FlaxDistilBertForQuestionAnswering, FlaxDistilBertForSequenceClassification, FlaxDistilBertForTokenClassification, FlaxDistilBertModel, FlaxDistilBertPreTrainedModel, ) else: import sys A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
import os import socket from contextlib import contextmanager import torch from ..commands.config.default import write_basic_config # noqa: F401 from ..state import PartialState from .dataclasses import DistributedType from .imports import is_deepspeed_available, is_tpu_available from .transformer_engine import convert_model from .versions import is_torch_version if is_deepspeed_available(): from deepspeed import DeepSpeedEngine if is_tpu_available(check_device=False): import torch_xla.core.xla_model as xm def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: if is_torch_version('<' , '2.0.0' ) or not hasattr(UpperCAmelCase__ , '_dynamo' ): return False return isinstance(UpperCAmelCase__ , torch._dynamo.eval_frame.OptimizedModule ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ = True ) -> Any: UpperCamelCase_: Optional[Any] = (torch.nn.parallel.DistributedDataParallel, torch.nn.DataParallel) UpperCamelCase_: int = is_compiled_module(UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: List[str] = model UpperCamelCase_: Dict = model._orig_mod if is_deepspeed_available(): options += (DeepSpeedEngine,) while isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Dict = model.module if not keep_fpaa_wrapper: UpperCamelCase_: int = getattr(UpperCAmelCase__ , 'forward' ) UpperCamelCase_: List[str] = model.__dict__.pop('_original_forward' , UpperCAmelCase__ ) if original_forward is not None: while hasattr(UpperCAmelCase__ , '__wrapped__' ): UpperCamelCase_: Any = forward.__wrapped__ if forward == original_forward: break UpperCamelCase_: Optional[int] = forward if getattr(UpperCAmelCase__ , '_converted_to_transformer_engine' , UpperCAmelCase__ ): convert_model(UpperCAmelCase__ , to_transformer_engine=UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: Union[str, Any] = model UpperCamelCase_: Tuple = compiled_model return model def snake_case () -> List[str]: PartialState().wait_for_everyone() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: if PartialState().distributed_type == DistributedType.TPU: xm.save(UpperCAmelCase__ , UpperCAmelCase__ ) elif PartialState().local_process_index == 0: torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) @contextmanager def snake_case (**UpperCAmelCase__ ) -> Any: for key, value in kwargs.items(): UpperCamelCase_: int = str(UpperCAmelCase__ ) yield for key in kwargs: if key.upper() in os.environ: del os.environ[key.upper()] def snake_case (UpperCAmelCase__ ) -> str: if not hasattr(UpperCAmelCase__ , '__qualname__' ) and not hasattr(UpperCAmelCase__ , '__name__' ): UpperCamelCase_: List[Any] = getattr(UpperCAmelCase__ , '__class__' , UpperCAmelCase__ ) if hasattr(UpperCAmelCase__ , '__qualname__' ): return obj.__qualname__ if hasattr(UpperCAmelCase__ , '__name__' ): return obj.__name__ return str(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: for key, value in source.items(): if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Any = destination.setdefault(UpperCAmelCase__ , {} ) merge_dicts(UpperCAmelCase__ , UpperCAmelCase__ ) else: UpperCamelCase_: str = value return destination def snake_case (UpperCAmelCase__ = None ) -> bool: if port is None: UpperCamelCase_: List[str] = 2_9_5_0_0 with socket.socket(socket.AF_INET , socket.SOCK_STREAM ) as s: return s.connect_ex(('localhost', port) ) == 0
57
1
def snake_case (UpperCAmelCase__ ) -> list: UpperCamelCase_: Optional[Any] = int(UpperCAmelCase__ ) if n_element < 1: UpperCamelCase_: List[str] = ValueError('a should be a positive number' ) raise my_error UpperCamelCase_: List[Any] = [1] UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Any = (0, 0, 0) UpperCamelCase_: Optional[Any] = 1 while index < n_element: while hamming_list[i] * 2 <= hamming_list[-1]: i += 1 while hamming_list[j] * 3 <= hamming_list[-1]: j += 1 while hamming_list[k] * 5 <= hamming_list[-1]: k += 1 hamming_list.append( min(hamming_list[i] * 2 , hamming_list[j] * 3 , hamming_list[k] * 5 ) ) index += 1 return hamming_list if __name__ == "__main__": A_ : Optional[Any] = input('Enter the last number (nth term) of the Hamming Number Series: ') print('Formula of Hamming Number Series => 2^i * 3^j * 5^k') A_ : int = hamming(int(n)) print('-----------------------------------------------------') print(F'''The list with nth numbers is: {hamming_numbers}''') print('-----------------------------------------------------')
57
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 A_ : Optional[Any] = data_utils.TransfoXLTokenizer A_ : Union[str, Any] = data_utils.TransfoXLCorpus A_ : Any = data_utils A_ : Optional[Any] = data_utils def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(UpperCAmelCase__ , 'rb' ) as fp: UpperCamelCase_: Union[str, Any] = pickle.load(UpperCAmelCase__ , encoding='latin1' ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) UpperCamelCase_: Any = pytorch_dump_folder_path + '/' + VOCAB_FILES_NAMES['pretrained_vocab_file'] print(F'''Save vocabulary to {pytorch_vocab_dump_path}''' ) UpperCamelCase_: Union[str, Any] = corpus.vocab.__dict__ torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = corpus.__dict__ corpus_dict_no_vocab.pop('vocab' , UpperCAmelCase__ ) UpperCamelCase_: str = pytorch_dump_folder_path + '/' + CORPUS_NAME print(F'''Save dataset to {pytorch_dataset_dump_path}''' ) torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model UpperCamelCase_: Any = os.path.abspath(UpperCAmelCase__ ) UpperCamelCase_: Dict = os.path.abspath(UpperCAmelCase__ ) print(F'''Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.''' ) # Initialise PyTorch model if transfo_xl_config_file == "": UpperCamelCase_: List[str] = TransfoXLConfig() else: UpperCamelCase_: Optional[int] = TransfoXLConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Union[str, Any] = TransfoXLLMHeadModel(UpperCAmelCase__ ) UpperCamelCase_: Tuple = load_tf_weights_in_transfo_xl(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model UpperCamelCase_: str = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''Save PyTorch model to {os.path.abspath(UpperCAmelCase__ )}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) print(F'''Save configuration file to {os.path.abspath(UpperCAmelCase__ )}''' ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the folder to store the PyTorch model or dataset/vocab.', ) parser.add_argument( '--tf_checkpoint_path', default='', type=str, help='An optional path to a TensorFlow checkpoint path to be converted.', ) parser.add_argument( '--transfo_xl_config_file', default='', type=str, help=( 'An optional config json file corresponding to the pre-trained BERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--transfo_xl_dataset_file', default='', type=str, help='An optional dataset file to be converted in a vocabulary.', ) A_ : Tuple = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
57
1
import gc import tempfile import unittest import numpy as np import torch from diffusers import VersatileDiffusionTextToImagePipeline from diffusers.utils.testing_utils import nightly, require_torch_gpu, torch_device A_ : Optional[int] = False class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" pass @nightly @require_torch_gpu class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): # clean up the VRAM after each test super().tearDown() gc.collect() torch.cuda.empty_cache() def _a ( self ): UpperCamelCase_: Union[str, Any] = VersatileDiffusionTextToImagePipeline.from_pretrained('shi-labs/versatile-diffusion' ) # remove text_unet pipe.remove_unused_weights() pipe.to(_lowerCamelCase ) pipe.set_progress_bar_config(disable=_lowerCamelCase ) UpperCamelCase_: Dict = 'A painting of a squirrel eating a burger ' UpperCamelCase_: Dict = torch.manual_seed(0 ) UpperCamelCase_: Dict = pipe( prompt=_lowerCamelCase , generator=_lowerCamelCase , guidance_scale=7.5 , num_inference_steps=2 , output_type='numpy' ).images with tempfile.TemporaryDirectory() as tmpdirname: pipe.save_pretrained(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = VersatileDiffusionTextToImagePipeline.from_pretrained(_lowerCamelCase ) pipe.to(_lowerCamelCase ) pipe.set_progress_bar_config(disable=_lowerCamelCase ) UpperCamelCase_: List[str] = generator.manual_seed(0 ) UpperCamelCase_: int = pipe( prompt=_lowerCamelCase , generator=_lowerCamelCase , guidance_scale=7.5 , num_inference_steps=2 , output_type='numpy' ).images assert np.abs(image - new_image ).sum() < 1e-5, "Models don't have the same forward pass" def _a ( self ): UpperCamelCase_: Optional[int] = VersatileDiffusionTextToImagePipeline.from_pretrained( 'shi-labs/versatile-diffusion' , torch_dtype=torch.floataa ) pipe.to(_lowerCamelCase ) pipe.set_progress_bar_config(disable=_lowerCamelCase ) UpperCamelCase_: Optional[int] = 'A painting of a squirrel eating a burger ' UpperCamelCase_: Optional[Any] = torch.manual_seed(0 ) UpperCamelCase_: Any = pipe( prompt=_lowerCamelCase , generator=_lowerCamelCase , guidance_scale=7.5 , num_inference_steps=5_0 , output_type='numpy' ).images UpperCamelCase_: List[str] = image[0, 2_5_3:2_5_6, 2_5_3:2_5_6, -1] assert image.shape == (1, 5_1_2, 5_1_2, 3) UpperCamelCase_: Optional[int] = np.array([0.3_3_6_7, 0.3_1_6_9, 0.2_6_5_6, 0.3_8_7_0, 0.4_7_9_0, 0.3_7_9_6, 0.4_0_0_9, 0.4_8_7_8, 0.4_7_7_8] ) assert np.abs(image_slice.flatten() - expected_slice ).max() < 1e-2
57
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 rescale, resize, to_channel_dimension_format from ...image_utils import ( ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : List[str] = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Union[str, Any]: UpperCamelCase_: Tuple = b.T UpperCamelCase_: Tuple = np.sum(np.square(UpperCAmelCase__ ) , axis=1 ) UpperCamelCase_: Optional[Any] = np.sum(np.square(UpperCAmelCase__ ) , axis=0 ) UpperCamelCase_: Optional[int] = np.matmul(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[Any] = aa[:, None] - 2 * ab + ba[None, :] return d def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: List[str] = x.reshape(-1 , 3 ) UpperCamelCase_: Union[str, Any] = squared_euclidean_distance(UpperCAmelCase__ , UpperCAmelCase__ ) return np.argmin(UpperCAmelCase__ , axis=1 ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =['''pixel_values'''] def __init__( self , _lowerCamelCase = None , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = True , _lowerCamelCase = True , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: List[str] = size if size is not None else {'height': 2_5_6, 'width': 2_5_6} UpperCamelCase_: str = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Any = np.array(_lowerCamelCase ) if clusters is not None else None UpperCamelCase_: Optional[int] = do_resize UpperCamelCase_: List[Any] = size UpperCamelCase_: Optional[int] = resample UpperCamelCase_: str = do_normalize UpperCamelCase_: str = do_color_quantize def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: Any = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''Size dictionary must contain both height and width keys. Got {size.keys()}''' ) return resize( _lowerCamelCase , size=(size['height'], size['width']) , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , ): UpperCamelCase_: Optional[Any] = rescale(image=_lowerCamelCase , scale=1 / 1_2_7.5 , data_format=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = image - 1 return image def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: Optional[Any] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: Tuple = size if size is not None else self.size UpperCamelCase_: Union[str, Any] = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = resample if resample is not None else self.resample UpperCamelCase_: Any = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: str = do_color_quantize if do_color_quantize is not None else self.do_color_quantize UpperCamelCase_: Dict = clusters if clusters is not None else self.clusters UpperCamelCase_: Dict = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[int] = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_color_quantize and clusters is None: raise ValueError('Clusters must be specified if do_color_quantize is True.' ) # All transformations expect numpy arrays. UpperCamelCase_: Union[str, Any] = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: UpperCamelCase_: Union[str, Any] = [self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) for image in images] if do_normalize: UpperCamelCase_: Optional[Any] = [self.normalize(image=_lowerCamelCase ) for image in images] if do_color_quantize: UpperCamelCase_: Any = [to_channel_dimension_format(_lowerCamelCase , ChannelDimension.LAST ) for image in images] # color quantize from (batch_size, height, width, 3) to (batch_size, height, width) UpperCamelCase_: Optional[Any] = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = color_quantize(_lowerCamelCase , _lowerCamelCase ).reshape(images.shape[:-1] ) # flatten to (batch_size, height*width) UpperCamelCase_: Dict = images.shape[0] UpperCamelCase_: Any = images.reshape(_lowerCamelCase , -1 ) # We need to convert back to a list of images to keep consistent behaviour across processors. UpperCamelCase_: List[Any] = list(_lowerCamelCase ) else: UpperCamelCase_: int = [to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) for image in images] UpperCamelCase_: str = {'input_ids': images} return BatchFeature(data=_lowerCamelCase , tensor_type=_lowerCamelCase )
57
1
import argparse import collections import numpy as np import torch from flax import traverse_util from tax import checkpoints from transformers import MTaConfig, UMTaEncoderModel, UMTaForConditionalGeneration from transformers.utils import logging logging.set_verbosity_info() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[int]: return params[F'''{prefix}/{prefix}/relpos_bias/rel_embedding'''][:, i, :] def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__="attention" ) -> List[str]: UpperCamelCase_: Union[str, Any] = np.ascontiguousarray(params[F'''{prefix}/{prefix}/{layer_name}/key/kernel'''][:, i, :, :] ) UpperCamelCase_: Union[str, Any] = k_tmp.reshape(k_tmp.shape[0] , k_tmp.shape[1] * k_tmp.shape[2] ) UpperCamelCase_: str = np.ascontiguousarray(params[F'''{prefix}/{prefix}/{layer_name}/out/kernel'''][:, i, :, :] ) UpperCamelCase_: Optional[int] = o_tmp.reshape(o_tmp.shape[0] * o_tmp.shape[1] , o_tmp.shape[2] ) UpperCamelCase_: int = np.ascontiguousarray(params[F'''{prefix}/{prefix}/{layer_name}/query/kernel'''][:, i, :, :] ) UpperCamelCase_: List[str] = q_tmp.reshape(q_tmp.shape[0] , q_tmp.shape[1] * q_tmp.shape[2] ) UpperCamelCase_: Dict = np.ascontiguousarray(params[F'''{prefix}/{prefix}/{layer_name}/value/kernel'''][:, i, :, :] ) UpperCamelCase_: List[str] = v_tmp.reshape(v_tmp.shape[0] , v_tmp.shape[1] * v_tmp.shape[2] ) return k, o, q, v def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=False ) -> List[str]: if split_mlp_wi: UpperCamelCase_: List[str] = params[F'''{prefix}/{prefix}/mlp/wi_0/kernel'''][:, i, :] UpperCamelCase_: Tuple = params[F'''{prefix}/{prefix}/mlp/wi_1/kernel'''][:, i, :] UpperCamelCase_: Any = (wi_a, wi_a) else: UpperCamelCase_: Any = params[F'''{prefix}/{prefix}/mlp/wi/kernel'''][:, i, :] UpperCamelCase_: int = params[F'''{prefix}/{prefix}/mlp/wo/kernel'''][:, i, :] return wi, wo def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: return params[F'''{prefix}/{prefix}/{layer_name}/scale'''][:, i] def snake_case (UpperCAmelCase__ , *, UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = False ) -> List[Any]: UpperCamelCase_: List[Any] = traverse_util.flatten_dict(variables['target'] ) UpperCamelCase_: Union[str, Any] = {'/'.join(UpperCAmelCase__ ): v for k, v in old.items()} # v1.1 models have a gated GeLU with wi_0 and wi_1 instead of wi UpperCamelCase_: Union[str, Any] = 'encoder/encoder/mlp/wi_0/kernel' in old print('Split MLP:' , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = collections.OrderedDict() # Shared embeddings. UpperCamelCase_: Dict = old['token_embedder/embedding'] # Encoder. for i in range(UpperCAmelCase__ ): # Block i, layer 0 (Self Attention). UpperCamelCase_: Optional[Any] = tax_layer_norm_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'encoder' , 'pre_attention_layer_norm' ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Dict = tax_attention_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'encoder' , 'attention' ) UpperCamelCase_: Any = layer_norm UpperCamelCase_: Tuple = k.T UpperCamelCase_: int = o.T UpperCamelCase_: Optional[int] = q.T UpperCamelCase_: str = v.T # Block i, layer 1 (MLP). UpperCamelCase_: int = tax_layer_norm_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'encoder' , 'pre_mlp_layer_norm' ) UpperCamelCase_ ,UpperCamelCase_: Dict = tax_mlp_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'encoder' , UpperCAmelCase__ ) UpperCamelCase_: int = layer_norm if split_mlp_wi: UpperCamelCase_: Optional[int] = wi[0].T UpperCamelCase_: Dict = wi[1].T else: UpperCamelCase_: Optional[Any] = wi.T UpperCamelCase_: int = wo.T if scalable_attention: # convert the rel_embedding of each layer UpperCamelCase_: int = tax_relpos_bias_lookup( UpperCAmelCase__ , UpperCAmelCase__ , 'encoder' ).T UpperCamelCase_: int = old['encoder/encoder_norm/scale'] if not scalable_attention: UpperCamelCase_: int = tax_relpos_bias_lookup( UpperCAmelCase__ , 0 , 'encoder' ).T UpperCamelCase_: List[str] = tax_relpos_bias_lookup( UpperCAmelCase__ , 0 , 'decoder' ).T if not is_encoder_only: # Decoder. for i in range(UpperCAmelCase__ ): # Block i, layer 0 (Self Attention). UpperCamelCase_: Dict = tax_layer_norm_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' , 'pre_self_attention_layer_norm' ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Any = tax_attention_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' , 'self_attention' ) UpperCamelCase_: str = layer_norm UpperCamelCase_: Tuple = k.T UpperCamelCase_: List[Any] = o.T UpperCamelCase_: Optional[Any] = q.T UpperCamelCase_: Optional[Any] = v.T # Block i, layer 1 (Cross Attention). UpperCamelCase_: Tuple = tax_layer_norm_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' , 'pre_cross_attention_layer_norm' ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = tax_attention_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' , 'encoder_decoder_attention' ) UpperCamelCase_: Optional[Any] = layer_norm UpperCamelCase_: Union[str, Any] = k.T UpperCamelCase_: Dict = o.T UpperCamelCase_: Dict = q.T UpperCamelCase_: Any = v.T # Block i, layer 2 (MLP). UpperCamelCase_: Union[str, Any] = tax_layer_norm_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' , 'pre_mlp_layer_norm' ) UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = tax_mlp_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' , UpperCAmelCase__ ) UpperCamelCase_: Dict = layer_norm if split_mlp_wi: UpperCamelCase_: Tuple = wi[0].T UpperCamelCase_: List[str] = wi[1].T else: UpperCamelCase_: Any = wi.T UpperCamelCase_: Tuple = wo.T if scalable_attention: # convert the rel_embedding of each layer UpperCamelCase_: int = tax_relpos_bias_lookup(UpperCAmelCase__ , UpperCAmelCase__ , 'decoder' ).T UpperCamelCase_: Any = old['decoder/decoder_norm/scale'] # LM Head (only in v1.1 checkpoints, in v1.0 embeddings are used instead) if "decoder/logits_dense/kernel" in old: UpperCamelCase_: Union[str, Any] = old['decoder/logits_dense/kernel'].T return new def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> int: UpperCamelCase_: Union[str, Any] = collections.OrderedDict([(k, torch.from_numpy(v.copy() )) for (k, v) in converted_params.items()] ) # Add what is missing. if "encoder.embed_tokens.weight" not in state_dict: UpperCamelCase_: str = state_dict['shared.weight'] if not is_encoder_only: if "decoder.embed_tokens.weight" not in state_dict: UpperCamelCase_: List[Any] = state_dict['shared.weight'] if "lm_head.weight" not in state_dict: # For old 1.0 models. print('Using shared word embeddings as lm_head.' ) UpperCamelCase_: str = state_dict['shared.weight'] return state_dict def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Any = checkpoints.load_tax_checkpoint(UpperCAmelCase__ ) UpperCamelCase_: int = convert_tax_to_pytorch( UpperCAmelCase__ , num_layers=config.num_layers , is_encoder_only=UpperCAmelCase__ , scalable_attention=UpperCAmelCase__ ) UpperCamelCase_: Tuple = make_state_dict(UpperCAmelCase__ , UpperCAmelCase__ ) model.load_state_dict(UpperCAmelCase__ , strict=UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = False , UpperCAmelCase__ = False , ) -> Any: UpperCamelCase_: Any = MTaConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) # Non-v1.1 checkpoints could also use T5Model, but this works for all. # The v1.0 checkpoints will simply have an LM head that is the word embeddings. if is_encoder_only: UpperCamelCase_: Optional[Any] = UMTaEncoderModel(UpperCAmelCase__ ) else: UpperCamelCase_: Dict = UMTaForConditionalGeneration(UpperCAmelCase__ ) # Load weights from tf checkpoint load_tax_weights_in_ta(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model print(F'''Save PyTorch model to {pytorch_dump_path}''' ) model.save_pretrained(UpperCAmelCase__ ) # Verify that we can load the checkpoint. model.from_pretrained(UpperCAmelCase__ ) print('Done' ) if __name__ == "__main__": A_ : List[str] = argparse.ArgumentParser(description='Converts a native T5X checkpoint into a PyTorch checkpoint.') # Required parameters parser.add_argument( '--t5x_checkpoint_path', default=None, type=str, required=True, help='Path to the T5X checkpoint.' ) parser.add_argument( '--config_file', default=None, type=str, required=True, help='The config json file corresponding to the pre-trained T5 model.\nThis specifies the model architecture.', ) parser.add_argument( '--pytorch_dump_path', default=None, type=str, required=True, help='Path to the output PyTorch model.' ) parser.add_argument( '--is_encoder_only', action='store_true', help='Check if the model is encoder-decoder model', default=False ) parser.add_argument( '--scalable_attention', action='store_true', help='Whether the model uses scaled attention (umt5 model)', default=False, ) A_ : int = parser.parse_args() convert_tax_checkpoint_to_pytorch( args.tax_checkpoint_path, args.config_file, args.pytorch_dump_path, args.is_encoder_only, args.scalable_attention, )
57
import numpy # List of input, output pairs A_ : Any = ( ((5, 2, 3), 15), ((6, 5, 9), 25), ((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41), ) A_ : List[Any] = (((515, 22, 13), 555), ((61, 35, 49), 150)) A_ : Any = [2, 4, 1, 5] A_ : List[Any] = len(train_data) A_ : List[Any] = 0.009 def snake_case (UpperCAmelCase__ , UpperCAmelCase__="train" ) -> Optional[int]: return calculate_hypothesis_value(UpperCAmelCase__ , UpperCAmelCase__ ) - output( UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[Any] = 0 for i in range(len(UpperCAmelCase__ ) - 1 ): hyp_val += data_input_tuple[i] * parameter_vector[i + 1] hyp_val += parameter_vector[0] return hyp_val def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: if data_set == "train": return train_data[example_no][1] elif data_set == "test": return test_data[example_no][1] return None def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: 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 snake_case (UpperCAmelCase__ , UpperCAmelCase__=m ) -> Optional[Any]: UpperCamelCase_: Any = 0 for i in range(UpperCAmelCase__ ): if index == -1: summation_value += _error(UpperCAmelCase__ ) else: summation_value += _error(UpperCAmelCase__ ) * train_data[i][0][index] return summation_value def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[int] = summation_of_cost_derivative(UpperCAmelCase__ , UpperCAmelCase__ ) / m return cost_derivative_value def snake_case () -> Union[str, Any]: global parameter_vector # Tune these values to set a tolerance value for predicted output UpperCamelCase_: str = 0.00_0002 UpperCamelCase_: Any = 0 UpperCamelCase_: int = 0 while True: j += 1 UpperCamelCase_: int = [0, 0, 0, 0] for i in range(0 , len(UpperCAmelCase__ ) ): UpperCamelCase_: Any = get_cost_derivative(i - 1 ) UpperCamelCase_: Optional[int] = ( parameter_vector[i] - LEARNING_RATE * cost_derivative ) if numpy.allclose( UpperCAmelCase__ , UpperCAmelCase__ , atol=UpperCAmelCase__ , rtol=UpperCAmelCase__ , ): break UpperCamelCase_: Optional[int] = temp_parameter_vector print(('Number of iterations:', j) ) def snake_case () -> int: for i in range(len(UpperCAmelCase__ ) ): print(('Actual output value:', output(UpperCAmelCase__ , 'test' )) ) print(('Hypothesis output:', calculate_hypothesis_value(UpperCAmelCase__ , 'test' )) ) if __name__ == "__main__": run_gradient_descent() print('\nTesting gradient descent for a linear hypothesis function.\n') test_gradient_descent()
57
1
from typing import Dict, List, Optional, Union import numpy as np from ...image_processing_utils import BaseImageProcessor, BatchFeature, get_size_dict from ...image_transforms import ( center_crop, get_resize_output_image_size, normalize, rescale, resize, to_channel_dimension_format, ) from ...image_utils import ( IMAGENET_STANDARD_MEAN, IMAGENET_STANDARD_STD, ChannelDimension, ImageInput, PILImageResampling, is_valid_image, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : str = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ ) -> List[List[ImageInput]]: if isinstance(UpperCAmelCase__ , (list, tuple) ) and isinstance(videos[0] , (list, tuple) ) and is_valid_image(videos[0][0] ): return videos elif isinstance(UpperCAmelCase__ , (list, tuple) ) and is_valid_image(videos[0] ): return [videos] elif is_valid_image(UpperCAmelCase__ ): return [[videos]] raise ValueError(F'''Could not make batched video from {videos}''' ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : int =['''pixel_values'''] def __init__( self , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = True , _lowerCamelCase = 1 / 2_5_5 , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = None , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: Dict = size if size is not None else {'shortest_edge': 2_2_4} UpperCamelCase_: List[str] = get_size_dict(_lowerCamelCase , default_to_square=_lowerCamelCase ) UpperCamelCase_: Any = crop_size if crop_size is not None else {'height': 2_2_4, 'width': 2_2_4} UpperCamelCase_: Optional[int] = get_size_dict(_lowerCamelCase , param_name='crop_size' ) UpperCamelCase_: List[Any] = do_resize UpperCamelCase_: Dict = size UpperCamelCase_: List[Any] = do_center_crop UpperCamelCase_: Tuple = crop_size UpperCamelCase_: Dict = resample UpperCamelCase_: List[Any] = do_rescale UpperCamelCase_: Any = rescale_factor UpperCamelCase_: Dict = do_normalize UpperCamelCase_: List[str] = image_mean if image_mean is not None else IMAGENET_STANDARD_MEAN UpperCamelCase_: List[str] = image_std if image_std is not None else IMAGENET_STANDARD_STD def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: str = get_size_dict(_lowerCamelCase , default_to_square=_lowerCamelCase ) if "shortest_edge" in size: UpperCamelCase_: Dict = get_resize_output_image_size(_lowerCamelCase , size['shortest_edge'] , default_to_square=_lowerCamelCase ) elif "height" in size and "width" in size: UpperCamelCase_: Tuple = (size['height'], size['width']) else: raise ValueError(f'''Size must have \'height\' and \'width\' or \'shortest_edge\' as keys. Got {size.keys()}''' ) return resize(_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: str = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''Size must have \'height\' and \'width\' as keys. Got {size.keys()}''' ) return center_crop(_lowerCamelCase , size=(size['height'], size['width']) , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = None , **_lowerCamelCase , ): return rescale(_lowerCamelCase , scale=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = None , **_lowerCamelCase , ): return normalize(_lowerCamelCase , mean=_lowerCamelCase , std=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , ): if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_center_crop and crop_size is None: raise ValueError('Crop size must be specified if do_center_crop is True.' ) if do_rescale and rescale_factor is None: raise ValueError('Rescale factor must be specified if do_rescale is True.' ) if do_normalize and (image_mean is None or image_std is None): raise ValueError('Image mean and std must be specified if do_normalize is True.' ) # All transformations expect numpy arrays. UpperCamelCase_: List[Any] = to_numpy_array(_lowerCamelCase ) if do_resize: UpperCamelCase_: Dict = self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) if do_center_crop: UpperCamelCase_: Optional[int] = self.center_crop(_lowerCamelCase , size=_lowerCamelCase ) if do_rescale: UpperCamelCase_: Any = self.rescale(image=_lowerCamelCase , scale=_lowerCamelCase ) if do_normalize: UpperCamelCase_: Optional[int] = self.normalize(image=_lowerCamelCase , mean=_lowerCamelCase , std=_lowerCamelCase ) UpperCamelCase_: int = to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) return image def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: List[Any] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: int = resample if resample is not None else self.resample UpperCamelCase_: Union[str, Any] = do_center_crop if do_center_crop is not None else self.do_center_crop UpperCamelCase_: List[str] = do_rescale if do_rescale is not None else self.do_rescale UpperCamelCase_: str = rescale_factor if rescale_factor is not None else self.rescale_factor UpperCamelCase_: Dict = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: Optional[Any] = image_mean if image_mean is not None else self.image_mean UpperCamelCase_: int = image_std if image_std is not None else self.image_std UpperCamelCase_: str = size if size is not None else self.size UpperCamelCase_: List[str] = get_size_dict(_lowerCamelCase , default_to_square=_lowerCamelCase ) UpperCamelCase_: Any = crop_size if crop_size is not None else self.crop_size UpperCamelCase_: Optional[int] = get_size_dict(_lowerCamelCase , param_name='crop_size' ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) UpperCamelCase_: Optional[int] = make_batched(_lowerCamelCase ) UpperCamelCase_: Dict = [ [ self._preprocess_image( image=_lowerCamelCase , do_resize=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase , do_center_crop=_lowerCamelCase , crop_size=_lowerCamelCase , do_rescale=_lowerCamelCase , rescale_factor=_lowerCamelCase , do_normalize=_lowerCamelCase , image_mean=_lowerCamelCase , image_std=_lowerCamelCase , data_format=_lowerCamelCase , ) for img in video ] for video in videos ] UpperCamelCase_: Union[str, Any] = {'pixel_values': videos} return BatchFeature(data=_lowerCamelCase , tensor_type=_lowerCamelCase )
57
from ...utils import ( OptionalDependencyNotAvailable, is_flax_available, is_torch_available, is_transformers_available, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .multicontrolnet import MultiControlNetModel from .pipeline_controlnet import StableDiffusionControlNetPipeline from .pipeline_controlnet_imgaimg import StableDiffusionControlNetImgaImgPipeline from .pipeline_controlnet_inpaint import StableDiffusionControlNetInpaintPipeline if is_transformers_available() and is_flax_available(): from .pipeline_flax_controlnet import FlaxStableDiffusionControlNetPipeline
57
1
import collections import inspect import unittest from transformers import FocalNetConfig from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_backbone_common import BackboneTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( FocalNetBackbone, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetModel, ) from transformers.models.focalnet.modeling_focalnet import FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=1_6 , _lowerCamelCase=[3_2, 6_4, 1_2_8] , _lowerCamelCase=[1, 2, 1] , _lowerCamelCase=[2, 2, 4] , _lowerCamelCase=2 , _lowerCamelCase=2.0 , _lowerCamelCase=True , _lowerCamelCase=0.0 , _lowerCamelCase=0.0 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-5 , _lowerCamelCase=True , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=1_0 , _lowerCamelCase=8 , _lowerCamelCase=["stage1", "stage2"] , _lowerCamelCase=[1, 2] , ): UpperCamelCase_: Tuple = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = image_size UpperCamelCase_: Tuple = patch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Dict = embed_dim UpperCamelCase_: List[Any] = hidden_sizes UpperCamelCase_: List[str] = depths UpperCamelCase_: List[str] = num_heads UpperCamelCase_: Optional[int] = window_size UpperCamelCase_: Tuple = mlp_ratio UpperCamelCase_: Dict = qkv_bias UpperCamelCase_: str = hidden_dropout_prob UpperCamelCase_: Optional[Any] = attention_probs_dropout_prob UpperCamelCase_: int = drop_path_rate UpperCamelCase_: Dict = hidden_act UpperCamelCase_: List[str] = use_absolute_embeddings UpperCamelCase_: Dict = patch_norm UpperCamelCase_: Optional[Any] = layer_norm_eps UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = is_training UpperCamelCase_: Optional[int] = scope UpperCamelCase_: str = use_labels UpperCamelCase_: List[str] = type_sequence_label_size UpperCamelCase_: Union[str, Any] = encoder_stride UpperCamelCase_: Dict = out_features UpperCamelCase_: str = out_indices def _a ( self ): UpperCamelCase_: int = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: List[Any] = None if self.use_labels: UpperCamelCase_: Any = ids_tensor([self.batch_size] , self.type_sequence_label_size ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return FocalNetConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , embed_dim=self.embed_dim , hidden_sizes=self.hidden_sizes , depths=self.depths , num_heads=self.num_heads , window_size=self.window_size , mlp_ratio=self.mlp_ratio , qkv_bias=self.qkv_bias , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , drop_path_rate=self.drop_path_rate , hidden_act=self.hidden_act , use_absolute_embeddings=self.use_absolute_embeddings , path_norm=self.patch_norm , layer_norm_eps=self.layer_norm_eps , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , out_features=self.out_features , out_indices=self.out_indices , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = FocalNetModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: int = model(_lowerCamelCase ) UpperCamelCase_: int = ((config.image_size // config.patch_size) ** 2) // (4 ** (len(config.depths ) - 1)) UpperCamelCase_: int = int(config.embed_dim * 2 ** (len(config.depths ) - 1) ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, expected_seq_len, expected_dim) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[str] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size, 8, 8] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[:-1] ) # verify backbone works with out_features=None UpperCamelCase_: int = None UpperCamelCase_: List[Any] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size * 2, 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = FocalNetForMaskedImageModeling(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Dict = FocalNetForMaskedImageModeling(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.type_sequence_label_size UpperCamelCase_: List[Any] = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: str = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images UpperCamelCase_: Union[str, Any] = 1 UpperCamelCase_: Dict = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Dict = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def _a ( self ): UpperCamelCase_: Dict = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: int = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =( ( FocalNetModel, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetBackbone, ) if is_torch_available() else () ) a : Any =( {'''feature-extraction''': FocalNetModel, '''image-classification''': FocalNetForImageClassification} if is_torch_available() else {} ) a : Dict =False a : Union[str, Any] =False a : Tuple =False a : Optional[int] =False a : Union[str, Any] =False def _a ( self ): UpperCamelCase_: str = FocalNetModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , embed_dim=3_7 , has_text_modality=_lowerCamelCase ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_backbone(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) @unittest.skip(reason='FocalNet does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='FocalNet does not use feedforward chunking' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Union[str, Any] = model_class(_lowerCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) UpperCamelCase_: List[str] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(_lowerCamelCase , nn.Linear ) ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: List[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Any = [*signature.parameters.keys()] UpperCamelCase_: List[Any] = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: Tuple = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = outputs.hidden_states UpperCamelCase_: Tuple = getattr( self.model_tester , 'expected_num_hidden_layers' , len(self.model_tester.depths ) + 1 ) self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) # FocalNet has a different seq_length UpperCamelCase_: Optional[Any] = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: int = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) UpperCamelCase_: Dict = outputs.reshaped_hidden_states self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = reshaped_hidden_states[0].shape UpperCamelCase_: List[str] = ( reshaped_hidden_states[0].view(_lowerCamelCase , _lowerCamelCase , height * width ).permute(0 , 2 , 1 ) ) self.assertListEqual( list(reshaped_hidden_states.shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: int = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: int = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: str = 3 UpperCamelCase_: Any = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) UpperCamelCase_: int = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: List[Any] = image_size[0] + patch_size[0] - (image_size[0] % patch_size[0]) UpperCamelCase_: str = image_size[1] + patch_size[1] - (image_size[1] % patch_size[1]) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Dict = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) @slow def _a ( self ): for model_name in FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: List[Any] = FocalNetModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = _config_zero_init(_lowerCamelCase ) for model_class in self.all_model_classes: UpperCamelCase_: List[str] = model_class(config=_lowerCamelCase ) for name, param in model.named_parameters(): if "embeddings" not in name and param.requires_grad: self.assertIn( ((param.data.mean() * 1e9).round() / 1e9).item() , [0.0, 1.0] , msg=f'''Parameter {name} of model {model_class} seems not properly initialized''' , ) @require_vision @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): # TODO update organization return AutoImageProcessor.from_pretrained('microsoft/focalnet-tiny' ) if is_vision_available() else None @slow def _a ( self ): UpperCamelCase_: Optional[int] = FocalNetForImageClassification.from_pretrained('microsoft/focalnet-tiny' ).to(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.default_image_processor UpperCamelCase_: str = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) UpperCamelCase_: str = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: List[str] = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: Optional[int] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Optional[int] = torch.tensor([0.2_1_6_6, -0.4_3_6_8, 0.2_1_9_1] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) ) self.assertTrue(outputs.logits.argmax(dim=-1 ).item() , 2_8_1 ) @require_torch class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[Any] =(FocalNetBackbone,) if is_torch_available() else () a : List[str] =FocalNetConfig a : List[str] =False def _a ( self ): UpperCamelCase_: Any = FocalNetModelTester(self )
57
from __future__ import annotations import unittest from transformers import AutoTokenizer, PegasusConfig, is_tf_available from transformers.testing_utils import require_sentencepiece, require_tf, require_tokenizers, slow from transformers.utils import cached_property from ...test_configuration_common import ConfigTester from ...test_modeling_tf_common import TFModelTesterMixin, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_tf_available(): import tensorflow as tf from transformers import TFAutoModelForSeqaSeqLM, TFPegasusForConditionalGeneration, TFPegasusModel @require_tf class _lowerCAmelCase: """simple docstring""" a : int =PegasusConfig a : List[str] ={} a : Optional[int] ='''gelu''' def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=7 , _lowerCamelCase=True , _lowerCamelCase=False , _lowerCamelCase=9_9 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=4 , _lowerCamelCase=3_7 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=4_0 , _lowerCamelCase=2 , _lowerCamelCase=1 , _lowerCamelCase=0 , ): UpperCamelCase_: List[Any] = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = seq_length UpperCamelCase_: List[str] = is_training UpperCamelCase_: Any = use_labels UpperCamelCase_: Optional[Any] = vocab_size UpperCamelCase_: Tuple = hidden_size UpperCamelCase_: List[Any] = num_hidden_layers UpperCamelCase_: Any = num_attention_heads UpperCamelCase_: Optional[Any] = intermediate_size UpperCamelCase_: Optional[int] = hidden_dropout_prob UpperCamelCase_: int = attention_probs_dropout_prob UpperCamelCase_: Union[str, Any] = max_position_embeddings UpperCamelCase_: Dict = eos_token_id UpperCamelCase_: Union[str, Any] = pad_token_id UpperCamelCase_: List[Any] = bos_token_id def _a ( self ): UpperCamelCase_: Union[str, Any] = ids_tensor([self.batch_size, self.seq_length - 1] , self.vocab_size ) UpperCamelCase_: int = tf.expand_dims(tf.constant([self.eos_token_id] * self.batch_size ) , 1 ) UpperCamelCase_: List[str] = tf.concat([input_ids, eos_tensor] , axis=1 ) UpperCamelCase_: Tuple = ids_tensor([self.batch_size, self.seq_length] , self.vocab_size ) UpperCamelCase_: Tuple = self.config_cls( vocab_size=self.vocab_size , d_model=self.hidden_size , encoder_layers=self.num_hidden_layers , decoder_layers=self.num_hidden_layers , encoder_attention_heads=self.num_attention_heads , decoder_attention_heads=self.num_attention_heads , encoder_ffn_dim=self.intermediate_size , decoder_ffn_dim=self.intermediate_size , dropout=self.hidden_dropout_prob , attention_dropout=self.attention_probs_dropout_prob , max_position_embeddings=self.max_position_embeddings , eos_token_ids=[2] , bos_token_id=self.bos_token_id , pad_token_id=self.pad_token_id , decoder_start_token_id=self.pad_token_id , **self.config_updates , ) UpperCamelCase_: Optional[Any] = prepare_pegasus_inputs_dict(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) return config, inputs_dict def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[Any] = TFPegasusModel(config=_lowerCamelCase ).get_decoder() UpperCamelCase_: Optional[int] = inputs_dict['input_ids'] UpperCamelCase_: Optional[int] = input_ids[:1, :] UpperCamelCase_: int = inputs_dict['attention_mask'][:1, :] UpperCamelCase_: Optional[int] = inputs_dict['head_mask'] UpperCamelCase_: Optional[int] = 1 # first forward pass UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase , attention_mask=_lowerCamelCase , head_mask=_lowerCamelCase , use_cache=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: int = outputs.to_tuple() # create hypothetical next token and extent to next_input_ids UpperCamelCase_: int = ids_tensor((self.batch_size, 3) , config.vocab_size ) UpperCamelCase_: List[Any] = tf.cast(ids_tensor((self.batch_size, 3) , 2 ) , tf.inta ) # append to next input_ids and UpperCamelCase_: Union[str, Any] = tf.concat([input_ids, next_tokens] , axis=-1 ) UpperCamelCase_: int = tf.concat([attention_mask, next_attn_mask] , axis=-1 ) UpperCamelCase_: Any = model(_lowerCamelCase , attention_mask=_lowerCamelCase )[0] UpperCamelCase_: int = model(_lowerCamelCase , attention_mask=_lowerCamelCase , past_key_values=_lowerCamelCase )[0] self.parent.assertEqual(next_tokens.shape[1] , output_from_past.shape[1] ) # select random slice UpperCamelCase_: Optional[int] = int(ids_tensor((1,) , output_from_past.shape[-1] ) ) UpperCamelCase_: Any = output_from_no_past[:, -3:, random_slice_idx] UpperCamelCase_: Union[str, Any] = output_from_past[:, :, random_slice_idx] # test that outputs are equal for slice tf.debugging.assert_near(_lowerCamelCase , _lowerCamelCase , rtol=1e-3 ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=None , ) -> str: if attention_mask is None: UpperCamelCase_: Optional[Any] = tf.cast(tf.math.not_equal(UpperCAmelCase__ , config.pad_token_id ) , tf.inta ) if decoder_attention_mask is None: UpperCamelCase_: int = tf.concat( [ tf.ones(decoder_input_ids[:, :1].shape , dtype=tf.inta ), tf.cast(tf.math.not_equal(decoder_input_ids[:, 1:] , config.pad_token_id ) , tf.inta ), ] , axis=-1 , ) if head_mask is None: UpperCamelCase_: str = tf.ones((config.encoder_layers, config.encoder_attention_heads) ) if decoder_head_mask is None: UpperCamelCase_: Any = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) if cross_attn_head_mask is None: UpperCamelCase_: int = tf.ones((config.decoder_layers, config.decoder_attention_heads) ) return { "input_ids": input_ids, "decoder_input_ids": decoder_input_ids, "attention_mask": attention_mask, "decoder_attention_mask": decoder_attention_mask, "head_mask": head_mask, "decoder_head_mask": decoder_head_mask, "cross_attn_head_mask": cross_attn_head_mask, } @require_tf class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Tuple =(TFPegasusForConditionalGeneration, TFPegasusModel) if is_tf_available() else () a : int =(TFPegasusForConditionalGeneration,) if is_tf_available() else () a : Tuple =( { '''conversational''': TFPegasusForConditionalGeneration, '''feature-extraction''': TFPegasusModel, '''summarization''': TFPegasusForConditionalGeneration, '''text2text-generation''': TFPegasusForConditionalGeneration, '''translation''': TFPegasusForConditionalGeneration, } if is_tf_available() else {} ) a : List[str] =True a : List[str] =False a : Tuple =False def _a ( self ): UpperCamelCase_: Dict = TFPegasusModelTester(self ) UpperCamelCase_: Any = ConfigTester(self , config_class=_lowerCamelCase ) def _a ( self ): self.config_tester.run_common_tests() def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs_for_common() self.model_tester.check_decoder_model_past_large_inputs(*_lowerCamelCase ) @require_sentencepiece @require_tokenizers @require_tf class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : Dict =[ ''' PG&E stated it scheduled the blackouts in response to forecasts for high winds amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow.''', ''' The London trio are up for best UK act and best album, as well as getting two nominations in the best song category."We got told like this morning \'Oh I think you\'re nominated\'", said Dappy."And I was like \'Oh yeah, which one?\' And now we\'ve got nominated for four awards. I mean, wow!"Bandmate Fazer added: "We thought it\'s best of us to come down and mingle with everyone and say hello to the cameras. And now we find we\'ve got four nominations."The band have two shots at the best song prize, getting the nod for their Tynchy Stryder collaboration Number One, and single Strong Again.Their album Uncle B will also go up against records by the likes of Beyonce and Kanye West.N-Dubz picked up the best newcomer Mobo in 2007, but female member Tulisa said they wouldn\'t be too disappointed if they didn\'t win this time around."At the end of the day we\'re grateful to be where we are in our careers."If it don\'t happen then it don\'t happen - live to fight another day and keep on making albums and hits for the fans."Dappy also revealed they could be performing live several times on the night.The group will be doing Number One and also a possible rendition of the War Child single, I Got Soul.The charity song is a re-working of The Killers\' All These Things That I\'ve Done and is set to feature artists like Chipmunk, Ironik and Pixie Lott.This year\'s Mobos will be held outside of London for the first time, in Glasgow on 30 September.N-Dubz said they were looking forward to performing for their Scottish fans and boasted about their recent shows north of the border."We just done Edinburgh the other day," said Dappy."We smashed up an N-Dubz show over there. We done Aberdeen about three or four months ago - we smashed up that show over there! Everywhere we go we smash it up!" ''', ] a : int =[ '''California\'s largest electricity provider has cut power to hundreds of thousands of customers in an effort to''' ''' reduce the risk of wildfires.''', '''N-Dubz have revealed they\'re "grateful" to have been nominated for four Mobo Awards.''', ] # differs slightly from pytorch, likely due to numerical differences in linear layers a : Union[str, Any] ='''google/pegasus-xsum''' @cached_property def _a ( self ): return AutoTokenizer.from_pretrained(self.model_name ) @cached_property def _a ( self ): UpperCamelCase_: Optional[Any] = TFAutoModelForSeqaSeqLM.from_pretrained(self.model_name ) return model def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Dict = self.translate_src_text(**_lowerCamelCase ) assert self.expected_text == generated_words def _a ( self , **_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = self.tokenizer(self.src_text , **_lowerCamelCase , padding=_lowerCamelCase , return_tensors='tf' ) UpperCamelCase_: Any = self.model.generate( model_inputs.input_ids , attention_mask=model_inputs.attention_mask , num_beams=2 , use_cache=_lowerCamelCase , ) UpperCamelCase_: str = self.tokenizer.batch_decode(generated_ids.numpy() , skip_special_tokens=_lowerCamelCase ) return generated_words @slow def _a ( self ): self._assert_generated_batch_equal_expected()
57
1
import numpy as np # Importing the Keras libraries and packages import tensorflow as tf from tensorflow.keras import layers, models if __name__ == "__main__": # Initialising the CNN # (Sequential- Building the model layer by layer) A_ : Tuple = models.Sequential() # Step 1 - Convolution # Here 64,64 is the length & breadth of dataset images and 3 is for the RGB channel # (3,3) is the kernel size (filter matrix) classifier.add( layers.ConvaD(32, (3, 3), input_shape=(64, 64, 3), activation='relu') ) # Step 2 - Pooling classifier.add(layers.MaxPoolingaD(pool_size=(2, 2))) # Adding a second convolutional layer classifier.add(layers.ConvaD(32, (3, 3), activation='relu')) classifier.add(layers.MaxPoolingaD(pool_size=(2, 2))) # Step 3 - Flattening classifier.add(layers.Flatten()) # Step 4 - Full connection classifier.add(layers.Dense(units=128, activation='relu')) classifier.add(layers.Dense(units=1, activation='sigmoid')) # Compiling the CNN classifier.compile( optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'] ) # Part 2 - Fitting the CNN to the images # Load Trained model weights # from keras.models import load_model # regressor=load_model('cnn.h5') A_ : Optional[int] = tf.keras.preprocessing.image.ImageDataGenerator( rescale=1.0 / 255, shear_range=0.2, zoom_range=0.2, horizontal_flip=True ) A_ : List[Any] = tf.keras.preprocessing.image.ImageDataGenerator(rescale=1.0 / 255) A_ : Tuple = train_datagen.flow_from_directory( 'dataset/training_set', target_size=(64, 64), batch_size=32, class_mode='binary' ) A_ : str = test_datagen.flow_from_directory( 'dataset/test_set', target_size=(64, 64), batch_size=32, class_mode='binary' ) classifier.fit_generator( training_set, steps_per_epoch=5, epochs=30, validation_data=test_set ) classifier.save('cnn.h5') # Part 3 - Making new predictions A_ : Optional[Any] = tf.keras.preprocessing.image.load_img( 'dataset/single_prediction/image.png', target_size=(64, 64) ) A_ : List[str] = tf.keras.preprocessing.image.img_to_array(test_image) A_ : Tuple = np.expand_dims(test_image, axis=0) A_ : Union[str, Any] = classifier.predict(test_image) # training_set.class_indices if result[0][0] == 0: A_ : int = 'Normal' if result[0][0] == 1: A_ : Dict = 'Abnormality detected'
57
import unittest import numpy as np def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = None , ) -> np.ndarray: UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: str = np.shape(UpperCAmelCase__ ) UpperCamelCase_: List[Any] = np.shape(UpperCAmelCase__ ) if shape_a[0] != shape_b[0]: UpperCamelCase_: Any = ( 'Expected the same number of rows for A and B. ' F'''Instead found A of size {shape_a} and B of size {shape_b}''' ) raise ValueError(UpperCAmelCase__ ) if shape_b[1] != shape_c[1]: UpperCamelCase_: int = ( 'Expected the same number of columns for B and C. ' F'''Instead found B of size {shape_b} and C of size {shape_c}''' ) raise ValueError(UpperCAmelCase__ ) UpperCamelCase_: Dict = pseudo_inv if a_inv is None: try: UpperCamelCase_: Optional[Any] = np.linalg.inv(UpperCAmelCase__ ) except np.linalg.LinAlgError: raise ValueError( 'Input matrix A is not invertible. Cannot compute Schur complement.' ) return mat_c - mat_b.T @ a_inv @ mat_b class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Any = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: Dict = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: Tuple = np.array([[2, 1], [6, 3]] ) UpperCamelCase_: Tuple = schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) UpperCamelCase_: Optional[Any] = np.block([[a, b], [b.T, c]] ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: List[str] = np.linalg.det(_lowerCamelCase ) UpperCamelCase_: Dict = np.linalg.det(_lowerCamelCase ) self.assertAlmostEqual(_lowerCamelCase , det_a * det_s ) def _a ( self ): UpperCamelCase_: int = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: List[str] = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[str] = np.array([[2, 1], [6, 3]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = np.array([[1, 2, 1], [2, 1, 2], [3, 2, 4]] ) UpperCamelCase_: str = np.array([[0, 3], [3, 0], [2, 3]] ) UpperCamelCase_: List[Any] = np.array([[2, 1, 3], [6, 3, 5]] ) with self.assertRaises(_lowerCamelCase ): schur_complement(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if __name__ == "__main__": import doctest doctest.testmod() unittest.main()
57
1
import random import sys import numpy as np from matplotlib import pyplot as plt from matplotlib.colors import ListedColormap A_ : Union[str, Any] = 'Usage of script: script_name <size_of_canvas:int>' A_ : str = [0] * 100 + [1] * 10 random.shuffle(choice) def snake_case (UpperCAmelCase__ ) -> list[list[bool]]: UpperCamelCase_: str = [[False for i in range(UpperCAmelCase__ )] for j in range(UpperCAmelCase__ )] return canvas def snake_case (UpperCAmelCase__ ) -> None: for i, row in enumerate(UpperCAmelCase__ ): for j, _ in enumerate(UpperCAmelCase__ ): UpperCamelCase_: List[str] = bool(random.getrandbits(1 ) ) def snake_case (UpperCAmelCase__ ) -> list[list[bool]]: UpperCamelCase_: List[Any] = np.array(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = np.array(create_canvas(current_canvas.shape[0] ) ) for r, row in enumerate(UpperCAmelCase__ ): for c, pt in enumerate(UpperCAmelCase__ ): UpperCamelCase_: int = __judge_point( UpperCAmelCase__ , current_canvas[r - 1 : r + 2, c - 1 : c + 2] ) UpperCamelCase_: str = next_gen_canvas del next_gen_canvas # cleaning memory as we move on. UpperCamelCase_: list[list[bool]] = current_canvas.tolist() return return_canvas def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> bool: UpperCamelCase_: Union[str, Any] = 0 UpperCamelCase_: Tuple = 0 # finding dead or alive neighbours count. for i in neighbours: for status in i: if status: alive += 1 else: dead += 1 # handling duplicate entry for focus pt. if pt: alive -= 1 else: dead -= 1 # running the rules of game here. UpperCamelCase_: Tuple = pt if pt: if alive < 2: UpperCamelCase_: Tuple = False elif alive == 2 or alive == 3: UpperCamelCase_: Any = True elif alive > 3: UpperCamelCase_: List[Any] = False else: if alive == 3: UpperCamelCase_: List[str] = True return state if __name__ == "__main__": if len(sys.argv) != 2: raise Exception(usage_doc) A_ : List[Any] = int(sys.argv[1]) # main working structure of this module. A_ : Union[str, Any] = create_canvas(canvas_size) seed(c) A_ , A_ : str = plt.subplots() fig.show() A_ : Union[str, Any] = ListedColormap(['w', 'k']) try: while True: A_ : Optional[Any] = run(c) ax.matshow(c, cmap=cmap) fig.canvas.draw() ax.cla() except KeyboardInterrupt: # do nothing. pass
57
import argparse import json import os from collections import OrderedDict import torch from transformers import LukeConfig, LukeForMaskedLM, MLukeTokenizer, XLMRobertaTokenizer from transformers.tokenization_utils_base import AddedToken @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> int: # Load configuration defined in the metadata file with open(UpperCAmelCase__ ) as metadata_file: UpperCamelCase_: Tuple = json.load(UpperCAmelCase__ ) UpperCamelCase_: List[str] = LukeConfig(use_entity_aware_attention=UpperCAmelCase__ , **metadata['model_config'] ) # Load in the weights from the checkpoint_path UpperCamelCase_: Optional[int] = torch.load(UpperCAmelCase__ , map_location='cpu' )['module'] # Load the entity vocab file UpperCamelCase_: Any = load_original_entity_vocab(UpperCAmelCase__ ) # add an entry for [MASK2] UpperCamelCase_: List[str] = max(entity_vocab.values() ) + 1 config.entity_vocab_size += 1 UpperCamelCase_: Union[str, Any] = XLMRobertaTokenizer.from_pretrained(metadata['model_config']['bert_model_name'] ) # Add special tokens to the token vocabulary for downstream tasks UpperCamelCase_: Any = AddedToken('<ent>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = AddedToken('<ent2>' , lstrip=UpperCAmelCase__ , rstrip=UpperCAmelCase__ ) tokenizer.add_special_tokens({'additional_special_tokens': [entity_token_a, entity_token_a]} ) config.vocab_size += 2 print(F'''Saving tokenizer to {pytorch_dump_folder_path}''' ) tokenizer.save_pretrained(UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'r' ) as f: UpperCamelCase_: Union[str, Any] = json.load(UpperCAmelCase__ ) UpperCamelCase_: str = 'MLukeTokenizer' with open(os.path.join(UpperCAmelCase__ , 'tokenizer_config.json' ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) with open(os.path.join(UpperCAmelCase__ , MLukeTokenizer.vocab_files_names['entity_vocab_file'] ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) # Initialize the embeddings of the special tokens UpperCamelCase_: Any = tokenizer.convert_tokens_to_ids(['@'] )[0] UpperCamelCase_: List[str] = tokenizer.convert_tokens_to_ids(['#'] )[0] UpperCamelCase_: Tuple = state_dict['embeddings.word_embeddings.weight'] UpperCamelCase_: int = word_emb[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = word_emb[enta_init_index].unsqueeze(0 ) UpperCamelCase_: str = torch.cat([word_emb, ent_emb, enta_emb] ) # add special tokens for 'entity_predictions.bias' for bias_name in ["lm_head.decoder.bias", "lm_head.bias"]: UpperCamelCase_: Union[str, Any] = state_dict[bias_name] UpperCamelCase_: Tuple = decoder_bias[ent_init_index].unsqueeze(0 ) UpperCamelCase_: Any = decoder_bias[enta_init_index].unsqueeze(0 ) UpperCamelCase_: Optional[Any] = torch.cat([decoder_bias, ent_decoder_bias, enta_decoder_bias] ) # Initialize the query layers of the entity-aware self-attention mechanism for layer_index in range(config.num_hidden_layers ): for matrix_name in ["query.weight", "query.bias"]: UpperCamelCase_: List[Any] = F'''encoder.layer.{layer_index}.attention.self.''' UpperCamelCase_: str = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] UpperCamelCase_: Dict = state_dict[prefix + matrix_name] # Initialize the embedding of the [MASK2] entity using that of the [MASK] entity for downstream tasks UpperCamelCase_: List[str] = state_dict['entity_embeddings.entity_embeddings.weight'] UpperCamelCase_: int = entity_emb[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: Tuple = torch.cat([entity_emb, entity_mask_emb] ) # add [MASK2] for 'entity_predictions.bias' UpperCamelCase_: Optional[Any] = state_dict['entity_predictions.bias'] UpperCamelCase_: List[str] = entity_prediction_bias[entity_vocab['[MASK]']].unsqueeze(0 ) UpperCamelCase_: List[Any] = torch.cat([entity_prediction_bias, entity_mask_bias] ) UpperCamelCase_: List[Any] = LukeForMaskedLM(config=UpperCAmelCase__ ).eval() state_dict.pop('entity_predictions.decoder.weight' ) state_dict.pop('lm_head.decoder.weight' ) state_dict.pop('lm_head.decoder.bias' ) UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if not (key.startswith('lm_head' ) or key.startswith('entity_predictions' )): UpperCamelCase_: Union[str, Any] = state_dict[key] else: UpperCamelCase_: Dict = state_dict[key] UpperCamelCase_ ,UpperCamelCase_: Optional[int] = model.load_state_dict(UpperCAmelCase__ , strict=UpperCAmelCase__ ) if set(UpperCAmelCase__ ) != {"luke.embeddings.position_ids"}: raise ValueError(F'''Unexpected unexpected_keys: {unexpected_keys}''' ) if set(UpperCAmelCase__ ) != { "lm_head.decoder.weight", "lm_head.decoder.bias", "entity_predictions.decoder.weight", }: raise ValueError(F'''Unexpected missing_keys: {missing_keys}''' ) model.tie_weights() assert (model.luke.embeddings.word_embeddings.weight == model.lm_head.decoder.weight).all() assert (model.luke.entity_embeddings.entity_embeddings.weight == model.entity_predictions.decoder.weight).all() # Check outputs UpperCamelCase_: Optional[int] = MLukeTokenizer.from_pretrained(UpperCAmelCase__ , task='entity_classification' ) UpperCamelCase_: Tuple = 'ISO 639-3 uses the code fas for the dialects spoken across Iran and アフガニスタン (Afghanistan).' UpperCamelCase_: Optional[int] = (0, 9) UpperCamelCase_: Union[str, Any] = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: str = model(**UpperCAmelCase__ ) # Verify word hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: int = torch.Size((1, 3_3, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[0.0892, 0.0596, -0.2819], [0.0134, 0.1199, 0.0573], [-0.0169, 0.0927, 0.0644]] ) if not (outputs.last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.last_hidden_state.shape is {outputs.last_hidden_state.shape}, Expected shape is {expected_shape}''' ) if not torch.allclose(outputs.last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify entity hidden states if model_size == "large": raise NotImplementedError else: # base UpperCamelCase_: Dict = torch.Size((1, 1, 7_6_8) ) UpperCamelCase_: Tuple = torch.tensor([[-0.1482, 0.0609, 0.0322]] ) if not (outputs.entity_last_hidden_state.shape == expected_shape): raise ValueError( F'''Outputs.entity_last_hidden_state.shape is {outputs.entity_last_hidden_state.shape}, Expected shape is''' F''' {expected_shape}''' ) if not torch.allclose(outputs.entity_last_hidden_state[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ): raise ValueError # Verify masked word/entity prediction UpperCamelCase_: str = MLukeTokenizer.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = 'Tokyo is the capital of <mask>.' UpperCamelCase_: Dict = (2_4, 3_0) UpperCamelCase_: int = tokenizer(UpperCAmelCase__ , entity_spans=[span] , return_tensors='pt' ) UpperCamelCase_: Dict = model(**UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = encoding['input_ids'][0].tolist() UpperCamelCase_: List[Any] = input_ids.index(tokenizer.convert_tokens_to_ids('<mask>' ) ) UpperCamelCase_: Any = outputs.logits[0][mask_position_id].argmax(dim=-1 ) assert "Japan" == tokenizer.decode(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.entity_logits[0][0].argmax().item() UpperCamelCase_: Optional[Any] = [ entity for entity, entity_id in tokenizer.entity_vocab.items() if entity_id == predicted_entity_id ] assert [e for e in multilingual_predicted_entities if e.startswith('en:' )][0] == "en:Japan" # Finally, save our PyTorch model and tokenizer print('Saving PyTorch model to {}'.format(UpperCAmelCase__ ) ) model.save_pretrained(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> int: UpperCamelCase_: Optional[Any] = ['[MASK]', '[PAD]', '[UNK]'] UpperCamelCase_: Any = [json.loads(UpperCAmelCase__ ) for line in open(UpperCAmelCase__ )] UpperCamelCase_: Tuple = {} for entry in data: UpperCamelCase_: Optional[int] = entry['id'] for entity_name, language in entry["entities"]: if entity_name in SPECIAL_TOKENS: UpperCamelCase_: Union[str, Any] = entity_id break UpperCamelCase_: Dict = F'''{language}:{entity_name}''' UpperCamelCase_: Optional[int] = entity_id return new_mapping if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() # Required parameters parser.add_argument('--checkpoint_path', type=str, help='Path to a pytorch_model.bin file.') parser.add_argument( '--metadata_path', default=None, type=str, help='Path to a metadata.json file, defining the configuration.' ) parser.add_argument( '--entity_vocab_path', default=None, type=str, help='Path to an entity_vocab.tsv file, containing the entity vocabulary.', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to where to dump the output PyTorch model.' ) parser.add_argument( '--model_size', default='base', type=str, choices=['base', 'large'], help='Size of the model to be converted.' ) A_ : List[str] = parser.parse_args() convert_luke_checkpoint( args.checkpoint_path, args.metadata_path, args.entity_vocab_path, args.pytorch_dump_folder_path, args.model_size, )
57
1
import argparse import os import shutil import torch from emmental.modules import MagnitudeBinarizer, ThresholdBinarizer, TopKBinarizer def snake_case (UpperCAmelCase__ ) -> Any: UpperCamelCase_: Optional[int] = args.pruning_method UpperCamelCase_: Any = args.threshold UpperCamelCase_: Any = args.model_name_or_path.rstrip('/' ) UpperCamelCase_: List[Any] = args.target_model_path print(F'''Load fine-pruned model from {model_name_or_path}''' ) UpperCamelCase_: List[Any] = torch.load(os.path.join(UpperCAmelCase__ , 'pytorch_model.bin' ) ) UpperCamelCase_: List[Any] = {} for name, tensor in model.items(): if "embeddings" in name or "LayerNorm" in name or "pooler" in name: UpperCamelCase_: Optional[Any] = tensor print(F'''Copied layer {name}''' ) elif "classifier" in name or "qa_output" in name: UpperCamelCase_: List[Any] = tensor print(F'''Copied layer {name}''' ) elif "bias" in name: UpperCamelCase_: Tuple = tensor print(F'''Copied layer {name}''' ) else: if pruning_method == "magnitude": UpperCamelCase_: Tuple = MagnitudeBinarizer.apply(inputs=UpperCAmelCase__ , threshold=UpperCAmelCase__ ) UpperCamelCase_: int = tensor * mask print(F'''Pruned layer {name}''' ) elif pruning_method == "topK": if "mask_scores" in name: continue UpperCamelCase_: Union[str, Any] = name[:-6] UpperCamelCase_: List[Any] = model[F'''{prefix_}mask_scores'''] UpperCamelCase_: Union[str, Any] = TopKBinarizer.apply(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Any = tensor * mask print(F'''Pruned layer {name}''' ) elif pruning_method == "sigmoied_threshold": if "mask_scores" in name: continue UpperCamelCase_: Any = name[:-6] UpperCamelCase_: List[Any] = model[F'''{prefix_}mask_scores'''] UpperCamelCase_: Any = ThresholdBinarizer.apply(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: int = tensor * mask print(F'''Pruned layer {name}''' ) elif pruning_method == "l0": if "mask_scores" in name: continue UpperCamelCase_: Any = name[:-6] UpperCamelCase_: Tuple = model[F'''{prefix_}mask_scores'''] UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = -0.1, 1.1 UpperCamelCase_: int = torch.sigmoid(UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = s * (r - l) + l UpperCamelCase_: Dict = s_bar.clamp(min=0.0 , max=1.0 ) UpperCamelCase_: Optional[Any] = tensor * mask print(F'''Pruned layer {name}''' ) else: raise ValueError('Unknown pruning method' ) if target_model_path is None: UpperCamelCase_: Any = os.path.join( os.path.dirname(UpperCAmelCase__ ) , F'''bertarized_{os.path.basename(UpperCAmelCase__ )}''' ) if not os.path.isdir(UpperCAmelCase__ ): shutil.copytree(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''\nCreated folder {target_model_path}''' ) torch.save(UpperCAmelCase__ , os.path.join(UpperCAmelCase__ , 'pytorch_model.bin' ) ) print('\nPruned model saved! See you later!' ) if __name__ == "__main__": A_ : List[str] = argparse.ArgumentParser() parser.add_argument( '--pruning_method', choices=['l0', 'magnitude', 'topK', 'sigmoied_threshold'], type=str, required=True, help=( 'Pruning Method (l0 = L0 regularization, magnitude = Magnitude pruning, topK = Movement pruning,' ' sigmoied_threshold = Soft movement pruning)' ), ) parser.add_argument( '--threshold', type=float, required=False, help=( 'For `magnitude` and `topK`, it is the level of remaining weights (in %) in the fine-pruned model.' 'For `sigmoied_threshold`, it is the threshold \tau against which the (sigmoied) scores are compared.' 'Not needed for `l0`' ), ) parser.add_argument( '--model_name_or_path', type=str, required=True, help='Folder containing the model that was previously fine-pruned', ) parser.add_argument( '--target_model_path', default=None, type=str, required=False, help='Folder containing the model that was previously fine-pruned', ) A_ : List[str] = parser.parse_args() main(args)
57
from collections import OrderedDict from typing import Mapping from ...configuration_utils import PretrainedConfig from ...onnx import OnnxConfig from ...utils import logging A_ : Optional[Any] = logging.get_logger(__name__) A_ : Optional[Any] = { 'distilbert-base-uncased': 'https://huggingface.co/distilbert-base-uncased/resolve/main/config.json', 'distilbert-base-uncased-distilled-squad': ( 'https://huggingface.co/distilbert-base-uncased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-cased': 'https://huggingface.co/distilbert-base-cased/resolve/main/config.json', 'distilbert-base-cased-distilled-squad': ( 'https://huggingface.co/distilbert-base-cased-distilled-squad/resolve/main/config.json' ), 'distilbert-base-german-cased': 'https://huggingface.co/distilbert-base-german-cased/resolve/main/config.json', 'distilbert-base-multilingual-cased': ( 'https://huggingface.co/distilbert-base-multilingual-cased/resolve/main/config.json' ), 'distilbert-base-uncased-finetuned-sst-2-english': ( 'https://huggingface.co/distilbert-base-uncased-finetuned-sst-2-english/resolve/main/config.json' ), } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Dict ='''distilbert''' a : List[str] ={ '''hidden_size''': '''dim''', '''num_attention_heads''': '''n_heads''', '''num_hidden_layers''': '''n_layers''', } def __init__( self , _lowerCamelCase=3_0_5_2_2 , _lowerCamelCase=5_1_2 , _lowerCamelCase=False , _lowerCamelCase=6 , _lowerCamelCase=1_2 , _lowerCamelCase=7_6_8 , _lowerCamelCase=4 * 7_6_8 , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=0.0_2 , _lowerCamelCase=0.1 , _lowerCamelCase=0.2 , _lowerCamelCase=0 , **_lowerCamelCase , ): UpperCamelCase_: Tuple = vocab_size UpperCamelCase_: str = max_position_embeddings UpperCamelCase_: Optional[int] = sinusoidal_pos_embds UpperCamelCase_: Union[str, Any] = n_layers UpperCamelCase_: Optional[int] = n_heads UpperCamelCase_: int = dim UpperCamelCase_: Tuple = hidden_dim UpperCamelCase_: Any = dropout UpperCamelCase_: Optional[Any] = attention_dropout UpperCamelCase_: List[str] = activation UpperCamelCase_: Optional[Any] = initializer_range UpperCamelCase_: Optional[Any] = qa_dropout UpperCamelCase_: List[str] = seq_classif_dropout super().__init__(**_lowerCamelCase , pad_token_id=_lowerCamelCase ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" @property def _a ( self ): if self.task == "multiple-choice": UpperCamelCase_: Any = {0: 'batch', 1: 'choice', 2: 'sequence'} else: UpperCamelCase_: List[Any] = {0: 'batch', 1: 'sequence'} return OrderedDict( [ ('input_ids', dynamic_axis), ('attention_mask', dynamic_axis), ] )
57
1
from math import pi, sqrt def snake_case (UpperCAmelCase__ ) -> float: if num <= 0: raise ValueError('math domain error' ) if num > 171.5: raise OverflowError('math range error' ) elif num - int(UpperCAmelCase__ ) not in (0, 0.5): raise NotImplementedError('num must be an integer or a half-integer' ) elif num == 0.5: return sqrt(UpperCAmelCase__ ) else: return 1.0 if num == 1 else (num - 1) * gamma(num - 1 ) def snake_case () -> None: assert gamma(0.5 ) == sqrt(UpperCAmelCase__ ) assert gamma(1 ) == 1.0 assert gamma(2 ) == 1.0 if __name__ == "__main__": from doctest import testmod testmod() A_ : Union[str, Any] = 1.0 while num: A_ : str = float(input('Gamma of: ')) print(F'''gamma({num}) = {gamma(num)}''') print('\nEnter 0 to exit...')
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_torch_available A_ : int = { 'configuration_lilt': ['LILT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'LiltConfig'], } try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Any = [ 'LILT_PRETRAINED_MODEL_ARCHIVE_LIST', 'LiltForQuestionAnswering', 'LiltForSequenceClassification', 'LiltForTokenClassification', 'LiltModel', 'LiltPreTrainedModel', ] if TYPE_CHECKING: from .configuration_lilt import LILT_PRETRAINED_CONFIG_ARCHIVE_MAP, LiltConfig try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_lilt import ( LILT_PRETRAINED_MODEL_ARCHIVE_LIST, LiltForQuestionAnswering, LiltForSequenceClassification, LiltForTokenClassification, LiltModel, LiltPreTrainedModel, ) else: import sys A_ : Union[str, Any] = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
import itertools from dataclasses import dataclass from typing import Optional import pandas as pd import pyarrow as pa import datasets from datasets.table import table_cast @dataclass class _lowerCAmelCase( datasets.BuilderConfig ): """simple docstring""" a : Optional[datasets.Features] =None class _lowerCAmelCase( datasets.ArrowBasedBuilder ): """simple docstring""" a : Union[str, Any] =PandasConfig def _a ( self ): return datasets.DatasetInfo(features=self.config.features ) def _a ( self , _lowerCamelCase ): if not self.config.data_files: raise ValueError(f'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) UpperCamelCase_: Optional[Any] = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_lowerCamelCase , (str, list, tuple) ): UpperCamelCase_: Tuple = data_files if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = [files] # Use `dl_manager.iter_files` to skip hidden files in an extracted archive UpperCamelCase_: Union[str, Any] = [dl_manager.iter_files(_lowerCamelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] UpperCamelCase_: Dict = [] for split_name, files in data_files.items(): if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = [files] # Use `dl_manager.iter_files` to skip hidden files in an extracted archive UpperCamelCase_: Optional[int] = [dl_manager.iter_files(_lowerCamelCase ) for file in files] splits.append(datasets.SplitGenerator(name=_lowerCamelCase , gen_kwargs={'files': files} ) ) return splits def _a ( self , _lowerCamelCase ): if self.config.features is not None: # more expensive cast to support nested features with keys in a different order # allows str <-> int/float or str to Audio for example UpperCamelCase_: Optional[Any] = table_cast(_lowerCamelCase , self.config.features.arrow_schema ) return pa_table def _a ( self , _lowerCamelCase ): for i, file in enumerate(itertools.chain.from_iterable(_lowerCamelCase ) ): with open(_lowerCamelCase , 'rb' ) as f: UpperCamelCase_: int = pa.Table.from_pandas(pd.read_pickle(_lowerCamelCase ) ) yield i, self._cast_table(_lowerCamelCase )
57
from typing import TYPE_CHECKING from ...utils import OptionalDependencyNotAvailable, _LazyModule, is_tokenizers_available, is_torch_available A_ : List[str] = { 'configuration_roc_bert': ['ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'RoCBertConfig'], 'tokenization_roc_bert': ['RoCBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: pass try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Union[str, Any] = [ 'ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'RoCBertForCausalLM', 'RoCBertForMaskedLM', 'RoCBertForMultipleChoice', 'RoCBertForPreTraining', 'RoCBertForQuestionAnswering', 'RoCBertForSequenceClassification', 'RoCBertForTokenClassification', 'RoCBertLayer', 'RoCBertModel', 'RoCBertPreTrainedModel', 'load_tf_weights_in_roc_bert', ] if TYPE_CHECKING: from .configuration_roc_bert import ROC_BERT_PRETRAINED_CONFIG_ARCHIVE_MAP, RoCBertConfig from .tokenization_roc_bert import RoCBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: raise OptionalDependencyNotAvailable() try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_roc_bert import ( ROC_BERT_PRETRAINED_MODEL_ARCHIVE_LIST, RoCBertForCausalLM, RoCBertForMaskedLM, RoCBertForMultipleChoice, RoCBertForPreTraining, RoCBertForQuestionAnswering, RoCBertForSequenceClassification, RoCBertForTokenClassification, RoCBertLayer, RoCBertModel, RoCBertPreTrainedModel, load_tf_weights_in_roc_bert, ) else: import sys A_ : int = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
from typing import Any def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) -> list: _validation( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) # Creates data structures and fill initial step UpperCamelCase_: dict = {} UpperCamelCase_: dict = {} for state in states_space: UpperCamelCase_: Any = observations_space[0] UpperCamelCase_: Tuple = ( initial_probabilities[state] * emission_probabilities[state][observation] ) UpperCamelCase_: List[str] = None # Fills the data structure with the probabilities of # different transitions and pointers to previous states for o in range(1 , len(UpperCAmelCase__ ) ): UpperCamelCase_: List[Any] = observations_space[o] UpperCamelCase_: Union[str, Any] = observations_space[o - 1] for state in states_space: # Calculates the argmax for probability function UpperCamelCase_: List[Any] = '' UpperCamelCase_: Optional[Any] = -1 for k_state in states_space: UpperCamelCase_: str = ( probabilities[(k_state, prior_observation)] * transition_probabilities[k_state][state] * emission_probabilities[state][observation] ) if probability > max_probability: UpperCamelCase_: Optional[Any] = probability UpperCamelCase_: Optional[Any] = k_state # Update probabilities and pointers dicts UpperCamelCase_: List[str] = ( probabilities[(arg_max, prior_observation)] * transition_probabilities[arg_max][state] * emission_probabilities[state][observation] ) UpperCamelCase_: Dict = arg_max # The final observation UpperCamelCase_: Dict = observations_space[len(UpperCAmelCase__ ) - 1] # argmax for given final observation UpperCamelCase_: int = '' UpperCamelCase_: Optional[Any] = -1 for k_state in states_space: UpperCamelCase_: Tuple = probabilities[(k_state, final_observation)] if probability > max_probability: UpperCamelCase_: int = probability UpperCamelCase_: List[str] = k_state UpperCamelCase_: Optional[Any] = arg_max # Process pointers backwards UpperCamelCase_: Tuple = last_state UpperCamelCase_: Tuple = [] for o in range(len(UpperCAmelCase__ ) - 1 , -1 , -1 ): result.append(UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = pointers[previous, observations_space[o]] result.reverse() return result def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) -> None: _validate_not_empty( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) _validate_lists(UpperCAmelCase__ , UpperCAmelCase__ ) _validate_dicts( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) -> None: if not all( [ observations_space, states_space, initial_probabilities, transition_probabilities, emission_probabilities, ] ): raise ValueError('There\'s an empty parameter' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> None: _validate_list(UpperCAmelCase__ , 'observations_space' ) _validate_list(UpperCAmelCase__ , 'states_space' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> None: if not isinstance(_object , UpperCAmelCase__ ): UpperCamelCase_: Optional[Any] = F'''{var_name} must be a list''' raise ValueError(UpperCAmelCase__ ) else: for x in _object: if not isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: List[str] = F'''{var_name} must be a list of strings''' raise ValueError(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , ) -> None: _validate_dict(UpperCAmelCase__ , 'initial_probabilities' , UpperCAmelCase__ ) _validate_nested_dict(UpperCAmelCase__ , 'transition_probabilities' ) _validate_nested_dict(UpperCAmelCase__ , 'emission_probabilities' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> None: _validate_dict(_object , UpperCAmelCase__ , UpperCAmelCase__ ) for x in _object.values(): _validate_dict(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = False ) -> None: if not isinstance(_object , UpperCAmelCase__ ): UpperCamelCase_: Union[str, Any] = F'''{var_name} must be a dict''' raise ValueError(UpperCAmelCase__ ) if not all(isinstance(UpperCAmelCase__ , UpperCAmelCase__ ) for x in _object ): UpperCamelCase_: int = F'''{var_name} all keys must be strings''' raise ValueError(UpperCAmelCase__ ) if not all(isinstance(UpperCAmelCase__ , UpperCAmelCase__ ) for x in _object.values() ): UpperCamelCase_: str = 'nested dictionary ' if nested else '' UpperCamelCase_: Any = F'''{var_name} {nested_text}all values must be {value_type.__name__}''' raise ValueError(UpperCAmelCase__ ) if __name__ == "__main__": from doctest import testmod testmod()
57
from dataclasses import dataclass from enum import Enum from typing import List, Optional, Union import numpy as np import PIL from PIL import Image from ...utils import BaseOutput, is_torch_available, is_transformers_available @dataclass class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[List[PIL.Image.Image], np.ndarray] a : Optional[List[bool]] if is_transformers_available() and is_torch_available(): from .pipeline_semantic_stable_diffusion import SemanticStableDiffusionPipeline
57
1
from __future__ import annotations from math import pi def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> dict[str, float]: if (inductance, frequency, reactance).count(0 ) != 1: raise ValueError('One and only one argument must be 0' ) if inductance < 0: raise ValueError('Inductance cannot be negative' ) if frequency < 0: raise ValueError('Frequency cannot be negative' ) if reactance < 0: raise ValueError('Inductive reactance cannot be negative' ) if inductance == 0: return {"inductance": reactance / (2 * pi * frequency)} elif frequency == 0: return {"frequency": reactance / (2 * pi * inductance)} elif reactance == 0: return {"reactance": 2 * pi * frequency * inductance} else: raise ValueError('Exactly one argument must be 0' ) if __name__ == "__main__": import doctest doctest.testmod()
57
import argparse import json import os import fairseq import torch from fairseq.data import Dictionary from transformers import ( WavaVecaConfig, WavaVecaCTCTokenizer, WavaVecaFeatureExtractor, WavaVecaForCTC, WavaVecaForPreTraining, WavaVecaProcessor, logging, ) from transformers.models.wavaveca.modeling_wavaveca import WavaVecaForSequenceClassification logging.set_verbosity_info() A_ : Tuple = logging.get_logger(__name__) A_ : Optional[int] = { 'post_extract_proj': 'feature_projection.projection', 'encoder.pos_conv.0': 'encoder.pos_conv_embed.conv', 'self_attn.k_proj': 'encoder.layers.*.attention.k_proj', 'self_attn.v_proj': 'encoder.layers.*.attention.v_proj', 'self_attn.q_proj': 'encoder.layers.*.attention.q_proj', 'self_attn.out_proj': 'encoder.layers.*.attention.out_proj', 'self_attn_layer_norm': 'encoder.layers.*.layer_norm', 'fc1': 'encoder.layers.*.feed_forward.intermediate_dense', 'fc2': 'encoder.layers.*.feed_forward.output_dense', 'final_layer_norm': 'encoder.layers.*.final_layer_norm', 'encoder.layer_norm': 'encoder.layer_norm', 'adapter_layer': 'encoder.layers.*.adapter_layer', 'w2v_model.layer_norm': 'feature_projection.layer_norm', 'quantizer.weight_proj': 'quantizer.weight_proj', 'quantizer.vars': 'quantizer.codevectors', 'project_q': 'project_q', 'final_proj': 'project_hid', 'w2v_encoder.proj': 'lm_head', 'mask_emb': 'masked_spec_embed', 'pooling_layer.linear': 'projector', 'pooling_layer.projection': 'classifier', } A_ : int = [ 'lm_head', 'quantizer.weight_proj', 'quantizer.codevectors', 'project_q', 'project_hid', 'projector', 'classifier', ] def snake_case (UpperCAmelCase__ ) -> str: UpperCamelCase_: Tuple = {} with open(UpperCAmelCase__ , 'r' ) as file: for line_number, line in enumerate(UpperCAmelCase__ ): UpperCamelCase_: List[Any] = line.strip() if line: UpperCamelCase_: List[Any] = line.split() UpperCamelCase_: Optional[Any] = line_number UpperCamelCase_: Any = words[0] UpperCamelCase_: List[Any] = value return result def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: for attribute in key.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Any = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: Dict = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: Optional[Any] = getattr(UpperCAmelCase__ , UpperCAmelCase__ ).shape elif weight_type is not None and weight_type == "param": UpperCamelCase_: Optional[Any] = hf_pointer for attribute in hf_param_name.split('.' ): UpperCamelCase_: str = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Tuple = shape_pointer.shape # let's reduce dimension UpperCamelCase_: int = value[0] else: UpperCamelCase_: Union[str, Any] = hf_pointer.shape if hf_shape != value.shape: raise ValueError( F'''Shape of hf {key + '.' + weight_type if weight_type is not None else ''} is {hf_shape}, but should be''' F''' {value.shape} for {full_name}''' ) if weight_type == "weight": UpperCamelCase_: Optional[int] = value elif weight_type == "weight_g": UpperCamelCase_: Any = value elif weight_type == "weight_v": UpperCamelCase_: Union[str, Any] = value elif weight_type == "bias": UpperCamelCase_: Union[str, Any] = value elif weight_type == "param": for attribute in hf_param_name.split('.' ): UpperCamelCase_: Dict = getattr(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = value else: UpperCamelCase_: int = value logger.info(F'''{key + '.' + weight_type if weight_type is not None else ''} was initialized from {full_name}.''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Union[str, Any] = None for param_key in PARAM_MAPPING.keys(): if full_name.endswith(UpperCAmelCase__ ): UpperCamelCase_: Dict = PARAM_MAPPING[full_name.split('.' )[-1]] UpperCamelCase_: List[Any] = 'param' if weight_type is not None and weight_type != "param": UpperCamelCase_: List[Any] = '.'.join([key, weight_type] ) elif weight_type is not None and weight_type == "param": UpperCamelCase_: Any = '.'.join([key, hf_param_name] ) else: UpperCamelCase_: Union[str, Any] = key UpperCamelCase_: Any = value if 'lm_head' in full_key else value[0] A_ : str = { 'W_a': 'linear_1.weight', 'W_b': 'linear_2.weight', 'b_a': 'linear_1.bias', 'b_b': 'linear_2.bias', 'ln_W': 'norm.weight', 'ln_b': 'norm.bias', } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None ) -> Any: UpperCamelCase_: Optional[int] = False for key, mapped_key in MAPPING.items(): UpperCamelCase_: Tuple = 'wav2vec2.' + mapped_key if mapped_key not in TOP_LEVEL_KEYS else mapped_key if key in name or key.split('w2v_model.' )[-1] == name.split('.' )[0]: UpperCamelCase_: Optional[Any] = True if "*" in mapped_key: UpperCamelCase_: Optional[int] = name.split(UpperCAmelCase__ )[0].split('.' )[-2] UpperCamelCase_: Any = mapped_key.replace('*' , UpperCAmelCase__ ) if "weight_g" in name: UpperCamelCase_: Union[str, Any] = 'weight_g' elif "weight_v" in name: UpperCamelCase_: Dict = 'weight_v' elif "bias" in name: UpperCamelCase_: int = 'bias' elif "weight" in name: # TODO: don't match quantizer.weight_proj UpperCamelCase_: str = 'weight' else: UpperCamelCase_: Union[str, Any] = None if hf_dict is not None: rename_dict(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) else: set_recursively(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) return is_used return is_used def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: UpperCamelCase_: List[Any] = [] UpperCamelCase_: Dict = fairseq_model.state_dict() UpperCamelCase_: Optional[Any] = hf_model.wavaveca.feature_extractor for name, value in fairseq_dict.items(): UpperCamelCase_: Union[str, Any] = False if "conv_layers" in name: load_conv_layer( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , hf_model.config.feat_extract_norm == 'group' , ) UpperCamelCase_: List[Any] = True else: UpperCamelCase_: Tuple = load_wavaveca_layer(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) if not is_used: unused_weights.append(UpperCAmelCase__ ) logger.warning(F'''Unused weights: {unused_weights}''' ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: UpperCamelCase_: Any = full_name.split('conv_layers.' )[-1] UpperCamelCase_: int = name.split('.' ) UpperCamelCase_: int = int(items[0] ) UpperCamelCase_: Union[str, Any] = int(items[1] ) if type_id == 0: if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].conv.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].conv.weight.data.shape} was found.''' ) UpperCamelCase_: int = value logger.info(F'''Feat extract conv layer {layer_id} was initialized from {full_name}.''' ) elif (type_id == 2 and not use_group_norm) or (type_id == 2 and layer_id == 0 and use_group_norm): if "bias" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.bias.data.shape} was found.''' ) UpperCamelCase_: Union[str, Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) elif "weight" in name: if value.shape != feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape: raise ValueError( F'''{full_name} has size {value.shape}, but''' F''' {feature_extractor.conv_layers[layer_id].layer_norm.weight.data.shape} was found.''' ) UpperCamelCase_: List[Any] = value logger.info(F'''Feat extract layer norm weight of layer {layer_id} was initialized from {full_name}.''' ) else: unused_weights.append(UpperCAmelCase__ ) @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=None , UpperCAmelCase__=None , UpperCAmelCase__=True , UpperCAmelCase__=False ) -> Dict: if config_path is not None: UpperCamelCase_: Tuple = WavaVecaConfig.from_pretrained(UpperCAmelCase__ ) else: UpperCamelCase_: List[str] = WavaVecaConfig() if is_seq_class: UpperCamelCase_: int = read_txt_into_dict(UpperCAmelCase__ ) UpperCamelCase_: Tuple = idalabel UpperCamelCase_: str = WavaVecaForSequenceClassification(UpperCAmelCase__ ) UpperCamelCase_: Optional[int] = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) feature_extractor.save_pretrained(UpperCAmelCase__ ) elif is_finetuned: if dict_path: UpperCamelCase_: List[Any] = Dictionary.load(UpperCAmelCase__ ) # important change bos & pad token id since CTC symbol is <pad> and # not <s> as in fairseq UpperCamelCase_: Dict = target_dict.pad_index UpperCamelCase_: Tuple = target_dict.bos_index UpperCamelCase_: Optional[Any] = target_dict.eos_index UpperCamelCase_: Union[str, Any] = len(target_dict.symbols ) UpperCamelCase_: int = os.path.join(UpperCAmelCase__ , 'vocab.json' ) if not os.path.isdir(UpperCAmelCase__ ): logger.error('--pytorch_dump_folder_path ({}) should be a directory'.format(UpperCAmelCase__ ) ) return os.makedirs(UpperCAmelCase__ , exist_ok=UpperCAmelCase__ ) UpperCamelCase_: str = target_dict.indices # fairseq has the <pad> and <s> switched UpperCamelCase_: List[str] = 0 UpperCamelCase_: List[Any] = 1 with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as vocab_handle: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = WavaVecaCTCTokenizer( UpperCAmelCase__ , unk_token=target_dict.unk_word , pad_token=target_dict.pad_word , bos_token=target_dict.bos_word , eos_token=target_dict.eos_word , word_delimiter_token='|' , do_lower_case=UpperCAmelCase__ , ) UpperCamelCase_: Any = True if config.feat_extract_norm == 'layer' else False UpperCamelCase_: Tuple = WavaVecaFeatureExtractor( feature_size=1 , sampling_rate=1_6_0_0_0 , padding_value=0 , do_normalize=UpperCAmelCase__ , return_attention_mask=UpperCAmelCase__ , ) UpperCamelCase_: Dict = WavaVecaProcessor(feature_extractor=UpperCAmelCase__ , tokenizer=UpperCAmelCase__ ) processor.save_pretrained(UpperCAmelCase__ ) UpperCamelCase_: Any = WavaVecaForCTC(UpperCAmelCase__ ) else: UpperCamelCase_: Any = WavaVecaForPreTraining(UpperCAmelCase__ ) if is_finetuned or is_seq_class: UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Dict = fairseq.checkpoint_utils.load_model_ensemble_and_task( [checkpoint_path] , arg_overrides={'data': '/'.join(dict_path.split('/' )[:-1] )} ) else: UpperCamelCase_: List[str] = argparse.Namespace(task='audio_pretraining' ) UpperCamelCase_: Any = fairseq.tasks.setup_task(UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = fairseq.checkpoint_utils.load_model_ensemble_and_task([checkpoint_path] , task=UpperCAmelCase__ ) UpperCamelCase_: str = model[0].eval() recursively_load_weights(UpperCAmelCase__ , UpperCAmelCase__ , not is_finetuned ) hf_wavavec.save_pretrained(UpperCAmelCase__ ) if __name__ == "__main__": A_ : str = argparse.ArgumentParser() parser.add_argument('--pytorch_dump_folder_path', default=None, type=str, help='Path to the output PyTorch model.') parser.add_argument('--checkpoint_path', default=None, type=str, help='Path to fairseq checkpoint') parser.add_argument('--dict_path', default=None, type=str, help='Path to dict of fine-tuned model') parser.add_argument('--config_path', default=None, type=str, help='Path to hf config.json of model to convert') parser.add_argument( '--not_finetuned', action='store_true', help='Whether the model to convert is a fine-tuned model or not' ) parser.add_argument( '--is_seq_class', action='store_true', help='Whether the model to convert is a fine-tuned sequence classification model or not', ) A_ : int = parser.parse_args() A_ : str = not args.not_finetuned and not args.is_seq_class convert_wavaveca_checkpoint( args.checkpoint_path, args.pytorch_dump_folder_path, args.config_path, args.dict_path, is_finetuned, args.is_seq_class, )
57
1
import glob import os import random from string import ascii_lowercase, digits import cva A_ : Union[str, Any] = '' A_ : Union[str, Any] = '' A_ : Dict = '' A_ : Any = 1 # (0 is vertical, 1 is horizontal) def snake_case () -> None: UpperCamelCase_ ,UpperCamelCase_: str = get_dataset(UpperCAmelCase__ , UpperCAmelCase__ ) print('Processing...' ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = update_image_and_anno(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) for index, image in enumerate(UpperCAmelCase__ ): # Get random string code: '7b7ad245cdff75241935e4dd860f3bad' UpperCamelCase_: List[str] = random_chars(3_2 ) UpperCamelCase_: List[str] = paths[index].split(os.sep )[-1].rsplit('.' , 1 )[0] UpperCamelCase_: Any = F'''{OUTPUT_DIR}/{file_name}_FLIP_{letter_code}''' cva.imwrite(F'''/{file_root}.jpg''' , UpperCAmelCase__ , [cva.IMWRITE_JPEG_QUALITY, 8_5] ) print(F'''Success {index+1}/{len(UpperCAmelCase__ )} with {file_name}''' ) UpperCamelCase_: Optional[Any] = [] for anno in new_annos[index]: UpperCamelCase_: List[Any] = F'''{anno[0]} {anno[1]} {anno[2]} {anno[3]} {anno[4]}''' annos_list.append(UpperCAmelCase__ ) with open(F'''/{file_root}.txt''' , 'w' ) as outfile: outfile.write('\n'.join(line for line in annos_list ) ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> tuple[list, list]: UpperCamelCase_: List[Any] = [] UpperCamelCase_: List[str] = [] for label_file in glob.glob(os.path.join(UpperCAmelCase__ , '*.txt' ) ): UpperCamelCase_: Optional[Any] = label_file.split(os.sep )[-1].rsplit('.' , 1 )[0] with open(UpperCAmelCase__ ) as in_file: UpperCamelCase_: Optional[int] = in_file.readlines() UpperCamelCase_: List[str] = os.path.join(UpperCAmelCase__ , F'''{label_name}.jpg''' ) UpperCamelCase_: Dict = [] for obj_list in obj_lists: UpperCamelCase_: List[Any] = obj_list.rstrip('\n' ).split(' ' ) boxes.append( [ int(obj[0] ), float(obj[1] ), float(obj[2] ), float(obj[3] ), float(obj[4] ), ] ) if not boxes: continue img_paths.append(UpperCAmelCase__ ) labels.append(UpperCAmelCase__ ) return img_paths, labels def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ = 1 ) -> tuple[list, list, list]: UpperCamelCase_: Optional[Any] = [] UpperCamelCase_: List[Any] = [] UpperCamelCase_: List[Any] = [] for idx in range(len(UpperCAmelCase__ ) ): UpperCamelCase_: Union[str, Any] = [] UpperCamelCase_: str = img_list[idx] path_list.append(UpperCAmelCase__ ) UpperCamelCase_: int = anno_list[idx] UpperCamelCase_: str = cva.imread(UpperCAmelCase__ ) if flip_type == 1: UpperCamelCase_: List[Any] = cva.flip(UpperCAmelCase__ , UpperCAmelCase__ ) for bbox in img_annos: UpperCamelCase_: int = 1 - bbox[1] new_annos.append([bbox[0], x_center_new, bbox[2], bbox[3], bbox[4]] ) elif flip_type == 0: UpperCamelCase_: List[str] = cva.flip(UpperCAmelCase__ , UpperCAmelCase__ ) for bbox in img_annos: UpperCamelCase_: Any = 1 - bbox[2] new_annos.append([bbox[0], bbox[1], y_center_new, bbox[3], bbox[4]] ) new_annos_lists.append(UpperCAmelCase__ ) new_imgs_list.append(UpperCAmelCase__ ) return new_imgs_list, new_annos_lists, path_list def snake_case (UpperCAmelCase__ = 3_2 ) -> str: assert number_char > 1, "The number of character should greater than 1" UpperCamelCase_: str = ascii_lowercase + digits return "".join(random.choice(UpperCAmelCase__ ) for _ in range(UpperCAmelCase__ ) ) if __name__ == "__main__": main() print('DONE ✅')
57
import inspect import os import unittest import torch import accelerate from accelerate import debug_launcher from accelerate.test_utils import ( execute_subprocess_async, require_cpu, require_huggingface_suite, require_multi_gpu, require_single_gpu, ) from accelerate.utils import patch_environment @require_huggingface_suite class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Optional[int] = inspect.getfile(accelerate.test_utils ) UpperCamelCase_: Dict = os.path.sep.join( mod_file.split(os.path.sep )[:-1] + ['scripts', 'external_deps', 'test_metrics.py'] ) from accelerate.test_utils.scripts.external_deps import test_metrics # noqa: F401 UpperCamelCase_: Tuple = test_metrics @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main , num_processes=1 ) @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main ) @require_single_gpu def _a ( self ): self.test_metrics.main() @require_multi_gpu def _a ( self ): print(f'''Found {torch.cuda.device_count()} devices.''' ) UpperCamelCase_: List[Any] = ['torchrun', f'''--nproc_per_node={torch.cuda.device_count()}''', self.test_file_path] with patch_environment(omp_num_threads=1 ): execute_subprocess_async(_lowerCamelCase , env=os.environ.copy() )
57
1
from __future__ import annotations def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> set[str]: UpperCamelCase_ ,UpperCamelCase_: Dict = set(UpperCAmelCase__ ), [start] while stack: UpperCamelCase_: Any = stack.pop() explored.add(UpperCAmelCase__ ) # Differences from BFS: # 1) pop last element instead of first one # 2) add adjacent elements to stack without exploring them for adj in reversed(graph[v] ): if adj not in explored: stack.append(UpperCAmelCase__ ) return explored A_ : Dict = { 'A': ['B', 'C', 'D'], 'B': ['A', 'D', 'E'], 'C': ['A', 'F'], 'D': ['B', 'D'], 'E': ['B', 'F'], 'F': ['C', 'E', 'G'], 'G': ['F'], } if __name__ == "__main__": import doctest doctest.testmod() print(depth_first_search(G, 'A'))
57
import math class _lowerCAmelCase: """simple docstring""" def _a ( self , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: int = 0.0 UpperCamelCase_: Tuple = 0.0 for i in range(len(_lowerCamelCase ) ): da += math.pow((sample[i] - weights[0][i]) , 2 ) da += math.pow((sample[i] - weights[1][i]) , 2 ) return 0 if da > da else 1 return 0 def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): for i in range(len(_lowerCamelCase ) ): weights[j][i] += alpha * (sample[i] - weights[j][i]) return weights def snake_case () -> None: # Training Examples ( m, n ) UpperCamelCase_: List[str] = [[1, 1, 0, 0], [0, 0, 0, 1], [1, 0, 0, 0], [0, 0, 1, 1]] # weight initialization ( n, C ) UpperCamelCase_: List[Any] = [[0.2, 0.6, 0.5, 0.9], [0.8, 0.4, 0.7, 0.3]] # training UpperCamelCase_: Dict = SelfOrganizingMap() UpperCamelCase_: List[Any] = 3 UpperCamelCase_: List[str] = 0.5 for _ in range(UpperCAmelCase__ ): for j in range(len(UpperCAmelCase__ ) ): # training sample UpperCamelCase_: int = training_samples[j] # Compute the winning vector UpperCamelCase_: Tuple = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # Update the winning vector UpperCamelCase_: Union[str, Any] = self_organizing_map.update(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # classify test sample UpperCamelCase_: Dict = [0, 0, 0, 1] UpperCamelCase_: Union[str, Any] = self_organizing_map.get_winner(UpperCAmelCase__ , UpperCAmelCase__ ) # results print(F'''Clusters that the test sample belongs to : {winner}''' ) print(F'''Weights that have been trained : {weights}''' ) # running the main() function if __name__ == "__main__": main()
57
1
def snake_case (UpperCAmelCase__ ) -> str: if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): raise TypeError('\'float\' object cannot be interpreted as an integer' ) if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): raise TypeError('\'str\' object cannot be interpreted as an integer' ) if num == 0: return "0b0" UpperCamelCase_: Optional[Any] = False if num < 0: UpperCamelCase_: Tuple = True UpperCamelCase_: int = -num UpperCamelCase_: list[int] = [] while num > 0: binary.insert(0 , num % 2 ) num >>= 1 if negative: return "-0b" + "".join(str(UpperCAmelCase__ ) for e in binary ) return "0b" + "".join(str(UpperCAmelCase__ ) for e in binary ) if __name__ == "__main__": import doctest doctest.testmod()
57
from collections import namedtuple A_ : Tuple = namedtuple('from_to', 'from_ to') A_ : int = { 'cubicmeter': from_to(1, 1), 'litre': from_to(0.001, 1000), 'kilolitre': from_to(1, 1), 'gallon': from_to(0.00454, 264.172), 'cubicyard': from_to(0.76455, 1.30795), 'cubicfoot': from_to(0.028, 35.3147), 'cup': from_to(0.000236588, 4226.75), } def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> float: if from_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'from_type\' value: {from_type!r} Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) if to_type not in METRIC_CONVERSION: raise ValueError( F'''Invalid \'to_type\' value: {to_type!r}. Supported values are:\n''' + ', '.join(UpperCAmelCase__ ) ) return value * METRIC_CONVERSION[from_type].from_ * METRIC_CONVERSION[to_type].to if __name__ == "__main__": import doctest doctest.testmod()
57
1
import argparse from collections import OrderedDict from pathlib import Path import requests import torch from PIL import Image from transformers import GLPNConfig, GLPNForDepthEstimation, GLPNImageProcessor from transformers.utils import logging logging.set_verbosity_info() A_ : Tuple = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ ) -> str: UpperCamelCase_: Optional[Any] = OrderedDict() for key, value in state_dict.items(): if key.startswith('module.encoder' ): UpperCamelCase_: Any = key.replace('module.encoder' , 'glpn.encoder' ) if key.startswith('module.decoder' ): UpperCamelCase_: Union[str, Any] = key.replace('module.decoder' , 'decoder.stages' ) if "patch_embed" in key: # replace for example patch_embed1 by patch_embeddings.0 UpperCamelCase_: Dict = key[key.find('patch_embed' ) + len('patch_embed' )] UpperCamelCase_: Union[str, Any] = key.replace(F'''patch_embed{idx}''' , F'''patch_embeddings.{int(UpperCAmelCase__ )-1}''' ) if "norm" in key: UpperCamelCase_: int = key.replace('norm' , 'layer_norm' ) if "glpn.encoder.layer_norm" in key: # replace for example layer_norm1 by layer_norm.0 UpperCamelCase_: Tuple = key[key.find('glpn.encoder.layer_norm' ) + len('glpn.encoder.layer_norm' )] UpperCamelCase_: List[Any] = key.replace(F'''layer_norm{idx}''' , F'''layer_norm.{int(UpperCAmelCase__ )-1}''' ) if "layer_norm1" in key: UpperCamelCase_: Tuple = key.replace('layer_norm1' , 'layer_norm_1' ) if "layer_norm2" in key: UpperCamelCase_: List[str] = key.replace('layer_norm2' , 'layer_norm_2' ) if "block" in key: # replace for example block1 by block.0 UpperCamelCase_: int = key[key.find('block' ) + len('block' )] UpperCamelCase_: Union[str, Any] = key.replace(F'''block{idx}''' , F'''block.{int(UpperCAmelCase__ )-1}''' ) if "attn.q" in key: UpperCamelCase_: Optional[Any] = key.replace('attn.q' , 'attention.self.query' ) if "attn.proj" in key: UpperCamelCase_: Dict = key.replace('attn.proj' , 'attention.output.dense' ) if "attn" in key: UpperCamelCase_: List[Any] = key.replace('attn' , 'attention.self' ) if "fc1" in key: UpperCamelCase_: List[str] = key.replace('fc1' , 'dense1' ) if "fc2" in key: UpperCamelCase_: Dict = key.replace('fc2' , 'dense2' ) if "linear_pred" in key: UpperCamelCase_: Optional[Any] = key.replace('linear_pred' , 'classifier' ) if "linear_fuse" in key: UpperCamelCase_: int = key.replace('linear_fuse.conv' , 'linear_fuse' ) UpperCamelCase_: Dict = key.replace('linear_fuse.bn' , 'batch_norm' ) if "linear_c" in key: # replace for example linear_c4 by linear_c.3 UpperCamelCase_: Union[str, Any] = key[key.find('linear_c' ) + len('linear_c' )] UpperCamelCase_: Tuple = key.replace(F'''linear_c{idx}''' , F'''linear_c.{int(UpperCAmelCase__ )-1}''' ) if "bot_conv" in key: UpperCamelCase_: Optional[Any] = key.replace('bot_conv' , '0.convolution' ) if "skip_conv1" in key: UpperCamelCase_: Optional[int] = key.replace('skip_conv1' , '1.convolution' ) if "skip_conv2" in key: UpperCamelCase_: Dict = key.replace('skip_conv2' , '2.convolution' ) if "fusion1" in key: UpperCamelCase_: Optional[int] = key.replace('fusion1' , '1.fusion' ) if "fusion2" in key: UpperCamelCase_: Union[str, Any] = key.replace('fusion2' , '2.fusion' ) if "fusion3" in key: UpperCamelCase_: Any = key.replace('fusion3' , '3.fusion' ) if "fusion" in key and "conv" in key: UpperCamelCase_: Union[str, Any] = key.replace('conv' , 'convolutional_layer' ) if key.startswith('module.last_layer_depth' ): UpperCamelCase_: Optional[Any] = key.replace('module.last_layer_depth' , 'head.head' ) UpperCamelCase_: Optional[int] = value return new_state_dict def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: # for each of the encoder blocks: for i in range(config.num_encoder_blocks ): for j in range(config.depths[i] ): # read in weights + bias of keys and values (which is a single matrix in the original implementation) UpperCamelCase_: Tuple = state_dict.pop(F'''glpn.encoder.block.{i}.{j}.attention.self.kv.weight''' ) UpperCamelCase_: int = state_dict.pop(F'''glpn.encoder.block.{i}.{j}.attention.self.kv.bias''' ) # next, add keys and values (in that order) to the state dict UpperCamelCase_: str = kv_weight[ : config.hidden_sizes[i], : ] UpperCamelCase_: Union[str, Any] = kv_bias[: config.hidden_sizes[i]] UpperCamelCase_: Any = kv_weight[ config.hidden_sizes[i] :, : ] UpperCamelCase_: Any = kv_bias[config.hidden_sizes[i] :] def snake_case () -> Union[str, Any]: UpperCamelCase_: Dict = 'http://images.cocodataset.org/val2017/000000039769.jpg' UpperCamelCase_: int = Image.open(requests.get(UpperCAmelCase__ , stream=UpperCAmelCase__ ).raw ) return image @torch.no_grad() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__=False , UpperCAmelCase__=None ) -> Optional[Any]: UpperCamelCase_: Dict = GLPNConfig(hidden_sizes=[6_4, 1_2_8, 3_2_0, 5_1_2] , decoder_hidden_size=6_4 , depths=[3, 8, 2_7, 3] ) # load image processor (only resize + rescale) UpperCamelCase_: Union[str, Any] = GLPNImageProcessor() # prepare image UpperCamelCase_: str = prepare_img() UpperCamelCase_: int = image_processor(images=UpperCAmelCase__ , return_tensors='pt' ).pixel_values logger.info('Converting model...' ) # load original state dict UpperCamelCase_: Dict = torch.load(UpperCAmelCase__ , map_location=torch.device('cpu' ) ) # rename keys UpperCamelCase_: str = rename_keys(UpperCAmelCase__ ) # key and value matrices need special treatment read_in_k_v(UpperCAmelCase__ , UpperCAmelCase__ ) # create HuggingFace model and load state dict UpperCamelCase_: Dict = GLPNForDepthEstimation(UpperCAmelCase__ ) model.load_state_dict(UpperCAmelCase__ ) model.eval() # forward pass UpperCamelCase_: Dict = model(UpperCAmelCase__ ) UpperCamelCase_: Dict = outputs.predicted_depth # verify output if model_name is not None: if "nyu" in model_name: UpperCamelCase_: str = torch.tensor( [[4.4147, 4.0873, 4.0673], [3.7890, 3.2881, 3.1525], [3.7674, 3.5423, 3.4913]] ) elif "kitti" in model_name: UpperCamelCase_: Any = torch.tensor( [[3.4291, 2.7865, 2.5151], [3.2841, 2.7021, 2.3502], [3.1147, 2.4625, 2.2481]] ) else: raise ValueError(F'''Unknown model name: {model_name}''' ) UpperCamelCase_: Optional[int] = torch.Size([1, 4_8_0, 6_4_0] ) assert predicted_depth.shape == expected_shape assert torch.allclose(predicted_depth[0, :3, :3] , UpperCAmelCase__ , atol=1E-4 ) print('Looks ok!' ) # finally, push to hub if required if push_to_hub: logger.info('Pushing model and image processor to the hub...' ) model.push_to_hub( repo_path_or_name=Path(UpperCAmelCase__ , UpperCAmelCase__ ) , organization='nielsr' , commit_message='Add model' , use_temp_dir=UpperCAmelCase__ , ) image_processor.push_to_hub( repo_path_or_name=Path(UpperCAmelCase__ , UpperCAmelCase__ ) , organization='nielsr' , commit_message='Add image processor' , use_temp_dir=UpperCAmelCase__ , ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--checkpoint_path', default=None, type=str, help='Path to the original PyTorch checkpoint (.pth file).', ) parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, help='Path to the folder to output PyTorch model.' ) parser.add_argument( '--push_to_hub', action='store_true', help='Whether to upload the model to the HuggingFace hub.' ) parser.add_argument( '--model_name', default='glpn-kitti', type=str, help='Name of the model in case you\'re pushing to the hub.', ) A_ : List[Any] = parser.parse_args() convert_glpn_checkpoint(args.checkpoint_path, args.pytorch_dump_folder_path, args.push_to_hub, args.model_name)
57
import warnings from ...utils import logging from .image_processing_clip import CLIPImageProcessor A_ : int = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , *_lowerCamelCase , **_lowerCamelCase ): warnings.warn( 'The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use CLIPImageProcessor instead.' , _lowerCamelCase , ) super().__init__(*_lowerCamelCase , **_lowerCamelCase )
57
1
import argparse import json import os import evaluate import torch from datasets import load_dataset from torch.optim import AdamW from torch.utils.data import DataLoader from transformers import AutoModelForSequenceClassification, AutoTokenizer, get_linear_schedule_with_warmup, set_seed from accelerate import Accelerator, DistributedType from accelerate.utils.deepspeed import DummyOptim, DummyScheduler A_ : Optional[Any] = 16 A_ : List[Any] = 32 def snake_case (UpperCAmelCase__ , UpperCAmelCase__ = 1_6 , UpperCAmelCase__ = "bert-base-cased" ) -> Union[str, Any]: UpperCamelCase_: str = AutoTokenizer.from_pretrained(UpperCAmelCase__ ) UpperCamelCase_: int = load_dataset('glue' , 'mrpc' ) def tokenize_function(UpperCAmelCase__ ): # max_length=None => use the model max length (it's actually the default) UpperCamelCase_: Optional[int] = tokenizer(examples['sentence1'] , examples['sentence2'] , truncation=UpperCAmelCase__ , max_length=UpperCAmelCase__ ) return outputs # Apply the method we just defined to all the examples in all the splits of the dataset UpperCamelCase_: Tuple = datasets.map( UpperCAmelCase__ , batched=UpperCAmelCase__ , remove_columns=['idx', 'sentence1', 'sentence2'] , load_from_cache_file=UpperCAmelCase__ ) # We also rename the 'label' column to 'labels' which is the expected name for labels by the models of the # transformers library UpperCamelCase_: Any = tokenized_datasets.rename_column('label' , 'labels' ) def collate_fn(UpperCAmelCase__ ): # On TPU it's best to pad everything to the same length or training will be very slow. if accelerator.distributed_type == DistributedType.TPU: return tokenizer.pad(UpperCAmelCase__ , padding='max_length' , max_length=1_2_8 , return_tensors='pt' ) return tokenizer.pad(UpperCAmelCase__ , padding='longest' , return_tensors='pt' ) # Instantiate dataloaders. UpperCamelCase_: Dict = DataLoader( tokenized_datasets['train'] , shuffle=UpperCAmelCase__ , collate_fn=UpperCAmelCase__ , batch_size=UpperCAmelCase__ ) UpperCamelCase_: Tuple = DataLoader( tokenized_datasets['validation'] , shuffle=UpperCAmelCase__ , collate_fn=UpperCAmelCase__ , batch_size=UpperCAmelCase__ ) return train_dataloader, eval_dataloader def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: # Initialize accelerator UpperCamelCase_: List[Any] = Accelerator() # Sample hyper-parameters for learning rate, batch size, seed and a few other HPs UpperCamelCase_: List[str] = config['lr'] UpperCamelCase_: Any = int(config['num_epochs'] ) UpperCamelCase_: str = int(config['seed'] ) UpperCamelCase_: Union[str, Any] = int(config['batch_size'] ) UpperCamelCase_: List[Any] = args.model_name_or_path set_seed(UpperCAmelCase__ ) UpperCamelCase_ ,UpperCamelCase_: int = get_dataloaders(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Instantiate the model (we build the model here so that the seed also control new weights initialization) UpperCamelCase_: Tuple = AutoModelForSequenceClassification.from_pretrained(UpperCAmelCase__ , return_dict=UpperCAmelCase__ ) # Instantiate optimizer UpperCamelCase_: Optional[int] = ( AdamW if accelerator.state.deepspeed_plugin is None or 'optimizer' not in accelerator.state.deepspeed_plugin.deepspeed_config else DummyOptim ) UpperCamelCase_: Optional[int] = optimizer_cls(params=model.parameters() , lr=UpperCAmelCase__ ) if accelerator.state.deepspeed_plugin is not None: UpperCamelCase_: Optional[int] = accelerator.state.deepspeed_plugin.deepspeed_config[ 'gradient_accumulation_steps' ] else: UpperCamelCase_: Dict = 1 UpperCamelCase_: int = (len(UpperCAmelCase__ ) * num_epochs) // gradient_accumulation_steps # Instantiate scheduler if ( accelerator.state.deepspeed_plugin is None or "scheduler" not in accelerator.state.deepspeed_plugin.deepspeed_config ): UpperCamelCase_: Dict = get_linear_schedule_with_warmup( optimizer=UpperCAmelCase__ , num_warmup_steps=0 , num_training_steps=UpperCAmelCase__ , ) else: UpperCamelCase_: int = DummyScheduler(UpperCAmelCase__ , total_num_steps=UpperCAmelCase__ , warmup_num_steps=0 ) # Prepare everything # There is no specific order to remember, we just need to unpack the objects in the same order we gave them to the # prepare method. UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: Tuple = accelerator.prepare( UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # We need to keep track of how many total steps we have iterated over UpperCamelCase_: List[str] = 0 # We also need to keep track of the stating epoch so files are named properly UpperCamelCase_: List[str] = 0 # Now we train the model UpperCamelCase_: Dict = evaluate.load('glue' , 'mrpc' ) UpperCamelCase_: Optional[int] = 0 UpperCamelCase_: Optional[Any] = {} for epoch in range(UpperCAmelCase__ , UpperCAmelCase__ ): model.train() for step, batch in enumerate(UpperCAmelCase__ ): UpperCamelCase_: List[Any] = model(**UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.loss UpperCamelCase_: Any = loss / gradient_accumulation_steps accelerator.backward(UpperCAmelCase__ ) if step % gradient_accumulation_steps == 0: optimizer.step() lr_scheduler.step() optimizer.zero_grad() overall_step += 1 model.eval() UpperCamelCase_: Optional[int] = 0 for step, batch in enumerate(UpperCAmelCase__ ): # We could avoid this line since we set the accelerator with `device_placement=True`. batch.to(accelerator.device ) with torch.no_grad(): UpperCamelCase_: Optional[Any] = model(**UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = outputs.logits.argmax(dim=-1 ) # It is slightly faster to call this once, than multiple times UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = accelerator.gather( (predictions, batch['labels']) ) # If we are in a multiprocess environment, the last batch has duplicates if accelerator.use_distributed: if step == len(UpperCAmelCase__ ) - 1: UpperCamelCase_: str = predictions[: len(eval_dataloader.dataset ) - samples_seen] UpperCamelCase_: List[str] = references[: len(eval_dataloader.dataset ) - samples_seen] else: samples_seen += references.shape[0] metric.add_batch( predictions=UpperCAmelCase__ , references=UpperCAmelCase__ , ) UpperCamelCase_: Any = metric.compute() # Use accelerator.print to print only on the main process. accelerator.print(F'''epoch {epoch}:''' , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = eval_metric['accuracy'] if best_performance < eval_metric["accuracy"]: UpperCamelCase_: List[Any] = eval_metric['accuracy'] if args.performance_lower_bound is not None: assert ( args.performance_lower_bound <= best_performance ), F'''Best performance metric {best_performance} is lower than the lower bound {args.performance_lower_bound}''' accelerator.wait_for_everyone() if accelerator.is_main_process: with open(os.path.join(args.output_dir , 'all_results.json' ) , 'w' ) as f: json.dump(UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case () -> int: UpperCamelCase_: str = argparse.ArgumentParser(description='Simple example of training script tracking peak GPU memory usage.' ) parser.add_argument( '--model_name_or_path' , type=UpperCAmelCase__ , default='bert-base-cased' , help='Path to pretrained model or model identifier from huggingface.co/models.' , required=UpperCAmelCase__ , ) parser.add_argument( '--output_dir' , type=UpperCAmelCase__ , default='.' , help='Optional save directory where all checkpoint folders will be stored. Default is the current working directory.' , ) parser.add_argument( '--performance_lower_bound' , type=UpperCAmelCase__ , default=UpperCAmelCase__ , help='Optional lower bound for the performance metric. If set, the training will throw error when the performance metric drops below this value.' , ) parser.add_argument( '--num_epochs' , type=UpperCAmelCase__ , default=3 , help='Number of train epochs.' , ) UpperCamelCase_: int = parser.parse_args() UpperCamelCase_: List[Any] = {'lr': 2E-5, 'num_epochs': args.num_epochs, 'seed': 4_2, 'batch_size': 1_6} training_function(UpperCAmelCase__ , UpperCAmelCase__ ) if __name__ == "__main__": main()
57
import math from typing import Any, Callable, List, Optional, Tuple, Union import numpy as np import torch from ...models import TaFilmDecoder from ...schedulers import DDPMScheduler from ...utils import is_onnx_available, logging, randn_tensor if is_onnx_available(): from ..onnx_utils import OnnxRuntimeModel from ..pipeline_utils import AudioPipelineOutput, DiffusionPipeline from .continous_encoder import SpectrogramContEncoder from .notes_encoder import SpectrogramNotesEncoder A_ : List[Any] = logging.get_logger(__name__) # pylint: disable=invalid-name A_ : Optional[int] = 256 class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Union[str, Any] =['''melgan'''] def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , ): super().__init__() # From MELGAN UpperCamelCase_: Any = math.log(1e-5 ) # Matches MelGAN training. UpperCamelCase_: List[Any] = 4.0 # Largest value for most examples UpperCamelCase_: Tuple = 1_2_8 self.register_modules( notes_encoder=_lowerCamelCase , continuous_encoder=_lowerCamelCase , decoder=_lowerCamelCase , scheduler=_lowerCamelCase , melgan=_lowerCamelCase , ) def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = output_range if clip: UpperCamelCase_: int = torch.clip(_lowerCamelCase , self.min_value , self.max_value ) # Scale to [0, 1]. UpperCamelCase_: List[Any] = (features - self.min_value) / (self.max_value - self.min_value) # Scale to [min_out, max_out]. return zero_one * (max_out - min_out) + min_out def _a ( self , _lowerCamelCase , _lowerCamelCase=(-1.0, 1.0) , _lowerCamelCase=False ): UpperCamelCase_ ,UpperCamelCase_: Dict = input_range UpperCamelCase_: List[str] = torch.clip(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) if clip else outputs # Scale to [0, 1]. UpperCamelCase_: Optional[Any] = (outputs - min_out) / (max_out - min_out) # Scale to [self.min_value, self.max_value]. return zero_one * (self.max_value - self.min_value) + self.min_value def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = input_tokens > 0 UpperCamelCase_ ,UpperCamelCase_: Tuple = self.notes_encoder( encoder_input_tokens=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_: Any = self.continuous_encoder( encoder_inputs=_lowerCamelCase , encoder_inputs_mask=_lowerCamelCase ) return [(tokens_encoded, tokens_mask), (continuous_encoded, continuous_mask)] def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = noise_time if not torch.is_tensor(_lowerCamelCase ): UpperCamelCase_: List[str] = torch.tensor([timesteps] , dtype=torch.long , device=input_tokens.device ) elif torch.is_tensor(_lowerCamelCase ) and len(timesteps.shape ) == 0: UpperCamelCase_: Dict = timesteps[None].to(input_tokens.device ) # broadcast to batch dimension in a way that's compatible with ONNX/Core ML UpperCamelCase_: Union[str, Any] = timesteps * torch.ones(input_tokens.shape[0] , dtype=timesteps.dtype , device=timesteps.device ) UpperCamelCase_: Any = self.decoder( encodings_and_masks=_lowerCamelCase , decoder_input_tokens=_lowerCamelCase , decoder_noise_time=_lowerCamelCase ) return logits @torch.no_grad() def __call__( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = 1_0_0 , _lowerCamelCase = True , _lowerCamelCase = "numpy" , _lowerCamelCase = None , _lowerCamelCase = 1 , ): if (callback_steps is None) or ( callback_steps is not None and (not isinstance(_lowerCamelCase , _lowerCamelCase ) or callback_steps <= 0) ): raise ValueError( f'''`callback_steps` has to be a positive integer but is {callback_steps} of type''' f''' {type(_lowerCamelCase )}.''' ) UpperCamelCase_: List[str] = np.zeros([1, TARGET_FEATURE_LENGTH, self.n_dims] , dtype=np.floataa ) UpperCamelCase_: str = np.zeros([1, 0, self.n_dims] , np.floataa ) UpperCamelCase_: Dict = torch.ones((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) for i, encoder_input_tokens in enumerate(_lowerCamelCase ): if i == 0: UpperCamelCase_: str = torch.from_numpy(pred_mel[:1].copy() ).to( device=self.device , dtype=self.decoder.dtype ) # The first chunk has no previous context. UpperCamelCase_: Tuple = torch.zeros((1, TARGET_FEATURE_LENGTH) , dtype=_lowerCamelCase , device=self.device ) else: # The full song pipeline does not feed in a context feature, so the mask # will be all 0s after the feature converter. Because we know we're # feeding in a full context chunk from the previous prediction, set it # to all 1s. UpperCamelCase_: Any = ones UpperCamelCase_: str = self.scale_features( _lowerCamelCase , output_range=[-1.0, 1.0] , clip=_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = self.encode( input_tokens=torch.IntTensor([encoder_input_tokens] ).to(device=self.device ) , continuous_inputs=_lowerCamelCase , continuous_mask=_lowerCamelCase , ) # Sample encoder_continuous_inputs shaped gaussian noise to begin loop UpperCamelCase_: List[str] = randn_tensor( shape=encoder_continuous_inputs.shape , generator=_lowerCamelCase , device=self.device , dtype=self.decoder.dtype , ) # set step values self.scheduler.set_timesteps(_lowerCamelCase ) # Denoising diffusion loop for j, t in enumerate(self.progress_bar(self.scheduler.timesteps ) ): UpperCamelCase_: int = self.decode( encodings_and_masks=_lowerCamelCase , input_tokens=_lowerCamelCase , noise_time=t / self.scheduler.config.num_train_timesteps , ) # Compute previous output: x_t -> x_t-1 UpperCamelCase_: Tuple = self.scheduler.step(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , generator=_lowerCamelCase ).prev_sample UpperCamelCase_: List[Any] = self.scale_to_features(_lowerCamelCase , input_range=[-1.0, 1.0] ) UpperCamelCase_: Any = mel[:1] UpperCamelCase_: List[str] = mel.cpu().float().numpy() UpperCamelCase_: Tuple = np.concatenate([full_pred_mel, pred_mel[:1]] , axis=1 ) # call the callback, if provided if callback is not None and i % callback_steps == 0: callback(_lowerCamelCase , _lowerCamelCase ) logger.info('Generated segment' , _lowerCamelCase ) if output_type == "numpy" and not is_onnx_available(): raise ValueError( 'Cannot return output in \'np\' format if ONNX is not available. Make sure to have ONNX installed or set \'output_type\' to \'mel\'.' ) elif output_type == "numpy" and self.melgan is None: raise ValueError( 'Cannot return output in \'np\' format if melgan component is not defined. Make sure to define `self.melgan` or set \'output_type\' to \'mel\'.' ) if output_type == "numpy": UpperCamelCase_: int = self.melgan(input_features=full_pred_mel.astype(np.floataa ) ) else: UpperCamelCase_: int = full_pred_mel if not return_dict: return (output,) return AudioPipelineOutput(audios=_lowerCamelCase )
57
1
import warnings from ...utils import logging from .image_processing_clip import CLIPImageProcessor A_ : int = logging.get_logger(__name__) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" def __init__( self , *_lowerCamelCase , **_lowerCamelCase ): warnings.warn( 'The class CLIPFeatureExtractor is deprecated and will be removed in version 5 of Transformers. Please' ' use CLIPImageProcessor instead.' , _lowerCamelCase , ) super().__init__(*_lowerCamelCase , **_lowerCamelCase )
57
import itertools from dataclasses import dataclass from typing import Any, Callable, Dict, List, Optional, Union import pandas as pd import pyarrow as pa import datasets import datasets.config from datasets.features.features import require_storage_cast from datasets.table import table_cast from datasets.utils.py_utils import Literal A_ : Union[str, Any] = datasets.utils.logging.get_logger(__name__) A_ : Optional[Any] = ['names', 'prefix'] A_ : List[str] = ['warn_bad_lines', 'error_bad_lines', 'mangle_dupe_cols'] A_ : List[Any] = ['encoding_errors', 'on_bad_lines'] A_ : Optional[Any] = ['date_format'] @dataclass class _lowerCAmelCase( datasets.BuilderConfig ): """simple docstring""" a : str ="," a : Optional[str] =None a : Optional[Union[int, List[int], str]] ="infer" a : Optional[List[str]] =None a : Optional[List[str]] =None a : Optional[Union[int, str, List[int], List[str]]] =None a : Optional[Union[List[int], List[str]]] =None a : Optional[str] =None a : bool =True a : Optional[Literal["c", "python", "pyarrow"]] =None a : Dict[Union[int, str], Callable[[Any], Any]] =None a : Optional[list] =None a : Optional[list] =None a : bool =False a : Optional[Union[int, List[int]]] =None a : Optional[int] =None a : Optional[Union[str, List[str]]] =None a : bool =True a : bool =True a : bool =False a : bool =True a : Optional[str] =None a : str ="." a : Optional[str] =None a : str ='"' a : int =0 a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : Optional[str] =None a : bool =True a : bool =True a : int =0 a : bool =True a : bool =False a : Optional[str] =None a : int =10000 a : Optional[datasets.Features] =None a : Optional[str] ="strict" a : Literal["error", "warn", "skip"] ="error" a : Optional[str] =None def _a ( self ): if self.delimiter is not None: UpperCamelCase_: Optional[Any] = self.delimiter if self.column_names is not None: UpperCamelCase_: int = self.column_names @property def _a ( self ): UpperCamelCase_: Any = { 'sep': self.sep, 'header': self.header, 'names': self.names, 'index_col': self.index_col, 'usecols': self.usecols, 'prefix': self.prefix, 'mangle_dupe_cols': self.mangle_dupe_cols, 'engine': self.engine, 'converters': self.converters, 'true_values': self.true_values, 'false_values': self.false_values, 'skipinitialspace': self.skipinitialspace, 'skiprows': self.skiprows, 'nrows': self.nrows, 'na_values': self.na_values, 'keep_default_na': self.keep_default_na, 'na_filter': self.na_filter, 'verbose': self.verbose, 'skip_blank_lines': self.skip_blank_lines, 'thousands': self.thousands, 'decimal': self.decimal, 'lineterminator': self.lineterminator, 'quotechar': self.quotechar, 'quoting': self.quoting, 'escapechar': self.escapechar, 'comment': self.comment, 'encoding': self.encoding, 'dialect': self.dialect, 'error_bad_lines': self.error_bad_lines, 'warn_bad_lines': self.warn_bad_lines, 'skipfooter': self.skipfooter, 'doublequote': self.doublequote, 'memory_map': self.memory_map, 'float_precision': self.float_precision, 'chunksize': self.chunksize, 'encoding_errors': self.encoding_errors, 'on_bad_lines': self.on_bad_lines, 'date_format': self.date_format, } # some kwargs must not be passed if they don't have a default value # some others are deprecated and we can also not pass them if they are the default value for pd_read_csv_parameter in _PANDAS_READ_CSV_NO_DEFAULT_PARAMETERS + _PANDAS_READ_CSV_DEPRECATED_PARAMETERS: if pd_read_csv_kwargs[pd_read_csv_parameter] == getattr(CsvConfig() , _lowerCamelCase ): del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 2.0 new arguments if not (datasets.config.PANDAS_VERSION.major >= 2): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_2_0_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] # Remove 1.3 new arguments if not (datasets.config.PANDAS_VERSION.major >= 1 and datasets.config.PANDAS_VERSION.minor >= 3): for pd_read_csv_parameter in _PANDAS_READ_CSV_NEW_1_3_0_PARAMETERS: del pd_read_csv_kwargs[pd_read_csv_parameter] return pd_read_csv_kwargs class _lowerCAmelCase( datasets.ArrowBasedBuilder ): """simple docstring""" a : Dict =CsvConfig def _a ( self ): return datasets.DatasetInfo(features=self.config.features ) def _a ( self , _lowerCamelCase ): if not self.config.data_files: raise ValueError(f'''At least one data file must be specified, but got data_files={self.config.data_files}''' ) UpperCamelCase_: Tuple = dl_manager.download_and_extract(self.config.data_files ) if isinstance(_lowerCamelCase , (str, list, tuple) ): UpperCamelCase_: List[Any] = data_files if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: str = [files] UpperCamelCase_: Tuple = [dl_manager.iter_files(_lowerCamelCase ) for file in files] return [datasets.SplitGenerator(name=datasets.Split.TRAIN , gen_kwargs={'files': files} )] UpperCamelCase_: Tuple = [] for split_name, files in data_files.items(): if isinstance(_lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Dict = [files] UpperCamelCase_: int = [dl_manager.iter_files(_lowerCamelCase ) for file in files] splits.append(datasets.SplitGenerator(name=_lowerCamelCase , gen_kwargs={'files': files} ) ) return splits def _a ( self , _lowerCamelCase ): if self.config.features is not None: UpperCamelCase_: List[Any] = self.config.features.arrow_schema if all(not require_storage_cast(_lowerCamelCase ) for feature in self.config.features.values() ): # cheaper cast UpperCamelCase_: Optional[int] = pa.Table.from_arrays([pa_table[field.name] for field in schema] , schema=_lowerCamelCase ) else: # more expensive cast; allows str <-> int/float or str to Audio for example UpperCamelCase_: int = table_cast(_lowerCamelCase , _lowerCamelCase ) return pa_table def _a ( self , _lowerCamelCase ): UpperCamelCase_: List[str] = self.config.features.arrow_schema if self.config.features else None # dtype allows reading an int column as str UpperCamelCase_: Dict = ( { name: dtype.to_pandas_dtype() if not require_storage_cast(_lowerCamelCase ) else object for name, dtype, feature in zip(schema.names , schema.types , self.config.features.values() ) } if schema is not None else None ) for file_idx, file in enumerate(itertools.chain.from_iterable(_lowerCamelCase ) ): UpperCamelCase_: Optional[Any] = pd.read_csv(_lowerCamelCase , iterator=_lowerCamelCase , dtype=_lowerCamelCase , **self.config.pd_read_csv_kwargs ) try: for batch_idx, df in enumerate(_lowerCamelCase ): UpperCamelCase_: Union[str, Any] = pa.Table.from_pandas(_lowerCamelCase ) # Uncomment for debugging (will print the Arrow table size and elements) # logger.warning(f"pa_table: {pa_table} num rows: {pa_table.num_rows}") # logger.warning('\n'.join(str(pa_table.slice(i, 1).to_pydict()) for i in range(pa_table.num_rows))) yield (file_idx, batch_idx), self._cast_table(_lowerCamelCase ) except ValueError as e: logger.error(f'''Failed to read file \'{file}\' with error {type(_lowerCamelCase )}: {e}''' ) raise
57
1
from __future__ import annotations import math from collections import Counter from string import ascii_lowercase def snake_case (UpperCAmelCase__ ) -> None: UpperCamelCase_ ,UpperCamelCase_: Optional[Any] = analyze_text(UpperCAmelCase__ ) UpperCamelCase_: Any = list(' ' + ascii_lowercase ) # what is our total sum of probabilities. UpperCamelCase_: Any = sum(single_char_strings.values() ) # one length string UpperCamelCase_: List[Any] = 0 # for each alpha we go in our dict and if it is in it we calculate entropy for ch in my_alphas: if ch in single_char_strings: UpperCamelCase_: Any = single_char_strings[ch] UpperCamelCase_: Dict = my_str / all_sum my_fir_sum += prob * math.loga(UpperCAmelCase__ ) # entropy formula. # print entropy print(F'''{round(-1 * my_fir_sum ):.1f}''' ) # two len string UpperCamelCase_: Optional[int] = sum(two_char_strings.values() ) UpperCamelCase_: List[str] = 0 # for each alpha (two in size) calculate entropy. for cha in my_alphas: for cha in my_alphas: UpperCamelCase_: Optional[Any] = cha + cha if sequence in two_char_strings: UpperCamelCase_: int = two_char_strings[sequence] UpperCamelCase_: Any = int(UpperCAmelCase__ ) / all_sum my_sec_sum += prob * math.loga(UpperCAmelCase__ ) # print second entropy print(F'''{round(-1 * my_sec_sum ):.1f}''' ) # print the difference between them print(F'''{round((-1 * my_sec_sum) - (-1 * my_fir_sum) ):.1f}''' ) def snake_case (UpperCAmelCase__ ) -> tuple[dict, dict]: UpperCamelCase_: List[str] = Counter() # type: ignore UpperCamelCase_: List[str] = Counter() # type: ignore single_char_strings[text[-1]] += 1 # first case when we have space at start. two_char_strings[" " + text[0]] += 1 for i in range(0 , len(UpperCAmelCase__ ) - 1 ): single_char_strings[text[i]] += 1 two_char_strings[text[i : i + 2]] += 1 return single_char_strings, two_char_strings def snake_case () -> Union[str, Any]: import doctest doctest.testmod() # text = ( # "Had repulsive dashwoods suspicion sincerity but advantage now him. Remark " # "easily garret nor nay. Civil those mrs enjoy shy fat merry. You greatest " # "jointure saw horrible. He private he on be imagine suppose. Fertile " # "beloved evident through no service elderly is. Blind there if every no so " # "at. Own neglected you preferred way sincerity delivered his attempted. To " # "of message cottage windows do besides against uncivil. Delightful " # "unreserved impossible few estimating men favourable see entreaties. She " # "propriety immediate was improving. He or entrance humoured likewise " # "moderate. Much nor game son say feel. Fat make met can must form into " # "gate. Me we offending prevailed discovery. " # ) # calculate_prob(text) if __name__ == "__main__": main()
57
from ...configuration_utils import PretrainedConfig from ...utils import logging A_ : str = logging.get_logger(__name__) A_ : Union[str, Any] = { 's-JoL/Open-Llama-V1': 'https://huggingface.co/s-JoL/Open-Llama-V1/blob/main/config.json', } class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Tuple ='''open-llama''' def __init__( self , _lowerCamelCase=1_0_0_0_0_0 , _lowerCamelCase=4_0_9_6 , _lowerCamelCase=1_1_0_0_8 , _lowerCamelCase=3_2 , _lowerCamelCase=3_2 , _lowerCamelCase="silu" , _lowerCamelCase=2_0_4_8 , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-6 , _lowerCamelCase=True , _lowerCamelCase=0 , _lowerCamelCase=1 , _lowerCamelCase=2 , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.1 , _lowerCamelCase=0.1 , _lowerCamelCase=True , _lowerCamelCase=True , _lowerCamelCase=None , **_lowerCamelCase , ): UpperCamelCase_: int = vocab_size UpperCamelCase_: List[Any] = max_position_embeddings UpperCamelCase_: Dict = hidden_size UpperCamelCase_: Dict = intermediate_size UpperCamelCase_: Union[str, Any] = num_hidden_layers UpperCamelCase_: Dict = num_attention_heads UpperCamelCase_: Union[str, Any] = hidden_act UpperCamelCase_: Union[str, Any] = initializer_range UpperCamelCase_: List[Any] = rms_norm_eps UpperCamelCase_: Union[str, Any] = use_cache UpperCamelCase_: Dict = kwargs.pop( 'use_memorry_efficient_attention' , _lowerCamelCase ) UpperCamelCase_: Union[str, Any] = hidden_dropout_prob UpperCamelCase_: Any = attention_dropout_prob UpperCamelCase_: int = use_stable_embedding UpperCamelCase_: Tuple = shared_input_output_embedding UpperCamelCase_: str = rope_scaling self._rope_scaling_validation() super().__init__( pad_token_id=_lowerCamelCase , bos_token_id=_lowerCamelCase , eos_token_id=_lowerCamelCase , tie_word_embeddings=_lowerCamelCase , **_lowerCamelCase , ) def _a ( self ): if self.rope_scaling is None: return if not isinstance(self.rope_scaling , _lowerCamelCase ) or len(self.rope_scaling ) != 2: raise ValueError( '`rope_scaling` must be a dictionary with with two fields, `name` and `factor`, ' f'''got {self.rope_scaling}''' ) UpperCamelCase_: str = self.rope_scaling.get('type' , _lowerCamelCase ) UpperCamelCase_: int = self.rope_scaling.get('factor' , _lowerCamelCase ) if rope_scaling_type is None or rope_scaling_type not in ["linear", "dynamic"]: raise ValueError( f'''`rope_scaling`\'s name field must be one of [\'linear\', \'dynamic\'], got {rope_scaling_type}''' ) if rope_scaling_factor is None or not isinstance(_lowerCamelCase , _lowerCamelCase ) or rope_scaling_factor <= 1.0: raise ValueError(f'''`rope_scaling`\'s factor field must be an float > 1, got {rope_scaling_factor}''' )
57
1
import argparse import tensorflow as tf import torch from transformers import BertConfig, BertForMaskedLM from transformers.models.bert.modeling_bert import ( BertIntermediate, BertLayer, BertOutput, BertPooler, BertSelfAttention, BertSelfOutput, ) from transformers.utils import logging logging.set_verbosity_info() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[int]: def get_masked_lm_array(UpperCAmelCase__ ): UpperCamelCase_: str = F'''masked_lm/{name}/.ATTRIBUTES/VARIABLE_VALUE''' UpperCamelCase_: Any = tf.train.load_variable(UpperCAmelCase__ , UpperCAmelCase__ ) if "kernel" in name: UpperCamelCase_: Any = array.transpose() return torch.from_numpy(UpperCAmelCase__ ) def get_encoder_array(UpperCAmelCase__ ): UpperCamelCase_: Optional[Any] = F'''encoder/{name}/.ATTRIBUTES/VARIABLE_VALUE''' UpperCamelCase_: Tuple = tf.train.load_variable(UpperCAmelCase__ , UpperCAmelCase__ ) if "kernel" in name: UpperCamelCase_: Dict = array.transpose() return torch.from_numpy(UpperCAmelCase__ ) def get_encoder_layer_array(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: List[str] = F'''encoder/_transformer_layers/{layer_index}/{name}/.ATTRIBUTES/VARIABLE_VALUE''' UpperCamelCase_: Optional[Any] = tf.train.load_variable(UpperCAmelCase__ , UpperCAmelCase__ ) if "kernel" in name: UpperCamelCase_: List[Any] = array.transpose() return torch.from_numpy(UpperCAmelCase__ ) def get_encoder_attention_layer_array(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: str = F'''encoder/_transformer_layers/{layer_index}/_attention_layer/{name}/.ATTRIBUTES/VARIABLE_VALUE''' UpperCamelCase_: Optional[int] = tf.train.load_variable(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Any = array.reshape(UpperCAmelCase__ ) if "kernel" in name: UpperCamelCase_: Tuple = array.transpose() return torch.from_numpy(UpperCAmelCase__ ) print(F'''Loading model based on config from {config_path}...''' ) UpperCamelCase_: Optional[Any] = BertConfig.from_json_file(UpperCAmelCase__ ) UpperCamelCase_: Dict = BertForMaskedLM(UpperCAmelCase__ ) # Layers for layer_index in range(0 , config.num_hidden_layers ): UpperCamelCase_: BertLayer = model.bert.encoder.layer[layer_index] # Self-attention UpperCamelCase_: BertSelfAttention = layer.attention.self UpperCamelCase_: Any = get_encoder_attention_layer_array( UpperCAmelCase__ , '_query_dense/kernel' , self_attn.query.weight.data.shape ) UpperCamelCase_: Union[str, Any] = get_encoder_attention_layer_array( UpperCAmelCase__ , '_query_dense/bias' , self_attn.query.bias.data.shape ) UpperCamelCase_: Optional[Any] = get_encoder_attention_layer_array( UpperCAmelCase__ , '_key_dense/kernel' , self_attn.key.weight.data.shape ) UpperCamelCase_: int = get_encoder_attention_layer_array( UpperCAmelCase__ , '_key_dense/bias' , self_attn.key.bias.data.shape ) UpperCamelCase_: List[str] = get_encoder_attention_layer_array( UpperCAmelCase__ , '_value_dense/kernel' , self_attn.value.weight.data.shape ) UpperCamelCase_: List[Any] = get_encoder_attention_layer_array( UpperCAmelCase__ , '_value_dense/bias' , self_attn.value.bias.data.shape ) # Self-attention Output UpperCamelCase_: BertSelfOutput = layer.attention.output UpperCamelCase_: Dict = get_encoder_attention_layer_array( UpperCAmelCase__ , '_output_dense/kernel' , self_output.dense.weight.data.shape ) UpperCamelCase_: Any = get_encoder_attention_layer_array( UpperCAmelCase__ , '_output_dense/bias' , self_output.dense.bias.data.shape ) UpperCamelCase_: Tuple = get_encoder_layer_array(UpperCAmelCase__ , '_attention_layer_norm/gamma' ) UpperCamelCase_: Any = get_encoder_layer_array(UpperCAmelCase__ , '_attention_layer_norm/beta' ) # Intermediate UpperCamelCase_: BertIntermediate = layer.intermediate UpperCamelCase_: Tuple = get_encoder_layer_array(UpperCAmelCase__ , '_intermediate_dense/kernel' ) UpperCamelCase_: Any = get_encoder_layer_array(UpperCAmelCase__ , '_intermediate_dense/bias' ) # Output UpperCamelCase_: BertOutput = layer.output UpperCamelCase_: Any = get_encoder_layer_array(UpperCAmelCase__ , '_output_dense/kernel' ) UpperCamelCase_: List[Any] = get_encoder_layer_array(UpperCAmelCase__ , '_output_dense/bias' ) UpperCamelCase_: Tuple = get_encoder_layer_array(UpperCAmelCase__ , '_output_layer_norm/gamma' ) UpperCamelCase_: Any = get_encoder_layer_array(UpperCAmelCase__ , '_output_layer_norm/beta' ) # Embeddings UpperCamelCase_: Any = get_encoder_array('_position_embedding_layer/embeddings' ) UpperCamelCase_: List[str] = get_encoder_array('_type_embedding_layer/embeddings' ) UpperCamelCase_: Optional[int] = get_encoder_array('_embedding_norm_layer/gamma' ) UpperCamelCase_: int = get_encoder_array('_embedding_norm_layer/beta' ) # LM Head UpperCamelCase_: Tuple = model.cls.predictions.transform UpperCamelCase_: str = get_masked_lm_array('dense/kernel' ) UpperCamelCase_: List[Any] = get_masked_lm_array('dense/bias' ) UpperCamelCase_: int = get_masked_lm_array('layer_norm/gamma' ) UpperCamelCase_: Union[str, Any] = get_masked_lm_array('layer_norm/beta' ) UpperCamelCase_: Optional[Any] = get_masked_lm_array('embedding_table' ) # Pooling UpperCamelCase_: List[str] = BertPooler(config=UpperCAmelCase__ ) UpperCamelCase_: BertPooler = get_encoder_array('_pooler_layer/kernel' ) UpperCamelCase_: BertPooler = get_encoder_array('_pooler_layer/bias' ) # Export final model model.save_pretrained(UpperCAmelCase__ ) # Integration test - should load without any errors ;) UpperCamelCase_: Tuple = BertForMaskedLM.from_pretrained(UpperCAmelCase__ ) print(new_model.eval() ) print('Model conversion was done sucessfully!' ) if __name__ == "__main__": A_ : Tuple = argparse.ArgumentParser() parser.add_argument( '--tf_checkpoint_path', type=str, required=True, help='Path to the TensorFlow Token Dropping checkpoint path.' ) parser.add_argument( '--bert_config_file', type=str, required=True, help='The config json file corresponding to the BERT model. This specifies the model architecture.', ) parser.add_argument( '--pytorch_dump_path', type=str, required=True, help='Path to the output PyTorch model.', ) A_ : Tuple = parser.parse_args() convert_checkpoint_to_pytorch(args.tf_checkpoint_path, args.bert_config_file, args.pytorch_dump_path)
57
import collections import inspect import unittest from transformers import FocalNetConfig from transformers.testing_utils import require_torch, require_vision, slow, torch_device from transformers.utils import cached_property, is_torch_available, is_vision_available from ...test_backbone_common import BackboneTesterMixin from ...test_configuration_common import ConfigTester from ...test_modeling_common import ModelTesterMixin, _config_zero_init, floats_tensor, ids_tensor from ...test_pipeline_mixin import PipelineTesterMixin if is_torch_available(): import torch from torch import nn from transformers import ( FocalNetBackbone, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetModel, ) from transformers.models.focalnet.modeling_focalnet import FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST if is_vision_available(): from PIL import Image from transformers import AutoImageProcessor class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase=1_3 , _lowerCamelCase=3_2 , _lowerCamelCase=2 , _lowerCamelCase=3 , _lowerCamelCase=1_6 , _lowerCamelCase=[3_2, 6_4, 1_2_8] , _lowerCamelCase=[1, 2, 1] , _lowerCamelCase=[2, 2, 4] , _lowerCamelCase=2 , _lowerCamelCase=2.0 , _lowerCamelCase=True , _lowerCamelCase=0.0 , _lowerCamelCase=0.0 , _lowerCamelCase=0.1 , _lowerCamelCase="gelu" , _lowerCamelCase=False , _lowerCamelCase=True , _lowerCamelCase=0.0_2 , _lowerCamelCase=1e-5 , _lowerCamelCase=True , _lowerCamelCase=None , _lowerCamelCase=True , _lowerCamelCase=1_0 , _lowerCamelCase=8 , _lowerCamelCase=["stage1", "stage2"] , _lowerCamelCase=[1, 2] , ): UpperCamelCase_: Tuple = parent UpperCamelCase_: Dict = batch_size UpperCamelCase_: List[str] = image_size UpperCamelCase_: Tuple = patch_size UpperCamelCase_: Tuple = num_channels UpperCamelCase_: Dict = embed_dim UpperCamelCase_: List[Any] = hidden_sizes UpperCamelCase_: List[str] = depths UpperCamelCase_: List[str] = num_heads UpperCamelCase_: Optional[int] = window_size UpperCamelCase_: Tuple = mlp_ratio UpperCamelCase_: Dict = qkv_bias UpperCamelCase_: str = hidden_dropout_prob UpperCamelCase_: Optional[Any] = attention_probs_dropout_prob UpperCamelCase_: int = drop_path_rate UpperCamelCase_: Dict = hidden_act UpperCamelCase_: List[str] = use_absolute_embeddings UpperCamelCase_: Dict = patch_norm UpperCamelCase_: Optional[Any] = layer_norm_eps UpperCamelCase_: List[str] = initializer_range UpperCamelCase_: List[Any] = is_training UpperCamelCase_: Optional[int] = scope UpperCamelCase_: str = use_labels UpperCamelCase_: List[str] = type_sequence_label_size UpperCamelCase_: Union[str, Any] = encoder_stride UpperCamelCase_: Dict = out_features UpperCamelCase_: str = out_indices def _a ( self ): UpperCamelCase_: int = floats_tensor([self.batch_size, self.num_channels, self.image_size, self.image_size] ) UpperCamelCase_: List[Any] = None if self.use_labels: UpperCamelCase_: Any = ids_tensor([self.batch_size] , self.type_sequence_label_size ) UpperCamelCase_: Optional[Any] = self.get_config() return config, pixel_values, labels def _a ( self ): return FocalNetConfig( image_size=self.image_size , patch_size=self.patch_size , num_channels=self.num_channels , embed_dim=self.embed_dim , hidden_sizes=self.hidden_sizes , depths=self.depths , num_heads=self.num_heads , window_size=self.window_size , mlp_ratio=self.mlp_ratio , qkv_bias=self.qkv_bias , hidden_dropout_prob=self.hidden_dropout_prob , attention_probs_dropout_prob=self.attention_probs_dropout_prob , drop_path_rate=self.drop_path_rate , hidden_act=self.hidden_act , use_absolute_embeddings=self.use_absolute_embeddings , path_norm=self.patch_norm , layer_norm_eps=self.layer_norm_eps , initializer_range=self.initializer_range , encoder_stride=self.encoder_stride , out_features=self.out_features , out_indices=self.out_indices , ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Optional[int] = FocalNetModel(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: int = model(_lowerCamelCase ) UpperCamelCase_: int = ((config.image_size // config.patch_size) ** 2) // (4 ** (len(config.depths ) - 1)) UpperCamelCase_: int = int(config.embed_dim * 2 ** (len(config.depths ) - 1) ) self.parent.assertEqual(result.last_hidden_state.shape , (self.batch_size, expected_seq_len, expected_dim) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: List[str] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , len(config.out_features ) ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size, 8, 8] ) # verify channels self.parent.assertEqual(len(model.channels ) , len(config.out_features ) ) self.parent.assertListEqual(model.channels , config.hidden_sizes[:-1] ) # verify backbone works with out_features=None UpperCamelCase_: int = None UpperCamelCase_: List[Any] = FocalNetBackbone(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) # verify feature maps self.parent.assertEqual(len(result.feature_maps ) , 1 ) self.parent.assertListEqual(list(result.feature_maps[0].shape ) , [self.batch_size, self.image_size * 2, 4, 4] ) # verify channels self.parent.assertEqual(len(model.channels ) , 1 ) self.parent.assertListEqual(model.channels , [config.hidden_sizes[-1]] ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = FocalNetForMaskedImageModeling(config=_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Any = model(_lowerCamelCase ) self.parent.assertEqual( result.reconstruction.shape , (self.batch_size, self.num_channels, self.image_size, self.image_size) ) # test greyscale images UpperCamelCase_: List[Any] = 1 UpperCamelCase_: Dict = FocalNetForMaskedImageModeling(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Optional[int] = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.reconstruction.shape , (self.batch_size, 1, self.image_size, self.image_size) ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = self.type_sequence_label_size UpperCamelCase_: List[Any] = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: str = model(_lowerCamelCase , labels=_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) # test greyscale images UpperCamelCase_: Union[str, Any] = 1 UpperCamelCase_: Dict = FocalNetForImageClassification(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() UpperCamelCase_: Dict = floats_tensor([self.batch_size, 1, self.image_size, self.image_size] ) UpperCamelCase_: Union[str, Any] = model(_lowerCamelCase ) self.parent.assertEqual(result.logits.shape , (self.batch_size, self.type_sequence_label_size) ) def _a ( self ): UpperCamelCase_: Dict = self.prepare_config_and_inputs() UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: List[str] = config_and_inputs UpperCamelCase_: int = {'pixel_values': pixel_values} return config, inputs_dict @require_torch class _lowerCAmelCase( UpperCAmelCase_ , UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[int] =( ( FocalNetModel, FocalNetForImageClassification, FocalNetForMaskedImageModeling, FocalNetBackbone, ) if is_torch_available() else () ) a : Any =( {'''feature-extraction''': FocalNetModel, '''image-classification''': FocalNetForImageClassification} if is_torch_available() else {} ) a : Dict =False a : Union[str, Any] =False a : Tuple =False a : Optional[int] =False a : Union[str, Any] =False def _a ( self ): UpperCamelCase_: str = FocalNetModelTester(self ) UpperCamelCase_: Tuple = ConfigTester(self , config_class=_lowerCamelCase , embed_dim=3_7 , has_text_modality=_lowerCamelCase ) def _a ( self ): self.create_and_test_config_common_properties() self.config_tester.create_and_test_config_to_json_string() self.config_tester.create_and_test_config_to_json_file() self.config_tester.create_and_test_config_from_and_save_pretrained() self.config_tester.create_and_test_config_with_num_labels() self.config_tester.check_config_can_be_init_without_params() self.config_tester.check_config_arguments_init() def _a ( self ): return def _a ( self ): UpperCamelCase_: Optional[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_model(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_backbone(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Optional[int] = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_masked_image_modeling(*_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Any = self.model_tester.prepare_config_and_inputs() self.model_tester.create_and_check_for_image_classification(*_lowerCamelCase ) @unittest.skip(reason='FocalNet does not use inputs_embeds' ) def _a ( self ): pass @unittest.skip(reason='FocalNet does not use feedforward chunking' ) def _a ( self ): pass def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: List[Any] = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Union[str, Any] = model_class(_lowerCamelCase ) self.assertIsInstance(model.get_input_embeddings() , (nn.Module) ) UpperCamelCase_: List[str] = model.get_output_embeddings() self.assertTrue(x is None or isinstance(_lowerCamelCase , nn.Linear ) ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Tuple = self.model_tester.prepare_config_and_inputs_for_common() for model_class in self.all_model_classes[:-1]: UpperCamelCase_: List[Any] = model_class(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = inspect.signature(model.forward ) # signature.parameters is an OrderedDict => so arg_names order is deterministic UpperCamelCase_: Any = [*signature.parameters.keys()] UpperCamelCase_: List[Any] = ['pixel_values'] self.assertListEqual(arg_names[:1] , _lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): UpperCamelCase_: Tuple = model_class(_lowerCamelCase ) model.to(_lowerCamelCase ) model.eval() with torch.no_grad(): UpperCamelCase_: Tuple = model(**self._prepare_for_class(_lowerCamelCase , _lowerCamelCase ) ) UpperCamelCase_: Union[str, Any] = outputs.hidden_states UpperCamelCase_: Tuple = getattr( self.model_tester , 'expected_num_hidden_layers' , len(self.model_tester.depths ) + 1 ) self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) # FocalNet has a different seq_length UpperCamelCase_: Optional[Any] = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: int = (image_size[1] // patch_size[1]) * (image_size[0] // patch_size[0]) self.assertListEqual( list(hidden_states[0].shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) UpperCamelCase_: Dict = outputs.reshaped_hidden_states self.assertEqual(len(_lowerCamelCase ) , _lowerCamelCase ) UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_ ,UpperCamelCase_: int = reshaped_hidden_states[0].shape UpperCamelCase_: List[str] = ( reshaped_hidden_states[0].view(_lowerCamelCase , _lowerCamelCase , height * width ).permute(0 , 2 , 1 ) ) self.assertListEqual( list(reshaped_hidden_states.shape[-2:] ) , [num_patches, self.model_tester.embed_dim] , ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: int = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: int = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: str = 3 UpperCamelCase_: Any = ( self.model_tester.image_size if isinstance(self.model_tester.image_size , collections.abc.Iterable ) else (self.model_tester.image_size, self.model_tester.image_size) ) UpperCamelCase_: int = ( config.patch_size if isinstance(config.patch_size , collections.abc.Iterable ) else (config.patch_size, config.patch_size) ) UpperCamelCase_: List[Any] = image_size[0] + patch_size[0] - (image_size[0] % patch_size[0]) UpperCamelCase_: str = image_size[1] + patch_size[1] - (image_size[1] % patch_size[1]) for model_class in self.all_model_classes[:-1]: UpperCamelCase_: Dict = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) # check that output_hidden_states also work using config del inputs_dict["output_hidden_states"] UpperCamelCase_: Optional[Any] = True self.check_hidden_states_output(_lowerCamelCase , _lowerCamelCase , _lowerCamelCase , (padded_height, padded_width) ) @slow def _a ( self ): for model_name in FOCALNET_PRETRAINED_MODEL_ARCHIVE_LIST[:1]: UpperCamelCase_: List[Any] = FocalNetModel.from_pretrained(_lowerCamelCase ) self.assertIsNotNone(_lowerCamelCase ) def _a ( self ): UpperCamelCase_ ,UpperCamelCase_: Dict = self.model_tester.prepare_config_and_inputs_for_common() UpperCamelCase_: Dict = _config_zero_init(_lowerCamelCase ) for model_class in self.all_model_classes: UpperCamelCase_: List[str] = model_class(config=_lowerCamelCase ) for name, param in model.named_parameters(): if "embeddings" not in name and param.requires_grad: self.assertIn( ((param.data.mean() * 1e9).round() / 1e9).item() , [0.0, 1.0] , msg=f'''Parameter {name} of model {model_class} seems not properly initialized''' , ) @require_vision @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" @cached_property def _a ( self ): # TODO update organization return AutoImageProcessor.from_pretrained('microsoft/focalnet-tiny' ) if is_vision_available() else None @slow def _a ( self ): UpperCamelCase_: Optional[int] = FocalNetForImageClassification.from_pretrained('microsoft/focalnet-tiny' ).to(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = self.default_image_processor UpperCamelCase_: str = Image.open('./tests/fixtures/tests_samples/COCO/000000039769.png' ) UpperCamelCase_: str = image_processor(images=_lowerCamelCase , return_tensors='pt' ).to(_lowerCamelCase ) # forward pass with torch.no_grad(): UpperCamelCase_: List[str] = model(**_lowerCamelCase ) # verify the logits UpperCamelCase_: Optional[int] = torch.Size((1, 1_0_0_0) ) self.assertEqual(outputs.logits.shape , _lowerCamelCase ) UpperCamelCase_: Optional[int] = torch.tensor([0.2_1_6_6, -0.4_3_6_8, 0.2_1_9_1] ).to(_lowerCamelCase ) self.assertTrue(torch.allclose(outputs.logits[0, :3] , _lowerCamelCase , atol=1e-4 ) ) self.assertTrue(outputs.logits.argmax(dim=-1 ).item() , 2_8_1 ) @require_torch class _lowerCAmelCase( UpperCAmelCase_ , unittest.TestCase ): """simple docstring""" a : Optional[Any] =(FocalNetBackbone,) if is_torch_available() else () a : List[str] =FocalNetConfig a : List[str] =False def _a ( self ): UpperCamelCase_: Any = FocalNetModelTester(self )
57
1
def snake_case (UpperCAmelCase__ = 1_0_0_0 ) -> int: UpperCamelCase_: Dict = 2**power UpperCamelCase_: List[str] = 0 while n: UpperCamelCase_ ,UpperCamelCase_: str = r + n % 1_0, n // 1_0 return r if __name__ == "__main__": print(solution(int(str(input()).strip())))
57
from typing import TYPE_CHECKING from ...utils import ( OptionalDependencyNotAvailable, _LazyModule, is_flax_available, is_tf_available, is_tokenizers_available, is_torch_available, ) A_ : Tuple = { 'configuration_distilbert': [ 'DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP', 'DistilBertConfig', 'DistilBertOnnxConfig', ], 'tokenization_distilbert': ['DistilBertTokenizer'], } try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : Optional[Any] = ['DistilBertTokenizerFast'] try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'DistilBertForMaskedLM', 'DistilBertForMultipleChoice', 'DistilBertForQuestionAnswering', 'DistilBertForSequenceClassification', 'DistilBertForTokenClassification', 'DistilBertModel', 'DistilBertPreTrainedModel', ] try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : List[Any] = [ 'TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST', 'TFDistilBertForMaskedLM', 'TFDistilBertForMultipleChoice', 'TFDistilBertForQuestionAnswering', 'TFDistilBertForSequenceClassification', 'TFDistilBertForTokenClassification', 'TFDistilBertMainLayer', 'TFDistilBertModel', 'TFDistilBertPreTrainedModel', ] try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: A_ : int = [ 'FlaxDistilBertForMaskedLM', 'FlaxDistilBertForMultipleChoice', 'FlaxDistilBertForQuestionAnswering', 'FlaxDistilBertForSequenceClassification', 'FlaxDistilBertForTokenClassification', 'FlaxDistilBertModel', 'FlaxDistilBertPreTrainedModel', ] if TYPE_CHECKING: from .configuration_distilbert import ( DISTILBERT_PRETRAINED_CONFIG_ARCHIVE_MAP, DistilBertConfig, DistilBertOnnxConfig, ) from .tokenization_distilbert import DistilBertTokenizer try: if not is_tokenizers_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .tokenization_distilbert_fast import DistilBertTokenizerFast try: if not is_torch_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_distilbert import ( DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, DistilBertForMaskedLM, DistilBertForMultipleChoice, DistilBertForQuestionAnswering, DistilBertForSequenceClassification, DistilBertForTokenClassification, DistilBertModel, DistilBertPreTrainedModel, ) try: if not is_tf_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_tf_distilbert import ( TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_LIST, TFDistilBertForMaskedLM, TFDistilBertForMultipleChoice, TFDistilBertForQuestionAnswering, TFDistilBertForSequenceClassification, TFDistilBertForTokenClassification, TFDistilBertMainLayer, TFDistilBertModel, TFDistilBertPreTrainedModel, ) try: if not is_flax_available(): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: pass else: from .modeling_flax_distilbert import ( FlaxDistilBertForMaskedLM, FlaxDistilBertForMultipleChoice, FlaxDistilBertForQuestionAnswering, FlaxDistilBertForSequenceClassification, FlaxDistilBertForTokenClassification, FlaxDistilBertModel, FlaxDistilBertPreTrainedModel, ) else: import sys A_ : Any = _LazyModule(__name__, globals()['__file__'], _import_structure, module_spec=__spec__)
57
1
import inspect import os import unittest import torch import accelerate from accelerate import debug_launcher from accelerate.test_utils import ( execute_subprocess_async, require_cpu, require_huggingface_suite, require_multi_gpu, require_single_gpu, ) from accelerate.utils import patch_environment @require_huggingface_suite class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self ): UpperCamelCase_: Optional[int] = inspect.getfile(accelerate.test_utils ) UpperCamelCase_: Dict = os.path.sep.join( mod_file.split(os.path.sep )[:-1] + ['scripts', 'external_deps', 'test_metrics.py'] ) from accelerate.test_utils.scripts.external_deps import test_metrics # noqa: F401 UpperCamelCase_: Tuple = test_metrics @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main , num_processes=1 ) @require_cpu def _a ( self ): debug_launcher(self.test_metrics.main ) @require_single_gpu def _a ( self ): self.test_metrics.main() @require_multi_gpu def _a ( self ): print(f'''Found {torch.cuda.device_count()} devices.''' ) UpperCamelCase_: List[Any] = ['torchrun', f'''--nproc_per_node={torch.cuda.device_count()}''', self.test_file_path] with patch_environment(omp_num_threads=1 ): execute_subprocess_async(_lowerCamelCase , env=os.environ.copy() )
57
import os import socket from contextlib import contextmanager import torch from ..commands.config.default import write_basic_config # noqa: F401 from ..state import PartialState from .dataclasses import DistributedType from .imports import is_deepspeed_available, is_tpu_available from .transformer_engine import convert_model from .versions import is_torch_version if is_deepspeed_available(): from deepspeed import DeepSpeedEngine if is_tpu_available(check_device=False): import torch_xla.core.xla_model as xm def snake_case (UpperCAmelCase__ ) -> Union[str, Any]: if is_torch_version('<' , '2.0.0' ) or not hasattr(UpperCAmelCase__ , '_dynamo' ): return False return isinstance(UpperCAmelCase__ , torch._dynamo.eval_frame.OptimizedModule ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ = True ) -> Any: UpperCamelCase_: Optional[Any] = (torch.nn.parallel.DistributedDataParallel, torch.nn.DataParallel) UpperCamelCase_: int = is_compiled_module(UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: List[str] = model UpperCamelCase_: Dict = model._orig_mod if is_deepspeed_available(): options += (DeepSpeedEngine,) while isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Dict = model.module if not keep_fpaa_wrapper: UpperCamelCase_: int = getattr(UpperCAmelCase__ , 'forward' ) UpperCamelCase_: List[str] = model.__dict__.pop('_original_forward' , UpperCAmelCase__ ) if original_forward is not None: while hasattr(UpperCAmelCase__ , '__wrapped__' ): UpperCamelCase_: Any = forward.__wrapped__ if forward == original_forward: break UpperCamelCase_: Optional[int] = forward if getattr(UpperCAmelCase__ , '_converted_to_transformer_engine' , UpperCAmelCase__ ): convert_model(UpperCAmelCase__ , to_transformer_engine=UpperCAmelCase__ ) if is_compiled: UpperCamelCase_: Union[str, Any] = model UpperCamelCase_: Tuple = compiled_model return model def snake_case () -> List[str]: PartialState().wait_for_everyone() def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Dict: if PartialState().distributed_type == DistributedType.TPU: xm.save(UpperCAmelCase__ , UpperCAmelCase__ ) elif PartialState().local_process_index == 0: torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) @contextmanager def snake_case (**UpperCAmelCase__ ) -> Any: for key, value in kwargs.items(): UpperCamelCase_: int = str(UpperCAmelCase__ ) yield for key in kwargs: if key.upper() in os.environ: del os.environ[key.upper()] def snake_case (UpperCAmelCase__ ) -> str: if not hasattr(UpperCAmelCase__ , '__qualname__' ) and not hasattr(UpperCAmelCase__ , '__name__' ): UpperCamelCase_: List[Any] = getattr(UpperCAmelCase__ , '__class__' , UpperCAmelCase__ ) if hasattr(UpperCAmelCase__ , '__qualname__' ): return obj.__qualname__ if hasattr(UpperCAmelCase__ , '__name__' ): return obj.__name__ return str(UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Any: for key, value in source.items(): if isinstance(UpperCAmelCase__ , UpperCAmelCase__ ): UpperCamelCase_: Any = destination.setdefault(UpperCAmelCase__ , {} ) merge_dicts(UpperCAmelCase__ , UpperCAmelCase__ ) else: UpperCamelCase_: str = value return destination def snake_case (UpperCAmelCase__ = None ) -> bool: if port is None: UpperCamelCase_: List[str] = 2_9_5_0_0 with socket.socket(socket.AF_INET , socket.SOCK_STREAM ) as s: return s.connect_ex(('localhost', port) ) == 0
57
1
def snake_case () -> str: UpperCamelCase_: Optional[Any] = [3_1, 2_8, 3_1, 3_0, 3_1, 3_0, 3_1, 3_1, 3_0, 3_1, 3_0, 3_1] UpperCamelCase_: List[str] = 6 UpperCamelCase_: Optional[Any] = 1 UpperCamelCase_: Tuple = 1_9_0_1 UpperCamelCase_: List[str] = 0 while year < 2_0_0_1: day += 7 if (year % 4 == 0 and year % 1_0_0 != 0) or (year % 4_0_0 == 0): if day > days_per_month[month - 1] and month != 2: month += 1 UpperCamelCase_: Optional[Any] = day - days_per_month[month - 2] elif day > 2_9 and month == 2: month += 1 UpperCamelCase_: Dict = day - 2_9 else: if day > days_per_month[month - 1]: month += 1 UpperCamelCase_: Dict = day - days_per_month[month - 2] if month > 1_2: year += 1 UpperCamelCase_: Dict = 1 if year < 2_0_0_1 and day == 1: sundays += 1 return sundays if __name__ == "__main__": print(solution())
57
import argparse import os import pickle import sys import torch from transformers import TransfoXLConfig, TransfoXLLMHeadModel, load_tf_weights_in_transfo_xl from transformers.models.transfo_xl import tokenization_transfo_xl as data_utils from transformers.models.transfo_xl.tokenization_transfo_xl import CORPUS_NAME, VOCAB_FILES_NAMES from transformers.utils import CONFIG_NAME, WEIGHTS_NAME, logging logging.set_verbosity_info() # We do this to be able to load python 2 datasets pickles # See e.g. https://stackoverflow.com/questions/2121874/python-pickling-after-changing-a-modules-directory/2121918#2121918 A_ : Optional[Any] = data_utils.TransfoXLTokenizer A_ : Union[str, Any] = data_utils.TransfoXLCorpus A_ : Any = data_utils A_ : Optional[Any] = data_utils def snake_case (UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) -> List[str]: if transfo_xl_dataset_file: # Convert a pre-processed corpus (see original TensorFlow repo) with open(UpperCAmelCase__ , 'rb' ) as fp: UpperCamelCase_: Union[str, Any] = pickle.load(UpperCAmelCase__ , encoding='latin1' ) # Save vocabulary and dataset cache as Dictionaries (should be better than pickles for the long-term) UpperCamelCase_: Any = pytorch_dump_folder_path + '/' + VOCAB_FILES_NAMES['pretrained_vocab_file'] print(F'''Save vocabulary to {pytorch_vocab_dump_path}''' ) UpperCamelCase_: Union[str, Any] = corpus.vocab.__dict__ torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: str = corpus.__dict__ corpus_dict_no_vocab.pop('vocab' , UpperCAmelCase__ ) UpperCamelCase_: str = pytorch_dump_folder_path + '/' + CORPUS_NAME print(F'''Save dataset to {pytorch_dataset_dump_path}''' ) torch.save(UpperCAmelCase__ , UpperCAmelCase__ ) if tf_checkpoint_path: # Convert a pre-trained TensorFlow model UpperCamelCase_: Any = os.path.abspath(UpperCAmelCase__ ) UpperCamelCase_: Dict = os.path.abspath(UpperCAmelCase__ ) print(F'''Converting Transformer XL checkpoint from {tf_path} with config at {config_path}.''' ) # Initialise PyTorch model if transfo_xl_config_file == "": UpperCamelCase_: List[str] = TransfoXLConfig() else: UpperCamelCase_: Optional[int] = TransfoXLConfig.from_json_file(UpperCAmelCase__ ) print(F'''Building PyTorch model from configuration: {config}''' ) UpperCamelCase_: Union[str, Any] = TransfoXLLMHeadModel(UpperCAmelCase__ ) UpperCamelCase_: Tuple = load_tf_weights_in_transfo_xl(UpperCAmelCase__ , UpperCAmelCase__ , UpperCAmelCase__ ) # Save pytorch-model UpperCamelCase_: str = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: Union[str, Any] = os.path.join(UpperCAmelCase__ , UpperCAmelCase__ ) print(F'''Save PyTorch model to {os.path.abspath(UpperCAmelCase__ )}''' ) torch.save(model.state_dict() , UpperCAmelCase__ ) print(F'''Save configuration file to {os.path.abspath(UpperCAmelCase__ )}''' ) with open(UpperCAmelCase__ , 'w' , encoding='utf-8' ) as f: f.write(config.to_json_string() ) if __name__ == "__main__": A_ : int = argparse.ArgumentParser() parser.add_argument( '--pytorch_dump_folder_path', default=None, type=str, required=True, help='Path to the folder to store the PyTorch model or dataset/vocab.', ) parser.add_argument( '--tf_checkpoint_path', default='', type=str, help='An optional path to a TensorFlow checkpoint path to be converted.', ) parser.add_argument( '--transfo_xl_config_file', default='', type=str, help=( 'An optional config json file corresponding to the pre-trained BERT model. \n' 'This specifies the model architecture.' ), ) parser.add_argument( '--transfo_xl_dataset_file', default='', type=str, help='An optional dataset file to be converted in a vocabulary.', ) A_ : Tuple = parser.parse_args() convert_transfo_xl_checkpoint_to_pytorch( args.tf_checkpoint_path, args.transfo_xl_config_file, args.pytorch_dump_folder_path, args.transfo_xl_dataset_file, )
57
1
def snake_case (UpperCAmelCase__ = 1_0_0_0 ) -> int: UpperCamelCase_: Dict = 2**power UpperCamelCase_: List[Any] = str(UpperCAmelCase__ ) UpperCamelCase_: int = list(UpperCAmelCase__ ) UpperCamelCase_: Tuple = 0 for i in list_num: sum_of_num += int(UpperCAmelCase__ ) return sum_of_num if __name__ == "__main__": A_ : Optional[Any] = int(input('Enter the power of 2: ').strip()) print('2 ^ ', power, ' = ', 2**power) A_ : Any = solution(power) print('Sum of the digits is: ', result)
57
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 rescale, resize, to_channel_dimension_format from ...image_utils import ( ChannelDimension, ImageInput, PILImageResampling, make_list_of_images, to_numpy_array, valid_images, ) from ...utils import TensorType, is_vision_available, logging if is_vision_available(): import PIL A_ : List[str] = logging.get_logger(__name__) def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Union[str, Any]: UpperCamelCase_: Tuple = b.T UpperCamelCase_: Tuple = np.sum(np.square(UpperCAmelCase__ ) , axis=1 ) UpperCamelCase_: Optional[Any] = np.sum(np.square(UpperCAmelCase__ ) , axis=0 ) UpperCamelCase_: Optional[int] = np.matmul(UpperCAmelCase__ , UpperCAmelCase__ ) UpperCamelCase_: List[Any] = aa[:, None] - 2 * ab + ba[None, :] return d def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: List[str] = x.reshape(-1 , 3 ) UpperCamelCase_: Union[str, Any] = squared_euclidean_distance(UpperCAmelCase__ , UpperCAmelCase__ ) return np.argmin(UpperCAmelCase__ , axis=1 ) class _lowerCAmelCase( UpperCAmelCase_ ): """simple docstring""" a : Any =['''pixel_values'''] def __init__( self , _lowerCamelCase = None , _lowerCamelCase = True , _lowerCamelCase = None , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = True , _lowerCamelCase = True , **_lowerCamelCase , ): super().__init__(**_lowerCamelCase ) UpperCamelCase_: List[str] = size if size is not None else {'height': 2_5_6, 'width': 2_5_6} UpperCamelCase_: str = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Any = np.array(_lowerCamelCase ) if clusters is not None else None UpperCamelCase_: Optional[int] = do_resize UpperCamelCase_: List[Any] = size UpperCamelCase_: Optional[int] = resample UpperCamelCase_: str = do_normalize UpperCamelCase_: str = do_color_quantize def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase = PILImageResampling.BILINEAR , _lowerCamelCase = None , **_lowerCamelCase , ): UpperCamelCase_: Any = get_size_dict(_lowerCamelCase ) if "height" not in size or "width" not in size: raise ValueError(f'''Size dictionary must contain both height and width keys. Got {size.keys()}''' ) return resize( _lowerCamelCase , size=(size['height'], size['width']) , resample=_lowerCamelCase , data_format=_lowerCamelCase , **_lowerCamelCase ) def _a ( self , _lowerCamelCase , _lowerCamelCase = None , ): UpperCamelCase_: Optional[Any] = rescale(image=_lowerCamelCase , scale=1 / 1_2_7.5 , data_format=_lowerCamelCase ) UpperCamelCase_: Optional[Any] = image - 1 return image def _a ( self , _lowerCamelCase , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = None , _lowerCamelCase = ChannelDimension.FIRST , **_lowerCamelCase , ): UpperCamelCase_: Optional[Any] = do_resize if do_resize is not None else self.do_resize UpperCamelCase_: Tuple = size if size is not None else self.size UpperCamelCase_: Union[str, Any] = get_size_dict(_lowerCamelCase ) UpperCamelCase_: Union[str, Any] = resample if resample is not None else self.resample UpperCamelCase_: Any = do_normalize if do_normalize is not None else self.do_normalize UpperCamelCase_: str = do_color_quantize if do_color_quantize is not None else self.do_color_quantize UpperCamelCase_: Dict = clusters if clusters is not None else self.clusters UpperCamelCase_: Dict = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[int] = make_list_of_images(_lowerCamelCase ) if not valid_images(_lowerCamelCase ): raise ValueError( 'Invalid image type. Must be of type PIL.Image.Image, numpy.ndarray, ' 'torch.Tensor, tf.Tensor or jax.ndarray.' ) if do_resize and size is None or resample is None: raise ValueError('Size and resample must be specified if do_resize is True.' ) if do_color_quantize and clusters is None: raise ValueError('Clusters must be specified if do_color_quantize is True.' ) # All transformations expect numpy arrays. UpperCamelCase_: Union[str, Any] = [to_numpy_array(_lowerCamelCase ) for image in images] if do_resize: UpperCamelCase_: Union[str, Any] = [self.resize(image=_lowerCamelCase , size=_lowerCamelCase , resample=_lowerCamelCase ) for image in images] if do_normalize: UpperCamelCase_: Optional[Any] = [self.normalize(image=_lowerCamelCase ) for image in images] if do_color_quantize: UpperCamelCase_: Any = [to_channel_dimension_format(_lowerCamelCase , ChannelDimension.LAST ) for image in images] # color quantize from (batch_size, height, width, 3) to (batch_size, height, width) UpperCamelCase_: Optional[Any] = np.array(_lowerCamelCase ) UpperCamelCase_: Optional[Any] = color_quantize(_lowerCamelCase , _lowerCamelCase ).reshape(images.shape[:-1] ) # flatten to (batch_size, height*width) UpperCamelCase_: Dict = images.shape[0] UpperCamelCase_: Any = images.reshape(_lowerCamelCase , -1 ) # We need to convert back to a list of images to keep consistent behaviour across processors. UpperCamelCase_: List[Any] = list(_lowerCamelCase ) else: UpperCamelCase_: int = [to_channel_dimension_format(_lowerCamelCase , _lowerCamelCase ) for image in images] UpperCamelCase_: str = {'input_ids': images} return BatchFeature(data=_lowerCamelCase , tensor_type=_lowerCamelCase )
57
1
from __future__ import annotations import time import numpy as np A_ : Any = [8, 5, 9, 7] A_ : Any = [ [2, 0, 1, 1], [0, 1, 2, 1], [4, 0, 0, 3], [0, 2, 1, 0], [1, 0, 3, 0], ] A_ : Optional[Any] = [ [3, 2, 1, 4], [0, 2, 5, 2], [5, 1, 0, 5], [1, 5, 3, 0], [3, 0, 3, 3], ] class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , ): UpperCamelCase_: Optional[int] = claim_vector UpperCamelCase_: Any = allocated_resources_table UpperCamelCase_: Any = maximum_claim_table def _a ( self ): return [ sum(p_item[i] for p_item in self.__allocated_resources_table ) for i in range(len(self.__allocated_resources_table[0] ) ) ] def _a ( self ): return np.array(self.__claim_vector ) - np.array( self.__processes_resource_summation() ) def _a ( self ): return [ list(np.array(self.__maximum_claim_table[i] ) - np.array(_lowerCamelCase ) ) for i, allocated_resource in enumerate(self.__allocated_resources_table ) ] def _a ( self ): return {self.__need().index(_lowerCamelCase ): i for i in self.__need()} def _a ( self , **_lowerCamelCase ): UpperCamelCase_: List[Any] = self.__need() UpperCamelCase_: Any = self.__allocated_resources_table UpperCamelCase_: str = self.__available_resources() UpperCamelCase_: Dict = self.__need_index_manager() for kw, val in kwargs.items(): if kw and val is True: self.__pretty_data() print('_' * 5_0 + '\n' ) while need_list: UpperCamelCase_: Optional[int] = False for each_need in need_list: UpperCamelCase_: Optional[Any] = True for index, need in enumerate(_lowerCamelCase ): if need > available_resources[index]: UpperCamelCase_: str = False break if execution: UpperCamelCase_: int = True # get the original index of the process from ind_ctrl db for original_need_index, need_clone in need_index_manager.items(): if each_need == need_clone: UpperCamelCase_: Union[str, Any] = original_need_index print(f'''Process {process_number + 1} is executing.''' ) # remove the process run from stack need_list.remove(_lowerCamelCase ) # update available/freed resources stack UpperCamelCase_: Tuple = np.array(_lowerCamelCase ) + np.array( alloc_resources_table[process_number] ) print( 'Updated available resource stack for processes: ' + ' '.join([str(_lowerCamelCase ) for x in available_resources] ) ) break if safe: print('The process is in a safe state.\n' ) else: print('System in unsafe state. Aborting...\n' ) break def _a ( self ): print(' ' * 9 + 'Allocated Resource Table' ) for item in self.__allocated_resources_table: print( f'''P{self.__allocated_resources_table.index(_lowerCamelCase ) + 1}''' + ' '.join(f'''{it:>8}''' for it in item ) + '\n' ) print(' ' * 9 + 'System Resource Table' ) for item in self.__maximum_claim_table: print( f'''P{self.__maximum_claim_table.index(_lowerCamelCase ) + 1}''' + ' '.join(f'''{it:>8}''' for it in item ) + '\n' ) print( 'Current Usage by Active Processes: ' + ' '.join(str(_lowerCamelCase ) for x in self.__claim_vector ) ) print( 'Initial Available Resources: ' + ' '.join(str(_lowerCamelCase ) for x in self.__available_resources() ) ) time.sleep(1 ) if __name__ == "__main__": import doctest doctest.testmod()
57
import numpy # List of input, output pairs A_ : Any = ( ((5, 2, 3), 15), ((6, 5, 9), 25), ((11, 12, 13), 41), ((1, 1, 1), 8), ((11, 12, 13), 41), ) A_ : List[Any] = (((515, 22, 13), 555), ((61, 35, 49), 150)) A_ : Any = [2, 4, 1, 5] A_ : List[Any] = len(train_data) A_ : List[Any] = 0.009 def snake_case (UpperCAmelCase__ , UpperCAmelCase__="train" ) -> Optional[int]: return calculate_hypothesis_value(UpperCAmelCase__ , UpperCAmelCase__ ) - output( UpperCAmelCase__ , UpperCAmelCase__ ) def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[Any] = 0 for i in range(len(UpperCAmelCase__ ) - 1 ): hyp_val += data_input_tuple[i] * parameter_vector[i + 1] hyp_val += parameter_vector[0] return hyp_val def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> List[Any]: if data_set == "train": return train_data[example_no][1] elif data_set == "test": return test_data[example_no][1] return None def snake_case (UpperCAmelCase__ , UpperCAmelCase__ ) -> Optional[Any]: 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 snake_case (UpperCAmelCase__ , UpperCAmelCase__=m ) -> Optional[Any]: UpperCamelCase_: Any = 0 for i in range(UpperCAmelCase__ ): if index == -1: summation_value += _error(UpperCAmelCase__ ) else: summation_value += _error(UpperCAmelCase__ ) * train_data[i][0][index] return summation_value def snake_case (UpperCAmelCase__ ) -> Optional[Any]: UpperCamelCase_: Optional[int] = summation_of_cost_derivative(UpperCAmelCase__ , UpperCAmelCase__ ) / m return cost_derivative_value def snake_case () -> Union[str, Any]: global parameter_vector # Tune these values to set a tolerance value for predicted output UpperCamelCase_: str = 0.00_0002 UpperCamelCase_: Any = 0 UpperCamelCase_: int = 0 while True: j += 1 UpperCamelCase_: int = [0, 0, 0, 0] for i in range(0 , len(UpperCAmelCase__ ) ): UpperCamelCase_: Any = get_cost_derivative(i - 1 ) UpperCamelCase_: Optional[int] = ( parameter_vector[i] - LEARNING_RATE * cost_derivative ) if numpy.allclose( UpperCAmelCase__ , UpperCAmelCase__ , atol=UpperCAmelCase__ , rtol=UpperCAmelCase__ , ): break UpperCamelCase_: Optional[int] = temp_parameter_vector print(('Number of iterations:', j) ) def snake_case () -> int: for i in range(len(UpperCAmelCase__ ) ): print(('Actual output value:', output(UpperCAmelCase__ , 'test' )) ) print(('Hypothesis output:', calculate_hypothesis_value(UpperCAmelCase__ , 'test' )) ) if __name__ == "__main__": run_gradient_descent() print('\nTesting gradient descent for a linear hypothesis function.\n') test_gradient_descent()
57
1
import os import tempfile import unittest from transformers import is_torch_available from transformers.testing_utils import require_torch if is_torch_available(): import torch from torch import nn from transformers import ( Adafactor, AdamW, get_constant_schedule, get_constant_schedule_with_warmup, get_cosine_schedule_with_warmup, get_cosine_with_hard_restarts_schedule_with_warmup, get_inverse_sqrt_schedule, get_linear_schedule_with_warmup, get_polynomial_decay_schedule_with_warmup, ) def snake_case (UpperCAmelCase__ , UpperCAmelCase__=1_0 ) -> Any: UpperCamelCase_: Optional[int] = [] for _ in range(UpperCAmelCase__ ): lrs.append(scheduler.get_lr()[0] ) scheduler.step() return lrs def snake_case (UpperCAmelCase__ , UpperCAmelCase__=1_0 ) -> str: UpperCamelCase_: Optional[int] = [] for step in range(UpperCAmelCase__ ): lrs.append(scheduler.get_lr()[0] ) scheduler.step() if step == num_steps // 2: with tempfile.TemporaryDirectory() as tmpdirname: UpperCamelCase_: int = os.path.join(UpperCAmelCase__ , 'schedule.bin' ) torch.save(scheduler.state_dict() , UpperCAmelCase__ ) UpperCamelCase_: Optional[Any] = torch.load(UpperCAmelCase__ ) scheduler.load_state_dict(UpperCAmelCase__ ) return lrs @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase ): self.assertEqual(len(_lowerCamelCase ) , len(_lowerCamelCase ) ) for a, b in zip(_lowerCamelCase , _lowerCamelCase ): self.assertAlmostEqual(_lowerCamelCase , _lowerCamelCase , delta=_lowerCamelCase ) def _a ( self ): UpperCamelCase_: str = torch.tensor([0.1, -0.2, -0.1] , requires_grad=_lowerCamelCase ) UpperCamelCase_: List[str] = torch.tensor([0.4, 0.2, -0.5] ) UpperCamelCase_: int = nn.MSELoss() # No warmup, constant schedule, no gradient clipping UpperCamelCase_: Optional[Any] = AdamW(params=[w] , lr=2e-1 , weight_decay=0.0 ) for _ in range(1_0_0 ): UpperCamelCase_: str = criterion(_lowerCamelCase , _lowerCamelCase ) loss.backward() optimizer.step() w.grad.detach_() # No zero_grad() function on simple tensors. we do it ourselves. w.grad.zero_() self.assertListAlmostEqual(w.tolist() , [0.4, 0.2, -0.5] , tol=1e-2 ) def _a ( self ): UpperCamelCase_: Dict = torch.tensor([0.1, -0.2, -0.1] , requires_grad=_lowerCamelCase ) UpperCamelCase_: Any = torch.tensor([0.4, 0.2, -0.5] ) UpperCamelCase_: Dict = nn.MSELoss() # No warmup, constant schedule, no gradient clipping UpperCamelCase_: List[Any] = Adafactor( params=[w] , lr=1e-2 , eps=(1e-30, 1e-3) , clip_threshold=1.0 , decay_rate=-0.8 , betaa=_lowerCamelCase , weight_decay=0.0 , relative_step=_lowerCamelCase , scale_parameter=_lowerCamelCase , warmup_init=_lowerCamelCase , ) for _ in range(1_0_0_0 ): UpperCamelCase_: Dict = criterion(_lowerCamelCase , _lowerCamelCase ) loss.backward() optimizer.step() w.grad.detach_() # No zero_grad() function on simple tensors. we do it ourselves. w.grad.zero_() self.assertListAlmostEqual(w.tolist() , [0.4, 0.2, -0.5] , tol=1e-2 ) @require_torch class _lowerCAmelCase( unittest.TestCase ): """simple docstring""" a : Any =nn.Linear(50 , 50 ) if is_torch_available() else None a : Dict =AdamW(m.parameters() , lr=1_0.0 ) if is_torch_available() else None a : Union[str, Any] =10 def _a ( self , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase , _lowerCamelCase=None ): self.assertEqual(len(_lowerCamelCase ) , len(_lowerCamelCase ) ) for a, b in zip(_lowerCamelCase , _lowerCamelCase ): self.assertAlmostEqual(_lowerCamelCase , _lowerCamelCase , delta=_lowerCamelCase , msg=_lowerCamelCase ) def _a ( self ): UpperCamelCase_: Union[str, Any] = {'num_warmup_steps': 2, 'num_training_steps': 1_0} # schedulers doct format # function: (sched_args_dict, expected_learning_rates) UpperCamelCase_: Tuple = { get_constant_schedule: ({}, [1_0.0] * self.num_steps), get_constant_schedule_with_warmup: ( {'num_warmup_steps': 4}, [0.0, 2.5, 5.0, 7.5, 1_0.0, 1_0.0, 1_0.0, 1_0.0, 1_0.0, 1_0.0], ), get_linear_schedule_with_warmup: ( {**common_kwargs}, [0.0, 5.0, 1_0.0, 8.7_5, 7.5, 6.2_5, 5.0, 3.7_5, 2.5, 1.2_5], ), get_cosine_schedule_with_warmup: ( {**common_kwargs}, [0.0, 5.0, 1_0.0, 9.6_1, 8.5_3, 6.9_1, 5.0, 3.0_8, 1.4_6, 0.3_8], ), get_cosine_with_hard_restarts_schedule_with_warmup: ( {**common_kwargs, 'num_cycles': 2}, [0.0, 5.0, 1_0.0, 8.5_3, 5.0, 1.4_6, 1_0.0, 8.5_3, 5.0, 1.4_6], ), get_polynomial_decay_schedule_with_warmup: ( {**common_kwargs, 'power': 2.0, 'lr_end': 1e-7}, [0.0, 5.0, 1_0.0, 7.6_5_6, 5.6_2_5, 3.9_0_6, 2.5, 1.4_0_6, 0.6_2_5, 0.1_5_6], ), get_inverse_sqrt_schedule: ( {'num_warmup_steps': 2}, [0.0, 5.0, 1_0.0, 8.1_6_5, 7.0_7_1, 6.3_2_5, 5.7_7_4, 5.3_4_5, 5.0, 4.7_1_4], ), } for scheduler_func, data in scheds.items(): UpperCamelCase_ ,UpperCamelCase_: Union[str, Any] = data UpperCamelCase_: Optional[int] = scheduler_func(self.optimizer , **_lowerCamelCase ) self.assertEqual(len([scheduler.get_lr()[0]] ) , 1 ) UpperCamelCase_: List[Any] = unwrap_schedule(_lowerCamelCase , self.num_steps ) self.assertListAlmostEqual( _lowerCamelCase , _lowerCamelCase , tol=1e-2 , msg=f'''failed for {scheduler_func} in normal scheduler''' , ) UpperCamelCase_: Optional[Any] = scheduler_func(self.optimizer , **_lowerCamelCase ) if scheduler_func.__name__ != "get_constant_schedule": LambdaScheduleWrapper.wrap_scheduler(_lowerCamelCase ) # wrap to test picklability of the schedule UpperCamelCase_: List[Any] = unwrap_and_save_reload_schedule(_lowerCamelCase , self.num_steps ) self.assertListEqual(_lowerCamelCase , _lowerCamelCase , msg=f'''failed for {scheduler_func} in save and reload''' ) class _lowerCAmelCase: """simple docstring""" def __init__( self , _lowerCamelCase ): UpperCamelCase_: Any = fn def __call__( self , *_lowerCamelCase , **_lowerCamelCase ): return self.fn(*_lowerCamelCase , **_lowerCamelCase ) @classmethod def _a ( self , _lowerCamelCase ): UpperCamelCase_: int = list(map(self , scheduler.lr_lambdas ) )
57
from ...utils import ( OptionalDependencyNotAvailable, is_flax_available, is_torch_available, is_transformers_available, ) try: if not (is_transformers_available() and is_torch_available()): raise OptionalDependencyNotAvailable() except OptionalDependencyNotAvailable: from ...utils.dummy_torch_and_transformers_objects import * # noqa F403 else: from .multicontrolnet import MultiControlNetModel from .pipeline_controlnet import StableDiffusionControlNetPipeline from .pipeline_controlnet_imgaimg import StableDiffusionControlNetImgaImgPipeline from .pipeline_controlnet_inpaint import StableDiffusionControlNetInpaintPipeline if is_transformers_available() and is_flax_available(): from .pipeline_flax_controlnet import FlaxStableDiffusionControlNetPipeline
57
1