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/data_science/scen/prompts.yaml
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -34,21 +34,20 @@ scenario_description: |-
34
34
{{ evaluation }}
35
35
{% endif %}
36
36
37
-
{% if time_limit %}
37
+
{% if time_limit is not none %}
38
38
====== Time Limit On Full Code Execution ======
39
39
Your full code's execution is limited to **{{ time_limit }}**. After this time limit, your code will be terminated and all time and resources are wasted. Always make sure your code will not run longer than this time limit.
40
40
During this time limit, you have all the resources available to you. Please fully leverage all the computational resources(CPUs and GPUs) to achieve the best performance like choose a powerful model, use a large batch size, enable data sampler with big parallel.
41
-
{% if sample_data_by_LLM is not none and sample_data_by_LLM is true %}
41
+
{% endif %}{% if debug_time_limit is not none%}
42
42
====== Time Limit On Debug Mode Code Execution ======
43
43
Your are also required to include a debug mode in your code, the debug code's execution is limited to **{{ debug_time_limit }}**. You should make sure 10 percent of the data training one epoch can be finished within this time limit. If not, your should propose a new debug strategy in your task.
44
-
{% endif %}
44
+
{% endif %}{% if recommend_time_limit is not none %}
45
45
====== Recommend Time Spent On Full Code Execution ======
46
46
You should always prioritize performance over time spent since some tasks requires very little time to run the code to achieve the best performance while some tasks might need a lot of time to train one or more large models.
47
-
We recommend you to spend less than **{{ recommend_time_limit }}** on the full code execution to boost efficiency. This is a recommended time limit, you can spend more time on the code execution if you think it is necessary. But always remember to not exceed the time limit.
48
-
{% if sample_data_by_LLM is not none and sample_data_by_LLM is true %}
47
+
We recommend you to spend less than **{{ recommend_time_limit }}** on the full code execution to boost efficiency. This is a recommended time limit, you can spend more time on the code execution if you think it is very necessary. But your code could be terminated sometime after this recommend time limit.
48
+
{% endif %}{% if recommend_debug_time_limit is not none %}
49
49
====== Recommend Time Spent On Debug Mode Code Execution ======
50
-
We recommend you to spend less than **{{ recommend_debug_time_limit }}** on the debug mode code execution to boost efficiency. This is a recommended time limit, you can spend more time on the debug mode code execution if you think it is necessary. But always remember to not exceed the time limit.
51
-
{% endif %}
50
+
We recommend you to spend less than **{{ recommend_debug_time_limit }}** on the debug mode code execution to boost efficiency. This is a recommended time limit, you can spend more time on the debug mode code execution if you think it is very necessary. But your code could be terminated sometime after this recommend time limit.
0 commit comments