Skip to content

Commit 5992e4f

Browse files
committed
new optimizer key
1 parent 6a4d55d commit 5992e4f

9 files changed

+9
-9
lines changed

samples/config_all_options.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ weighted_loss: True
8383
# }
8484
# }
8585
# Which optimizer do you want to use - adam/sgd
86-
opt: adam
86+
optimizer: adam
8787
# this parameter controls the nested training process
8888
# performs randomized k-fold cross-validation
8989
# split is performed using sklearn's KFold method

samples/config_classification.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ weighted_loss: True
5353
# }
5454
# }
5555
# Which optimizer do you want to use - adam/sgd
56-
opt: adam
56+
optimizer: adam
5757
# this parameter controls the nested training process
5858
# performs randomized k-fold cross-validation
5959
# split is performed using sklearn's KFold method

samples/config_dfu2021_vgg11_without_preprocess_classification.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ weighted_loss: True
5252
# }
5353
# }
5454
# Which optimizer do you want to use - adam/sgd
55-
opt: adam
55+
optimizer: adam
5656
# this parameter controls the nested training process
5757
# performs randomized k-fold cross-validation
5858
# split is performed using sklearn's KFold method

samples/config_regression.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ weighted_loss: True
5353
# }
5454
# }
5555
# Which optimizer do you want to use - adam/sgd
56-
opt: adam
56+
optimizer: adam
5757
# this parameter controls the nested training process
5858
# performs randomized k-fold cross-validation
5959
# split is performed using sklearn's KFold method

samples/config_segmentation_brats.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ loss_function: dcce
4747
# }
4848
# }
4949
# Which optimizer do you want to use - adam/sgd
50-
opt: adam
50+
optimizer: adam
5151
# this parameter controls the nested training process
5252
# performs randomized k-fold cross-validation
5353
# split is performed using sklearn's KFold method

samples/config_segmentation_histology.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ loss_function: dc
5151
# }
5252
# }
5353
# Which optimizer do you want to use - adam/sgd
54-
opt: adam
54+
optimizer: adam
5555
# this parameter controls the nested training process
5656
# performs randomized k-fold cross-validation
5757
# split is performed using sklearn's KFold method

testing/config_classification.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ nested_training:
2525
testing: -2
2626
validation: -2
2727
num_epochs: 1
28-
opt: adam
28+
optimizer: adam
2929
parallel_compute_command: ''
3030
patch_sampler: uniform
3131
patch_size:

testing/config_regression.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ nested_training:
2323
testing: -2
2424
validation: -2
2525
num_epochs: 1
26-
opt: adam
26+
optimizer: adam
2727
parallel_compute_command: ''
2828
patch_sampler: uniform
2929
patch_size:

testing/config_segmentation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ scheduler: triangle
3535
loss_function: dc
3636
weighted_loss: True
3737
# Which optimizer do you want to use - adam/sgd
38-
opt: adam
38+
optimizer: adam
3939
# the value of 'k' for cross-validation, this is the percentage of total training data to use as validation;
4040
# randomized split is performed using sklearn's KFold method
4141
# for single fold run, use '-' before the fold number

0 commit comments

Comments
 (0)