NeuralSolvers icon indicating copy to clipboard operation
NeuralSolvers copied to clipboard

Weighting is not set correctly

Open StillerPatrick opened this issue 3 years ago • 0 comments

In the HPMLoss the weighting is not set correctly.

super(HPMLoss, self).__init__(dataset, None, name, norm='L2', weight=1.)

should be

super(HPMLoss, self).__init__(dataset, None, name, norm='L2', weight=weight)

StillerPatrick avatar Dec 16 '21 09:12 StillerPatrick