Last active
January 5, 2022 17:12
-
-
Save yashprakash13/140bc0f4906eaee49623e047205216f7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
study = optuna.create_study(direction="minimize") | |
study.optimize(objective, n_trials=500) | |
print(f"Optimized RMSE: {study.best_value:.4f}") | |
print("Best params:") | |
for key, value in study.best_params.items(): | |
print(f"\t{key}: {value}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment