diff --git a/nnunetv2/evaluation/find_best_configuration.py b/nnunetv2/evaluation/find_best_configuration.py index f585b80d9..ed117067f 100644 --- a/nnunetv2/evaluation/find_best_configuration.py +++ b/nnunetv2/evaluation/find_best_configuration.py @@ -285,7 +285,7 @@ def find_best_configuration_entry_point(): parser.add_argument('--disable_ensembling', action='store_true', required=False, help='Set this flag to disable ensembling') parser.add_argument('--no_overwrite', action='store_true', - help='If set we will not overwrite already ensembled files etc. May speed up concecutive ' + help='If set we will not overwrite already ensembled files etc. May speed up consecutive ' 'runs of this command (why would you want to do that?) at the risk of not updating ' 'outdated results.') args = parser.parse_args() diff --git a/nnunetv2/inference/predict_from_raw_data.py b/nnunetv2/inference/predict_from_raw_data.py index 1f5ede64f..561e6bcca 100644 --- a/nnunetv2/inference/predict_from_raw_data.py +++ b/nnunetv2/inference/predict_from_raw_data.py @@ -171,7 +171,7 @@ def _manage_input_and_output_lists(self, list_of_lists_or_source_folder: Union[s caseids = [os.path.basename(i[0])[:-(len(self.dataset_json['file_ending']) + 5)] for i in list_of_lists_or_source_folder] print( - f'I am process {part_id} out of {num_parts} (max process ID is {num_parts - 1}, we start counting with 0!)') + f'I am processing {part_id} out of {num_parts} (max process ID is {num_parts - 1}, we start counting with 0!)') print(f'There are {len(caseids)} cases that I would like to predict') if isinstance(output_folder_or_list_of_truncated_output_files, str):