Software Open Access
Sebastian Raschka; James Bourbeau; Reiichiro Nakano; Zach Griffith; Kota Mori; Will McGinnis; JJLWHarrison; Guillaume Poirier-Morency; Daniel; Qiang Gu; Floris Hoogenboom; Colin; Vahid Mirjalili; selay01; Christos Aridas; Steve Harenberg; Pablo Fernandez; Oliver Tomic; Laurens Geffert; Janpreet Singh; Alejandro Correa Bahnsen; Benjamin Lee; Batuhan Bardak; Arfon Smith; Anton Loss; Anebi; Ajinkya Kale; Adam Erickson; Adam Cooper; Ackerley Tng
{ "files": [ { "links": { "self": "https://zenodo.org/api/files/da4c5002-c681-4eea-97ce-20cbe357c757/rasbt/mlxtend-v0.17.0.zip" }, "checksum": "md5:c52871bd06c2fe4e422ff2195a1f44e4", "bucket": "da4c5002-c681-4eea-97ce-20cbe357c757", "key": "rasbt/mlxtend-v0.17.0.zip", "type": "zip", "size": 15939191 } ], "owners": [ 19322 ], "doi": "10.5281/zenodo.3343208", "stats": { "version_unique_downloads": 66.0, "unique_views": 121.0, "views": 143.0, "version_views": 1561.0, "unique_downloads": 5.0, "version_unique_views": 1403.0, "volume": 127513528.0, "version_downloads": 174.0, "downloads": 8.0, "version_volume": 2453842287.0 }, "links": { "doi": "https://doi.org/10.5281/zenodo.3343208", "conceptdoi": "https://doi.org/10.5281/zenodo.594432", "bucket": "https://zenodo.org/api/files/da4c5002-c681-4eea-97ce-20cbe357c757", "conceptbadge": "https://zenodo.org/badge/doi/10.5281/zenodo.594432.svg", "html": "https://zenodo.org/record/3343208", "latest_html": "https://zenodo.org/record/5398901", "badge": "https://zenodo.org/badge/doi/10.5281/zenodo.3343208.svg", "latest": "https://zenodo.org/api/records/5398901" }, "conceptdoi": "10.5281/zenodo.594432", "created": "2019-07-19T18:17:09.872923+00:00", "updated": "2021-09-02T23:54:17.631658+00:00", "conceptrecid": "594432", "revision": 9, "id": 3343208, "metadata": { "access_right_category": "success", "doi": "10.5281/zenodo.3343208", "description": "New Features\n<ul>\n<li>Added an enhancement to the existing <code>iris_data()</code> such that both the UCI Repository version of the Iris dataset as well as the corrected, original\nversion of the dataset can be loaded, which has a slight difference in two data points (consistent with Fisher's paper; this is also the same as in R). (via <a href=\"https://github.com/rasbt/mlxtend/pull/532\">#539</a> via <a href=\"https://github.com/janismdhanbad\">janismdhanbad</a>)</li>\n<li>Added optional <code>groups</code> parameter to <code>SequentialFeatureSelector</code> and <code>ExhaustiveFeatureSelector</code> <code>fit()</code> methods for forwarding to sklearn CV (<a href=\"https://github.com/rasbt/mlxtend/pull/537\">#537</a> via <a href=\"https://github.com/qiaguhttps://github.com/arc12\">arc12</a>)</li>\n<li>Added a new <code>plot_pca_correlation_graph</code> function to the <code>mlxtend.plotting</code> submodule for plotting a PCA correlation graph. (<a href=\"https://github.com/rasbt/mlxtend/pull/544\">#544</a> via <a href=\"https://github.com/qiaguhttps://github.com/Gabriel-Azevedo-Ferreira\">Gabriel-Azevedo-Ferreira</a>)</li>\n<li>Added a <code>zoom_factor</code> parameter to the <code>mlxten.plotting.plot_decision_region</code> function that allows users to zoom in and out of the decision region plots. (<a href=\"https://github.com/rasbt/mlxtend/pull/545\">#545</a>)</li>\n<li>Added a function <code>fpgrowth</code> that implements the FP-Growth algorithm for mining frequent itemsets as a drop-in replacement for the existing <code>apriori</code> algorithm. (<a href=\"https://github.com/rasbt/mlxtend/pull/550\">#550</a> via <a href=\"https://github.com/harenbergsd\">Steve Harenberg</a>)</li>\n<li>New <code>heatmap</code> function in <code>mlxtend.plotting</code>. (<a href=\"https://github.com/rasbt/mlxtend/pull/552\">#552</a>)</li>\n<li>Added a function <code>fpmax</code> that implements the FP-Max algorithm for mining maximal itemsets as a drop-in replacement for the <code>fpgrowth</code> algorithm. (<a href=\"https://github.com/rasbt/mlxtend/pull/553\">#553</a> via <a href=\"https://github.com/harenbergsd\">Steve Harenberg</a>)</li>\n<li>New <code>figsize</code> parameter for the <code>plot_decision_regions</code> function in <code>mlxtend.plotting</code>. (<a href=\"https://github.com/rasbt/mlxtend/pull/555\">#555</a> via <a href=\"https://github.com/kazyka\">Mirza Hasanbasic</a>)</li>\n<li>New <code>low_memory</code> option for the <code>apriori</code> frequent itemset generating function. Setting <code>low_memory=False</code> (default) uses a substantially optimized version of the algorithm that is 3-6x faster than the original implementation (<code>low_memory=True</code>). (<a href=\"https://github.com/rasbt/mlxtend/pull/567\">#567</a> via <a href=\"https://github.com/jmayse\">jmayse</a>)</li>\n</ul>\nChanges\n<ul>\n<li>Now uses the latest joblib library under the hood for multiprocessing instead of <code>sklearn.externals.joblib</code>. (<a href=\"https://github.com/rasbt/mlxtend/pull/547\">#547</a>)</li>\n<li>Changes to <code>StackingCVClassifier</code> and <code>StackingCVRegressor</code> such that first-level models are allowed to generate output of non-numeric type. (<a href=\"https://github.com/rasbt/mlxtend/pull/562\">#562</a>)</li>\n</ul>\nBug Fixes\n<ul>\n<li>Fixed documentation of <code>iris_data()</code> under <code>iris.py</code> by adding a note about differences in the iris data in R and UCI machine learning repo.</li>\n<li>Make sure that if the <code>'svd'</code> mode is used in PCA, the number of eigenvalues is the same as when using <code>'eigen'</code> (append 0's zeros in that case) (<a href=\"https://github.com/rasbt/mlxtend/pull/565\">#565</a>)</li>\n</ul>", "license": { "id": "other-open" }, "title": "rasbt/mlxtend: Version 0.17.0", "relations": { "version": [ { "count": 21, "index": 16, "parent": { "pid_type": "recid", "pid_value": "594432" }, "is_last": false, "last_child": { "pid_type": "recid", "pid_value": "5398901" } } ] }, "version": "v0.17.0", "publication_date": "2019-07-19", "creators": [ { "affiliation": "UW-Madison", "name": "Sebastian Raschka" }, { "affiliation": "@Quansight", "name": "James Bourbeau" }, { "affiliation": "@infostellarinc", "name": "Reiichiro Nakano" }, { "affiliation": "@WIPACrepo", "name": "Zach Griffith" }, { "name": "Kota Mori" }, { "affiliation": "Predikto Inc.", "name": "Will McGinnis" }, { "name": "JJLWHarrison" }, { "affiliation": "IRIC @major-lab", "name": "Guillaume Poirier-Morency" }, { "name": "Daniel" }, { "name": "Qiang Gu" }, { "name": "Floris Hoogenboom" }, { "name": "Colin" }, { "affiliation": "Michigan State University", "name": "Vahid Mirjalili" }, { "name": "selay01" }, { "name": "Christos Aridas" }, { "name": "Steve Harenberg" }, { "affiliation": "FANSI Motorsport", "name": "Pablo Fernandez" }, { "affiliation": "Norwegian University of Life Sciences", "name": "Oliver Tomic" }, { "name": "Laurens Geffert" }, { "name": "Janpreet Singh" }, { "affiliation": "Easy Solutions", "name": "Alejandro Correa Bahnsen" }, { "affiliation": "@Lab41", "name": "Benjamin Lee" }, { "affiliation": "STM", "name": "Batuhan Bardak" }, { "affiliation": "@spacetelescope", "name": "Arfon Smith" }, { "name": "Anton Loss" }, { "name": "Anebi" }, { "name": "Ajinkya Kale" }, { "name": "Adam Erickson" }, { "affiliation": "Tribal", "name": "Adam Cooper" }, { "affiliation": "Centre for Strategic Infocomm Technologies", "name": "Ackerley Tng" } ], "access_right": "open", "resource_type": { "type": "software", "title": "Software" }, "related_identifiers": [ { "scheme": "url", "identifier": "https://github.com/rasbt/mlxtend/tree/v0.17.0", "relation": "isSupplementTo" }, { "scheme": "doi", "identifier": "10.5281/zenodo.594432", "relation": "isVersionOf" } ] } }
All versions | This version | |
---|---|---|
Views | 1,561 | 143 |
Downloads | 174 | 8 |
Data volume | 2.5 GB | 127.5 MB |
Unique views | 1,403 | 121 |
Unique downloads | 66 | 5 |