You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that the type of model output is not always a tuple, so it falls to the else branch, which is the same as a simple L1loss.
Looking at the related issue: issue 28,
I guess the multiscale loss was designed to train only a part of the model, i.e. FlowNetC/S, separately.
Is it right?
Thank you
The text was updated successfully, but these errors were encountered:
Hello,
I'm trying to fine-tune the whole FlowNet2 network from the provided pre-trained weights,
with the multi-scale loss by:
However, the model returns only single flow output from the last fusion layer
return flownetfusion_flow
and in the MultiScale class, the type of the flow output, which is passed as an argument, is checked
The problem is that the type of model output is not always a tuple, so it falls to the else branch, which is the same as a simple L1loss.
Looking at the related issue: issue 28,
I guess the multiscale loss was designed to train only a part of the model, i.e. FlowNetC/S, separately.
Is it right?
Thank you
The text was updated successfully, but these errors were encountered: