Get path of where deeplabcut is currently running.
()
| 631 | |
| 632 | |
| 633 | def get_deeplabcut_path(): |
| 634 | """Get path of where deeplabcut is currently running.""" |
| 635 | import importlib.util |
| 636 | |
| 637 | return os.path.split(importlib.util.find_spec("deeplabcut").origin)[0] |
| 638 | |
| 639 | |
| 640 | def intersection_of_body_parts_and_ones_given_by_user(cfg, comparisonbodyparts): |
no test coverage detected