Update README.md
Browse files
README.md
CHANGED
@@ -11,16 +11,23 @@ license: mit
|
|
11 |
short_description: Gradio web application demo for CipherCore SD1.5
|
12 |
---
|
13 |
|
14 |
-
|
15 |
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
DEFAULT_HUB_MODELS = [
|
19 |
"Raxephion/Typhoon-SD1.5-V1",
|
20 |
"Yntec/RevAnimatedV2Rebirth",
|
21 |
-
"stablediffusionapi/realcartoon-anime-v11"
|
22 |
-
# "CompVis/stable-diffusion-v1-4",
|
23 |
# Add other diffusers-compatible SD1.5 models here
|
24 |
]
|
25 |
-
|
26 |
-
|
|
|
11 |
short_description: Gradio web application demo for CipherCore SD1.5
|
12 |
---
|
13 |
|
14 |
+
# 🖼 CipherCore SD1.5 – Local Image Generator
|
15 |
|
16 |
+
A lightweight, CPU-friendly Gradio app preloaded with Stable Diffusion 1.5 models — including [Typhoon (SD1.5)](https://huggingface.co/Raxephion/Typhoon-SD1.5-V1). Built for fast, offline image generation with a clean UI and minimal setup.
|
17 |
+
|
18 |
+
---
|
19 |
+
|
20 |
+
## ➕ Adding Models
|
21 |
+
|
22 |
+
To add your own models, open `app.py` and update the `DEFAULT_HUB_MODELS` list:
|
23 |
+
|
24 |
+
```python
|
25 |
DEFAULT_HUB_MODELS = [
|
26 |
"Raxephion/Typhoon-SD1.5-V1",
|
27 |
"Yntec/RevAnimatedV2Rebirth",
|
28 |
+
"stablediffusionapi/realcartoon-anime-v11",
|
29 |
+
# "CompVis/stable-diffusion-v1-4", # Example SD 1.4 model (may behave differently)
|
30 |
# Add other diffusers-compatible SD1.5 models here
|
31 |
]
|
32 |
+
|
33 |
+
Models must be hosted on Hugging Face and compatible with 🤗 diffusers
|