good
good copied to clipboard
Missing config files
Hi, it seems two config files are missing when running the extract_outputs.py to produce depth or normal maps.
Could you provide the mmdet_config_ori.py and mmdet_config_576.py? Thanks!
I have the same problem.
https://github.com/autonomousvision/good/issues/1#issue-1854718929
You could modify extract_outputs.py like:
if args.ori:
# cfg = Config.fromfile(f'mmdet_config_ori.py')
cfg = Config.fromfile(f'configs/good/phase1_depth.py')
else:
#cfg = Config.fromfile(f'mmdet_config_{args.max_size}.py')
cfg = Config.fromfile(f'configs/good/phase1_depth.py')
It just make it run, but details in mmdet_config_ori.py and mmdet_config_576.py is unknowable.
You could modify extract_outputs.py like:
if args.ori: # cfg = Config.fromfile(f'mmdet_config_ori.py') cfg = Config.fromfile(f'configs/good/phase1_depth.py') else: #cfg = Config.fromfile(f'mmdet_config_{args.max_size}.py') cfg = Config.fromfile(f'configs/good/phase1_depth.py')It just make it run, but details in mmdet_config_ori.py and mmdet_config_576.py is unknowable.
While this modify can not reimplement GOOD-D result in paper.
When used AutoAugment in training, I met memory leak. So I remove AutoAugment in phase-II training. In paper, without AutoAugment in phase-II training GOOD-D achieve 38.4 ARN@100. But casue missing config files in generate depth map, I can only use configs/good/phase1_depth.py to replase missing config files and finally only achieves 36.5 ARN@100.