Skip to content

Commit

Permalink
fix a few general typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mrokuss committed Oct 15, 2024
1 parent 575e129 commit f568fc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion documentation/competitions/AortaSeg24.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Helmholtz Imaging

# Introduction

This document describes our submission to the [AortaSeg24 Challenge](hhttps://aortaseg24.grand-challenge.org/).
This document describes our submission to the [AortaSeg24 Challenge](https://aortaseg24.grand-challenge.org/).
Our model is essentially a nnU-Net ResEnc L with modified data augmentation. We disable left/right mirroring and use the heavy data augmentation [DA5 Trainer](../../nnunetv2/training/nnUNetTrainer/variants/data_augmentation/nnUNetTrainerDA5.py). Training was performed on an A100 40GB GPU.

# Experiment Planning and Preprocessing
Expand Down
2 changes: 1 addition & 1 deletion nnunetv2/dataset_conversion/Dataset119_ToothFairy2_All.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


def mapping_DS119() -> Dict[int, int]:
"""Remove all NA Classes and make Class IDs continious"""
"""Remove all NA Classes and make Class IDs continuous"""
mapping = {}
mapping.update({i: i for i in range(1, 19)}) # [1-10]->[1-10] | [11-18]->[11-18]
mapping.update({i: i - 2 for i in range(21, 29)}) # [21-28]->[19-26]
Expand Down

0 comments on commit f568fc3

Please sign in to comment.