Update README.md
Browse files
README.md
CHANGED
@@ -1,10 +1,15 @@
|
|
1 |
---
|
2 |
library_name: diffusers
|
|
|
3 |
license: apache-2.0
|
4 |
-
pipeline_tag: image-to-image
|
5 |
widget:
|
6 |
- src: osm_tile_18_42048_101323.jpeg
|
7 |
prompt: Satellite image features a city neighborhood
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
9 |
|
10 |
# Model Card for Model ID
|
@@ -43,10 +48,8 @@ pipe.enable_model_cpu_offload()
|
|
43 |
generator = torch.manual_seed(10345340)
|
44 |
image = pipe(
|
45 |
"Satellite image features a city neighborhood",
|
46 |
-
num_inference_steps=50,
|
47 |
generator=generator,
|
48 |
image=img,
|
49 |
-
controlnet_conditioning_scale=1.0,
|
50 |
).images[0]
|
51 |
|
52 |
image.save("generated_city.jpg")
|
|
|
1 |
---
|
2 |
library_name: diffusers
|
3 |
+
base_model: stabilityai/stable-diffusion-2-1-base
|
4 |
license: apache-2.0
|
|
|
5 |
widget:
|
6 |
- src: osm_tile_18_42048_101323.jpeg
|
7 |
prompt: Satellite image features a city neighborhood
|
8 |
+
tags:
|
9 |
+
- controlnet
|
10 |
+
- stable-diffusion
|
11 |
+
- satellite-imagery
|
12 |
+
- OSM
|
13 |
---
|
14 |
|
15 |
# Model Card for Model ID
|
|
|
48 |
generator = torch.manual_seed(10345340)
|
49 |
image = pipe(
|
50 |
"Satellite image features a city neighborhood",
|
|
|
51 |
generator=generator,
|
52 |
image=img,
|
|
|
53 |
).images[0]
|
54 |
|
55 |
image.save("generated_city.jpg")
|