diff --git a/GANDLF/version.py b/GANDLF/version.py index 5e5047feb..20135e762 100644 --- a/GANDLF/version.py +++ b/GANDLF/version.py @@ -2,4 +2,4 @@ # -*- coding: UTF-8 -*- # check GaNDLF wiki for versioning and release guidelines: https://github.com/mlcommons/GaNDLF/wiki -__version__ = "0.1.2-dev" +__version__ = "0.1.2" diff --git a/samples/config_all_options.yaml b/samples/config_all_options.yaml index 872d65c44..bbeba97dc 100644 --- a/samples/config_all_options.yaml +++ b/samples/config_all_options.yaml @@ -1,8 +1,8 @@ # affix version version: { - minimum: 0.1.2-dev, - maximum: 0.1.2-dev # this should NOT be made a variable, but should be tested after every tag is created + minimum: 0.1.2, + maximum: 0.1.2 # this should NOT be made a variable, but should be tested after every tag is created } ## Choose the model parameters here model: diff --git a/samples/config_classification.yaml b/samples/config_classification.yaml index e8b720520..1c388c727 100644 --- a/samples/config_classification.yaml +++ b/samples/config_classification.yaml @@ -1,8 +1,8 @@ # affix version version: { - minimum: 0.1.2-dev, - maximum: 0.1.2-dev # this should NOT be made a variable, but should be tested after every tag is created + minimum: 0.1.2, + maximum: 0.1.2 # this should NOT be made a variable, but should be tested after every tag is created } # Choose the model parameters here model: diff --git a/samples/config_getting_started_classification_histo2d.yaml b/samples/config_getting_started_classification_histo2d.yaml index f824fbd92..5b207ff80 100644 --- a/samples/config_getting_started_classification_histo2d.yaml +++ b/samples/config_getting_started_classification_histo2d.yaml @@ -94,6 +94,6 @@ scheduler: track_memory_usage: false verbose: false version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: true diff --git a/samples/config_getting_started_classification_rad3d.yaml b/samples/config_getting_started_classification_rad3d.yaml index 109e001e6..218a2eb8e 100644 --- a/samples/config_getting_started_classification_rad3d.yaml +++ b/samples/config_getting_started_classification_rad3d.yaml @@ -99,6 +99,6 @@ scheduler: track_memory_usage: false verbose: false version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: true diff --git a/samples/config_getting_started_regression_histo2d.yaml b/samples/config_getting_started_regression_histo2d.yaml index fa2a41e2f..bcfd895dc 100644 --- a/samples/config_getting_started_regression_histo2d.yaml +++ b/samples/config_getting_started_regression_histo2d.yaml @@ -59,6 +59,6 @@ scheduler: track_memory_usage: false verbose: false version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: true diff --git a/samples/config_getting_started_regression_rad3d.yaml b/samples/config_getting_started_regression_rad3d.yaml index 8ce80e1d1..fc28692fd 100644 --- a/samples/config_getting_started_regression_rad3d.yaml +++ b/samples/config_getting_started_regression_rad3d.yaml @@ -62,6 +62,6 @@ scheduler: track_memory_usage: false verbose: false version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: false diff --git a/samples/config_getting_started_segmentation_histo2d.yaml b/samples/config_getting_started_segmentation_histo2d.yaml index 13ca80436..92b52891b 100644 --- a/samples/config_getting_started_segmentation_histo2d.yaml +++ b/samples/config_getting_started_segmentation_histo2d.yaml @@ -66,6 +66,6 @@ scheduler: track_memory_usage: false verbose: true version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: true diff --git a/samples/config_getting_started_segmentation_rad3d.yaml b/samples/config_getting_started_segmentation_rad3d.yaml index 758163ff6..b9937efce 100644 --- a/samples/config_getting_started_segmentation_rad3d.yaml +++ b/samples/config_getting_started_segmentation_rad3d.yaml @@ -89,6 +89,6 @@ scheduler: track_memory_usage: false verbose: true version: - maximum: 0.1.2-dev - minimum: 0.1.2-dev + maximum: 0.1.2 + minimum: 0.1.2 weighted_loss: true diff --git a/samples/config_regression.yaml b/samples/config_regression.yaml index 0f4b91737..b50a69895 100644 --- a/samples/config_regression.yaml +++ b/samples/config_regression.yaml @@ -1,8 +1,8 @@ # affix version version: { - minimum: 0.1.2-dev, - maximum: 0.1.2-dev # this should NOT be made a variable, but should be tested after every tag is created + minimum: 0.1.2, + maximum: 0.1.2 # this should NOT be made a variable, but should be tested after every tag is created } # Choose the model parameters here model: diff --git a/samples/config_segmentation_brats.yaml b/samples/config_segmentation_brats.yaml index c8a5ac005..54954e6c1 100644 --- a/samples/config_segmentation_brats.yaml +++ b/samples/config_segmentation_brats.yaml @@ -1,8 +1,8 @@ # affix version version: { - minimum: 0.1.2-dev, - maximum: 0.1.2-dev # this should NOT be made a variable, but should be tested after every tag is created + minimum: 0.1.2, + maximum: 0.1.2 # this should NOT be made a variable, but should be tested after every tag is created } # Choose the model parameters here model: diff --git a/samples/config_segmentation_histology.yaml b/samples/config_segmentation_histology.yaml index 889ee9a98..5862369e7 100644 --- a/samples/config_segmentation_histology.yaml +++ b/samples/config_segmentation_histology.yaml @@ -1,8 +1,8 @@ # affix version version: { - minimum: 0.1.2-dev, - maximum: 0.1.2-dev # this should NOT be made a variable, but should be tested after every tag is created + minimum: 0.1.2, + maximum: 0.1.2 # this should NOT be made a variable, but should be tested after every tag is created } # Choose the model parameters here model: diff --git a/testing/config_classification.yaml b/testing/config_classification.yaml index 79dfb5feb..3d38bde04 100644 --- a/testing/config_classification.yaml +++ b/testing/config_classification.yaml @@ -55,7 +55,7 @@ save_output: false scaling_factor: 1 scheduler: triangle version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: True diff --git a/testing/config_regression.yaml b/testing/config_regression.yaml index 47b9e2aab..83a68f93b 100644 --- a/testing/config_regression.yaml +++ b/testing/config_regression.yaml @@ -38,7 +38,7 @@ save_output: false scaling_factor: 1 scheduler: triangle version: - maximum: 0.1.2-dev + maximum: 0.1.2 minimum: 0.0.14 weighted_loss: false diff --git a/testing/config_segmentation.yaml b/testing/config_segmentation.yaml index a275a6b8d..defed728d 100644 --- a/testing/config_segmentation.yaml +++ b/testing/config_segmentation.yaml @@ -3,7 +3,7 @@ version: { minimum: 0.0.14, - maximum: 0.1.2-dev + maximum: 0.1.2 } model: { diff --git a/tutorials/classification_medmnist_notebook/config.yaml b/tutorials/classification_medmnist_notebook/config.yaml index f1035dc7d..03591735f 100644 --- a/tutorials/classification_medmnist_notebook/config.yaml +++ b/tutorials/classification_medmnist_notebook/config.yaml @@ -2,7 +2,7 @@ version: { minimum: 0.0.14, - maximum: 0.1.2-dev # this should NOT be made a variable, but should be tested after every tag is created + maximum: 0.1.2 # this should NOT be made a variable, but should be tested after every tag is created } # Choose the model parameters here model: