From 7a954e359a18441ba0bd58d6db5aaecaff0ae400 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 20:00:11 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- nobrainer/processing/generation.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nobrainer/processing/generation.py b/nobrainer/processing/generation.py index b729e68c..51b46625 100644 --- a/nobrainer/processing/generation.py +++ b/nobrainer/processing/generation.py @@ -152,12 +152,12 @@ def _compile(): num_parallel_calls=num_parallel_calls, volume_shape=(resolution, resolution, resolution), n_classes=1, - scalar_labels=True + scalar_labels=True, ) n_epochs = info.get("epochs") or epochs - dataset.batch(batch_size) \ - .normalize(info.get("normalizer") or normalizer) \ - .repeat(n_epochs) + dataset.batch(batch_size).normalize( + info.get("normalizer") or normalizer + ).repeat(n_epochs) with self.strategy.scope(): # grow the networks by one (2^x) resolution