-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
use grid_space_filling() instead of grid_latin_hypercube() #919
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,14 +66,14 @@ | |
# A tibble: 10 x 4 | ||
splits id .metrics .notes | ||
<list> <chr> <list> <list> | ||
1 <split [28/4]> Fold01 <tibble [4 x 5]> <tibble [0 x 4]> | ||
2 <split [28/4]> Fold02 <tibble [4 x 5]> <tibble [0 x 4]> | ||
3 <split [29/3]> Fold03 <tibble [4 x 5]> <tibble [0 x 4]> | ||
4 <split [29/3]> Fold04 <tibble [4 x 5]> <tibble [0 x 4]> | ||
5 <split [29/3]> Fold05 <tibble [4 x 5]> <tibble [0 x 4]> | ||
6 <split [29/3]> Fold06 <tibble [4 x 5]> <tibble [0 x 4]> | ||
7 <split [29/3]> Fold07 <tibble [4 x 5]> <tibble [0 x 4]> | ||
8 <split [29/3]> Fold08 <tibble [4 x 5]> <tibble [0 x 4]> | ||
9 <split [29/3]> Fold09 <tibble [4 x 5]> <tibble [0 x 4]> | ||
10 <split [29/3]> Fold10 <tibble [4 x 5]> <tibble [0 x 4]> | ||
1 <split [28/4]> Fold01 <tibble [6 x 5]> <tibble [0 x 4]> | ||
2 <split [28/4]> Fold02 <tibble [6 x 5]> <tibble [0 x 4]> | ||
3 <split [29/3]> Fold03 <tibble [6 x 5]> <tibble [0 x 4]> | ||
4 <split [29/3]> Fold04 <tibble [6 x 5]> <tibble [0 x 4]> | ||
5 <split [29/3]> Fold05 <tibble [6 x 5]> <tibble [0 x 4]> | ||
6 <split [29/3]> Fold06 <tibble [6 x 5]> <tibble [0 x 4]> | ||
7 <split [29/3]> Fold07 <tibble [6 x 5]> <tibble [0 x 4]> | ||
8 <split [29/3]> Fold08 <tibble [6 x 5]> <tibble [0 x 4]> | ||
9 <split [29/3]> Fold09 <tibble [6 x 5]> <tibble [0 x 4]> | ||
10 <split [29/3]> Fold10 <tibble [6 x 5]> <tibble [0 x 4]> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm surprised that this snap is changing. What's the explanation here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The "6" is because we have three standard metrics (added brier) but also different due to different initial grids. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I understand that we have 3 default classification metrics now, but why wouldn't that snapped have failed before this PR? What do the grids have to do with this change? |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I stuck with a LHD here because the new designs take a really long time to compute a really large grid (5,000 points).