Spaces:
Paused
Paused
v1
Browse files- README.md +2 -1
- app.py +3 -3
- requirements.txt +1 -0
README.md
CHANGED
@@ -5,8 +5,9 @@ colorFrom: purple
|
|
5 |
colorTo: blue
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.41.0
|
|
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
|
|
|
5 |
colorTo: blue
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.41.0
|
8 |
+
python_version: 3.11.4
|
9 |
app_file: app.py
|
10 |
+
pinned: true
|
11 |
license: apache-2.0
|
12 |
---
|
13 |
|
app.py
CHANGED
@@ -148,9 +148,9 @@ if __name__ == "__main__":
|
|
148 |
UDiffText: A Unified Framework for High-quality Text Synthesis in Arbitrary Images via Character-aware Diffusion Models
|
149 |
</h1>
|
150 |
<h3 style="font-weight: 450; font-size: 1rem; margin: 0rem">
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
</h3>
|
155 |
<h2 style="text-align: left; font-weight: 450; font-size: 1rem; margin-top: 0.5rem; margin-bottom: 0.5rem">
|
156 |
Our proposed UDiffText is capable of synthesizing accurate and harmonious text in either synthetic or real-word images, thus can be applied to tasks like scene text editing (a), arbitrary text generation (b) and accurate T2I generation (c)
|
|
|
148 |
UDiffText: A Unified Framework for High-quality Text Synthesis in Arbitrary Images via Character-aware Diffusion Models
|
149 |
</h1>
|
150 |
<h3 style="font-weight: 450; font-size: 1rem; margin: 0rem">
|
151 |
+
<a href='https://arxiv.org/pdf/******'><img src='https://img.shields.io/badge/Arxiv-******-DF826C'></a>
|
152 |
+
<a href='https://github.com/ZYM-PKU/UDiffText'><img src='https://img.shields.io/badge/Code-UDiffText-D0F288'></a>
|
153 |
+
<a href='https://udifftext.github.io'><img src='https://img.shields.io/badge/Project-UDiffText-8ADAB2'></a>
|
154 |
</h3>
|
155 |
<h2 style="text-align: left; font-weight: 450; font-size: 1rem; margin-top: 0.5rem; margin-bottom: 0.5rem">
|
156 |
Our proposed UDiffText is capable of synthesizing accurate and harmonious text in either synthetic or real-word images, thus can be applied to tasks like scene text editing (a), arbitrary text generation (b) and accurate T2I generation (c)
|
requirements.txt
CHANGED
@@ -24,4 +24,5 @@ torch==2.1.0
|
|
24 |
torchvision==0.16.0
|
25 |
tqdm==4.65.0
|
26 |
transformers==4.30.2
|
|
|
27 |
|
|
|
24 |
torchvision==0.16.0
|
25 |
tqdm==4.65.0
|
26 |
transformers==4.30.2
|
27 |
+
xformers==0.0.22.post7
|
28 |
|