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
The text was updated successfully, but these errors were encountered:
waleedkadous
added
bug
Something that is supposed to be working; but isn't
tune
Tune-related issues
triage
Needs triage (eg: priority, bug/not-bug, and owning component)
labels
May 26, 2022
krfricke
added
P2
Important issue, but not time-critical
and removed
triage
Needs triage (eg: priority, bug/not-bug, and owning component)
labels
May 26, 2022
tune.grid_search() does not accept iterables (e.g.
range(1,10)
).Thus
search_space = {"max_depth": tune.grid_search(range(1,12)) }
causes an error. I think many people would expect the above to work.
Instead the user has to write:
The text was updated successfully, but these errors were encountered: