Metadata-Version: 2.0
Name: speedml
Version: 0.9.2
Summary: Speedml Machine Learning Speed Start
Home-page: https://speedml.com
Author: Manav Sehgal
Author-email: new@speedml.com
License: MIT
Keywords: machine-learning data-science jupyter-notebook
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: future
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: seaborn
Requires-Dist: sklearn
Requires-Dist: xgboost

======================================
Speedml Machine Learning Speed Start
======================================

  Bringing together speed and craft is an awesome experience...

Speedml is a Python package for speed starting machine learning projects.

Latest Speedml release is always available on the PyPi_ website.

Install Speedml package using `pip` like so::

  pip install speedml

The speedml.com_ website documents API use cases, behind-the-scenes implementation, features, best practices, and demos in detail.

Speedml is open source and available under MIT license. We manage the project on GitHub.

- GitHub repo_
- Project roadmap_
- Issues_ tracking
- Demo notebooks_

We are authoring Speedml API with four goals in mind.

Popular. Best packages together
--------------------------------

Speedml already imports and properly initializes the popular ML packages including pandas, numpy, sklearn, xgboost, and matplotlib. All you need to do is import speedml to get started::

  from speedml import Speedml

Rapid. Machine learning speed start
------------------------------------

Coding is up to 3X faster when using Speedml because of (1) iterative development, (2) linear workflow, and (3) component-based API.

These two lines of Speedml code (a) load the training, test datasets, (b) define the target and unique id features, (c) plot the feature correlation matrix heatmap for numerical features::

  sml = Speedml('train.csv', 'test.csv',
                target='Survived', uid='PassengerId')
  sml.plot.correlate()

Easy. Concise commands with sensible defaults
----------------------------------------------

A notebook using Speedml reduces coding required by up to 70%. Speedml API implements methods requiring zero to minimal number of parameters, working on sensible defaults.

Call to this single method replaces empty values in the entire dataframe with median value for numerical features and most common values for text features::

  sml.feature.impute()

Productive. Intuitive linear workflow
---------------------------------------

Understanding machine learning fundamentals is a breeze with Speedml as we have designed the API to follow a linear workflow with sensible prerequisites and intuitive next steps.

These three lines of Speedml code perform feature engineering by replacing null values, extracting a new feature matching a regular expression, and dropping a feature that is no longer required::

  sml.feature.fillna(a='Cabin', new='Z')
  sml.feature.extract(new='Deck', a='Cabin', regex='([A-Z]){1}')
  sml.feature.drop(['Cabin'])

Hope you enjoy using Speedml in your projects. Watch this space as we intend to update Speedml frequently with more cool features.

.. _PyPi: https://pypi.python.org/pypi/speedml
.. _documentation: http://pythonhosted.org/speedml/
.. _speedml.com: https://speedml.com
.. _repo: https://github.com/Speedml/speedml
.. _roadmap: https://github.com/Speedml/speedml/projects/1
.. _notebooks: https://github.com/Speedml/notebooks
.. _Issues: https://github.com/Speedml/speedml/issues


