guspan commited on
Commit
27aeaa3
1 Parent(s): 19b610c

Remove exceeding whitespace

Browse files

Examples section comment in source code.

Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -56,7 +56,7 @@ model_id = "stabilityai/stable-diffusion-x4-upscaler"
56
  pipeline = StableDiffusionUpscalePipeline.from_pretrained(model_id, torch_dtype=torch.float16)
57
  pipeline = pipeline.to("cuda")
58
 
59
- # let's download an image
60
  url = "https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/sd2-upscale/low_res_cat.png"
61
  response = requests.get(url)
62
  low_res_img = Image.open(BytesIO(response.content)).convert("RGB")
@@ -168,7 +168,7 @@ Evaluations with different classifier-free guidance scales (1.5, 2.0, 3.0, 4.0,
168
 
169
  ![pareto](model-variants.jpg)
170
 
171
- Evaluated using 50 DDIM steps and 10000 random prompts from the COCO2017 validation set, evaluated at 512x512 resolution. Not optimized for FID scores.
172
 
173
  ## Environmental Impact
174
 
 
56
  pipeline = StableDiffusionUpscalePipeline.from_pretrained(model_id, torch_dtype=torch.float16)
57
  pipeline = pipeline.to("cuda")
58
 
59
+ # let's download an image
60
  url = "https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/sd2-upscale/low_res_cat.png"
61
  response = requests.get(url)
62
  low_res_img = Image.open(BytesIO(response.content)).convert("RGB")
 
168
 
169
  ![pareto](model-variants.jpg)
170
 
171
+ Evaluated using 50 DDIM steps and 10000 random prompts from the COCO2017 validation set, evaluated at 512x512 resolution. Not optimized for FID scores.
172
 
173
  ## Environmental Impact
174