Skip to content

Commit 4cdbf0e

Browse files
authored
fix a bug in feature selection prompt (microsoft#333)
1 parent 3d36c45 commit 4cdbf0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rdagent/scenarios/kaggle/prompts.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,9 @@ feature_selection_feedback_generation:
272272
Result: {{exp.result}}
273273
274274
Available Features:
275-
{% for feature in available_features %}
276-
- {{feature.name}}: {{feature.description}}
277-
Shape: {{feature.shape}}
275+
{% for feature, shape in available_features %}
276+
Features description: {{feature}}
277+
Feature shape: {{shape}}
278278
{% endfor %}
279279
280280
Compare and observe the results. Which result has a better return and lower risk? If the performance increases, the hypothesis should be considered positive (working).

0 commit comments

Comments
 (0)