Image-to-Image
Diffusers
StableDiffusionPipeline
peter-sushko commited on
Commit
076d26b
·
verified ·
1 Parent(s): 50fdd62

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -8,13 +8,13 @@ tags:
8
  Project page: https://peter-sushko.github.io/RealEdit/
9
  Data: https://huggingface.co/datasets/peter-sushko/RealEdit
10
 
11
- <img src="https://peter-sushko.github.io/RealEdit/static/images/teaser.svg"/>
12
 
13
 
14
 
15
- This is the model introduce in realedit paper. There are 2 ways to run inference: either via Diffusers or original InstructPix2Pix pipeline.
16
 
17
- Option 1: Diffusers library:
18
 
19
  Install diffusers, transformers library:
20
 
@@ -53,10 +53,10 @@ image = download_image(url)
53
  prompt = "turn him into cyborg"
54
  images = pipe(prompt, image=image, num_inference_steps=10, image_guidance_scale=1).images
55
  images[0]
56
- ```
57
 
58
 
59
- Option 2: via InstructPix2Pix pipeline:
60
 
61
  Clone the repository and set up the directory structure:
62
 
 
8
  Project page: https://peter-sushko.github.io/RealEdit/
9
  Data: https://huggingface.co/datasets/peter-sushko/RealEdit
10
 
11
+ <img src="https://peter-sushko.github.io/RealEdit/static/images/teaser.svg"/>
12
 
13
 
14
 
15
+ **There are 2 ways to run inference: either via Diffusers or original InstructPix2Pix pipeline.**
16
 
17
+ **Option 1: With 🧨Diffusers:**
18
 
19
  Install diffusers, transformers library:
20
 
 
53
  prompt = "turn him into cyborg"
54
  images = pipe(prompt, image=image, num_inference_steps=10, image_guidance_scale=1).images
55
  images[0]
56
+ ```
57
 
58
 
59
+ **Option 2: via InstructPix2Pix pipeline:**
60
 
61
  Clone the repository and set up the directory structure:
62