Returns: the path to the `modelzoo` folder in the DeepLabCut installation
()
| 30 | |
| 31 | |
| 32 | def dlc_modelzoo_path() -> Path: |
| 33 | """Returns: the path to the `modelzoo` folder in the DeepLabCut installation""" |
| 34 | dlc_root_path = Path(get_deeplabcut_path()) |
| 35 | return dlc_root_path / "modelzoo" |
| 36 | |
| 37 | |
| 38 | def get_super_animal_project_cfg(super_animal: str) -> dict: |
no test coverage detected