Update README.md
Browse files
README.md
CHANGED
@@ -15,11 +15,10 @@ instance_prompt: "Mobile app:"
|
|
15 |
# UI-Diffuser-V2
|
16 |
UI-Diffuser-V2 is fine tuned from "stabilityai/stable-diffusion-2-base" with the [GPSCap dataset](https://github.com/jl-wei/guing) for mobile UI generation.
|
17 |
|
18 |
-
|
19 |
|
20 |
-
The first version, UI-Diffuser-V1, was introduced in our paper titled [Boosting GUI Prototyping with Diffusion Models](https://ieeexplore.ieee.org/abstract/document/10260853)
|
21 |
|
22 |
-
Using with Diffusers
|
23 |
```python
|
24 |
import torch
|
25 |
from diffusers import StableDiffusionPipeline, EulerDiscreteScheduler
|
@@ -44,4 +43,20 @@ for ax in fig.axes:
|
|
44 |
ax.axis("off")
|
45 |
```
|
46 |
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
# UI-Diffuser-V2
|
16 |
UI-Diffuser-V2 is fine tuned from "stabilityai/stable-diffusion-2-base" with the [GPSCap dataset](https://github.com/jl-wei/guing) for mobile UI generation.
|
17 |
|
18 |
+
A demo using diffusion model and large language model for UI generation is available at https://github.com/Jl-wei/ai-gen-ui
|
19 |
|
|
|
20 |
|
21 |
+
## Using with Diffusers
|
22 |
```python
|
23 |
import torch
|
24 |
from diffusers import StableDiffusionPipeline, EulerDiscreteScheduler
|
|
|
43 |
ax.axis("off")
|
44 |
```
|
45 |
|
46 |
+
## Citation
|
47 |
+
If you find our work useful, please cite our paper:
|
48 |
+
```bibtex
|
49 |
+
@misc{wei2024aiinspired,
|
50 |
+
title={On AI-Inspired UI-Design},
|
51 |
+
author={Jialiang Wei and Anne-Lise Courbis and Thomas Lambolais and Gérard Dray and Walid Maalej},
|
52 |
+
year={2024},
|
53 |
+
eprint={2406.13631},
|
54 |
+
archivePrefix={arXiv}
|
55 |
+
}
|
56 |
+
```
|
57 |
+
Please note that the code and model can only be used for academic purpose.
|
58 |
+
|
59 |
+
### UI-Diffuser-V1
|
60 |
+
This model, UI-Diffuser-V2, represents the second version of the UI-Diffuser model.
|
61 |
+
|
62 |
+
The initial version, UI-Diffuser-V1, was introduced in our paper titled [Boosting GUI Prototyping with Diffusion Models](https://ieeexplore.ieee.org/abstract/document/10260853)
|