-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Nondeterministic in HoVerNet #5609
Copy link
Copy link
Closed
Labels
Contribution wantedFeature requestdocumentationImprovements or additions to documentationImprovements or additions to documentation
Description
In the current HoVerNet implementation of MONAI, it uses UpSample with NONTRAINABLE mode which used torch.nn.functional.interpolate() may cause nondeterministic.
MONAI/monai/networks/nets/hovernet.py
Lines 535 to 537 in d0db5fd
| self.upsample = UpSample( | |
| 2, scale_factor=2, mode=UpsampleMode.NONTRAINABLE, interp_mode=InterpolateMode.BILINEAR, bias=False | |
| ) |
Describe the solution you'd like
It may need to be explained in the docstring.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Contribution wantedFeature requestdocumentationImprovements or additions to documentationImprovements or additions to documentation