JonOlds64 commited on
Commit
94c3267
·
verified ·
1 Parent(s): ea7bd50

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: messages
5
+ list:
6
+ - name: content
7
+ dtype: string
8
+ - name: role
9
+ dtype: string
10
+ splits:
11
+ - name: train
12
+ num_bytes: 20554943
13
+ num_examples: 40917
14
+ - name: test
15
+ num_bytes: 1090058
16
+ num_examples: 2154
17
+ download_size: 21645001
18
+ dataset_size: 43071
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: bdeu.train.json
24
+ - split: test
25
+ path: bdeu.test.json
26
+ ---
27
+
28
+ Dataset: bouygues-deu-train
29
+ Dataset Info
30
+
31
+ This dataset contains conversational data structured into a single column, "messages", which represents interactions between a user and an assistant.
32
+ Features
33
+
34
+ messages: A list of dictionaries representing each conversational message
35
+ content: (string) The text of the message.
36
+ role: (string) The role of the sender, either "user" or "assistant".
37
+
38
+ Splits
39
+
40
+ The dataset is divided into training and testing splits.
41
+
42
+ train
43
+ num_bytes: 20554943
44
+ num_examples: 40917
45
+ test
46
+ num_bytes: 1090058
47
+ num_examples: 2154
48
+
49
+ Download Size
50
+
51
+ The total download size for the dataset is 21645001 bytes.
52
+ Example
53
+
54
+ 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:
55
+
56
+ {
57
+ "messages": [
58
+ {
59
+ "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?",
60
+ "role": "user"
61
+ },
62
+ {
63
+ "content": "The TFA 8th Edition Playing Rules were presented by Touch Football Australia at the Federation of International Touch Paris Convention in October 2019.",
64
+ "role": "assistant"
65
+ }
66
+ ]
67
+ }