good icon indicating copy to clipboard operation
good copied to clipboard

Missing config files

Open Reagan1311 opened this issue 2 years ago • 3 comments

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!

Reagan1311 avatar Aug 17 '23 10:08 Reagan1311

I have the same problem.

luoh226 avatar Sep 02 '23 13:09 luoh226

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.

luoh226 avatar Sep 02 '23 13:09 luoh226

#1 (comment)

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.

luoh226 avatar Sep 10 '23 08:09 luoh226