.editorconfig
.gitignore
.pre-commit-config.yaml
.readthedocs.yml
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
codecov.yml
mlc_config.json
pyproject.toml
requirements.txt
setup.cfg
setup.py
.github/PULL_REQUEST_TEMPLATE.md
.github/dependabot.yml
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/workflows/check-links.yml
.github/workflows/prepare-release.yml
.github/workflows/publish.yml
.github/workflows/test.yml
docs/Makefile
docs/conf.py
docs/index.rst
docs/make.bat
docs/source/01_introduction/01_introduction.md
docs/source/01_introduction/02_motivation.md
docs/source/01_introduction/index.rst
docs/source/02_installation/01_installation.md
docs/source/02_installation/02_setup.md
docs/source/02_installation/03_migration_guide.md
docs/source/02_installation/index.rst
docs/source/03_getting_started/00_intro_tutorial.md
docs/source/03_getting_started/01_example_project.md
docs/source/03_getting_started/02_first_steps.md
docs/source/03_getting_started/index.rst
docs/source/04_experimentation_tracking/01_configuration.md
docs/source/04_experimentation_tracking/02_version_parameters.md
docs/source/04_experimentation_tracking/03_version_datasets.md
docs/source/04_experimentation_tracking/04_version_models.md
docs/source/04_experimentation_tracking/05_version_metrics.md
docs/source/04_experimentation_tracking/06_mlflow_ui.md
docs/source/04_experimentation_tracking/index.rst
docs/source/05_framework_ml/01_why_framework.md
docs/source/05_framework_ml/02_ml_project_components.md
docs/source/05_framework_ml/03_framework_solutions.md
docs/source/05_framework_ml/index.rst
docs/source/05_pipeline_serving/01_mlflow_models.md
docs/source/05_pipeline_serving/02_custom_kedro_pipeline_model.md
docs/source/05_pipeline_serving/03_cli_modelify.md
docs/source/05_pipeline_serving/04_hook_pipeline_ml.md
docs/source/05_pipeline_serving/index.rst
docs/source/06_interactive_use/01_notebook_use.md
docs/source/06_interactive_use/index.rst
docs/source/07_python_objects/01_DataSets.md
docs/source/07_python_objects/02_Hooks.md
docs/source/07_python_objects/03_Pipelines.md
docs/source/07_python_objects/04_CLI.md
docs/source/07_python_objects/05_Configuration.md
docs/source/07_python_objects/index.rst
docs/source/08_API/kedro_mlflow.config.rst
docs/source/08_API/kedro_mlflow.extras.extensions.rst
docs/source/08_API/kedro_mlflow.framework.cli.rst
docs/source/08_API/kedro_mlflow.framework.hooks.rst
docs/source/08_API/kedro_mlflow.io.rst
docs/source/08_API/kedro_mlflow.mlflow.rst
docs/source/08_API/kedro_mlflow.pipeline.rst
docs/source/08_API/kedro_mlflow.rst
docs/source/imgs/apps_interaction.png
docs/source/imgs/default_catalog.png
docs/source/imgs/etl_app.png
docs/source/imgs/hook_registration_process.png
docs/source/imgs/initialized_project.png
docs/source/imgs/kedro_viz_params.png
docs/source/imgs/mlflow_host_page.png
docs/source/imgs/mlflow_run.png
docs/source/imgs/mlflow_tracking_schema.png
docs/source/imgs/mlflow_yml.png
docs/source/imgs/once_run_project.png
docs/source/imgs/run_with_artifact.png
docs/source/imgs/updated_catalog.png
docs/source/imgs/ml_pipeline/preprocessing/all.PNG
docs/source/imgs/ml_pipeline/preprocessing/inference.PNG
docs/source/imgs/ml_pipeline/preprocessing/training.PNG
docs/source/imgs/ml_pipeline/shared_inputs/all.PNG
docs/source/imgs/ml_pipeline/shared_inputs/inference.PNG
docs/source/imgs/ml_pipeline/shared_inputs/training.PNG
docs/source/imgs/ml_pipeline/tokenizer/all.PNG
docs/source/imgs/ml_pipeline/tokenizer/inference.PNG
docs/source/imgs/ml_pipeline/tokenizer/training.PNG
docs/source/imgs/ml_pipeline/vanilla/all.PNG
docs/source/imgs/ml_pipeline/vanilla/inference.PNG
docs/source/imgs/ml_pipeline/vanilla/training.PNG
kedro_mlflow/__init__.py
kedro_mlflow/utils.py
kedro_mlflow.egg-info/PKG-INFO
kedro_mlflow.egg-info/SOURCES.txt
kedro_mlflow.egg-info/dependency_links.txt
kedro_mlflow.egg-info/entry_points.txt
kedro_mlflow.egg-info/not-zip-safe
kedro_mlflow.egg-info/requires.txt
kedro_mlflow.egg-info/top_level.txt
kedro_mlflow/config/__init__.py
kedro_mlflow/config/kedro_mlflow_config.py
kedro_mlflow/extras/__init__.py
kedro_mlflow/extras/extensions/__init__.py
kedro_mlflow/extras/extensions/ipython.py
kedro_mlflow/framework/__init__.py
kedro_mlflow/framework/cli/__init__.py
kedro_mlflow/framework/cli/cli.py
kedro_mlflow/framework/cli/cli_utils.py
kedro_mlflow/framework/hooks/__init__.py
kedro_mlflow/framework/hooks/node_hook.py
kedro_mlflow/framework/hooks/pipeline_hook.py
kedro_mlflow/framework/hooks/utils.py
kedro_mlflow/io/__init__.py
kedro_mlflow/io/artifacts/__init__.py
kedro_mlflow/io/artifacts/mlflow_artifact_dataset.py
kedro_mlflow/io/catalog/__init__.py
kedro_mlflow/io/catalog/switch_catalog_logging.py
kedro_mlflow/io/metrics/__init__.py
kedro_mlflow/io/metrics/mlflow_abstract_metric_dataset.py
kedro_mlflow/io/metrics/mlflow_metric_dataset.py
kedro_mlflow/io/metrics/mlflow_metric_history_dataset.py
kedro_mlflow/io/metrics/mlflow_metrics_dataset.py
kedro_mlflow/io/models/__init__.py
kedro_mlflow/io/models/mlflow_abstract_model_dataset.py
kedro_mlflow/io/models/mlflow_model_logger_dataset.py
kedro_mlflow/io/models/mlflow_model_saver_dataset.py
kedro_mlflow/mlflow/__init__.py
kedro_mlflow/mlflow/kedro_pipeline_model.py
kedro_mlflow/pipeline/__init__.py
kedro_mlflow/pipeline/pipeline_ml.py
kedro_mlflow/pipeline/pipeline_ml_factory.py
kedro_mlflow/template/examples/.gitkeep
kedro_mlflow/template/project/mlflow.yml
tests/__init__.py
tests/conftest.py
tests/test_utils.py
tests/config/__init__.py
tests/config/test_get_mlflow_config.py
tests/config/test_kedro_mlflow_config.py
tests/extras/__init__.py
tests/extras/extensions/__init__.py
tests/extras/extensions/test_ipython.py
tests/framework/__init__.py
tests/framework/cli/__init__.py
tests/framework/cli/test_cli.py
tests/framework/cli/test_cli_modelify.py
tests/framework/cli/test_cli_utils.py
tests/framework/hooks/__init__.py
tests/framework/hooks/test_all_hooks.py
tests/framework/hooks/test_node_hook.py
tests/framework/hooks/test_pipeline_hook.py
tests/framework/hooks/test_utils.py
tests/io/__init__.py
tests/io/artifacts/__init__.py
tests/io/artifacts/test_mlflow_artifact_dataset.py
tests/io/metrics/__init__.py
tests/io/metrics/test_mlflow_metric_dataset.py
tests/io/metrics/test_mlflow_metric_history_dataset.py
tests/io/metrics/test_mlflow_metrics_dataset.py
tests/io/models/__init__.py
tests/io/models/test_mlflow_model_logger_dataset.py
tests/io/models/test_mlflow_model_saver_dataset.py
tests/mlflow/__init__.py
tests/mlflow/test_kedro_pipeline_model.py
tests/pipeline/__init__.py
tests/pipeline/test_pipeline_ml.py
tests/template/__init__.py
tests/template/project/__init__.py
tests/template/project/test_mlflow_yml.py