-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing config files #1
Comments
I have the same problem. |
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. |
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
andmmdet_config_576.py
? Thanks!The text was updated successfully, but these errors were encountered: