Get parameters and results of all the trials
See original GitHub issueAxClient
class has get_best_parameters()
method. I don’t see any methods in AxClient
class that returns all the trials with their parameters and evaluation results. Is there any plans to add such API?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
jsPsych.data
This method appends a set of properties to every trial in the data object, including trials that have already occurred and trials that...
Read more >ray.tune. - ResultGrid - the Ray documentation
Get the best result from all the trials run. Parameters. metric – Key for trial info to order on. Defaults to the metric...
Read more >optuna.study. - trials - Read the Docs
Enqueue a trial with given parameter values. get_trials ([deepcopy, states]). Return all trials in the study. optimize (func[, n_trials, timeout, n_jobs, .
Read more >Optuna Guide: How to Monitor Hyper-Parameter Optimization ...
Hyper-parameter search is a part of almost every machine learning and ... score in mind to understand how much improvement we get by...
Read more >Optuna Suggests the Same Parameter Values in a lot of Trials ...
If I include more parameters for tuning, say 3, I even see all 3 of them getting the same values a few times...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@riyadparvez, in the short run you can get trials as
ax_client.experiment.trials
, and you can get parameters from each one of the trials astrial.arm.parameters
. Will add this functionality to the service API, too, but that should get you unblocked for now.Thanks a lot! Will give it a try.