Skip to content

Commit a9e7a2c

Browse files
committed
add session parameters in create_ethopy_taskl
1 parent 2d903cc commit a9e7a2c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/ethopy/utils/create_ethopy_task.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,14 @@ def generate_ethopy_template():
106106
# --- Session Parameters (Typically Fixed) ---
107107
# These parameters generally define the overall session constraints.
108108
session_params = {{
109-
"max_reward": 3000, # Maximum total reward
110-
"min_reward": 30, # Minimum total reward
111-
"setup_conf_idx": 0, # Index for setup configuration
109+
"max_reward": 3000, # Maximum total reward, default is based on experiment type
110+
"min_reward": 30, # Minimum total reward, default is based on experiment type
111+
"setup_conf_idx": 0, # Index for setup configuration, default is 0
112112
# Add any other relevant session-wide parameters here
113+
# hydrate_delay: int # delay of hydration in minutes after session ends, default is based on experiment type
114+
# user_name: "bot" # name of user running the experiment default is "bot"
115+
# start_time: "" # session start time if not defined, session will start based on control table
116+
# stop_time: "" # session stop time if not defined, session will stop based on control table
113117
}}
114118
115119
# --- Experiment Initialization and Setup ---

0 commit comments

Comments
 (0)