Skip to content

Commit

Permalink
Dev (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlienart authored Feb 12, 2020
1 parent 88d7006 commit 543ee13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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.11.1"
version = "0.11.2"

This comment has been minimized.

Copy link
@tlienart

tlienart Feb 12, 2020

Author Collaborator

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down
3 changes: 1 addition & 2 deletions src/resampling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ function Base.show(io::IO, ::MIME"text/plain", e::PerformanceEvaluation)
[round3.(v) for v in e.per_fold])
header = ["_.measure", "_.measurement", "_.per_fold"]
PrettyTables.pretty_table(io, data, header;
header_crayon=Crayon(bold=false),
header_crayon=PrettyTables.Crayon(bold=false),
alignment=:l)
println(io, "_.per_observation = $(_short(e.per_observation))")
end
Expand Down Expand Up @@ -798,4 +798,3 @@ function evaluate(machine::AbstractMachine{<:Resampler})
throw(error("$machine has not been trained."))
end
end

1 comment on commit 543ee13

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/9357

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.2 -m "<description of version>" 543ee13504a380d08c1cbebc270a754bdc76e9cd
git push origin v0.11.2

Please sign in to comment.