From ef53a978996e2f852c5606115748bd086e51eae4 Mon Sep 17 00:00:00 2001 From: Nils-Christian Iseke <48475933+Nils-ChristianIseke@users.noreply.github.com> Date: Sat, 14 Oct 2023 10:54:47 +0200 Subject: [PATCH] Fixed typo in nnUNetTrainer.py --- nnunetv2/training/nnUNetTrainer/nnUNetTrainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnunetv2/training/nnUNetTrainer/nnUNetTrainer.py b/nnunetv2/training/nnUNetTrainer/nnUNetTrainer.py index 57aa904b2..a7d067582 100644 --- a/nnunetv2/training/nnUNetTrainer/nnUNetTrainer.py +++ b/nnunetv2/training/nnUNetTrainer/nnUNetTrainer.py @@ -267,7 +267,7 @@ def build_network_architecture(plans_manager: PlansManager, num_input_channels, enable_deep_supervision: bool = True) -> nn.Module: """ - his is where you build the architecture according to the plans. There is no obligation to use + This is where you build the architecture according to the plans. There is no obligation to use get_network_from_plans, this is just a utility we use for the nnU-Net default architectures. You can do what you want. Even ignore the plans and just return something static (as long as it can process the requested patch size)