Instructions to use EnD-Diffusers/PunkedMerge with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use EnD-Diffusers/PunkedMerge with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("EnD-Diffusers/PunkedMerge", 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
Commit ·
a83fb37
1
Parent(s): ac5f4ca
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: diffusers
|
| 6 |
+
tags:
|
| 7 |
+
- stable diffusion
|
| 8 |
+
- duskfallcrew
|
| 9 |
+
- comic book style
|
| 10 |
+
- anime
|
| 11 |
---
|
| 12 |
+
|
| 13 |
+
Trying to push more of our content that is merges to HF.
|
| 14 |
+
If you want to see what this is :
|
| 15 |
+
https://civitai.com/models/5517/duskfalls-punked-merge-mix
|
| 16 |
+
I'll get the sample pics running and more details when i have time!
|