Sync your ML data seamlessly with productivity tools you love
Website • Installation • Docs • Examples • Contributing
MLSync is a Python library that acts as a bridge between your ML workflow and your project planning and management tools.
Developing ML projects is a lot of fun, but they are also hard to plan and manage. While the ML community has built several tools for developers to better track and visualize their ML workflow data, there is a disconnect between ML workflow data and the tools that are used for project management. MLSync is designed to bridge this gap.
There are four main aspects of MLSync:
- MLSync interfaces with modern ML experiment tracking tools such as MLflow and imports the raw data.
- Raw data from ML experiment tracking tools are converted to MLSync internal data format (user-defined) and stored in a database.
- MLSync engine processes this raw data and generates consolidated insights for your project.
- The insights are then converted to suitable formats and sent to your project planning and management tools such as Notion.
The figure above describes the architectural vision of MLSync. All the functionality is not yet available; please refer to the Roadmap for the current status. If you would like to contribute to MLSync, please refer to the Contributing section.
pip install mlsync
In this example, we will sync your machine learning experiments to Notion in a few simple steps!
Let us first set up the run environment.
- To begin, checkout this repository:
git clone https://github.com/paletteml/mlsync.git
- Change to the
mlsync/examples/mlflow-notion
directory:cd mlsync/examples/mlflow-notion/
- Rename the
.env.example
file in your path:mv .env.example .env
. This file is intended to store your personal API keys.
Note that the directory contains YAML files for configurations (config.yaml
) and report formatting (format.yaml
). We will leave the configurations as is for now.
Now let us set up our ML Training environment. For this example, we will rely on the MLFlow framework and Pytorch as our ML framework. Since MLFlow supports all major ML frameworks, this example can be easily adapted to other frameworks.
- If not already installed, install PyTorch based on the guide here. (Only needed for the provided example).
- Install
mlflow
package usingpip install mlflow
. More about installation here. - Run example training using
python mlflow_pytorch.py --run-name <Run 1>
. This will create a new MLFlow run. - Launch MLFlow UI using
mlflow ui &
. Copy the mlflow uri (seen in the command line as[INFO] Listening at: <URL>
). Let it run in the background. - Update the
uri
field in the configuration file in your folder (config.yaml
) undermlflow
with the just copied mlflow uri.
Let us now link Notion to MLSync. This is required only for the first time you run MLSync.
- Create a new integration to Notion.
- Visit notion.so/my-integrations
- Click the
New Integration
button - Let us name it as
MLSync
. - Ensure
Read
,Update
andInsert
Content Capabilities are selected. - Copy your "Internal Integration Token" from your Notion integration page into the
.env
file in your path.NOTION_TOKEN=secret_0000000000000000000000000000000000000000000
- Create a new page in Notion. This will serve as the root page for your MLFlow runs.
- Click the Share button on the top right corner of the page.
- Click the Invite button and then choose
MLSync
integration. - Back in the
Share
dialog, click theCopy link
button. - Paste the URL to the
page_id
field in the configuration file (config.yaml
) undernotion
.
You are now all set! Now let us sync your MLFlow runs to Notion.
mlsync --config config.yaml --format format.yaml
That's it! You can now view your MLFlow runs in Notion. As long as mlsync is running, all your future experiments and runs should appear in the selected Notion page.
- If you are getting an error related to the
NOTION_TOKEN
not being found, you can pass the--notion-token
flag tomlsync
to specify the token. - If you are seeing an error related to time out, ensure mlflow ui is running in the background.
- If you are having trouble with MNIST dataflow download, you can try to download the data manually from here.
Please raise an issue, or reach out if you have any other errors.
- You can override the Notion page id, token, and other configurations by either modifying the
config.yaml
file or by passing the arguments to themlsync
command. Runmlsync --help
to see the available arguments. - Custom Report Formats:
mlsync
allows you to customize the report much further. You can customize the report by adding your ownformat.yaml
file. Read documentation here to learn more. - Custom Refresh Rates: You can control the refresh rate of the report by setting the
refresh_rate
field in the configuration file. - Restarting mlsync: You can restart mlsync any time without losing earlier runs.
Enjoy! If you have any further questions, please contact us.
We want to support different training environments and different productivity tools.
- Productivity Tools
- Notion: Supported
- Trello: Planned
- Confluence: In progress
- Jira: Planned
- Monitoring Frameworks
- MLFlow: Supported
- TensorBoard: Planned
- ClearML: Planned
- Programmatic API
- Planned
Do you have other tools/frameworks you would like to see supported? Let us know!
We welcome contributions from the community. Please feel free to open an issue or pull request. Or, if you are interested in working closely with us, please contact us directly. We will be happy to talk to you!