Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix get_super_animal_project_cfg
When calling read_config, the superanimal yaml config in the repo was modified
  • Loading branch information
maximpavliv committed Feb 25, 2025
commit d13d213a5719ddd7b61dc6feef4a26ed34419b9d
2 changes: 1 addition & 1 deletion deeplabcut/modelzoo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_super_animal_project_cfg(super_animal: str) -> dict:
f"are {', '.join(super_animal_projects.keys())}."
)

return read_config(str(super_animal_projects[super_animal]))
return read_config_as_dict(super_animal_projects[super_animal])


def get_super_animal_scorer(
Expand Down