File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1111
1212from dlclibrary .dlcmodelzoo .modelzoo_download import (
1313 download_huggingface_model ,
14+ get_available_detectors ,
15+ get_available_models ,
1416 parse_available_supermodels ,
1517)
1618from dlclibrary .version import __version__ , VERSION
Original file line number Diff line number Diff line change @@ -86,15 +86,17 @@ def parse_available_supermodels():
8686
8787
8888def get_available_detectors (dataset : str ) -> list [str ]:
89- """
89+ """ Only for PyTorch models.
90+
9091 Returns:
9192 The detectors available for the dataset.
9293 """
9394 return list (_load_pytorch_dataset_models (dataset )["detectors" ].keys ())
9495
9596
9697def get_available_models (dataset : str ) -> list [str ]:
97- """
98+ """ Only for PyTorch models.
99+
98100 Returns:
99101 The pose models available for the dataset.
100102 """
You can’t perform that action at this time.
0 commit comments