Skip to main content
Blog

Notebooks in Production with Metaflow

Learn how to use notebooks in production ML workflows with a new Metaflow feature

When building production-ready machine learning systems, it is critical to monitor the health and performance of those systems with reports and visualizations. Furthermore, allowing for rapid debugging and interactive introspection is critical when workflows fail or do unexpected things. Jupyter notebooks have often been a preferred tool of data scientists for these tasks of visualization, exploration, debugging, and rapid iteration.  Ironically, many production systems do not integrate appropriately with notebooks, which can significantly frustrate progress on these tasks.

Indeed, in the field of data science tooling, one of the most hotly-contested questions is whether notebooks are suitable for production use. We believe that tools should strive to meet data scientists where they are instead of forcing them to adapt approaches from other disciplines not suited to their needs. This is why we are excited to introduce Notebook Cards, which allow data scientists to use notebooks for visualizing and debugging production workflows and help to bridge the MLOps divide between prototype and production. This allows data scientists to safely use notebooks for parts of their production workflows, without having to refactor code to conform to a different development environment. 

With notebook cards, Metaflow orchestrates notebook execution in a reproducible manner without compromising the integrity of your workflows.

A card rendered directly from a Jupyter Notebook in the Metaflow GUI.

From notebooks to production machine learning

Metaflow is an ergonomic Python framework created at Netflix for building production ML systems. The data team at Netflix is also famous for notebook innovation in data science workflows.  This notebook innovation was revolutionary because it provided mechanisms to integrate notebooks into production data science workflows by providing the following features:

There are many ways to use notebooks in production-ready ML applications, ranging from using notebooks as a complete software development environment to using notebooks as reporting, visualization, and debugging tools, and these are key questions in the MLOps space.  The features demonstrated in this post focus on the latter but do not preclude the former.  We think notebooks are great reporting and visualization tools because:

  • Notebooks allow data scientists to use tools they are very familiar with, including very mature visualization libraries to create visualizations that are appropriate for the problem at hand, allowing for faster iteration.
  • There is no need to push data into another system like Looker or Tableau for multi-stakeholder consumption.
  • You can author interactive visualizations with tools like Altair and Bokeh.
  • Notebooks can also offer a convenient debugging environment for your Metaflow workflows, as you can use notebooks to interactively inspect the result of your workflows.

This is why we created the notebook card, a Metaflow card that allows you to:

  • Access data from any step in your DAG so you can visualize it or otherwise use it to generate reports in a notebook.
  • Inject custom parameters into your notebook for execution.
  • Ensure that notebook outputs are reproducible.
  • Keep the resulting notebooks versioned and organized automatically.
  • Isolate notebook-based reporting from the other business logic, making sure that errors in the notebook cannot cause the workflow to fail.
  • Render your notebooks as reports or model cards that can be embedded in various apps.  Notebook Cards generated from a flow are shareable directly from the Metaflow GUI.
  • Run notebook(s) programmatically in your Metaflow DAGs. With the notebook card, you can automatically inject notebooks with the run_id, flow_name, and task_id so that users can debug workflows immediately upon a failure in your workflow.

Additionally, you can use all of the features of Metaflow to manage the execution of notebooks, for example:

Crucially, this feature works equally on a laptop during prototyping as well as when deployed to a cloud-based production environment. Traditionally notebooks have been hard to deploy into production, necessitating a separate solution for prototyping and production, causing unnecessary busywork for the data scientist.  

Notebook cards allow you to use notebooks as reporting, visualization, and debugging tools. For example, let’s say that you wanted to visualize model performance metrics, feature importance, hyperparameter tuning, and partial dependence plots in your notebook. You can do so! Note that these are just examples of many different visualizations you could build:

The above visualizations were created in a notebook and refreshed with data specific for the pipeline run. The project’s README has instructions on how to do this.

Also note that this is model framework-agnostic and so will work with all types of ML models, whether they be scikit-learn, TensorFlow, PyTorch, or XGBoost.

How to use notebook cards

You can get started with Notebook cards by installing them with pip:

pip install metaflow-card-notebook

Afterward, you need to decorate the appropriate step with @card(type=’notebook’) and assign the nb_options_dict variable to the path of the notebook as illustrated in the toy example below:

flow.py
from metaflow import step, current, FlowSpec, card
from mymodel import train_model

class NBFlow(FlowSpec):
"A toy example of using the notebook card."

@step
def start(self):
# Train a model, save the results in `model_results`
self.model_results = train_model(...)
self.next(self.end)

@card(type='notebook')
@step
def end(self):
# eval_model.ipynb can read `self.model_results`
self.nb_options_dict = dict(input_path='eval_model.ipynb')

if __name__ == '__main__':
NBFlow()

This is a toy example of notebook cards.  You can see real examples in the GitHub repo.

If you are using the Metaflow GUI,  you can view a card under the appropriate step(s) in a run (see the above example visualizing model performance metrics). Alternatively, you can view the rendered notebook card locally with the command:

python flow.py card view <step name>

Notebook cards are built on Metaflow Cards, a general-purpose SDK that allows you to build visual artifacts of your flows.  Notebook cards use Papermill to programmatically run notebooks as well as inject parameters into the notebook necessary to access data for a Flow.  To enable this behavior, you just need to create a notebook with the cell tag “parameters”.  At runtime, Papermill injects parameters as a new cell as illustrated below:

With these parameters, we can retrieve data from our flow.  In our example, we saved our training results from our model to self.model_results in the start step of our flow.  We can use Metaflow’s Task object to retrieve this data as follows:

One useful aspect of this workflow is that rendered notebooks can be run after the Flow completes from top-to-bottom.  This is useful for both iterating on Flow dashboards or debugging, as all the information you need to inspect a flow is provided for you.  For a complete walkthrough as well as how you can customize the behavior of notebook cards, see the project’s README.

Get involved with notebooks in production

We recommend visiting the documentation for this project and studying the examples.  Notebook cards are not the only kind of card that we offer.  To understand Metaflow cards more generally, see this overview.   Furthermore, you can even create custom card templates for the community.

We would love to see what you create.  Please share your cards, questions, and feedback with us in the Metaflow Community Slack Channel, where there are over 900 data scientists and engineers. Lastly, this feature is only the tip of the iceberg of the features we plan to bring to data scientists everywhere.  Sounds interesting?  Come work with us.

Smarter machines, built by happier humans

The future will be powered by dynamic, data intensive systems - built by happy humans using tooling that gives them superpowers

Get started for free