Ë
    S^(hî8  ã                   ó²   — d dl Z d dlmZmZ d dlmZ ddlmZ ddlm	Z	m
Z
mZmZ  ej                  e«      Z e
«       r
d dlZddlmZ e G d„ d	e«      «       Zy)
é    N)Ú	dataclassÚfield)ÚOptionalé   )ÚTrainingArguments)Úcached_propertyÚis_tf_availableÚloggingÚrequires_backends)Úkerasc                   ól  — e Zd ZU dZdZ edddi¬«      Zee   e	d<    edddi¬«      Z
ee   e	d	<    eddd
i¬«      Zee   e	d<    edddi¬«      Zee	d<    edddi¬«      Zee	d<   ededef   fd„«       Zedd„«       Zedefd„«       Zed„ «       Zedefd„«       Zedefd„«       Zedefd„«       Zy)ÚTFTrainingArgumentsaò!  
    TrainingArguments is the subset of the arguments we use in our example scripts **which relate to the training loop
    itself**.

    Using [`HfArgumentParser`] we can turn this class into
    [argparse](https://docs.python.org/3/library/argparse#module-argparse) arguments that can be specified on the
    command line.

    Parameters:
        output_dir (`str`):
            The output directory where the model predictions and checkpoints will be written.
        overwrite_output_dir (`bool`, *optional*, defaults to `False`):
            If `True`, overwrite the content of the output directory. Use this to continue training if `output_dir`
            points to a checkpoint directory.
        do_train (`bool`, *optional*, defaults to `False`):
            Whether to run training or not. This argument is not directly used by [`Trainer`], it's intended to be used
            by your training/evaluation scripts instead. See the [example
            scripts](https://github.com/huggingface/transformers/tree/main/examples) for more details.
        do_eval (`bool`, *optional*):
            Whether to run evaluation on the validation set or not. Will be set to `True` if `eval_strategy` is
            different from `"no"`. This argument is not directly used by [`Trainer`], it's intended to be used by your
            training/evaluation scripts instead. See the [example
            scripts](https://github.com/huggingface/transformers/tree/main/examples) for more details.
        do_predict (`bool`, *optional*, defaults to `False`):
            Whether to run predictions on the test set or not. This argument is not directly used by [`Trainer`], it's
            intended to be used by your training/evaluation scripts instead. See the [example
            scripts](https://github.com/huggingface/transformers/tree/main/examples) for more details.
        eval_strategy (`str` or [`~trainer_utils.IntervalStrategy`], *optional*, defaults to `"no"`):
            The evaluation strategy to adopt during training. Possible values are:

                - `"no"`: No evaluation is done during training.
                - `"steps"`: Evaluation is done (and logged) every `eval_steps`.
                - `"epoch"`: Evaluation is done at the end of each epoch.

        per_device_train_batch_size (`int`, *optional*, defaults to 8):
            The batch size per GPU/TPU core/CPU for training.
        per_device_eval_batch_size (`int`, *optional*, defaults to 8):
            The batch size per GPU/TPU core/CPU for evaluation.
        gradient_accumulation_steps (`int`, *optional*, defaults to 1):
            Number of updates steps to accumulate the gradients for, before performing a backward/update pass.

            <Tip warning={true}>

            When using gradient accumulation, one step is counted as one step with backward pass. Therefore, logging,
            evaluation, save will be conducted every `gradient_accumulation_steps * xxx_step` training examples.

            </Tip>

        learning_rate (`float`, *optional*, defaults to 5e-5):
            The initial learning rate for Adam.
        weight_decay (`float`, *optional*, defaults to 0):
            The weight decay to apply (if not zero).
        adam_beta1 (`float`, *optional*, defaults to 0.9):
            The beta1 hyperparameter for the Adam optimizer.
        adam_beta2 (`float`, *optional*, defaults to 0.999):
            The beta2 hyperparameter for the Adam optimizer.
        adam_epsilon (`float`, *optional*, defaults to 1e-8):
            The epsilon hyperparameter for the Adam optimizer.
        max_grad_norm (`float`, *optional*, defaults to 1.0):
            Maximum gradient norm (for gradient clipping).
        num_train_epochs(`float`, *optional*, defaults to 3.0):
            Total number of training epochs to perform.
        max_steps (`int`, *optional*, defaults to -1):
            If set to a positive number, the total number of training steps to perform. Overrides `num_train_epochs`.
            For a finite dataset, training is reiterated through the dataset (if all data is exhausted) until
            `max_steps` is reached.
        warmup_ratio (`float`, *optional*, defaults to 0.0):
            Ratio of total training steps used for a linear warmup from 0 to `learning_rate`.
        warmup_steps (`int`, *optional*, defaults to 0):
            Number of steps used for a linear warmup from 0 to `learning_rate`. Overrides any effect of `warmup_ratio`.
        logging_dir (`str`, *optional*):
            [TensorBoard](https://www.tensorflow.org/tensorboard) log directory. Will default to
            *runs/**CURRENT_DATETIME_HOSTNAME***.
        logging_strategy (`str` or [`~trainer_utils.IntervalStrategy`], *optional*, defaults to `"steps"`):
            The logging strategy to adopt during training. Possible values are:

                - `"no"`: No logging is done during training.
                - `"epoch"`: Logging is done at the end of each epoch.
                - `"steps"`: Logging is done every `logging_steps`.

        logging_first_step (`bool`, *optional*, defaults to `False`):
            Whether to log and evaluate the first `global_step` or not.
        logging_steps (`int`, *optional*, defaults to 500):
            Number of update steps between two logs if `logging_strategy="steps"`.
        save_strategy (`str` or [`~trainer_utils.SaveStrategy`], *optional*, defaults to `"steps"`):
            The checkpoint save strategy to adopt during training. Possible values are:

                - `"no"`: No save is done during training.
                - `"epoch"`: Save is done at the end of each epoch.
                - `"steps"`: Save is done every `save_steps`.

        save_steps (`int`, *optional*, defaults to 500):
            Number of updates steps before two checkpoint saves if `save_strategy="steps"`.
        save_total_limit (`int`, *optional*):
            If a value is passed, will limit the total amount of checkpoints. Deletes the older checkpoints in
            `output_dir`.
        no_cuda (`bool`, *optional*, defaults to `False`):
            Whether to not use CUDA even when it is available or not.
        seed (`int`, *optional*, defaults to 42):
            Random seed that will be set at the beginning of training.
        fp16 (`bool`, *optional*, defaults to `False`):
            Whether to use 16-bit (mixed) precision training (through NVIDIA Apex) instead of 32-bit training.
        fp16_opt_level (`str`, *optional*, defaults to 'O1'):
            For `fp16` training, Apex AMP optimization level selected in ['O0', 'O1', 'O2', and 'O3']. See details on
            the [Apex documentation](https://nvidia.github.io/apex/amp).
        local_rank (`int`, *optional*, defaults to -1):
            During distributed training, the rank of the process.
        tpu_num_cores (`int`, *optional*):
            When training on TPU, the number of TPU cores (automatically passed by launcher script).
        debug (`bool`, *optional*, defaults to `False`):
            Whether to activate the trace to record computation graphs and profiling information or not.
        dataloader_drop_last (`bool`, *optional*, defaults to `False`):
            Whether to drop the last incomplete batch (if the length of the dataset is not divisible by the batch size)
            or not.
        eval_steps (`int`, *optional*, defaults to 1000):
            Number of update steps before two evaluations.
        past_index (`int`, *optional*, defaults to -1):
            Some models like [TransformerXL](../model_doc/transformerxl) or :doc*XLNet <../model_doc/xlnet>* can make
            use of the past hidden states for their predictions. If this argument is set to a positive int, the
            `Trainer` will use the corresponding output (usually index 2) as the past state and feed it to the model at
            the next training step under the keyword argument `mems`.
        tpu_name (`str`, *optional*):
            The name of the TPU the process is running on.
        tpu_zone (`str`, *optional*):
            The zone of the TPU the process is running on. If not specified, we will attempt to automatically detect
            from metadata.
        gcp_project (`str`, *optional*):
            Google Cloud Project name for the Cloud TPU-enabled project. If not specified, we will attempt to
            automatically detect from metadata.
        run_name (`str`, *optional*):
            A descriptor for the run. Notably used for wandb, mlflow, comet and swanlab logging.
        xla (`bool`, *optional*):
            Whether to activate the XLA compilation or not.
    ÚtfNÚhelpzName of TPU)ÚdefaultÚmetadataÚtpu_namezZone of TPUÚtpu_zonez!Name of Cloud TPU-enabled projectÚgcp_projectg      ð?z,Power for the Polynomial decay LR scheduler.Ú
poly_powerFz.Whether to activate the XLA compilation or notÚxlaÚreturnútf.distribute.Strategyc                 ó  — t        | dg«       t        j                  d«       t        j                  j                  d«      }| j                  rt        j                  j                  d«       | j                  r"t        j                  j                  d¬«      }|S 	 | j                  rKt        j                  j                  j                  | j                  | j                   | j"                  ¬«      }n(t        j                  j                  j                  «       }|r”| j                  rt        j                  j                  d
«       t        j                  j)                  |«       t        j*                  j,                  j/                  |«       t        j                  j1                  |«      }|S t3        |«      dk(  r"t        j                  j                  d¬«      }|S t3        |«      dk(  r"t        j                  j                  d¬«      }|S t3        |«      dkD  r t        j                  j5                  «       }|S t%        d«      ‚# t$        $ r+ | j                  rt'        d| j                  › d	�«      ‚d }Y �Œbw xY w)Nr   zTensorflow: setting up strategyÚGPUÚmixed_float16z/cpu:0)Údevice)ÚzoneÚprojectzCouldn't connect to TPU ú!Úmixed_bfloat16r   r   z/gpu:0zJCannot find the proper strategy, please check your environment properties.)r   ÚloggerÚinfor   ÚconfigÚlist_physical_devicesÚfp16r   Úmixed_precisionÚset_global_policyÚno_cudaÚ
distributeÚOneDeviceStrategyr   Úcluster_resolverÚTPUClusterResolverr   r   Ú
ValueErrorÚRuntimeErrorÚexperimental_connect_to_clusterÚtpuÚexperimentalÚinitialize_tpu_systemÚTPUStrategyÚlenÚMirroredStrategy)ÚselfÚgpusÚstrategyr1   s       ú[/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/transformers/training_args_tf.pyÚ_setup_strategyz#TFTrainingArguments._setup_strategy¿   sõ  € ä˜$  Ô'Ü�‰Ð5Ô6ä�y‰y×.Ñ.¨uÓ5ˆð �9Š9Ü×!Ñ!×3Ñ3°OÔDà�<Š<Ü—}‘}×6Ñ6¸hÐ6ÓGˆHðF ˆðCØ—=’=ÜŸ-™-×8Ñ8×KÑKØŸ™¨D¯M©MÀ4×CSÑCSð Ló ‘Cô Ÿ-™-×8Ñ8×KÑKÓM�Cñ à—9’9Ü×)Ñ)×;Ñ;Ð<LÔMä—	‘	×9Ñ9¸#Ô>Ü—‘×#Ñ#×9Ñ9¸#Ô>äŸ=™=×4Ñ4°SÓ9�ð ˆô �T“˜a’ÜŸ=™=×:Ñ:À(Ð:ÓK�ð ˆô �T“˜a’ÜŸ=™=×:Ñ:À(Ð:ÓK�ð ˆô �T“˜Q’äŸ=™=×9Ñ9Ó;�ð ˆô !Ð!mÓnÐnøô1 ò Ø—=’=Ü&Ð)AÀ$Ç-Á-ÀÐPQÐ'RÓSÐSà“Cð	ús   ÂA?I
 É
0I>É=I>c                 ó4   — t        | dg«       | j                  S )z=
        The strategy used for distributed training.
        r   )r   r;   ©r7   s    r:   r9   zTFTrainingArguments.strategyð   s   € ô
 	˜$  Ô'Ø×#Ñ#Ð#ó    c                 óH   — t        | dg«       | j                  j                  S )úY
        The number of replicas (CPUs, GPUs or TPU cores) used in this training.
        r   )r   r;   Únum_replicas_in_syncr=   s    r:   Ú
n_replicaszTFTrainingArguments.n_replicasø   s"   € ô
 	˜$  Ô'Ø×#Ñ#×8Ñ8Ð8r>   c                  ó   — y)zH
        Whether or not the current process should produce log.
        F© r=   s    r:   Ú
should_logzTFTrainingArguments.should_log   s   € ð
 r>   c                 ó–   — | j                   rt        j                  d«       | j                   xs | j                  }|| j                  z  S )zz
        The actual batch size for training (may differ from `per_gpu_train_batch_size` in distributed training).
        z•Using deprecated `--per_gpu_train_batch_size` argument which will be removed in a future version. Using `--per_device_train_batch_size` is preferred.)Úper_gpu_train_batch_sizer"   ÚwarningÚper_device_train_batch_sizerB   ©r7   Úper_device_batch_sizes     r:   Útrain_batch_sizez$TFTrainingArguments.train_batch_size  sG   € ð
 ×(Ò(Ü�N‰NðOôð !%× =Ñ =Ò aÀ×AaÑAaÐØ$ t§¡Ñ6Ð6r>   c                 ó–   — | j                   rt        j                  d«       | j                   xs | j                  }|| j                  z  S )z{
        The actual batch size for evaluation (may differ from `per_gpu_eval_batch_size` in distributed training).
        z“Using deprecated `--per_gpu_eval_batch_size` argument which will be removed in a future version. Using `--per_device_eval_batch_size` is preferred.)Úper_gpu_eval_batch_sizer"   rH   Úper_device_eval_batch_sizerB   rJ   s     r:   Úeval_batch_sizez#TFTrainingArguments.eval_batch_size  sG   € ð
 ×'Ò'Ü�N‰NðNôð !%× <Ñ <Ò _À×@_Ñ@_ÐØ$ t§¡Ñ6Ð6r>   c                 ó|   — t        | dg«       t        j                  dt        «       | j                  j
                  S )r@   r   zaThe n_gpu argument is deprecated and will be removed in a future version, use n_replicas instead.)r   ÚwarningsÚwarnÚFutureWarningr;   rA   r=   s    r:   Ún_gpuzTFTrainingArguments.n_gpu!  s6   € ô
 	˜$  Ô'Ü�‰ØoÜô	
ð ×#Ñ#×8Ñ8Ð8r>   )r   r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú	frameworkr   r   r   ÚstrÚ__annotations__r   r   r   Úfloatr   Úboolr   ÚtupleÚintr;   Úpropertyr9   rB   rE   rL   rP   rU   rD   r>   r:   r   r      sf  … ñEðN €IÙ#ØØ˜-Ð(ô€Hˆh�s‰mó ñ
 $ØØ˜-Ð(ô€Hˆh�s‰mó ñ
 "'ØØÐ=Ð>ô"€K�˜#‘ó ñ
 ØØÐHÐIô€J�ó ñ
 ˜e¨vÐ7gÐ.hÔi€CˆÓiàð. Ð'?ÀÐ'DÑ!Eò .ó ð.ð` ò$ó ð$ð ð9˜Cò 9ó ð9ð ñó ðð ð
7 #ò 
7ó ð
7ð ð
7 ò 
7ó ð
7ð ð	9�sò 	9ó ñ	9r>   r   )rR   Údataclassesr   r   Útypingr   Útraining_argsr   Úutilsr   r	   r
   r   Ú
get_loggerrV   r"   Ú
tensorflowr   Úmodeling_tf_utilsr   r   rD   r>   r:   ú<module>ri      sX   ðó ß (Ý å ,ß OÓ Oð 
ˆ×	Ñ	˜HÓ	%€áÔÛå(ð ôK9Ð+ó K9ó ñK9r>   