# from-jupyter-to-production-workshop **Repository Path**: mirrors_codecentric/from-jupyter-to-production-workshop ## Basic Information - **Project Name**: from-jupyter-to-production-workshop - **Description**: Workshop for production-ready data science projects. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-13 - **Last Updated**: 2025-10-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # From Jupyter to Production ## Production-ready Data Science Projects This repository contains material for the workshop "From Jupyter to Production". The goal of the workshop is to get a glimpse of production-readiness for data science and machine learning projects. With the introductory Jupyter notebooks and the exercises found in the [notebooks](https://github.com/codecentric/from-jupyter-to-production-workshop/tree/master/notebooks) directory, you will learn how to - Versioning your data and models with DVC - Build pipelines with Dagster - Track experiments with MLflow - Deploy your model with FastAPI Having installed docker, you can use JupyterLab for the exercises. ## Start JupyterLab First clone the repository ```bash git clone https://github.com/codecentric/from-jupyter-to-production-workshop cd from-jupyter-to-production-workshop ``` and then execute the command ```bash docker compose up -d ``` You can now use JupyterLab in your browser: [http://localhost:8888](http://localhost:8888) ### Docker Images If you want to pull the docker images separately ```bash docker pull codecentric/from-jupyter-to-production-baseimage ``` You will find the source for the docker images here: [http://github.com/codecentric/from-jupyter-to-production-baseimage](http://github.com/codecentric/from-jupyter-to-production-baseimage) ## Extra Repositories We provide additional repositories for showcases that do not fit into the JupyterLab setup: - [Monitoring Showcase (FastAPI + Evidently + Streamlit)](http://github.com/codecentric/from-jupyter-to-production-monitoring)