Spaces:
Sleeping
Sleeping
File size: 3,504 Bytes
c9d08d3 ae18532 c9d08d3 0d34381 ae18532 c9d08d3 ae18532 0d34381 ae18532 c9d08d3 9f665e5 fe2bc86 9f665e5 6b66635 9f665e5 6b66635 9f665e5 6b66635 9f665e5 fe2bc86 c9d08d3 ae18532 7f1904f 0d34381 7f1904f dec8492 7f1904f 0177258 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
---
# https://huggingface.co/docs/hub/en/spaces-config-reference
title: Diffusion XL
short_description: Stable Diffusion XL image generation studio
emoji: 🦣
colorFrom: gray
colorTo: red
sdk: gradio
sdk_version: 4.44.1
python_version: 3.11.9
app_file: app.py
fullWidth: false
pinned: true
header: mini
license: apache-2.0
models:
- ai-forever/Real-ESRGAN
- cyberdelia/CyberRealsticXL
- fluently/Fluently-XL-Final
- madebyollin/sdxl-vae-fp16-fix
- segmind/Segmind-Vega
- SG161222/RealVisXL_V5.0
- stabilityai/stable-diffusion-xl-base-1.0
- stabilityai/stable-diffusion-xl-refiner-1.0
preload_from_hub:
- ai-forever/Real-ESRGAN RealESRGAN_x2.pth,RealESRGAN_x4.pth
- cyberdelia/CyberRealsticXL CyberRealisticXLPlay_V1.0.safetensors
- fluently/Fluently-XL-Final FluentlyXL-Final.safetensors
- madebyollin/sdxl-vae-fp16-fix config.json,diffusion_pytorch_model.safetensors
- SG161222/RealVisXL_V5.0 RealVisXL_V5.0_fp16.safetensors
- >-
segmind/Segmind-Vega
scheduler/scheduler_config.json,text_encoder/config.json,text_encoder/model.fp16.safetensors,text_encoder_2/config.json,text_encoder_2/model.fp16.safetensors,tokenizer/merges.txt,tokenizer/special_tokens_map.json,tokenizer/tokenizer_config.json,tokenizer/vocab.json,tokenizer_2/merges.txt,tokenizer_2/special_tokens_map.json,tokenizer_2/tokenizer_config.json,tokenizer_2/vocab.json,unet/config.json,unet/diffusion_pytorch_model.fp16.safetensors,vae/config.json,vae/diffusion_pytorch_model.fp16.safetensors,model_index.json
- >-
stabilityai/stable-diffusion-xl-base-1.0
scheduler/scheduler_config.json,text_encoder/config.json,text_encoder/model.fp16.safetensors,text_encoder_2/config.json,text_encoder_2/model.fp16.safetensors,tokenizer/merges.txt,tokenizer/special_tokens_map.json,tokenizer/tokenizer_config.json,tokenizer/vocab.json,tokenizer_2/merges.txt,tokenizer_2/special_tokens_map.json,tokenizer_2/tokenizer_config.json,tokenizer_2/vocab.json,unet/config.json,unet/diffusion_pytorch_model.fp16.safetensors,vae/config.json,vae/diffusion_pytorch_model.fp16.safetensors,vae_1_0/config.json,model_index.json
- >-
stabilityai/stable-diffusion-xl-refiner-1.0
scheduler/scheduler_config.json,text_encoder_2/config.json,text_encoder_2/model.fp16.safetensors,tokenizer_2/merges.txt,tokenizer_2/special_tokens_map.json,tokenizer_2/tokenizer_config.json,tokenizer_2/vocab.json,unet/config.json,unet/diffusion_pytorch_model.fp16.safetensors,vae/config.json,vae/diffusion_pytorch_model.fp16.safetensors,model_index.json
---
# diffusion-xl
Gradio app for Stable Diffusion XL featuring:
* txt2img pipeline with refiner (img2img with IP-Adapter and ControlNet coming soon)
* Compel prompt weighting and blending
* Multiple samplers with Karras scheduling
* DeepCache available
* Real-ESRGAN upscaling
## Usage
See [DOCS.md](https://huggingface.co/spaces/adamelliotfields/diffusion-xl/blob/main/DOCS.md).
## Installation
```sh
# clone
git clone https://huggingface.co/spaces/adamelliotfields/diffusion-xl.git
cd diffusion-xl
git remote set-url origin https://adamelliotfields:$HF_TOKEN@huggingface.co/spaces/adamelliotfields/diffusion-xl
# install
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# gradio
python app.py --port 7860
```
## Development
See [pull requests and discussions](https://huggingface.co/docs/hub/en/repositories-pull-requests-discussions).
```sh
git fetch origin refs/pr/42:pr/42
git checkout pr/42
# ...
git add .
git commit -m "Commit message"
git push origin pr/42:refs/pr/42
```
|