-
Notifications
You must be signed in to change notification settings - Fork 64
/
tost.json
45 lines (45 loc) · 2.23 KB
/
tost.json
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
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"type": "object",
"properties": {
"readme": {
"type": "string",
"title": "SDXL: Improving Latent Diffusion Models for High-Resolution Image Synthesis",
"author": "Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas Müller, Joe Penna, Robin Rombach",
"description": "We present SDXL, a latent diffusion model for text-to-image synthesis. Compared to previous versions of Stable Diffusion, SDXL leverages a three times larger UNet backbone: The increase of model parameters is mainly due to more attention blocks and a larger cross-attention context as SDXL uses a second text encoder. We design multiple novel conditioning schemes and train SDXL on multiple aspect ratios. We also introduce a refinement model which is used to improve the visual fidelity of samples generated by SDXL using a post-hoc image-to-image technique. We demonstrate that SDXL shows drastically improved performance compared the previous versions of Stable Diffusion and achieves results competitive with those of black-box state-of-the-art image generators. In the spirit of promoting open research and fostering transparency in large model training and evaluation",
"code": "https://github.com/Stability-AI/generative-models",
"paper": "https://arxiv.org/abs/2307.01952",
"page": "https://stability.ai/news/stable-diffusion-sdxl-1-announcement",
"jupyter": "https://github.com/camenduru/sdxl-colab",
"post": "https://twitter.com/camenduru/status/1697317138116034778",
"tags": [
"Text to Image"
],
"widget": "readme"
},
"prompt": {
"type": "string",
"description": "Prompt",
"widget": "textarea"
},
"negative_prompt": {
"type": "string",
"description": "Negative Prompt",
"widget": "textarea"
},
"width": {
"type": "integer",
"description": "Width"
},
"height": {
"type": "integer",
"description": "Height"
}
},
"buttons": [
{
"id": "enter",
"label": "🥪 Enter"
}
]
}