Skip to content

Commit

Permalink
chores: add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhou committed May 10, 2024
1 parent 44dd5cb commit 1af5c32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/aind_auto_train/curriculums/coupled_baiting_2p1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
Task, TrainingStage, DynamicForagingParas,
AutoWaterMode, AdvancedBlockMode
)
from aind_auto_train import setup_logging
setup_logging()

curriculum_name = Task.C1B1
curriculum_version = "2.1"
Expand Down
2 changes: 2 additions & 0 deletions code/aind_auto_train/curriculums/uncoupled_baiting_2p1.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
Task, TrainingStage, DynamicForagingParas,
AutoWaterMode, AdvancedBlockMode
)
from aind_auto_train import setup_logging
setup_logging()

# Note this could be any string, not necessarily one of the Task enums
curriculum_name = "Uncoupled Baiting"
Expand Down
2 changes: 2 additions & 0 deletions code/aind_auto_train/curriculums/uncoupled_no_baiting_2p1.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
Task, TrainingStage, DynamicForagingParas,
AutoWaterMode, AdvancedBlockMode
)
from aind_auto_train import setup_logging
setup_logging()

# Note this could be any string, not necessarily one of the Task enums
curriculum_name = Task.C0B0
Expand Down

0 comments on commit 1af5c32

Please sign in to comment.