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
<?xml version='1.0' encoding='utf-8'?> <resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datacite.org/schema/kernel-4" xsi:schemaLocation="http://datacite.org/schema/kernel-4 http://schema.datacite.org/meta/kernel-4.1/metadata.xsd"> <identifier identifierType="DOI">10.5281/zenodo.3343208</identifier> <creators> <creator> <creatorName>Sebastian Raschka</creatorName> <affiliation>UW-Madison</affiliation> </creator> <creator> <creatorName>James Bourbeau</creatorName> <affiliation>@Quansight</affiliation> </creator> <creator> <creatorName>Reiichiro Nakano</creatorName> <affiliation>@infostellarinc</affiliation> </creator> <creator> <creatorName>Zach Griffith</creatorName> <affiliation>@WIPACrepo</affiliation> </creator> <creator> <creatorName>Kota Mori</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Will McGinnis</creatorName> <affiliation>Predikto Inc.</affiliation> </creator> <creator> <creatorName>JJLWHarrison</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Guillaume Poirier-Morency</creatorName> <affiliation>IRIC @major-lab</affiliation> </creator> <creator> <creatorName>Daniel</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Qiang Gu</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Floris Hoogenboom</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Colin</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Vahid Mirjalili</creatorName> <affiliation>Michigan State University</affiliation> </creator> <creator> <creatorName>selay01</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Christos Aridas</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Steve Harenberg</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Pablo Fernandez</creatorName> <affiliation>FANSI Motorsport</affiliation> </creator> <creator> <creatorName>Oliver Tomic</creatorName> <affiliation>Norwegian University of Life Sciences</affiliation> </creator> <creator> <creatorName>Laurens Geffert</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Janpreet Singh</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Alejandro Correa Bahnsen</creatorName> <affiliation>Easy Solutions</affiliation> </creator> <creator> <creatorName>Benjamin Lee</creatorName> <affiliation>@Lab41</affiliation> </creator> <creator> <creatorName>Batuhan Bardak</creatorName> <affiliation>STM</affiliation> </creator> <creator> <creatorName>Arfon Smith</creatorName> <affiliation>@spacetelescope</affiliation> </creator> <creator> <creatorName>Anton Loss</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Anebi</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Ajinkya Kale</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Adam Erickson</creatorName> <affiliation></affiliation> </creator> <creator> <creatorName>Adam Cooper</creatorName> <affiliation>Tribal</affiliation> </creator> <creator> <creatorName>Ackerley Tng</creatorName> <affiliation>Centre for Strategic Infocomm Technologies</affiliation> </creator> </creators> <titles> <title>rasbt/mlxtend: Version 0.17.0</title> </titles> <publisher>Zenodo</publisher> <publicationYear>2019</publicationYear> <dates> <date dateType="Issued">2019-07-19</date> </dates> <resourceType resourceTypeGeneral="Software"/> <alternateIdentifiers> <alternateIdentifier alternateIdentifierType="url">https://zenodo.org/record/3343208</alternateIdentifier> </alternateIdentifiers> <relatedIdentifiers> <relatedIdentifier relatedIdentifierType="URL" relationType="IsSupplementTo">https://github.com/rasbt/mlxtend/tree/v0.17.0</relatedIdentifier> <relatedIdentifier relatedIdentifierType="DOI" relationType="IsVersionOf">10.5281/zenodo.594432</relatedIdentifier> </relatedIdentifiers> <version>v0.17.0</version> <rightsList> <rights rightsURI="info:eu-repo/semantics/openAccess">Open Access</rights> </rightsList> <descriptions> <description descriptionType="Abstract">New Features <ul> <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 version 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> <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> <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> <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> <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> <li>New <code>heatmap</code> function in <code>mlxtend.plotting</code>. (<a href="https://github.com/rasbt/mlxtend/pull/552">#552</a>)</li> <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> <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> <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> </ul> Changes <ul> <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> <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> </ul> Bug Fixes <ul> <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> <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> </ul></description> </descriptions> </resource>
All versions | This version | |
---|---|---|
Views | 1,563 | 143 |
Downloads | 174 | 8 |
Data volume | 2.5 GB | 127.5 MB |
Unique views | 1,405 | 121 |
Unique downloads | 66 | 5 |