You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rdagent/scenarios/kaggle/experiment/prompts.yaml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ kg_description_template:
8
8
"Competition Type": "The type of competition, e.g., 'Classification', 'Regression', 'Clustering', 'Prediction", "Time-Series Forecasting",
9
9
"Competition Description": "A brief description of the competition",
10
10
"Target Description": "A description of the target variable to be predicted",
11
+
"Competition Features": "Two-line description of the overall features involved within the competition as background."
12
+
"Submission Specifications": "The submission specification & sample submission csv descriptions for the model to output."
11
13
}
12
14
Since these might be very similar column names in data like one_hot_encoded columns, you can use some regex to group them together.
13
15
@@ -20,7 +22,7 @@ kg_description_template:
20
22
21
23
kg_background: |-
22
24
You are solving a data science tasks and the type of the competition is {{ competition_type }}.
23
-
The competition description is:{{competition_description}}
25
+
The competition description is:{{competition_description}}.
24
26
25
27
We provide an overall script in file: train.py. The user will run the train.py script along with several feature and model scripts to train several model to get a good performance on this task.
26
28
@@ -63,6 +65,8 @@ kg_background: |-
63
65
64
66
For each loop, you need to help user decide which action item to choose and provide the corresponding code to implement the action item.
65
67
68
+
Most importantly, the output format & submission requirements are listed here: {submission_specifications}
69
+
66
70
kg_feature_interface: |-
67
71
Your code should contain several parts:
68
72
1. The import part: import the necessary libraries.
0 commit comments