0.2.0 - 2019-05-27¶
compose¶
compose.Pipelinenow has adebug_one.compose.Discardandcompose.Selectnow take variadic inputs, which means you don't have to provide a list of features to exclude/include.
datasets¶
- Added
datasets.fetch_bikes
feature_extraction¶
- Classes that inherit from
feature_extraction.VectorizerMixincan now directly be passedstrinstances instead ofdictinstances. feature_extraction.Aggandfeature_extraction.TargetAggcan now aggregate on multiple attributes.
metrics¶
- Added
RollingAccuracy - Added
RollingCrossEntropy - Added
RollingF1 - Added
RollingLogLoss - Added
RollingMacroF1 - Added
RollingMacroPrecision - Added
RollingMacroRecall - Added
RollingMAE - Added
RollingMicroF1 - Added
RollingMicroPrecision - Added
RollingMicroRecall - Added
RollingMSE - Added
RollingPrecision - Added
RollingRecall - Added
RollingRMSE - Added
RollingRMSLE - Added
RollingSMAPE
model_selection¶
- Added
model_selection.online_qa_score.
proba¶
The dist module has been renamed to proba and is now public, for the moment it contains a single distribution called proba.Gaussian.
naive_bayes¶
- Added
naive_bayes.BernoulliNB. - Added
naive_bayes.ComplementNB.
optim¶
- Added
optim.AdaBound.
tree¶
- Added
tree.DecisionTreeClassifier. - Removed
tree.MondrianTreeClassifierandtree.MondrianTreeRegressorbecause their performance wasn't good enough.
stats¶
- Added
stats.AutoCorrelation. - Added
stats.EWVar. - Rename
stats.Variancetostats.Varandstats.RollingVariancetostats.RollingVar.
stream¶
- Added
stream.simulate_qa.
utils¶
- Added
utils.SDFT. - Added
utils.Skyline. - Renamed the
window_sizeparameter tosizeinutils.Windowandutils.SortedWindow.