.dockerignore
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
LICENSE
MANIFEST.in
README.md
setup.py
tox.ini
.github/CODEOWNERS
.github/CONTRIBUTING.md
.github/PULL_REQUEST_TEMPLATE.md
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/assets/images/mlctl-logo.png
.github/workflows/python-package.yml
examples/1-sklearn-tree-aws/README.md
examples/1-sklearn-tree-aws/deploy.yaml
examples/1-sklearn-tree-aws/process.yaml
examples/1-sklearn-tree-aws/provider.yaml
examples/1-sklearn-tree-aws/setup.py
examples/1-sklearn-tree-aws/train.yaml
examples/1-sklearn-tree-aws/data/model/model.pkl
examples/1-sklearn-tree-aws/data/train/data.csv
examples/1-sklearn-tree-aws/sklearn_tree/__init__.py
examples/1-sklearn-tree-aws/sklearn_tree/deploy.py
examples/1-sklearn-tree-aws/sklearn_tree/process.py
examples/1-sklearn-tree-aws/sklearn_tree/train.py
examples/2-sklearn-azure/README.md
examples/2-sklearn-azure/deploy.yaml
examples/2-sklearn-azure/provider.yaml
examples/2-sklearn-azure/setup.py
examples/2-sklearn-azure/train.yaml
examples/2-sklearn-azure/data/model/model.pkl
examples/2-sklearn-azure/data/train/data.csv
examples/2-sklearn-azure/sklearn_tree/__init__.py
examples/2-sklearn-azure/sklearn_tree/deploy.py
examples/2-sklearn-azure/sklearn_tree/train.py
examples/3-sklearn-k8s/README.md
examples/3-sklearn-k8s/setup.py
examples/3-sklearn-k8s/data/model/model.pkl
examples/3-sklearn-k8s/data/train/data.csv
examples/3-sklearn-k8s/sklearn_tree/__init__.py
examples/3-sklearn-k8s/sklearn_tree/deploy.py
examples/3-sklearn-k8s/sklearn_tree/train.py
mlctl/__init__.py
mlctl/__version.py
mlctl.egg-info/PKG-INFO
mlctl.egg-info/SOURCES.txt
mlctl.egg-info/dependency_links.txt
mlctl.egg-info/entry_points.txt
mlctl.egg-info/requires.txt
mlctl.egg-info/top_level.txt
mlctl/clis/__init__.py
mlctl/clis/batch_cli.py
mlctl/clis/cli.py
mlctl/clis/deploy_cli.py
mlctl/clis/init_cli.py
mlctl/clis/process_cli.py
mlctl/clis/train_cli.py
mlctl/clis/common/__init__.py
mlctl/clis/common/utils.py
mlctl/clis/template/cookiecutter.json
mlctl/clis/template/{{cookiecutter.package_name}}/.gitignore
mlctl/clis/template/{{cookiecutter.package_name}}/README.md
mlctl/clis/template/{{cookiecutter.package_name}}/setup.cfg
mlctl/clis/template/{{cookiecutter.package_name}}/setup.py
mlctl/clis/template/{{cookiecutter.package_name}}/tox.ini
mlctl/clis/template/{{cookiecutter.package_name}}/model/__init__.py
mlctl/clis/template/{{cookiecutter.package_name}}/model/deploy.py
mlctl/clis/template/{{cookiecutter.package_name}}/model/process.py
mlctl/clis/template/{{cookiecutter.package_name}}/model/train.py
mlctl/clis/template/{{cookiecutter.package_name}}/tests/__init__.py
mlctl/clis/template/{{cookiecutter.package_name}}/tests/test_{{cookiecutter.package_name.lower().replace(' ', '_').replace('-', '_')}}.py
mlctl/helpers/__init__.py
mlctl/helpers/log_helper.py
mlctl/interfaces/__init__.py
mlctl/interfaces/batch.py
mlctl/interfaces/deploy.py
mlctl/interfaces/process.py
mlctl/interfaces/train.py
mlctl/jobs/MlctlBatchJob.py
mlctl/jobs/MlctlDeployJob.py
mlctl/jobs/MlctlProcessJob.py
mlctl/jobs/MlctlTrainJob.py
mlctl/jobs/__init__.py
mlctl/jobs/common/__init__.py
mlctl/jobs/common/helper.py
mlctl/plugins/__init__.py
mlctl/plugins/utils.py
mlctl/plugins/awssagemaker/__init__.py
mlctl/plugins/awssagemaker/deploy.py
mlctl/plugins/awssagemaker/process.py
mlctl/plugins/awssagemaker/train.py
mlctl/plugins/azureml/__init__.py
mlctl/plugins/azureml/deploy.py
mlctl/plugins/azureml/train.py
mlctl/plugins/kubernetes/__init__.py
mlctl/plugins/kubernetes/process.py
mlctl/plugins/kubernetes/train.py
mlctl/plugins/mlflow/metadata.py
tests/clis/test_batch_cli.py
tests/clis/test_cli.py
tests/clis/test_hosting_cli.py
tests/clis/test_init.py
tests/clis/test_train_cli.py
tests/clis/mlctl_init/.gitignore
tests/clis/mlctl_init/README.md
tests/clis/mlctl_init/setup.cfg
tests/clis/mlctl_init/setup.py
tests/clis/mlctl_init/tox.ini
tests/clis/mlctl_init/model/__init__.py
tests/clis/mlctl_init/model/predict.py
tests/clis/mlctl_init/model/train.py
tests/sagemaker/test_batch.py
tests/sagemaker/test_hosting.py
tests/sagemaker/test_train.py