Views
No views yet
1from diffusers import StableDiffusionPipeline
2
3pipe = StableDiffusionPipeline.from_pretrained("MVRL/GeoSynth")
4pipe = pipe.to("cuda:0")
5
6image = pipe(
7 "Satellite image features a city neighborhood",
8).images[0]
9
10image.save("generated_city.jpg")