We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tune:::create_initial_set() will use dials::grid_space_filling() when an integer is passed.
tune:::create_initial_set()
dials::grid_space_filling()
We have space-filling designs for 2+ points and when grid = 1, it creates a random grid but uses a LHD and issues a warning:
grid = 1
Due to the small size of the grid, a Latin hypercube design will be used.
We can get a random point via grid_random() without the warning.
grid_random()
finetune::tune_sim_anneal() defaults to a 1-point initialization so no warning would be good.
finetune::tune_sim_anneal()
The text was updated successfully, but these errors were encountered:
Changes for #962
420ccbb
Successfully merging a pull request may close this issue.
tune:::create_initial_set()
will usedials::grid_space_filling()
when an integer is passed.We have space-filling designs for 2+ points and when
grid = 1
, it creates a random grid but uses a LHD and issues a warning:We can get a random point via
grid_random()
without the warning.finetune::tune_sim_anneal()
defaults to a 1-point initialization so no warning would be good.The text was updated successfully, but these errors were encountered: