Fix data.yaml absolute path bug (#3242)
This commit is contained in:
parent
9d38d2b044
commit
bba7cf55a0
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ def check_det_dataset(dataset, autodownload=True):
|
|||
|
||||
if not path.is_absolute():
|
||||
path = (DATASETS_DIR / path).resolve()
|
||||
data['path'] = path # download scripts
|
||||
data['path'] = path # download scripts
|
||||
for k in 'train', 'val', 'test':
|
||||
if data.get(k): # prepend path
|
||||
if isinstance(data[k], str):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue