Published March 15, 2018
| Version v0.11.0
Software
Open
rasbt/mlxtend: Version 0.11.0
Creators
- Sebastian Raschka1
- Reiichiro Nakano2
- James Bourbeau3
- Will McGinnis4
- Guillaume Poirier-Morency5
- Colin
- chkoar
- Pablo Fernandez6
- Alejandro Correa Bahnsen7
- wahutch
- mrkaiser
- kernc
- jlopezpena
- Michael Peters
- Mathew Savage
- Marc Abramowitz8
- Konstantinos Paliouras9
- Joshua Görner
- Jelmer Borst
- Ilya10
- Iaroslav Shcherbatyi11
- hsperr
- GILLES Armand12
- Francis T. O'Donovan13
- Eike Dehling14
- Batuhan Bardak15
- Anton Loss
- Anebi
- Ajinkya Kale
- Adam Erickson
- 1. Michigan State University
- 2. @infostellarinc
- 3. @WIPACrepo
- 4. Predikto Inc.
- 5. IRIC @major-lab
- 6. FANSI Motorsport
- 7. Easy Solutions
- 8. @adobe-platform
- 9. @Workable
- 10. LPI ASC
- 11. Saarland University
- 12. millesime.ai
- 13. @betteroutcomes
- 14. Textkernel
- 15. STM
Description
New Features
- New function implementing the resampled paired t-test procedure (
paired_ttest_resampled
) to compare the performance of two models (also called k-hold-out paired t-test). (#323) - New function implementing the k-fold paired t-test procedure (
paired_ttest_kfold_cv
) to compare the performance of two models (also called k-hold-out paired t-test). (#324) - New function implementing the 5x2cv paired t-test procedure (
paired_ttest_5x2cv
) proposed by Dieterrich (1998) to compare the performance of two models. (#325) - A
refit
parameter was added to stacking classes (similar to therefit
parameter in theEnsembleVoteClassifier
), to support classifiers and regressors that follow the scikit-learn API but are not compatible with scikit-learn'sclone
function. (#325) - The
ColumnSelector
now has adrop_axis
argument to use it in pipelines withCountVectorizers
. (#333)
- Raises an informative error message if
predict
orpredict_meta_features
is called prior to calling thefit
method inStackingRegressor
andStackingCVRegressor
. (#315) - The
plot_decision_regions
function now automatically determines the optimal setting based on the feature dimensions and supports anti-aliasing. The oldres
parameter has been deprecated. (#309 by Guillaume Poirier-Morency) - Apriori code is faster due to optimization in
onehot transformation
and the amount of candidates generated by theapriori
algorithm. (#327 by Jakub Smid) - The
OnehotTransactions
class (which is typically often used in combination with theapriori
function for association rule mining) is now more memory efficient as it uses boolean arrays instead of integer arrays. In addition, theOnehotTransactions
class can be now be provided withsparse
argument to generate sparse representations of theonehot
matrix to further improve memory efficiency. (#328 by Jakub Smid) - The
OneHotTransactions
has been deprecated and replaced by theTransactionEncoder
. (#332 - The
plot_decision_regions
function now has three new parameters,scatter_kwargs
,contourf_kwargs
, andscatter_highlight_kwargs
, that can be used to modify the plotting style. (#342 by James Bourbeau)
- Fixed issue when class labels were provided to the
EnsembleVoteClassifier
whenrefit
was set tofalse
. (#322) - Allow arrays with 16-bit and 32-bit precision in
plot_decision_regions
function. (#337) - Fixed bug that raised an indexing error if the number of items was <= 1 when computing association rules using the conviction metric. (#340)
Files
rasbt/mlxtend-v0.11.0.zip
Files
(10.8 MB)
Name | Size | Download all |
---|---|---|
md5:4c145547ecf9ef437ca2713f6337042f
|
10.8 MB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/rasbt/mlxtend/tree/v0.11.0 (URL)