
    i                         d Z ddlZddlmZmZmZmZ ddlmZ ddl	m
Z
 ddlmZ  ej                  e      Zdd	d
Z G d de
      ZdgZy)z Tokenization class for model T5.    N)	Tokenizerdecoderspre_tokenizers
processors)Unigram   )TokenizersBackend)loggingzspiece.modelztokenizer.json)
vocab_filetokenizer_filec                   n     e Zd ZdZeZddgZeZ	 	 	 	 	 	 d	de	e
ee	ef      z  dz  f fdZd Zd Z xZS )
T5Tokenizera  
    Construct a T5 tokenizer (backed by HuggingFace's *tokenizers* library). Based on
    [Unigram](https://huggingface.co/docs/tokenizers/python/latest/components.html?highlight=unigram#models).

    This tokenizer inherits from [`TokenizersBackend`] which contains most of the main methods. Users should
    refer to this superclass for more information regarding those methods.

    Args:
        vocab_file (`str`, *optional*):
            [SentencePiece](https://github.com/google/sentencepiece) file (generally has a *.spm* extension) that
            contains the vocabulary necessary to instantiate a tokenizer.
        eos_token (`str`, *optional*, defaults to `"</s>"`):
            The end of sequence token.

            <Tip>

            When building a sequence using special tokens, this is not the token that is used for the end of sequence.
            The token used is the `sep_token`.

            </Tip>

        unk_token (`str`, *optional*, defaults to `"<unk>"`):
            The unknown token. A token that is not in the vocabulary cannot be converted to an ID and is set to be this
            token instead.
        pad_token (`str`, *optional*, defaults to `"<pad>"`):
            The token used for padding, for example when batching sequences of different lengths.
        extra_ids (`int`, *optional*, defaults to 100):
            Add a number of extra ids added to the vocabulary for use as sentinels. These tokens are accessible as
            "<extra_id_{%d}>" where "{%d}" is a number between 0 and extra_ids-1. These tokens can be retrieved by
            calling get_sentinel_tokens method and token ids can be by calling get_sentinel_token_ids method
        additional_special_tokens (`list[str]`, *optional*):
            Additional special tokens used by the tokenizer.
        vocab (`str`, `dict` or `list`, *optional*):
            Custom vocabulary dict. If not provided, a minimal vocabulary is created using the special tokens.
    	input_idsattention_maskNvocabc           	         || _         |q|D cg c]  }dt        |      v s| }	}t        |	      dk  r!|t        |      D 
cg c]  }
d|
 d
 c}
z  }nC|dkD  r>|t        |	      k7  r0t	        d| d| d      t        |      D 
cg c]  }
d|
 d
 }	}
|	}||| _        nbt        |      dft        |      dft        |      dfd	g| _        t        |dz
  d
d
      D ]#  }
| j
                  j                  d|
 ddf       % t        t        | j
                  dd            | _	        d | j                  _
        t        j                  t        j                         t        j                  ddd      g      | j                  _        t!        j                  ddd      | j                  _        t%        | L  d|||||d| t)        j*                  ddgg dd| j,                  fg      | j                  _        y c c}w c c}
w c c}
w )Nz
<extra_id_   >r   zBoth extra_ids (z!) and additional_special_tokens (zk) are provided to T5Tokenizer. In this case the additional_special_tokens must include the extra_ids tokensg        )   ▁g          F)unk_idbyte_fallbackr   alwaysT)replacementprepend_schemesplit)	eos_token	unk_token	pad_token	extra_idsadditional_special_tokens$A</s>)r#   r$   z$Br$   )singlepairspecial_tokens )
_extra_idsstrlenrange
ValueError_vocab_scoresappendr   r   
_tokenizer
normalizerr   SequenceWhitespaceSplit	Metaspacepre_tokenizerr   decodersuper__init__r   TemplateProcessingeos_token_idpost_processor)selfr   r   r   r    r!   r"   kwargsxextra_tokensi	__class__s              p/home/obispo/Crisostomo_bridge/mision_env/lib/python3.12/site-packages/transformers/models/t5/tokenization_t5.pyr8   zT5Tokenizer.__init__G   sM    $ %0'@[!LTWXYTZDZA[L[< 1$)yIY-ZA
1#Q.?-ZZ)Q9L0A#A &yk1RSlRm n   8=Y7GH!j1-HLH(4% !&D Y%Y%Y%	"D 9q="b1 D""))Zs!+<c*BCD $""#
 &*"(6(?(?..0((U8[_`)
% #+"4"4W_gk"l 	
&?	
 	
 *4)F)F&>-**+*
&m \-Z Is   H H H	H
c                 T    t        t        t        d | j                                    S )zQGet the list of sentinel tokens (extra_id tokens) from additional_special_tokens.c                 D    t        t        j                  d|             d uS )Nz<extra_id_\d+>)boolresearch)r>   s    rB   <lambda>z1T5Tokenizer.get_sentinel_tokens.<locals>.<lambda>   s    bii0A1&E!Fd!R     )listsetfilterr"   )r<   s    rB   get_sentinel_tokenszT5Tokenizer.get_sentinel_tokens   s&    RTXTrTrst
 	
rI   c                 f    | j                         D cg c]  }| j                  |       c}S c c}w )z&Get the token IDs for sentinel tokens.)rM   convert_tokens_to_ids)r<   tokens     rB   get_sentinel_token_idsz"T5Tokenizer.get_sentinel_token_ids   s*    ?C?W?W?YZe**51ZZZs   .)Nr$   z<unk>z<pad>d   N)__name__
__module____qualname____doc__VOCAB_FILES_NAMESvocab_files_namesmodel_input_namesr   modelr*   rJ   tuplefloatr8   rM   rQ   __classcell__)rA   s   @rB   r   r      si    "H *$&67E 7;"&J
T%U
+,,t3J
X
[rI   r   )rV   rF   
tokenizersr   r   r   r   tokenizers.modelsr   tokenization_utils_tokenizersr	   utilsr
   
get_loggerrS   loggerrW   r   __all__r(   rI   rB   <module>re      sW    ' 	 F F % >  
		H	%#1EUV }[# }[@ /rI   