Skip to content

Commit 8958aec

Browse files
committed
Update worker_inference.py
1 parent 656d627 commit 8958aec

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

napari_cellseg3d/code_models/worker_inference.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,10 @@ def load_layer(self):
241241
logger.debug(volume.shape)
242242
logger.debug(volume.dtype)
243243

244-
normalization = (
245-
QuantileNormalization()
246-
if self.config.model_info.name != "WNet"
247-
else lambda x: x
248-
)
244+
normalization = QuantileNormalization()
245+
# if self.config.model_info.name != "WNet"
246+
# else lambda x: x
247+
# )
249248
if self.config.sliding_window_config.is_enabled():
250249
load_transforms = Compose(
251250
[

0 commit comments

Comments
 (0)