Skip to content

Commit

Permalink
renamed result mosules
Browse files Browse the repository at this point in the history
  • Loading branch information
aramoto99 committed Jan 27, 2025
1 parent 3c534c2 commit 53daa1c
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/hpo/result/config_for_pkl_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
study:
_target_: optuna.create_study
direction: minimize
study_name: my_study
load_if_exists: false
sampler:
_target_: optuna.samplers.TPESampler
seed: 0

result:
_target_: aiaccel.hpo.job_output_loaders.PickleJobOutputLoader
filename_template: "{job.cwd}/{job.job_name}_result.pkl"

params:
_convert_: partial
_target_: aiaccel.hpo.apps.optimize.HparamsManager
x1: [0, 1]
x2:
_target_: aiaccel.hpo.optuna.suggest_wrapper.SuggestFloat
name: x2
low: 0.0
high: 1.0
log: false

n_trials: 30
25 changes: 25 additions & 0 deletions tests/hpo/result/config_for_stdo_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
study:
_target_: optuna.create_study
direction: minimize
study_name: my_study
load_if_exists: false
sampler:
_target_: optuna.samplers.TPESampler
seed: 0

result:
_target_: aiaccel.hpo.job_output_loaders.StdoutJobOutputLoader
filename_template: "{job.cwd}/{job.job_name}_result.txt"

params:
_convert_: partial
_target_: aiaccel.hpo.apps.optimize.HparamsManager
x1: [0, 1]
x2:
_target_: aiaccel.hpo.optuna.suggest_wrapper.SuggestFloat
name: x2
low: 0.0
high: 1.0
log: false

n_trials: 30

0 comments on commit 53daa1c

Please sign in to comment.