CenterNet
CenterNet copied to clipboard
Help!No such file or directory ../../instances_trainval2014.json
when I use python train.py CenterNet-104,I got the error.
Traceback (most recent call last):
File "train.py", line 193, in
I check the file, anybody who solved this probiem before?
@Duankaiwen
I have solved the problem
how did U solve it???I meet the same problem,Thanks
how did U solve it???I meet the same problem,Thanks
how did U solve it???I meet the same problem,Thanks
how did U solve it???I meet the same problem,Thanks
The key is in this path, '../' is Global path, I use './' to replase it You can manually set the wrong path, for me, I change one code at coco.py(db/coco.py) File "coco.py", line 19, I add"data_dir = './data', and then it's OK or just 'data' is OK
config/CenterNet-104.json "data_dir": "../data"-->"data_dir": "./data" according to It works,thanks a lot.