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
From tidymodels/tune#919
library(dials) #> Loading required package: scales grid_space_filling(parameters(neighbors()), size = 1) #> Error in Distance[i, k]: subscript out of bounds grid_space_filling(parameters(neighbors(), mixture()), size = 1) #> Error in DiceDesign::dmaxDesign(n = size, dimension = length(params), : Warning : the number of points is lower than the dimension. # but: grid_space_filling(parameters(neighbors()), size = 1, type = "latin_hypercube") #> # A tibble: 1 × 1 #> neighbors #> <int> #> 1 3 grid_space_filling(parameters(neighbors(), mixture()), size = 1, type = "latin_hypercube") #> # A tibble: 1 × 2 #> neighbors mixture #> <int> <dbl> #> 1 1 0.973
Created on 2024-07-18 with reprex v2.1.0
The text was updated successfully, but these errors were encountered:
changes for #337
4ffb6cb
Successfully merging a pull request may close this issue.
From tidymodels/tune#919
Created on 2024-07-18 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: