§
    ‡b¦i	  ã                  ó0   — d Z ddlmZ  G d„ d¦  «        ZdS )a@  
This file contains deprecated code that can only be used with the old `model.fit`-style Sentence Transformers v2.X training.
It exists for backwards compatibility with the `model.old_fit` method, but will be removed in a future version.

Nowadays, with Sentence Transformers v3+, it is recommended to use the `SentenceTransformerTrainer` class to train models.
See https://www.sbert.net/docs/sentence_transformer/training_overview.html for more information.

Instead, you should create a `datasets` `Dataset` for training: https://huggingface.co/docs/datasets/create_dataset
é    )Úannotationsc                  ó"   — e Zd ZdZddd„Zd„ ZdS )ÚInputExamplezEStructure for one input example with texts, the label and a unique idÚ Nr   ÚguidÚstrÚtextsúlist[str] | NoneÚlabelúint | floatc                ó0   — || _         || _        || _        dS )zÞ
        Creates one InputExample with the given texts, guid and label

        Args:
            guid: id for the example
            texts: the texts for the example.
            label: the label for the example
        N)r   r	   r   )Úselfr   r	   r   s       úe/root/projects/butler/venv/lib/python3.11/site-packages/sentence_transformers/readers/InputExample.pyÚ__init__zInputExample.__init__   s   € ð ˆŒ	ØˆŒ
ØˆŒ
ˆ
ˆ
ó    c                ó‚   — d                      t          | j        ¦  «        d                     | j        ¦  «        ¦  «        S )Nz#<InputExample> label: {}, texts: {}z; )Úformatr   r   Újoinr	   )r   s    r   Ú__str__zInputExample.__str__   s0   € Ø4×;Ò;½CÀÄ
¹O¼OÈTÏYÊYÐW[ÔWaÑMbÔMbÑcÔcÐcr   )r   Nr   )r   r   r	   r
   r   r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   © r   r   r   r      sG   € € € € € ØOÐOðð ð ð ð ðdð dð dð dð dr   r   N)r   Ú
__future__r   r   r   r   r   ú<module>r      s_   ððð ð #Ð "Ð "Ð "Ð "Ð "ðdð dð dð dð dñ dô dð dð dð dr   