Skip to content

Commit

Permalink
Merge pull request #516 from alan-turing-institute/dev
Browse files Browse the repository at this point in the history
For a 0.17.3 release
  • Loading branch information
ablaom authored Feb 22, 2021
2 parents 6d3b404 + 79ebd81 commit 1cca7c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MLJBase"
uuid = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
authors = ["Anthony D. Blaom <[email protected]>"]
version = "0.17.2"
version = "0.17.3"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down
3 changes: 2 additions & 1 deletion src/resampling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,9 @@ end
function actual_rows(rows, N, verbosity)
unspecified_rows = (rows === nothing)
_rows = unspecified_rows ? (1:N) : rows
unspecified_rows ||
if !unspecified_rows && verbosity > 0
@info "Creating subsamples from a subset of all rows. "
end
return _rows
end

Expand Down

0 comments on commit 1cca7c5

Please sign in to comment.