valhalla commited on
Commit
21e2062
1 Parent(s): 58e6198

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -53,7 +53,7 @@ This checkpoint provides conditioning on canny for the StableDiffusionXL checkpo
53
  To get started, first install the required dependencies:
54
 
55
  ```bash
56
- pip install git+https://github.com/huggingface/diffusers.git@t2iadapterxl # for now
57
  pip install -U controlnet_aux==0.0.7 # for conditioning models and detectors
58
  pip install transformers accelerate safetensors
59
  ```
@@ -105,9 +105,9 @@ gen_images = pipe(
105
  negative_prompt=negative_prompt,
106
  image=image,
107
  num_inference_steps=30,
108
- adapter_conditioning_scale=0.8,
109
  guidance_scale=7.5,
110
- # cond_tau=1
 
111
  ).images[0]
112
  gen_images.save('out_canny.png')
113
  ```
 
53
  To get started, first install the required dependencies:
54
 
55
  ```bash
56
+ pip install git+https://github.com/huggingface/diffusers.git
57
  pip install -U controlnet_aux==0.0.7 # for conditioning models and detectors
58
  pip install transformers accelerate safetensors
59
  ```
 
105
  negative_prompt=negative_prompt,
106
  image=image,
107
  num_inference_steps=30,
 
108
  guidance_scale=7.5,
109
+ adapter_conditioning_scale=0.8,
110
+ adapter_conditioning_factor=1
111
  ).images[0]
112
  gen_images.save('out_canny.png')
113
  ```