Text-to-Image
Diffusers
Safetensors
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
nutbutter
acheong08
Instructions to use Yntec/Reddit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Yntec/Reddit with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Yntec/Reddit", 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
|
@@ -2,4 +2,22 @@
|
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
library_name: diffusers
|
| 4 |
pipeline_tag: text-to-image
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
library_name: diffusers
|
| 4 |
pipeline_tag: text-to-image
|
| 5 |
+
tags:
|
| 6 |
+
- stable-diffusion
|
| 7 |
+
- stable-diffusion-diffusers
|
| 8 |
+
- text-to-image
|
| 9 |
+
- nutbutter
|
| 10 |
+
- acheong08
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Reddit
|
| 14 |
+
|
| 15 |
+
A mix of F222 wih subreddit-v3 (many attempts were done to implement subreddit-v4 to v6 but all of thedm failed.)
|
| 16 |
+
|
| 17 |
+
# Recipe
|
| 18 |
+
|
| 19 |
+
Weighted Sum 0.5 F222 + subreddit-v3 = RedditAlpha
|
| 20 |
+
|
| 21 |
+
Add Difference 1.0 sd-1.5 + (RedditAlpha - sd-1.5) = Reddit
|
| 22 |
+
|
| 23 |
+
Bake VAE Color 101 = RedditVAE
|