Update app.py
Browse files
app.py
CHANGED
|
@@ -146,20 +146,23 @@ with gr.Blocks() as app:
|
|
| 146 |
gr.HTML(
|
| 147 |
"""
|
| 148 |
<div style="display: flex; gap: 10px; justify-content: left;">
|
| 149 |
-
<a href="https://
|
| 150 |
-
<img src="https://img.shields.io/badge/
|
| 151 |
</a>
|
| 152 |
<a href="https://arxiv.org/abs/2402.05804">
|
| 153 |
-
<img src="https://img.shields.io/badge/
|
| 154 |
-
</a>
|
| 155 |
<a href="https://charlieleee.github.io/publication/inksight/">
|
| 156 |
-
<img src="https://img.shields.io/badge
|
|
|
|
|
|
|
|
|
|
| 157 |
</a>
|
| 158 |
-
<a href="https://
|
| 159 |
-
<img src="https://img.shields.io/badge/
|
| 160 |
</a>
|
| 161 |
-
<a href="https://
|
| 162 |
-
<img src="https://img.shields.io/badge/
|
| 163 |
</a>
|
| 164 |
</div>
|
| 165 |
"""
|
|
@@ -286,5 +289,20 @@ with gr.Blocks() as app:
|
|
| 286 |
|
| 287 |
gr.HTML(full_svg_display)
|
| 288 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 289 |
|
| 290 |
app.launch()
|
|
|
|
| 146 |
gr.HTML(
|
| 147 |
"""
|
| 148 |
<div style="display: flex; gap: 10px; justify-content: left;">
|
| 149 |
+
<a href="https://openreview.net/forum?id=pSyUfV5BqA">
|
| 150 |
+
<img src="https://img.shields.io/badge/Paper-TMLR-red.svg" alt="Paper">
|
| 151 |
</a>
|
| 152 |
<a href="https://arxiv.org/abs/2402.05804">
|
| 153 |
+
<img src="https://img.shields.io/badge/arXiv-2402.05804-b31b1b.svg" alt="arXiv">
|
| 154 |
+
</a>
|
| 155 |
<a href="https://charlieleee.github.io/publication/inksight/">
|
| 156 |
+
<img src="https://img.shields.io/badge/Project-Page-purple.svg" alt="Project Page">
|
| 157 |
+
</a>
|
| 158 |
+
<a href="https://huggingface.co/spaces/Derendering/Model-Output-Playground">
|
| 159 |
+
<img src="https://img.shields.io/badge/Demo-HuggingFace-yellow.svg" alt="Demo">
|
| 160 |
</a>
|
| 161 |
+
<a href="https://githubtocolab.com/google-research/inksight/blob/main/colab.ipynb">
|
| 162 |
+
<img src="https://img.shields.io/badge/Colab-Example-blue.svg" alt="Colab">
|
| 163 |
</a>
|
| 164 |
+
<a href="https://research.google/blog/a-return-to-hand-written-notes-by-learning-to-read-write/">
|
| 165 |
+
<img src="https://img.shields.io/badge/Google-Research%20Blog-4285F4.svg" alt="Google Research Blog">
|
| 166 |
</a>
|
| 167 |
</div>
|
| 168 |
"""
|
|
|
|
| 289 |
|
| 290 |
gr.HTML(full_svg_display)
|
| 291 |
|
| 292 |
+
gr.Markdown("## Citation")
|
| 293 |
+
gr.Code(
|
| 294 |
+
"""@article{
|
| 295 |
+
mitrevski2025inksight,
|
| 296 |
+
title={InkSight: Offline-to-Online Handwriting Conversion by Teaching Vision-Language Models to Read and Write},
|
| 297 |
+
author={Blagoj Mitrevski and Arina Rak and Julian Schnitzler and Chengkun Li and Andrii Maksai and Jesse Berent and Claudiu Cristian Musat},
|
| 298 |
+
journal={Transactions on Machine Learning Research},
|
| 299 |
+
issn={2835-8856},
|
| 300 |
+
year={2025},
|
| 301 |
+
url={https://openreview.net/forum?id=pSyUfV5BqA},
|
| 302 |
+
note={}
|
| 303 |
+
}""",
|
| 304 |
+
label="BibTeX"
|
| 305 |
+
)
|
| 306 |
+
|
| 307 |
|
| 308 |
app.launch()
|