|
--- |
|
title: CipherCore SD1.5 Local Image Generator |
|
emoji: πΌ |
|
colorFrom: purple |
|
colorTo: red |
|
sdk: gradio |
|
sdk_version: 5.25.2 |
|
app_file: app.py |
|
pinned: false |
|
license: mit |
|
short_description: Gradio web application demo for CipherCore SD1.5 |
|
--- |
|
|
|
# πΌ CipherCore SD1.5 β Local Image Generator |
|
|
|
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. |
|
|
|
--- |
|
|
|
## β Adding Models |
|
|
|
To add your own models, open `app.py` and update the `DEFAULT_HUB_MODELS` list: |
|
|
|
```python |
|
DEFAULT_HUB_MODELS = [ |
|
"Raxephion/Typhoon-SD1.5-V1", |
|
"Yntec/RevAnimatedV2Rebirth", |
|
"stablediffusionapi/realcartoon-anime-v11", |
|
# "CompVis/stable-diffusion-v1-4", # Example SD 1.4 model (may behave differently) |
|
# Add other diffusers-compatible SD1.5 models here |
|
] |
|
|
|
Models must be hosted on Hugging Face and compatible with π€ diffusers |
|
|