v0.5.1
-
(Enhancement) Update requirements for MLJBase and MLJModels to eliminate the current cap of 0.5.2 on CategoricalArrays. Among other things, this allows more recent versions of CSV and DataFrames to be used with MLJ, and eliminates some warnings. (JuliaAI/MLJBase.jl#44, PR #275)
-
(Enhancement) The MLJBase update also adds the Brier score for probabilistic classifiers
-
(Bug) Fix a bug with
|>
syntax for building learning networks (julia >= 0.3) (#253, PR #263 ) -
(Bug) Fix problem with loading most ScikitLearn classifiers (#252)
-
(Enhancement) Allow specification of different resolutions for each dimension in a grid search (#269 , PR #278). Do
?Grid
for details. -
(Enhancement) Allow
selectcols(X, c)
to work on nodes in addition to tables/matrices/vectorsX
. So, ifX
is a node andN=selectnode(X, c)
, thenN()
is the same asselect(X(), c)
(#271)