Skip to content

Commit

Permalink
fix a bug in feature selection prompt (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
WinstonLiyt authored Sep 25, 2024
1 parent 3d36c45 commit 4cdbf0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rdagent/scenarios/kaggle/prompts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ feature_selection_feedback_generation:
Result: {{exp.result}}
Available Features:
{% for feature in available_features %}
- {{feature.name}}: {{feature.description}}
Shape: {{feature.shape}}
{% for feature, shape in available_features %}
Features description: {{feature}}
Feature shape: {{shape}}
{% endfor %}
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).
Expand Down

0 comments on commit 4cdbf0e

Please sign in to comment.