Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Update hyperparameter optimization code for Optuna v3.0.0 #3747

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lm_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def character_based():
return is_character_based

def objective(trial):
FLAGS.lm_alpha = trial.suggest_uniform('lm_alpha', 0, FLAGS.lm_alpha_max)
FLAGS.lm_beta = trial.suggest_uniform('lm_beta', 0, FLAGS.lm_beta_max)
FLAGS.lm_alpha = trial.suggest_float('lm_alpha', 0, FLAGS.lm_alpha_max)
FLAGS.lm_beta = trial.suggest_float('lm_beta', 0, FLAGS.lm_beta_max)

is_character_based = trial.study.user_attrs['is_character_based']

Expand Down