--- dataset_info: features: - name: messages list: - name: content dtype: string - name: role dtype: string splits: - name: train num_bytes: 20554943 num_examples: 40917 - name: test num_bytes: 1090058 num_examples: 2154 download_size: 21645001 dataset_size: 43071 configs: - config_name: default data_files: - split: train path: bdeu.train.json - split: test path: bdeu.test.json --- Dataset: bouygues-deu-train Dataset Info This dataset contains conversational data structured into a single column, "messages", which represents interactions between a user and an assistant. Features messages: A list of dictionaries representing each conversational message content: (string) The text of the message. role: (string) The role of the sender, either "user" or "assistant". Splits The dataset is divided into training and testing splits. train num_bytes: 20554943 num_examples: 40917 test num_bytes: 1090058 num_examples: 2154 Download Size The total download size for the dataset is 21645001 bytes. Example Each example in the dataset is a dictionary with a single key, "messages", whose value is a list of message dictionaries. Here’s a sample of one row in the "messages" column: { "messages": [ { "content": "What edition of the Touch Football rules was presented by Touch Football Australia at the Federation of International Touch Paris Convention in October 2019?", "role": "user" }, { "content": "The TFA 8th Edition Playing Rules were presented by Touch Football Australia at the Federation of International Touch Paris Convention in October 2019.", "role": "assistant" } ] }