Instructions to use nitrosocke/elden-ring-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nitrosocke/elden-ring-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("nitrosocke/elden-ring-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
#9
by ISPA - opened
README.md
CHANGED
|
@@ -30,7 +30,8 @@ model_id = "nitrosocke/elden-ring-diffusion"
|
|
| 30 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 31 |
pipe = pipe.to("cuda")
|
| 32 |
|
| 33 |
-
prompt = "a magical princess with golden hair, elden ring
|
|
|
|
| 34 |
image = pipe(prompt).images[0]
|
| 35 |
|
| 36 |
image.save("./magical_princess.png")
|
|
|
|
| 30 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 31 |
pipe = pipe.to("cuda")
|
| 32 |
|
| 33 |
+
prompt = "a magical princess with golden hair, elden ring styleA pretty girl is dancing in Indian-inspired attire, replete with feathers, mascots, and eye-catching makeup.
|
| 34 |
+
wide angle, The face, black suit, red room, low light key, bitcoin, backdrop Python code, AI in cyber body, dark blue, neon, and dollars are all invisible. achievement, good fortune, future, and luxurious darkness Volumetric lighting, high definition, hyperrealism, octane rendering, Arnold rendering, and 3D Tone Mapping, Post-Production, Tone Mapping, Anti-Aliasing, FKAA, TXAA, RTX, and Megapixel Cinematic Lighting wide angle Full color, volumetric lighting, HDR, realistic, and 8k CGI, VFX, and SFX Maybe add some reflective elements to the space to make some eye-catching shadows. Alternatively, there might be some background lighting from computer screens or other electronics."
|
| 35 |
image = pipe(prompt).images[0]
|
| 36 |
|
| 37 |
image.save("./magical_princess.png")
|