mirror of
https://github.com/open-mmlab/mmcv.git
synced 2025-06-03 21:54:52 +08:00
allow .yml extension for config file
This commit is contained in:
parent
8b4417c19a
commit
bfdd0d5985
@ -89,11 +89,11 @@ class Config(object):
|
||||
for name, value in mod.__dict__.items()
|
||||
if not name.startswith('__')
|
||||
}
|
||||
elif filename.endswith(('.yaml', '.json')):
|
||||
elif filename.endswith(('.yml', '.yaml', '.json')):
|
||||
import mmcv
|
||||
cfg_dict = mmcv.load(filename)
|
||||
else:
|
||||
raise IOError('Only py/yaml/json type are supported now!')
|
||||
raise IOError('Only py/yml/yaml/json type are supported now!')
|
||||
return Config(cfg_dict, filename=filename)
|
||||
|
||||
@staticmethod
|
||||
|
Loading…
x
Reference in New Issue
Block a user