
    Piy                         d dl mZmZmZmZmZ d dlmZ d dlm	Z	 d dl
mZ d dlmZ ddddddd	d
dededeeeef                  dedee         dedee         dedeeef         deee	f         fdZdS )    )AnyCallableDictOptionalUnion)InputOutputToMessages)PackedDataset)
SFTDataset)ModelTokenizerzSamsung/samsumNFtrain)source
column_maptrain_on_inputnew_system_promptpacked	filter_fnsplit	tokenizerr   r   r   r   r   r   r   load_dataset_kwargsreturnc          	          |pddd}t          |||          }	t          d	||	| ||d|}
|r,| j        t          d          t	          |
| j                  S |
S )
a+  
    Support for summarization datasets and their variants from Hugging Face Datasets.
    An example is the `SAMsum dataset <https://huggingface.co/datasets/samsum>`_.

    It is recommended to configure the tokenizer with the :class:`~torchtune.data.SummarizeTemplate`
    in conjunction with this dataset.

    Masking of the prompt during training is controlled by the ``train_on_input`` flag, which is
    set to ``False`` by default
    - If ``train_on_input`` is True, the prompt is used during training and
    contributes to the loss.
    - If ``train_on_input`` is False, the prompt is masked out (tokens replaced with -100)

    Args:
        tokenizer (ModelTokenizer): Tokenizer used by the model that implements the ``tokenize_messages`` method.
        source (str): path to dataset repository on Hugging Face. For local datasets,
            define source as the data file type (e.g. "json", "csv", "text"), pass
            in the filepath in ``data_files``, and set ``split="train"``. See `Hugging Face's
            <https://huggingface.co/docs/datasets/en/package_reference/loading_methods#datasets.load_dataset.path>`_
            ``load_dataset`` for more details. Default is ``Samsung/samsum``.
        column_map (Optional[Dict[str, str]]): a mapping from the expected columns in the message transform
            :class:`~torchtune.data.InputOutputToMessages` to the new column names in the dataset. Keys should
            be "input" and "output" and values should be the actual column names. If None, use
            the default column names ``{"input": "dialogue", "output": "summary"}`` in ``Samsung/samsum``.
        train_on_input (bool): Whether the model is trained on the prompt or not. Default is False.
        new_system_prompt (Optional[str]): if specified, prepend a system message to every sample. This can
            serve as instructions to guide the model response. Setting this will OVERRIDE any system
            messages already present in the dataset. Default is None.
        packed (bool): Whether or not to pack the dataset to tokenizer's ``max_seq_len`` prior to training. Default is False.
        filter_fn (Optional[Callable]): callable used to filter the dataset prior to any pre-processing. See
            the Hugging Face `docs <https://huggingface.co/docs/datasets/v2.20.0/process#select-and-filter>`_ for more
            details.
        split (str): ``split`` argument for ``datasets.load_dataset``. You can use this argument to load a subset
            of a given split, e.g. ``split="train[:10%]"``. Default is "train".
        **load_dataset_kwargs (Dict[str, Any]): additional keyword arguments to pass to ``load_dataset``.

    Returns:
        Union[SFTDataset, PackedDataset]: dataset configured with source data and template

    Raises:
        ValueError: If ``packed=True`` and ``tokenizer.max_seq_len`` is not set.

    Example:
        >>> samsum_ds = samsum_dataset(model_transform=tokenizer)
        >>> for batch in Dataloader(samsum_ds, batch_size=8):
        >>>     print(f"Batch size: {len(batch)}")
        >>> Batch size: 8
    dialoguesummary)inputoutput)r   r   r   )r   message_transformmodel_transformr   r   Nz@PackedDataset requires a max_seq_len to be set on the tokenizer.)max_seq_len )r   r
   r   
ValueErrorr	   )r   r   r   r   r   r   r   r   r   r   dss              n/home/jaya/work/projects/VOICE-AGENT/VIET/agent-env/lib/python3.11/site-packages/torchtune/datasets/_samsum.pysamsum_datasetr#      s    x IyIIJ-%+  
 
 
+!
 
 
 
B  D (R   RY-BCCCCI    )typingr   r   r   r   r   torchtune.datar   torchtune.datasets._packedr	   torchtune.datasets._sftr
   'torchtune.modules.transforms.tokenizersr   strboolr#   r   r$   r"   <module>r,      sT   8 7 7 7 7 7 7 7 7 7 7 7 7 7 0 0 0 0 0 0 4 4 4 4 4 4 . . . . . . B B B B B B #+/ '+$(Q Q QQ Q c3h(	Q
 Q  }Q Q !Q Q  S>Q :}$%Q Q Q Q Q Qr$   