Spaces:
Runtime error
Runtime error
# Copyright (c) OpenMMLab. All rights reserved. | |
import os | |
def get_cfgs_name_path(): | |
path = os.path.dirname(__file__) | |
mapping = {} | |
for root, dirs, files in os.walk(path): | |
for file_ in files: | |
if file_.endswith( | |
('.py', '.json') | |
) and not file_.startswith('.') and not file_.startswith('_'): | |
mapping[os.path.splitext(file_)[0]] = os.path.join(root, file_) | |
return mapping | |
cfgs_name_path = get_cfgs_name_path() | |
__all__ = ['cfgs_name_path'] | |