Hannes Kuchelmeister
commited on
Commit
·
7e40cd9
1
Parent(s):
9af986f
change hyperparmeter search to use MSE instead of MAE
Browse files
configs/hparams_search/{focus150_optuna.yaml → focusMSE_150_optuna.yaml}
RENAMED
@@ -12,7 +12,7 @@ defaults:
|
|
12 |
# make sure this is the correct name of some metric logged in lightning module!
|
13 |
optimized_metric: "val/mae_best"
|
14 |
|
15 |
-
name: "
|
16 |
|
17 |
# here we define Optuna hyperparameter search
|
18 |
# it optimizes for value returned from function with @hydra.main decorator
|
@@ -26,7 +26,7 @@ hydra:
|
|
26 |
storage: null
|
27 |
|
28 |
# name of the study to persist optimization results
|
29 |
-
study_name:
|
30 |
|
31 |
# number of parallel workers
|
32 |
n_jobs: 1
|
@@ -49,6 +49,8 @@ hydra:
|
|
49 |
datamodule.batch_size:
|
50 |
type: categorical
|
51 |
choices: [64, 128]
|
|
|
|
|
52 |
model.lr:
|
53 |
type: float
|
54 |
low: 0.0001
|
|
|
12 |
# make sure this is the correct name of some metric logged in lightning module!
|
13 |
optimized_metric: "val/mae_best"
|
14 |
|
15 |
+
name: "focusMSE_150_hyperparameter_search"
|
16 |
|
17 |
# here we define Optuna hyperparameter search
|
18 |
# it optimizes for value returned from function with @hydra.main decorator
|
|
|
26 |
storage: null
|
27 |
|
28 |
# name of the study to persist optimization results
|
29 |
+
study_name: focusMSE_150_hyperparameter_search
|
30 |
|
31 |
# number of parallel workers
|
32 |
n_jobs: 1
|
|
|
49 |
datamodule.batch_size:
|
50 |
type: categorical
|
51 |
choices: [64, 128]
|
52 |
+
model:
|
53 |
+
_target_: src.models.focus_module.FocusMSELitModule
|
54 |
model.lr:
|
55 |
type: float
|
56 |
low: 0.0001
|