Python utils.get_config_root_path() Examples
The following are 12
code examples of utils.get_config_root_path().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
utils
, or try the search function
.
Example #1
Source File: test_configs.py From Res2Net-maskrcnn with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #2
Source File: test_configs.py From R2CNN.pytorch with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #3
Source File: test_configs.py From DetNAS with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #4
Source File: test_detectors.py From DetNAS with MIT License | 5 votes |
def get_config_files(file_list, exclude_folders): cfg_root_path = utils.get_config_root_path() if file_list is not None: files = [os.path.join(cfg_root_path, x) for x in file_list] else: files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) def _contains(path, exclude_dirs): return any(x in path for x in exclude_dirs) if exclude_folders is not None: files = [x for x in files if not _contains(x, exclude_folders)] return files
Example #5
Source File: test_configs.py From sampling-free with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #6
Source File: test_detectors.py From sampling-free with MIT License | 5 votes |
def get_config_files(file_list, exclude_folders): cfg_root_path = utils.get_config_root_path() if file_list is not None: files = [os.path.join(cfg_root_path, x) for x in file_list] else: files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) def _contains(path, exclude_dirs): return any(x in path for x in exclude_dirs) if exclude_folders is not None: files = [x for x in files if not _contains(x, exclude_folders)] return files
Example #7
Source File: test_configs.py From maskrcnn-benchmark with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #8
Source File: test_detectors.py From maskrcnn-benchmark with MIT License | 5 votes |
def get_config_files(file_list, exclude_folders): cfg_root_path = utils.get_config_root_path() if file_list is not None: files = [os.path.join(cfg_root_path, x) for x in file_list] else: files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) def _contains(path, exclude_dirs): return any(x in path for x in exclude_dirs) if exclude_folders is not None: files = [x for x in files if not _contains(x, exclude_folders)] return files
Example #9
Source File: test_configs.py From EmbedMask with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #10
Source File: test_detectors.py From EmbedMask with MIT License | 5 votes |
def get_config_files(file_list, exclude_folders): cfg_root_path = utils.get_config_root_path() if file_list is not None: files = [os.path.join(cfg_root_path, x) for x in file_list] else: files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) def _contains(path, exclude_dirs): return any(x in path for x in exclude_dirs) if exclude_folders is not None: files = [x for x in files if not _contains(x, exclude_folders)] return files
Example #11
Source File: test_configs.py From DF-Traffic-Sign-Identification with MIT License | 5 votes |
def test_configs_load(self): ''' Make sure configs are loadable ''' cfg_root_path = utils.get_config_root_path() files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) self.assertGreater(len(files), 0) for fn in files: print('Loading {}...'.format(fn)) utils.load_config_from_file(fn)
Example #12
Source File: test_detectors.py From DF-Traffic-Sign-Identification with MIT License | 5 votes |
def get_config_files(file_list, exclude_folders): cfg_root_path = utils.get_config_root_path() if file_list is not None: files = [os.path.join(cfg_root_path, x) for x in file_list] else: files = glob.glob( os.path.join(cfg_root_path, "./**/*.yaml"), recursive=True) def _contains(path, exclude_dirs): return any(x in path for x in exclude_dirs) if exclude_folders is not None: files = [x for x in files if not _contains(x, exclude_folders)] return files