
    g                          d Z ddlmZ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mZ ddlmZmZ  G d d	ed
          Z G d de
d
          Z G d de          ZdS )z 
Processor class for Chameleon.
    )ListOptionalUnion   )BatchFeature)
ImageInput)ProcessingKwargsProcessorMixin
TextKwargsUnpack!_validate_images_text_input_order)PreTokenizedInput	TextInputc                       e Zd ZU eed<   dS )ChameleonTextKwargsreturn_for_text_completionN)__name__
__module____qualname__bool__annotations__     n/var/www/html/ai-engine/env/lib/python3.11/site-packages/transformers/models/chameleon/processing_chameleon.pyr   r      s          $$$$$$r   r   F)totalc                   .    e Zd ZU eed<   dddddidZdS )ChameleonProcessorKwargstext_kwargsF)paddingr   return_tensorspt)r   common_kwargsN)r   r   r   r   r   	_defaultsr   r   r   r   r      sF         $$$$ */
 

 d
 IIIr   r   c                        e Zd ZdZddgZdZdZdded	ef fd
Z		 	 	 	 dde
e         de
eeeee         ee         f                  dee         defdZd Zd Zed             Z xZS )ChameleonProcessora/  
    Constructs a Chameleon processor which wraps a Chameleon image processor and a Chameleon tokenizer into a single
    processor.

    [`ChameleonProcessor`] offers all the functionalities of [`ChameleonImageProcessor`] and [`LlamaTokenizerFast`].
    See the [`~ChameleonProcessor.__call__`] and [`~ChameleonProcessor.decode`] for more information.

    Args:
        image_processor ([`ChameleonImageProcessor`]):
            The image processor is a required input.
        tokenizer ([`LlamaTokenizerFast`]):
            The tokenizer is a required input.
        image_seq_length (`int`, *optional*, defaults to 1024):
            Sequence length of one image embedding.
        image_token (`str`, *optional*, defaults to `"<image>"`):
            The special token used to indicate image in the text.
    image_processor	tokenizer)LlamaTokenizerLlamaTokenizerFastChameleonImageProcessor   <image>image_seq_lengthimage_tokenc                     || _         || _        d| _        d| _        t	                                          ||           d S )Nz<racm3:break>z<eoss>)r-   r.   image_start_tokenimage_end_tokensuper__init__)selfr&   r'   r-   r.   	__class__s        r   r3   zChameleonProcessor.__init__C   sC     0&!0')44444r   Nimagestextkwargsreturnc                    t          ||          \  }}t          |t                    r|g}n?t          |t                    s*t          |d         t                    st	          d          ||t          d           | j        t          fd| j        j	        i|}|d         
                    dd          }g }| j        | j        | j        z  z   | j        z   }	|D ]C}
|
                    | j        |	          }
|s|
| j        j        z  }
|                    |
           D | j        |fi |d         }| | j        |fi |d	         d
         |d
