Metadata-Version: 2.1
Name: learnml
Version: 0.4.0
Summary: LearnML is a Python module for Machine Learning and Deep Learning.
Home-page: https://github.com/Vipul97/learnml
Author: Vipul Gharde
License: UNKNOWN
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# LearnML [![codecov](https://codecov.io/gh/Vipul97/learnml/branch/master/graph/badge.svg)](https://codecov.io/gh/Vipul97/learnml) [![Build Status](https://github.com/Vipul97/learnml/actions/workflows/build.yml/badge.svg)](https://github.com/Vipul97/learnml/actions?query=workflow%3ABuild) [![PyPI version](https://badge.fury.io/py/learnml.svg)](https://badge.fury.io/py/learnml) [![HitCount](http://hits.dwyl.com/Vipul97/learnml.svg?style=flat)](http://hits.dwyl.com/Vipul97/learnml)
LearnML is a Python module for Machine Learning and Deep Learning.

# Installation

## Requirements
* Python 3.5+

## Stable release

To install learnml, run this command in your terminal:

```
pip install learnml
```

This is the preferred method to install learnml, as it will always install the most recent stable release.

If you don't have [pip](https://pip.pypa.io) installed, this [Python installation guide](http://docs.python-guide.org/en/latest/starting/installation/) can guide you through the process.

## From sources

The sources for learnml can be downloaded from the [Github repo](https://github.com/Vipul97/learnml).

You can either clone the public repository:

```
git clone git://github.com/Vipul97/learnml
```

Or download the [tarball](https://github.com/Vipul97/learnml/tarball/master):

```
curl -OJL https://github.com/Vipul97/learnml/tarball/master
```

Once you have a copy of the source, you can install it with:

```
python setup.py install
```

# Contributing

Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on code of conduct, and the process for submitting pull requests.

# License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.


