You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Log message:
`$ nnictl experiment show
return:
"execDuration":1,
......
'
What issue meet, what's expected?:
When using BOHB, execDuration does not increase when status=='TUNER_NO_MORE_TRIAL', because it only increases when status == 'RUNNING', as shown here:
Simply put, it goes through the process of: [generate n1 parameters] -> [get n1 parameters' metrics to update BO model](indicates with TUNER_NO_MORE_TRIAL) -> [generate n2 parameters based on new model] -> [get n2 parameters] .....
The 'TUNER_NO_MORE_TRIAL' is supposed to be very long (most experiment time is spent on training and evaluating the trials, which means the status is 'TUNER_NO_MORE_TRIAL').
How to reproduce it?:
Use BOHB with limited computation resources.
$ nnictl experiment show
Additional information:
The text was updated successfully, but these errors were encountered:
Very grateful for your issue. The good news is that this problem will be fixed in version 2.0 ( #3043 ) and this issue will be closed. If there are any questions, please continue to communicate with us, we will confirm and resolve them as soon as possible.
Environment:
Log message:
`$ nnictl experiment show
return:
"execDuration":1,
......
'
What issue meet, what's expected?:
When using BOHB, execDuration does not increase when status=='TUNER_NO_MORE_TRIAL', because it only increases when status == 'RUNNING', as shown here:
nni/src/nni_manager/core/nnimanager.ts
Line 463 in 41312de
However, I think the time consumption of waiting for the trials to finish should also be considered. The trials ARE running.
As mentioned in this issue,
The 'TUNER_NO_MORE_TRIAL' is supposed to be very long (most experiment time is spent on training and evaluating the trials, which means the status is 'TUNER_NO_MORE_TRIAL').
How to reproduce it?:
Use BOHB with limited computation resources.
$ nnictl experiment show
Additional information:
The text was updated successfully, but these errors were encountered: