patrickvonplaten commited on
Commit
7331429
1 Parent(s): 07a3fa9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -6
README.md CHANGED
@@ -62,16 +62,12 @@ It is recommended to use the checkpoint with [Stable Diffusion v1-5](https://hug
62
  has been trained on it.
63
  Experimentally, the checkpoint can be used with other diffusion models such as dreamboothed stable diffusion.
64
 
65
- **Note**: If you want to process an image to create the auxiliary conditioning, external dependencies are required as shown below:
66
- 1. Install https://github.com/patrickvonplaten/controlnet_aux
67
- ```sh
68
- $ pip install controlnet_aux==0.3.0
69
  ```
70
- 2. Let's install `diffusers` and related packages:
71
  ```
72
  $ pip install diffusers transformers accelerate
73
  ```
74
- 3. Run code:
75
  ```python
76
  import torch
77
  import os
@@ -121,10 +117,16 @@ image.save('images/output.png')
121
  ## Other released checkpoints v1-1
122
  The authors released 14 different checkpoints, each trained with [Stable Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5)
123
  on a different type of conditioning:
 
124
  | Model Name | Control Image Overview| Control Image Example | Generated Image Example |
125
  |---|---|---|---|
 
126
  TODO
 
127
  ### Training
 
128
  TODO
 
129
  ### Blog post
 
130
  For more information, please also have a look at the [Diffusers ControlNet Blog Post](https://huggingface.co/blog/controlnet).
 
62
  has been trained on it.
63
  Experimentally, the checkpoint can be used with other diffusion models such as dreamboothed stable diffusion.
64
 
 
 
 
 
65
  ```
66
+ 1. Let's install `diffusers` and related packages:
67
  ```
68
  $ pip install diffusers transformers accelerate
69
  ```
70
+ 2. Run code:
71
  ```python
72
  import torch
73
  import os
 
117
  ## Other released checkpoints v1-1
118
  The authors released 14 different checkpoints, each trained with [Stable Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5)
119
  on a different type of conditioning:
120
+
121
  | Model Name | Control Image Overview| Control Image Example | Generated Image Example |
122
  |---|---|---|---|
123
+
124
  TODO
125
+
126
  ### Training
127
+
128
  TODO
129
+
130
  ### Blog post
131
+
132
  For more information, please also have a look at the [Diffusers ControlNet Blog Post](https://huggingface.co/blog/controlnet).