generated from BrainLesion/brainles-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from BrainLesion/53-split-post-op-glioma-algor…
…ithms-into-own-class 53 split post op glioma algorithms into own class
- Loading branch information
Showing
9 changed files
with
177 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
constants: | ||
input_name_schema: &input_name_schema "BraTS-GLI-{id:05d}-000" | ||
challenge: &challenge "Adult Glioma Segmentation (Pre Treatment)" | ||
years: | ||
2023: &year_2023 2023 | ||
ranks: | ||
1st: &rank_1 1st | ||
2nd: &rank_2 2nd | ||
3rd: &rank_3 3rd | ||
|
||
|
||
algorithms: | ||
|
||
##### 2023 ##### | ||
|
||
BraTS23_1: | ||
meta: | ||
authors: André Ferreira, et al. | ||
paper: https://arxiv.org/abs/2402.17317v1 | ||
challenge: *challenge | ||
rank: *rank_1 | ||
year: *year_2023 | ||
run_args: | ||
docker_image: brainles/brats23_faking_it:latest | ||
input_name_schema: *input_name_schema | ||
requires_root: true | ||
parameters_file: false | ||
shm_size: "2gb" | ||
|
||
BraTS23_2: | ||
meta: | ||
authors: Andriy Myronenko, et al. | ||
paper: N/A | ||
challenge: *challenge | ||
rank: *rank_2 | ||
year: *year_2023 | ||
run_args: | ||
docker_image: brainles/brats23_nvauto:latest | ||
input_name_schema: *input_name_schema | ||
requires_root: true | ||
parameters_file: true | ||
shm_size: "32gb" | ||
|
||
BraTS23_3: | ||
meta: | ||
authors: Fadillah Adamsyah Maani, et al. | ||
paper: N/A | ||
challenge: *challenge | ||
rank: *rank_3 | ||
year: *year_2023 | ||
run_args: | ||
docker_image: brainles/brats23_biomedmbz:latest | ||
input_name_schema: *input_name_schema | ||
requires_root: false | ||
parameters_file: true | ||
shm_size: "2gb" | ||
additional_files: | ||
record_id: "11573315" | ||
param_name: ["checkpoint_dir"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Segmentation Algorithms | ||
======================== | ||
|
||
The following classes provide segmentation algorithms from several BraTS challenges. | ||
The following classes provide algorithms from several BraTS segmentation challenges. | ||
|
||
.. automodule:: brats.core.segmentation_algorithms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.