Instructions to use nubby/Yume-Grimgar with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nubby/Yume-Grimgar with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("nubby/Yume-Grimgar", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
---
|
| 4 |
|
|
|
|
|
|
|
| 5 |
waifu diffusion 1.3 base model with dreambooth training on images of Yume from Hai to Gensou no Grimgar (Grimgar of Ashes and Fantasies)
|
| 6 |
|
| 7 |
Can be used in StableDiffusion, including the extremely popular Web UI by Automatic1111, like any other model by placing the .CKPT file in the correct directory. Please consult the documentation for your installation of StableDiffusion for more specific instructions.
|
|
|
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
---
|
| 4 |
|
| 5 |
+
**UPDATE 9/NOV/2022: added 2 additional versions trained from Trinart Characters base. The 5000 steps version is probably the better one for most people as it is much more editable than the 6000 steps version. 6000 steps may be good for merging with other models.**
|
| 6 |
+
|
| 7 |
waifu diffusion 1.3 base model with dreambooth training on images of Yume from Hai to Gensou no Grimgar (Grimgar of Ashes and Fantasies)
|
| 8 |
|
| 9 |
Can be used in StableDiffusion, including the extremely popular Web UI by Automatic1111, like any other model by placing the .CKPT file in the correct directory. Please consult the documentation for your installation of StableDiffusion for more specific instructions.
|