<   t'          ||d         d                   S )a  
        Main method to prepare for the model one or several sequences(s) and image(s). This method forwards the `text`
        and `kwargs` arguments to LlamaTokenizerFast's [`~LlamaTokenizerFast.__call__`] if `text` is not `None` to encode
        the text. To prepare the image(s), this method forwards the `images` and `kwrags` arguments to
        CLIPImageProcessor's [`~CLIPImageProcessor.__call__`] if `images` is not `None`. Please refer to the doctsring
        of the above two methods for more information.

        Args:
            images (`PIL.Image.Image`, `np.ndarray`, `torch.Tensor`, `List[PIL.Image.Image]`, `List[np.ndarray]`, `List[torch.Tensor]`):
                The image or batch of images to be prepared. Each image can be a PIL image, NumPy array or PyTorch
                tensor. Both channels-first and channels-last formats are supported.
            text (`str`, `List[str]`, `List[List[str]]`):
                The sequence or batch of sequences to be encoded. Each sequence can be a string or a list of strings
                (pretokenized string). If the sequences are provided as list of strings (pretokenized), you must set
                `is_split_into_words=True` (to lift the ambiguity with a batch of sequences).
            return_tensors (`str` or [`~utils.TensorType`], *optional*):
                If set, will return tensors of a particular framework. Acceptable values are:

                - `'tf'`: Return TensorFlow `tf.constant` objects.
                - `'pt'`: Return PyTorch `torch.Tensor` objects.
                - `'np'`: Return NumPy `np.ndarray` objects.
                - `'jax'`: Return JAX `jnp.ndarray` objects.

        Returns:
            [`BatchFeature`]: A [`BatchFeature`] with the following fields:

            - **input_ids** -- List of token ids to be fed to a model. Returned when `text` is not `None`.
            - **attention_mask** -- List of indices specifying which tokens should be attended to by the model (when
              `return_attention_mask=True` or if *"attention_mask"* is in `self.model_input_names` and if `text` is not
              `None`).
            - **pixel_values** -- Pixel values to be fed to a model. Returned when `images` is not `None`.
        r   zAInvalid input text. Please provide a string, or a list of stringsNz&You must provide either text or imagestokenizer_init_kwargsr   r   Fimages_kwargspixel_valuesr"   r    )datatensor_type)r   
isinstancestrlist	TypeError
ValueError_merge_kwargsr   r'   init_kwargspopr0   r.   r-   r1   replace	sep_tokenappendr&   r   )r4   r6   r7   audiovideosr8   output_kwargsr   prompt_stringsone_img_tokenssampler>   s               r   __call__zChameleonProcessor.__call__J   s   R 9FFdC   	a6DDD$'' 	a
47C0H0H 	a_```<FNEFFF**$
 
"&."<
 
 

 &3=%A%E%EFbdi%j%j" /43CdF[3[\_c_ss 	* 	*F^^D$4nEEF- 3$.22!!&))))t~nMMm0LMM#74#7#a#a-P_B`#a#abp#qD =3QRb3cddddr   c                 &     | j         j        |i |S )z
        This method forwards all its arguments to LlamaTokenizerFast's [`~PreTrainedTokenizer.batch_decode`]. Please
        refer to the docstring of this method for more information.
        )r'   batch_decoder4   argsr8   s      r   rS   zChameleonProcessor.batch_decode   s    
 +t~*D;F;;;r   c                 &     | j         j        |i |S )z
        This method forwards all its arguments to LlamaTokenizerFast's [`~PreTrainedTokenizer.decode`]. Please refer to
        the docstring of this method for more information.
        )r'   decoderT   s      r   rW   zChameleonProcessor.decode   s    
 %t~$d5f555r   c                     | j         j        }| j        j        }t          t                              ||z                       S )N)r'   model_input_namesr&   rB   dictfromkeys)r4   tokenizer_input_namesimage_processor_input_namess      r   rY   z$ChameleonProcessor.model_input_names   s<     !% @&*&:&L#DMM"7:U"UVVWWWr   )r+   r,   )NNNN)r   r   r   __doc__
attributestokenizer_classimage_processor_classintrA   r3   r   r   r   r   r   r   r   r   r   rQ   rS   rW   propertyrY   __classcell__)r5   s   @r   r%   r%   ,   s;        $ $[1J>O55 5S 5^a 5 5 5 5 5 5 (,hlFe Fe$Fe uY(94	?DQbLccdeFe 12Fe 
Fe Fe Fe FeR< < <6 6 6 X X XX X X X Xr   r%   N)r^   typingr   r   r   feature_extraction_utilsr   image_utilsr   processing_utilsr	   r
   r   r   r   tokenization_utils_baser   r   r   r   r%   r   r   r   <module>rj      s@    ) ( ( ( ( ( ( ( ( ( 4 4 4 4 4 4 % % % % % % w w w w w w w w w w w w w w C C C C C C C C% % % % %*E % % % %
 
 
 
 
/u 
 
 
 
{X {X {X {X {X {X {X {X {X {Xr   