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
filtering students prediction caused my model to predict far too many voxels/lesions than it should. I think it should not be done here. Same in line 57
The text was updated successfully, but these errors were encountered:
Hmm okay. I think you can update this by not passing the label filters in the MeanTeacherTrainer (and similar in the lines below for the other training and validation functions)
or, an easier option would be to update the loss (and metric) functions to not consider the label filter at all, regardless of it's passed to the __call__ method or not.
yes I simply don't multiply prediction with label_filter, but wanted to let you know, coz it seems to me it should be formulated like this: loss = self.loss(prediction, labels * label_filter)
or am I missing sth?
torch-em/torch_em/self_training/loss.py
Line 29 in a969237
filtering students prediction caused my model to predict far too many voxels/lesions than it should. I think it should not be done here. Same in line 57
The text was updated successfully, but these errors were encountered: