Instructions to use MVRL/GeoSynth with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MVRL/GeoSynth with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MVRL/GeoSynth", dtype=torch.bfloat16, device_map="cuda") prompt = "city neighborhood" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
library_name: diffusers
|
| 4 |
-
--
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
library_name: diffusers
|
| 4 |
+
pipeline_tag: text-to-image
|
| 5 |
+
widget:
|
| 6 |
+
- prompt: Satellite image features a city neighborhood
|
| 7 |
+
---
|