Update README.md
Browse files
README.md
CHANGED
@@ -48,11 +48,14 @@ From left to right: Input image, Masked image, SDXL inpainting, Ours.
|
|
48 |
|
49 |
# How to Use
|
50 |
|
|
|
|
|
|
|
|
|
51 |
``` python
|
52 |
from diffusers.utils import load_image, check_min_version
|
53 |
import torch
|
54 |
|
55 |
-
# Local File
|
56 |
from pipeline_sd3_controlnet_inpainting import StableDiffusion3ControlNetInpaintingPipeline, one_image_and_mask
|
57 |
from controlnet_sd3 import SD3ControlNetModel
|
58 |
|
|
|
48 |
|
49 |
# How to Use
|
50 |
|
51 |
+
Dowanlod two python files:pipeline_sd3_controlnet_inpainting.py and controlnet_sd3.py can be found in the root directory of the current repo.
|
52 |
+
|
53 |
+
We will merge this Feature to official Diffusers.
|
54 |
+
|
55 |
``` python
|
56 |
from diffusers.utils import load_image, check_min_version
|
57 |
import torch
|
58 |
|
|
|
59 |
from pipeline_sd3_controlnet_inpainting import StableDiffusion3ControlNetInpaintingPipeline, one_image_and_mask
|
60 |
from controlnet_sd3 import SD3ControlNetModel
|
61 |
|