Shortcuts

ShareGPTToMessages

class torchtune.data.ShareGPTToMessages(train_on_input: Optional[bool] = None, column_map: Optional[Dict[str, str]] = None, new_system_prompt: Optional[str] = None, image_dir: Optional[Path] = None, image_tag: Optional[str] = '<image>', masking_strategy: Optional[str] = 'train_on_assistant')[source]

Convert a single chat sample adhering to the ShareGPT JSON structure to torchtune’s Message structure.

A single sample typically consists of a single optional system prompt and one or multiple turns of user and assistant messages.

ShareGPT follows:

{
    "conversations": [
        {
            "from": <system|human|gpt>,
            "value": <message>,
        },
        ...
    ]
}

Message follows:

[
    {
        "role": <system|user|assistant>,
        "content": <message>,
    },
    ...
]
Parameters:
  • train_on_input (Optional[bool]) – whether the model is trained on the user prompt or not. Deprecated parameter and will be removed in a future release. Default is None.

  • column_map (Optional[Dict[str, str]]) – a mapping from the expected columns (“conversations”) to the new column names in the dataset. Key should be “conversations” and value should be the new column name. If None, keep the default “conversations”. Default is None.

  • new_system_prompt (Optional[str]) – if specified, prepend a system message. 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.

  • image_dir (Optional[Path]) – path to the directory containing the images that is prepended to all image paths in the dataset. For example, if image_dir="/home/user/dataset/"` and the sample image path was ``"images/1.jpg", the final image path that will be loaded is "/home/user/dataset/images/1.jpg". If None, assume images are available in current working directory or are located on a remote url. For text-only, leave as None. Default is None.

  • image_tag (Optional[str]) – placeholder tags in the text content of each message to be replaced by image special tokens. If images are present and this is None, then will prepend image tokens to the first user message in the sample by default. If text-only, this field is ignored. Default is "<image>".

  • masking_strategy (Optional[str]) –

    masking strategy to use for model training. Must be one of: train_on_all, train_on_assistant, train_on_last. Default is “train_on_assistant”.

    • train_on_all: both user and assistant messages are unmasked

    • train_on_assistant: user messages are masked, only assistant messages are unmasked

    • train_on_last: only the last assistant message is unmasked

    Note: Multimodal user messages are always masked.

Raises:

ValueError – If column_map is provided and conversations not in column_map.

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources