Metadata-Version: 2.1
Name: nimbusml
Version: 1.7.0
Summary: NimbusML
Home-page: https://docs.microsoft.com/en-us/nimbusml
Author: Microsoft
Author-email: nimbusml@microsoft.com
License: All rights reserved
Keywords: microsoft ml ML.NET machine learning nimbusml
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.8.*
Description-Content-Type: text/markdown
Requires-Dist: numpy (>=1.14.0)
Requires-Dist: pandas (>=0.22)
Requires-Dist: scipy (>=0.18)
Requires-Dist: scikit-learn (>0.19.0)
Requires-Dist: decorator
Requires-Dist: enum
Requires-Dist: funcsigs (>=1.0.2)
Provides-Extra: dprep
Requires-Dist: azureml-dataprep (>=1.1.33) ; extra == 'dprep'
Provides-Extra: tests
Requires-Dist: nose (>=1.3) ; extra == 'tests'
Requires-Dist: pytest (>=4.4.0) ; extra == 'tests'
Requires-Dist: graphviz ; extra == 'tests'
Requires-Dist: imageio ; extra == 'tests'
Requires-Dist: onnxruntime ; extra == 'tests'
Provides-Extra: utils
Requires-Dist: graphviz ; extra == 'utils'
Requires-Dist: imageio ; extra == 'utils'

# NimbusML

`nimbusml` is a Python module that provides Python bindings for [ML.NET](https://github.com/dotnet/machinelearning). 

`nimbusml` aims to enable data science teams that are more familiar with Python
to take advantage of ML.NET's functionality and performance. It provides
battle-tested, state-of-the-art ML algorithms, transforms, and components. The
components are authored by the team members, as well as numerous contributors
from MSR, CISL, Bing, and other teams at Microsoft.

`nimbusml` is interoperable with `scikit-learn` estimators and transforms,
while adding a suite of fast, highly optimized, and scalable algorithms written
in C++ and C\#. `nimbusml` trainers and transforms support the following data
structures for the `fit()` and `transform()` methods:

-   `numpy.ndarray`
-   `scipy.sparse_cst`
-   `pandas.DataFrame`.

In addition, `nimbusml` also supports streaming from files without loading the
dataset into memory with `FileDataStream`, which allows training on data
significantly exceeding memory.

With `FileDataStream`, `nimbusml` is able to handle up to a **billion**
features and **billions** of training examples for select algorithms.

For more details, please refer to the documentation:
<https://docs.microsoft.com/en-us/nimbusml>.

## Third party notices

`nimbusml` contains ML.NET binaries and the .NET Core CLR runtime, as well as
their dependencies. Both ML.NET and .NET Core CLR are made available under the
MIT license. Please refer to the [third party notices](https://github.com/microsoft/NimbusML/blob/master/THIRD-PARTY-NOTICES.txt)
for full licensing information for ML.NET and .NET Core CLR.

