Metadata-Version: 2.1
Name: otto-ml
Version: 0.1.11
Summary: Otto is a simple Boilerplate for Machine Learning projects integrated with MLflow tools
Home-page: https://github.com/carlos-rodrigo/otto-ml
Author: Carlos Rodrigo
Author-email: hi@carlosrodrigo.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: click (>=7.0)
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: mlflow
Provides-Extra: extras
Requires-Dist: boto3 (>=1.7.12) ; extra == 'extras'
Requires-Dist: scikit-learn (==0.20) ; (python_version < "3.5") and extra == 'extras'
Requires-Dist: scikit-learn ; (python_version >= "3.5") and extra == 'extras'

# OTTO
Otto is a simple Boilerplate for Machine Learning projects integrated with MLflow that creates a basic directory structure to organize your code and data.
Otto is strongly based on [Cookiecutter](https://drivendata.github.io/cookiecutter-data-science/), if you need something more complete is a good desition to visit his repo. 

```
├── MLproject
├── README.md
├── Dockerfile
├── .env
├── .gitignore
├── data
│   ├── processed/
│   └── raw/
├── notebooks/
├── src/
│   ├── data/
│   │   └── __init__.py
│   │   └── data_preparation.py
│   ├── features/
│   │   └── __init__.py
│   ├── models/
│   │   └── __init__.py
│   │   └── model.py
│   └── __init__.py
└── tests/
```

## Usage

Simple install otto using pip as follows

`pip install otto-ml`

and use otto

`otto --name new-project`

or simple use it with out params and let otto guides you 😉

`otto`

and that's it!  😝

...someone says "ok, but how is supposedly I will use this structure in practice?" go to the Wiki to find out. 





