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.
Describe the issue:
After when I update version to 2.4, exponential notation is not working.
When I use v2.1, exponential notation was no issue
{
"weightDecay": {"_type":"uniform", "_value":[1e-7, 1e-5]}
}
from v2.4, following error was occured
ERROR (nni.common.hpo_utils/Thread-1) search space "weightDecay" (uniform) must have float values : OrderedDict([('_type', 'uniform'), ('_value', ['1e-7', '1e-5'])])
But when I convert exponential notation to float, it is working.
Should I not use exponential notation?
Environment:
NNI version: 2.4
Training service (local|remote|pai|aml|etc): local
Describe the issue:
After when I update version to 2.4, exponential notation is not working.
When I use v2.1, exponential notation was no issue
{
"weightDecay": {"_type":"uniform", "_value":[1e-7, 1e-5]}
}
from v2.4, following error was occured
ERROR (nni.common.hpo_utils/Thread-1) search space "weightDecay" (uniform) must have float values : OrderedDict([('_type', 'uniform'), ('_value', ['1e-7', '1e-5'])])
But when I convert exponential notation to float, it is working.
Should I not use exponential notation?
Environment:
Configuration:
{
"weightDecay": {"_type":"uniform", "_value":[1e-7, 1e-5]}
}
Log message:
ERROR (nni.common.hpo_utils/Thread-1) search space "weightDecay" (uniform) must have float values : OrderedDict([('_type', 'uniform'), ('_value', ['1e-7', '1e-5'])])
The text was updated successfully, but these errors were encountered: