MLflow project template
conda create --prefix ./env python=3.7 -y
conda activate ./env
OR
source activate ./env
pip install -r requirements.txt
conda env export > conda.yaml
mlflow run . --no-conda
mlflow run . -e get_data --no-conda
mlflow run . -e get_data -P config=configs/your_config.yaml --no-conda