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 license
Browse files
README.md
CHANGED
|
@@ -6,7 +6,7 @@ tags:
|
|
| 6 |
- robots
|
| 7 |
- stable-diffusion
|
| 8 |
- aiart
|
| 9 |
-
license: "
|
| 10 |
---
|
| 11 |
|
| 12 |
# Robo-Diffusion
|
|
@@ -24,3 +24,7 @@ Github: https://github.com/nousr/robo-diffusion
|
|
| 24 |
# Usage
|
| 25 |
|
| 26 |
Keep the words `nousr robot` towards the beginning of your prompt to invoke the finetuned style.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- robots
|
| 7 |
- stable-diffusion
|
| 8 |
- aiart
|
| 9 |
+
license: "creativeml-openrail-m"
|
| 10 |
---
|
| 11 |
|
| 12 |
# Robo-Diffusion
|
|
|
|
| 24 |
# Usage
|
| 25 |
|
| 26 |
Keep the words `nousr robot` towards the beginning of your prompt to invoke the finetuned style.
|
| 27 |
+
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
*NOTE: usage of this model implies accpetance of stable diffusion's [CreativeML Open RAIL-M license](LICENSE)*
|