From 42c06e90f42ba260150244f736c2b335fc6fcec9 Mon Sep 17 00:00:00 2001 From: yiyixuxu Date: Mon, 23 Jun 2025 17:55:32 +0200 Subject: [PATCH] update doc --- .../en/modular_diffusers/developer_guide.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/source/en/modular_diffusers/developer_guide.md b/docs/source/en/modular_diffusers/developer_guide.md index 175383f0d0..8ab71a2c7b 100644 --- a/docs/source/en/modular_diffusers/developer_guide.md +++ b/docs/source/en/modular_diffusers/developer_guide.md @@ -1,6 +1,22 @@ + + # Developer Guide: Building with Modular Diffusers -To implement new pipelines in the modular framework, you can use this process: +[[open-in-colab]] + +In this tutorial we will walk through the process of adding a new pipeline to the modular framework using differential diffusion as our example. We'll cover the complete workflow from implementation to deployment: implementing the new pipeline, ensuring compatibility with existing tools, sharing the code on Hugging Face Hub, and deploying it as a UI node. + +We'll also demonstrate the 3-step framework process we use for implementing new basic pipelines in the modular system. #### 1. **Start with an existing pipeline as a base** - Identify which existing pipeline is most similar to your target