-
Notifications
You must be signed in to change notification settings - Fork 29
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
Details on Training RefineNet #30
Comments
There is some bugs for loading I think, previously, refineNet is bulid in a second branch, in the merging into current branch, the loading have some bugs. if opt.load_dir and opt.load_dir != 'None': here for loading fusion network weights, please have a check the if statement. |
This problem confuses me a lot too! Have you solved it yet? Could you provide the solution? Thanks. |
In this line, add a check after the for loop
if name == "R":
continue |
thanks bruh |
In the paper's Implementation Details section it is stated that the RefineNet is trained with exposure estimation and FusionNet together but freezing the latter two. I already trained the FusionNet. But I didn't see in the code that RefineNet training process used my pre-trained FusionNet, The RefineNet just defined new netG and netM models.
I'm a bit confused about this training process. If the trained FusionNet is never used, then what's the point of training a FusionNet?
The text was updated successfully, but these errors were encountered: