rooneyma756 commited on
Commit
c0be2ac
·
verified ·
1 Parent(s): 8216013

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -1
README.md CHANGED
@@ -38,10 +38,64 @@ The CCR_Bench data are only available in Chinese.
38
 
39
  ## Dataset Structure
40
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  ### Data Instances
42
 
43
- An example of the `train` split looks as follows:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
 
45
  ```
46
  {
47
  "idx": 0,
@@ -79,6 +133,14 @@ An example of the `train` split looks as follows:
79
 
80
  ### Data Fields
81
 
 
 
 
 
 
 
 
 
82
  The data fields on industry_senario_application are as follows:
83
  * `idx`: A unique ID for the prompt.
84
  * `type`: Describes the task type of the data.
 
38
 
39
  ## Dataset Structure
40
 
41
+ ### Data File
42
+
43
+ There are three files in the root directory: complex_content_format_constraint, logical_workflow_control, and industry_scenario_application, corresponding to the test data for the three aforementioned scenarios.
44
+
45
+ Among these, both complex_content_format_constraint and industry_scenario_application directory contain only a single file each, namely the test data in JSONL format.
46
+
47
+ The logical_workflow_control directory, however, has a more complex structure. Within its folder, there are two subdirectories: resources and scenarios.
48
+
49
+ * The resources folder contains additional reference information required by the model for three scenarios: World Cup, Maze, and Print Trees.
50
+
51
+ * The scenarios folder stores flowcharts, user dialogue templates, and notes for each respective scenario.
52
+
53
  ### Data Instances
54
 
55
+ An example of logical_workflow_control looks as follows:
56
+ ```
57
+ {
58
+ "idx": 1,
59
+ "language": "zh",
60
+ "scenario": "data_flow",
61
+ "user_targets": [
62
+ "用户发现自己手机最近流量用的很快,怀疑是不是流量超套了。[话术:我突然发现最近手机流量用的特别快,是不是超套了?]",
63
+ "当智能助手告知流量未超套时,用户对此提出质疑。[话术:不对,我手机软件上明明显示流量已经超套,这是怎么回事?]"
64
+ ],
65
+ "extra_info": [
66
+ "用户的手机号是13800000002,服务密码是234567"
67
+ ],
68
+ "possible_function_calls": [
69
+ {
70
+ "name": "verify_user_info",
71
+ "arguments": {
72
+ "phone_number": "13800000002",
73
+ "password": "234567"
74
+ }
75
+ },
76
+ {
77
+ "name": "query_exceeded_data_usage",
78
+ "arguments": {
79
+ "phone_number": "13800000002"
80
+ }
81
+ },
82
+ {
83
+ "name": "query_data_usage",
84
+ "arguments": {
85
+ "phone_number": "13800000002"
86
+ }
87
+ },
88
+ {
89
+ "name": "human_service",
90
+ "arguments": {
91
+
92
+ }
93
+ }
94
+ ]
95
+ }
96
+ ```
97
 
98
+ An example of the industry_senario_application looks as follows:
99
  ```
100
  {
101
  "idx": 0,
 
133
 
134
  ### Data Fields
135
 
136
+ The data fields on logical_workflow_control are as follows:
137
+ * `idx`: A unique ID for the prompt.
138
+ * `language`: Describes the language of the data.
139
+ * `senario`: Describes the senario the data.
140
+ * `user_targets`: Describes the task the model should perform.
141
+ * `extra_info`: Describes the extra_info the model can reference during the response.
142
+ * `possible_function_calls`: Describes the possible function calls the model perform the prompt.
143
+
144
  The data fields on industry_senario_application are as follows:
145
  * `idx`: A unique ID for the prompt.
146
  * `type`: Describes the task type of the data.