Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo #2565

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nnunetv2/evaluation/find_best_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion nnunetv2/inference/predict_from_raw_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down