From e578a841ce3ef570e1b821a902fd42a25ce6f635 Mon Sep 17 00:00:00 2001 From: Santhisenan A Date: Fri, 14 Jun 2024 11:09:14 +0800 Subject: [PATCH] Fix validation output folder name in "How to use nnU-Net" documentation The folder in which the prediction output from validation cases are stored is named "validation". However, in the documentation, it is mentioned as "validation_raw". --- documentation/how_to_use_nnunet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/how_to_use_nnunet.md b/documentation/how_to_use_nnunet.md index 290ae8873..8b34b4045 100644 --- a/documentation/how_to_use_nnunet.md +++ b/documentation/how_to_use_nnunet.md @@ -163,7 +163,7 @@ a plot of the training (blue) and validation (red) loss during training. Also sh average over all cases but pretend that there is only one validation case from which we sample patches). The reason for this is that the 'global Dice' is easy to compute during training and is still quite useful to evaluate whether a model is training at all or not. A proper validation takes way too long to be done each epoch. It is run at the end of the training. -- validation_raw: in this folder are the predicted validation cases after the training has finished. The summary.json file in here +- validation: in this folder are the predicted validation cases after the training has finished. The summary.json file in here contains the validation metrics (a mean over all cases is provided at the start of the file). If `--npz` was set then the compressed softmax outputs (saved as .npz files) are in here as well.