We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, thanks for the great work! However, why is training always set to True in the ContBatchNorm3d implementation in SuPreM/target_applications/totalsegmentator/model/unet3d.py?
F.batch_norm( input, self.running_mean, self.running_var, self.weight, self.bias, True, self.momentum, self.eps )
the training mode is explicitly set to True. Won't this affect the behavior during the test phase?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thanks for the great work!
However, why is training always set to True in the ContBatchNorm3d implementation in SuPreM/target_applications/totalsegmentator/model/unet3d.py?
F.batch_norm( input, self.running_mean, self.running_var, self.weight, self.bias, True, self.momentum, self.eps )
the training mode is explicitly set to True. Won't this affect the behavior during the test phase?
The text was updated successfully, but these errors were encountered: