Instructions to use nousr/robo-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nousr/robo-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("nousr/robo-diffusion", 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
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -31,7 +31,9 @@ Keep the words `nousr robot` towards the beginning of your prompt to invoke the
|
|
| 31 |
|
| 32 |
# Socials
|
| 33 |
Use the #robodiffusion so i can see the cool stuff you make!
|
|
|
|
| 34 |
If you enjoy the model i'd appreciate a follow on [twitter](https://twitter.com/nousr_)
|
|
|
|
| 35 |
If you are feeling especially generous, you can sponsor me on [github](https://github.com/nousr)
|
| 36 |
|
| 37 |
---
|
|
|
|
| 31 |
|
| 32 |
# Socials
|
| 33 |
Use the #robodiffusion so i can see the cool stuff you make!
|
| 34 |
+
|
| 35 |
If you enjoy the model i'd appreciate a follow on [twitter](https://twitter.com/nousr_)
|
| 36 |
+
|
| 37 |
If you are feeling especially generous, you can sponsor me on [github](https://github.com/nousr)
|
| 38 |
|
| 39 |
---
|