Instructions to use MirageML/lowpoly-world with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MirageML/lowpoly-world with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MirageML/lowpoly-world", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
add gradio spaces badge
#1
by akhaliq HF Staff - opened
README.md
CHANGED
|
@@ -13,6 +13,11 @@ inference: true
|
|
| 13 |
This the Stable Diffusion model fine-tuned the Low Poly World concept taught to Stable Diffusion with Dreambooth.
|
| 14 |
It can be used by modifying the `instance_prompt`: **a photo of lowpoly_world**
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
# Run on [Mirage](https://app.mirageml.com)
|
| 17 |
Run this model and explore text-to-3D on [Mirage](https://app.mirageml.com)!
|
| 18 |
|
|
|
|
| 13 |
This the Stable Diffusion model fine-tuned the Low Poly World concept taught to Stable Diffusion with Dreambooth.
|
| 14 |
It can be used by modifying the `instance_prompt`: **a photo of lowpoly_world**
|
| 15 |
|
| 16 |
+
# Gradio
|
| 17 |
+
|
| 18 |
+
We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run lowpoly-world:
|
| 19 |
+
[](https://huggingface.co/spaces/MirageML/lowpoly-world)
|
| 20 |
+
|
| 21 |
# Run on [Mirage](https://app.mirageml.com)
|
| 22 |
Run this model and explore text-to-3D on [Mirage](https://app.mirageml.com)!
|
| 23 |
|