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
Why does the calculation of loss need to be multiplied by a coefficient of 0.5? Is it because fine and coat account for half respectively?
ret['c_l'] = 0.5 * ((inputs['rgb_coarse']-targets)**2).mean()
ret['f_l'] = 0.5 * ((inputs['rgb_coarse']-targets)**2).mean()
The text was updated successfully, but these errors were encountered:
Why does the calculation of loss need to be multiplied by a coefficient of 0.5? Is it because fine and coat account for half respectively?
ret['c_l'] = 0.5 * ((inputs['rgb_coarse']-targets)**2).mean()
ret['f_l'] = 0.5 * ((inputs['rgb_coarse']-targets)**2).mean()
The text was updated successfully, but these errors were encountered: