kedro-mlflow


Namekedro-mlflow JSON
Version 0.14.3 PyPI version JSON
download
home_pageNone
SummaryA kedro-plugin to use mlflow in your kedro projects
upload_time2025-02-17 22:30:54
maintainerNone
docs_urlNone
authorYolan Honoré-Rougé
requires_python>=3.9
licenseApache Software License (Apache 2.0)
keywords kedro-plugin kedro mlflow experiment tracking model versioning model serving machine learning data pipelines data science ml engineering mlops
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            **General informations**
<!-- markdown-link-check-disable -->
[![Python Version](https://img.shields.io/pypi/pyversions/kedro-mlflow)](https://pypi.org/project/kedro-mlflow/) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Code Style: Black](https://img.shields.io/badge/code%20style-black-black.svg)](https://github.com/ambv/black)
[![SemVer](https://img.shields.io/badge/semver-2.0.0-green)](https://semver.org/)
[![Powered by Kedro](https://img.shields.io/badge/powered_by-kedro-ffc900?logo=kedro)](https://kedro.org)
<!-- markdown-link-check-enable -->

----------------------------------------------------------
| Package manager | Software repository | Latest release                                                                                                                                | Total downloads                                                                                                                 |
| --------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| ``pip``         | PyPI                | [![PyPI version](https://badge.fury.io/py/kedro-mlflow.svg)](https://pypi.org/project/kedro-mlflow/)                                          | [![Downloads](https://pepy.tech/badge/kedro-mlflow)](https://pepy.tech/project/kedro-mlflow)                                    |
| ``conda``       | conda-forge         | [![conda version](https://img.shields.io/conda/vn/conda-forge/kedro-mlflow?color=bright%20green)](https://anaconda.org/search?q=kedro+mlflow) | [![Downloads](https://img.shields.io/conda/dn/conda-forge/kedro-mlflow?color=blue)](https://anaconda.org/search?q=kedro+mlflow) |

**Code health**

----------------------------------------------------------
| Branch   | Tests                                                                                                                                                                                            | Coverage                                                                                                                                                         | Links                                                                                                                                                                                                           | Documentation                                                                                                                           | Deployment                                                                                                                                                                                                | Activity                                                                                                                                                              |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `master` | [![test](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/test/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Atest+branch%3Amaster) | [![codecov](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master/graph/badge.svg)](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master) | [![links](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/check-links/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Acheck-links+branch%3Amaster) | [![Documentation](https://readthedocs.org/projects/kedro-mlflow/badge/?version=stable)](https://kedro-mlflow.readthedocs.io/en/stable/) | [![publish](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/publish/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=branch%3Amaster+workflow%3Apublish) | [![commit](https://img.shields.io/github/commits-since/Galileo-Galilei/kedro-mlflow/0.14.3)](https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.14.3...master) |

*If you like the repo, please give it a :star:*

# What is kedro-mlflow?

![kedro-mlflow logo](docs/source/imgs/logo.png)

``kedro-mlflow`` is a [kedro-plugin](https://kedro.readthedocs.io/en/stable/extend_kedro/plugins.html) for lightweight and portable integration of [mlflow](https://mlflow.org/docs/latest/index.html) capabilities inside [kedro](https://kedro.readthedocs.io/en/stable/index.html) projects. It enforces [``Kedro`` principles](https://kedro.org/blog/development-principles-for-opinionated-teams) to make mlflow usage as production ready as possible. Its core functionalities are :

- **experiment tracking**: `kedro-mlflow` intends to enhance reproducibility for machine learning experimentation. With `kedro-mlflow` installed, you can effortlessly register your parameters or your datasets with minimal configuration in a kedro run. Later, you will be able to browse your runs in the mlflow UI, and retrieve the runs you want. This is directly linked to [Mlflow Tracking](https://www.mlflow.org/docs/latest/tracking.html).
- **pipeline as model**: ``kedro-mlflow`` intends to be be an agnostic machine learning framework for people who want to write portable, production ready machine learning pipelines. It offers a convenient API to convert a Kedro pipeline to a ``model`` in the mlflow sense. This "model" is self contained : it includes preprocessing and postprocessing steps as well as artifacts produced during training.  Consequently, you can  serve your Kedro pipeline as an API with one line of code and share. This is directly linked to [Mlflow Models](https://www.mlflow.org/docs/latest/models.html).

# How do I install kedro-mlflow?

**Important: ``kedro-mlflow`` is only compatible with ``kedro>=0.16.0`` and ``mlflow>=1.0.0``. If you have a project created with an older version of ``Kedro``, see this [migration guide](https://github.com/quantumblacklabs/kedro/blob/master/RELEASE.md#migration-guide-from-kedro-015-to-016).**

You can install ``kedro-mlflow`` with several tools and from several packaging platforms:

|                             **Logo**                              | **Platform** |**Command**|
|:-----------------------------------------------------------------:|:------------:|:----------------------------------------------------:|
|       ![PyPI logo](https://simpleicons.org/icons/pypi.svg)        |     PyPI     | ``pip install kedro-mlflow`` or ``uv pip install kedro-mlflow`` |
| ![Conda Forge logo](https://simpleicons.org/icons/condaforge.svg) | Conda Forge  | ``conda install kedro-mlflow --channel conda-forge`` |
|     ![GitHub logo](https://simpleicons.org/icons/github.svg)      |    GitHub    | ``pip install --upgrade git+https://github.com/Galileo-Galilei/kedro-mlflow.git`` |

I strongly recommend to use a package manager (like ``conda``) to create a virtual environment and to read [``kedro`` installation guide](https://kedro.readthedocs.io/en/latest/get_started/install.html).

# Getting started

The documentation contains:

- [A  quickstart in 1 mn example](https://kedro-mlflow.readthedocs.io/en/latest/source/02_getting_started/02_quickstart/00_intro_tutorial.html) which demonstrates how you to **setup your project**, **track parameters** and **datasets**, and browse your runs in the UI.
- A section for [advanced experiment tracking](https://kedro-mlflow.readthedocs.io/en/latest/source/03_experiment_tracking/index.html) to show more advanced features (mlflow configuration through the plugin, package and serve a kedro ``Pipeline``...)
- A section to demonstrate how to use `kedro-mlflow` to  [package kedro pipelines as mlflow models](https://kedro-mlflow.readthedocs.io/en/latest/source/04_pipeline_as_model/index.html) to deliver production ready pipelines and serve them. This section comes with [an example repo](https://github.com/Galileo-Galilei/kedro-mlflow-tutorial) you can clone and try out.

Some frequently asked questions on more advanced features:

- You want to log additional metrics to the run? -> [Try ``MlflowMetricsHistoryDataset``](https://kedro-mlflow.readthedocs.io/en/latest/source/03_experiment_tracking/01_experiment_tracking/05_version_metrics.html#) !
- You want to log nice dataviz of your pipeline that you register with ``MatplotlibWriter``? -> [Try ``MlflowArtifactDataset`` to log any local files (.png, .pkl, .csv...) *automagically*](https://kedro-mlflow.readthedocs.io/en/latest/source/03_experiment_tracking/01_experiment_tracking/03_version_datasets.html)!
- You want to create easily an API to share your awesome model to anyone? -> [See if ``pipeline_ml_factory`` can fit your needs](https://kedro-mlflow.readthedocs.io/en/latest/source/04_pipeline_as_model/01_pipeline_as_custom_model/02_scikit_learn_like_pipeline.html)
- You want to do something that is not straigthforward with current implementation? [Open an issue](https://github.com/Galileo-Galilei/kedro-mlflow/issues), and let's see what happens!

# Release and roadmap

The [release history](https://github.com/Galileo-Galilei/kedro-mlflow/blob/master/CHANGELOG.md) centralizes packages improvements across time. The main features coming in next releases are [visible on the repo's project](https://github.com/users/Galileo-Galilei/projects/4). Feel free to upvote/downvote and discuss prioritization in associated issues.

# Disclaimer

This package is still in active development. We use [SemVer](https://semver.org/) principles to version our releases. Until we reach `1.0.0` milestone, breaking changes will lead to `<minor>` version number increment, while releases which do not introduce breaking changes in the API will lead to `<patch>` version number increment.

The user must be aware that we will not reach `1.0.0` milestone before Kedro does (mlflow has already reached `1.0.0`). **That said, the API is considered as stable from 0.8.0 version and user can reliably consider that no consequent breaking change will happen unless necessary for Kedro compatibility (e.g. for minor or major Kedro version).**

If you want to migrate from an older version of `kedro-mlflow` to most recent ones, see the [migration guide](https://kedro-mlflow.readthedocs.io/en/latest/source/06_migration_guide/index.html).


# Can I contribute?

We'd be happy to receive help to maintain and improve the package. Any PR will be considered (from typo in the docs to core features add-on) Please check the [contributing guidelines](https://github.com/Galileo-Galilei/kedro-mlflow/blob/master/CONTRIBUTING.md).

# Main contributors

The following people actively maintain, enhance and discuss design to make this package as good as possible:

- [Yolan Honoré-Rougé](https://github.com/galileo-galilei)
- [Takieddine Kadiri](https://github.com/takikadiri)

Many thanks to [Adrian Piotr Kruszewski](https://github.com/akruszewski) for his past work on the repo.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "kedro-mlflow",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "kedro-plugin, kedro, mlflow, experiment tracking, model versioning, model serving, machine learning, data pipelines, data science, ml engineering, mlops",
    "author": "Yolan Honor\u00e9-Roug\u00e9",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/24/17/a4f1696a1d0a304d595dba4072086eb3d57521f074842a83ab0f79fc0174/kedro_mlflow-0.14.3.tar.gz",
    "platform": null,
    "description": "**General informations**\n<!-- markdown-link-check-disable -->\n[![Python Version](https://img.shields.io/pypi/pyversions/kedro-mlflow)](https://pypi.org/project/kedro-mlflow/) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Code Style: Black](https://img.shields.io/badge/code%20style-black-black.svg)](https://github.com/ambv/black)\n[![SemVer](https://img.shields.io/badge/semver-2.0.0-green)](https://semver.org/)\n[![Powered by Kedro](https://img.shields.io/badge/powered_by-kedro-ffc900?logo=kedro)](https://kedro.org)\n<!-- markdown-link-check-enable -->\n\n----------------------------------------------------------\n| Package manager | Software repository | Latest release                                                                                                                                | Total downloads                                                                                                                 |\n| --------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |\n| ``pip``         | PyPI                | [![PyPI version](https://badge.fury.io/py/kedro-mlflow.svg)](https://pypi.org/project/kedro-mlflow/)                                          | [![Downloads](https://pepy.tech/badge/kedro-mlflow)](https://pepy.tech/project/kedro-mlflow)                                    |\n| ``conda``       | conda-forge         | [![conda version](https://img.shields.io/conda/vn/conda-forge/kedro-mlflow?color=bright%20green)](https://anaconda.org/search?q=kedro+mlflow) | [![Downloads](https://img.shields.io/conda/dn/conda-forge/kedro-mlflow?color=blue)](https://anaconda.org/search?q=kedro+mlflow) |\n\n**Code health**\n\n----------------------------------------------------------\n| Branch   | Tests                                                                                                                                                                                            | Coverage                                                                                                                                                         | Links                                                                                                                                                                                                           | Documentation                                                                                                                           | Deployment                                                                                                                                                                                                | Activity                                                                                                                                                              |\n| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `master` | [![test](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/test/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Atest+branch%3Amaster) | [![codecov](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master/graph/badge.svg)](https://codecov.io/gh/Galileo-Galilei/kedro-mlflow/branch/master) | [![links](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/check-links/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=workflow%3Acheck-links+branch%3Amaster) | [![Documentation](https://readthedocs.org/projects/kedro-mlflow/badge/?version=stable)](https://kedro-mlflow.readthedocs.io/en/stable/) | [![publish](https://github.com/Galileo-Galilei/kedro-mlflow/workflows/publish/badge.svg?branch=master)](https://github.com/Galileo-Galilei/kedro-mlflow/actions?query=branch%3Amaster+workflow%3Apublish) | [![commit](https://img.shields.io/github/commits-since/Galileo-Galilei/kedro-mlflow/0.14.3)](https://github.com/Galileo-Galilei/kedro-mlflow/compare/0.14.3...master) |\n\n*If you like the repo, please give it a :star:*\n\n# What is kedro-mlflow?\n\n![kedro-mlflow logo](docs/source/imgs/logo.png)\n\n``kedro-mlflow`` is a [kedro-plugin](https://kedro.readthedocs.io/en/stable/extend_kedro/plugins.html) for lightweight and portable integration of [mlflow](https://mlflow.org/docs/latest/index.html) capabilities inside [kedro](https://kedro.readthedocs.io/en/stable/index.html) projects. It enforces [``Kedro`` principles](https://kedro.org/blog/development-principles-for-opinionated-teams) to make mlflow usage as production ready as possible. Its core functionalities are :\n\n- **experiment tracking**: `kedro-mlflow` intends to enhance reproducibility for machine learning experimentation. With `kedro-mlflow` installed, you can effortlessly register your parameters or your datasets with minimal configuration in a kedro run. Later, you will be able to browse your runs in the mlflow UI, and retrieve the runs you want. This is directly linked to [Mlflow Tracking](https://www.mlflow.org/docs/latest/tracking.html).\n- **pipeline as model**: ``kedro-mlflow`` intends to be be an agnostic machine learning framework for people who want to write portable, production ready machine learning pipelines. It offers a convenient API to convert a Kedro pipeline to a ``model`` in the mlflow sense. This \"model\" is self contained : it includes preprocessing and postprocessing steps as well as artifacts produced during training.  Consequently, you can  serve your Kedro pipeline as an API with one line of code and share. This is directly linked to [Mlflow Models](https://www.mlflow.org/docs/latest/models.html).\n\n# How do I install kedro-mlflow?\n\n**Important: ``kedro-mlflow`` is only compatible with ``kedro>=0.16.0`` and ``mlflow>=1.0.0``. If you have a project created with an older version of ``Kedro``, see this [migration guide](https://github.com/quantumblacklabs/kedro/blob/master/RELEASE.md#migration-guide-from-kedro-015-to-016).**\n\nYou can install ``kedro-mlflow`` with several tools and from several packaging platforms:\n\n|                             **Logo**                              | **Platform** |**Command**|\n|:-----------------------------------------------------------------:|:------------:|:----------------------------------------------------:|\n|       ![PyPI logo](https://simpleicons.org/icons/pypi.svg)        |     PyPI     | ``pip install kedro-mlflow`` or ``uv pip install kedro-mlflow`` |\n| ![Conda Forge logo](https://simpleicons.org/icons/condaforge.svg) | Conda Forge  | ``conda install kedro-mlflow --channel conda-forge`` |\n|     ![GitHub logo](https://simpleicons.org/icons/github.svg)      |    GitHub    | ``pip install --upgrade git+https://github.com/Galileo-Galilei/kedro-mlflow.git`` |\n\nI strongly recommend to use a package manager (like ``conda``) to create a virtual environment and to read [``kedro`` installation guide](https://kedro.readthedocs.io/en/latest/get_started/install.html).\n\n# Getting started\n\nThe documentation contains:\n\n- [A  quickstart in 1 mn example](https://kedro-mlflow.readthedocs.io/en/latest/source/02_getting_started/02_quickstart/00_intro_tutorial.html) which demonstrates how you to **setup your project**, **track parameters** and **datasets**, and browse your runs in the UI.\n- A section for [advanced experiment tracking](https://kedro-mlflow.readthedocs.io/en/latest/source/03_experiment_tracking/index.html) to show more advanced features (mlflow configuration through the plugin, package and serve a kedro ``Pipeline``...)\n- A section to demonstrate how to use `kedro-mlflow` to  [package kedro pipelines as mlflow models](https://kedro-mlflow.readthedocs.io/en/latest/source/04_pipeline_as_model/index.html) to deliver production ready pipelines and serve them. This section comes with [an example repo](https://github.com/Galileo-Galilei/kedro-mlflow-tutorial) you can clone and try out.\n\nSome frequently asked questions on more advanced features:\n\n- You want to log additional metrics to the run? -> [Try ``MlflowMetricsHistoryDataset``](https://kedro-mlflow.readthedocs.io/en/latest/source/03_experiment_tracking/01_experiment_tracking/05_version_metrics.html#) !\n- You want to log nice dataviz of your pipeline that you register with ``MatplotlibWriter``? -> [Try ``MlflowArtifactDataset`` to log any local files (.png, .pkl, .csv...) *automagically*](https://kedro-mlflow.readthedocs.io/en/latest/source/03_experiment_tracking/01_experiment_tracking/03_version_datasets.html)!\n- You want to create easily an API to share your awesome model to anyone? -> [See if ``pipeline_ml_factory`` can fit your needs](https://kedro-mlflow.readthedocs.io/en/latest/source/04_pipeline_as_model/01_pipeline_as_custom_model/02_scikit_learn_like_pipeline.html)\n- You want to do something that is not straigthforward with current implementation? [Open an issue](https://github.com/Galileo-Galilei/kedro-mlflow/issues), and let's see what happens!\n\n# Release and roadmap\n\nThe [release history](https://github.com/Galileo-Galilei/kedro-mlflow/blob/master/CHANGELOG.md) centralizes packages improvements across time. The main features coming in next releases are [visible on the repo's project](https://github.com/users/Galileo-Galilei/projects/4). Feel free to upvote/downvote and discuss prioritization in associated issues.\n\n# Disclaimer\n\nThis package is still in active development. We use [SemVer](https://semver.org/) principles to version our releases. Until we reach `1.0.0` milestone, breaking changes will lead to `<minor>` version number increment, while releases which do not introduce breaking changes in the API will lead to `<patch>` version number increment.\n\nThe user must be aware that we will not reach `1.0.0` milestone before Kedro does (mlflow has already reached `1.0.0`). **That said, the API is considered as stable from 0.8.0 version and user can reliably consider that no consequent breaking change will happen unless necessary for Kedro compatibility (e.g. for minor or major Kedro version).**\n\nIf you want to migrate from an older version of `kedro-mlflow` to most recent ones, see the [migration guide](https://kedro-mlflow.readthedocs.io/en/latest/source/06_migration_guide/index.html).\n\n\n# Can I contribute?\n\nWe'd be happy to receive help to maintain and improve the package. Any PR will be considered (from typo in the docs to core features add-on) Please check the [contributing guidelines](https://github.com/Galileo-Galilei/kedro-mlflow/blob/master/CONTRIBUTING.md).\n\n# Main contributors\n\nThe following people actively maintain, enhance and discuss design to make this package as good as possible:\n\n- [Yolan Honor\u00e9-Roug\u00e9](https://github.com/galileo-galilei)\n- [Takieddine Kadiri](https://github.com/takikadiri)\n\nMany thanks to [Adrian Piotr Kruszewski](https://github.com/akruszewski) for his past work on the repo.\n",
    "bugtrack_url": null,
    "license": "Apache Software License (Apache 2.0)",
    "summary": "A kedro-plugin to use mlflow in your kedro projects",
    "version": "0.14.3",
    "project_urls": {
        "Documentation": "https://kedro-mlflow.readthedocs.io/en/stable/",
        "Source": "https://github.com/Galileo-Galilei/kedro-mlflow",
        "Tracker": "https://github.com/Galileo-Galilei/kedro-mlflow/issues"
    },
    "split_keywords": [
        "kedro-plugin",
        " kedro",
        " mlflow",
        " experiment tracking",
        " model versioning",
        " model serving",
        " machine learning",
        " data pipelines",
        " data science",
        " ml engineering",
        " mlops"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ed1319490c858005b70b7e23d2e7050ed249c074cb033ff0eaa6385504bacd6",
                "md5": "bfcf9c7e9f23902e21296c13ef979615",
                "sha256": "5047357fbde9c480f3f97e8a0f16aa3fa9d68ebacbedd7d91aae03bc9643981d"
            },
            "downloads": -1,
            "filename": "kedro_mlflow-0.14.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bfcf9c7e9f23902e21296c13ef979615",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 54104,
            "upload_time": "2025-02-17T22:30:52",
            "upload_time_iso_8601": "2025-02-17T22:30:52.075191Z",
            "url": "https://files.pythonhosted.org/packages/1e/d1/319490c858005b70b7e23d2e7050ed249c074cb033ff0eaa6385504bacd6/kedro_mlflow-0.14.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2417a4f1696a1d0a304d595dba4072086eb3d57521f074842a83ab0f79fc0174",
                "md5": "c096a36a6c50b648dcbd0f5ac5defb18",
                "sha256": "9fab112c7dcb140f32b12edfb63a8d8e4213ceb5de5dc5b4f87654eb995b8b08"
            },
            "downloads": -1,
            "filename": "kedro_mlflow-0.14.3.tar.gz",
            "has_sig": false,
            "md5_digest": "c096a36a6c50b648dcbd0f5ac5defb18",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1381136,
            "upload_time": "2025-02-17T22:30:54",
            "upload_time_iso_8601": "2025-02-17T22:30:54.747650Z",
            "url": "https://files.pythonhosted.org/packages/24/17/a4f1696a1d0a304d595dba4072086eb3d57521f074842a83ab0f79fc0174/kedro_mlflow-0.14.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-17 22:30:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Galileo-Galilei",
    "github_project": "kedro-mlflow",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "kedro-mlflow"
}
        
Elapsed time: 6.10582s