chengkunli commited on
Commit
2f7f0f3
·
verified ·
1 Parent(s): d0b87be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -9
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://research.google/blog/a-return-to-hand-written-notes-by-learning-to-read-write/">
150
- <img src="https://img.shields.io/badge/Google_Research_Blog-333333?&logo=google&logoColor=white" alt="Google Research Blog">
151
  </a>
152
  <a href="https://arxiv.org/abs/2402.05804">
153
- <img src="https://img.shields.io/badge/Read_the_Paper-4CAF50?&logo=arxiv&logoColor=white" alt="Read the Paper">
154
- </a>
155
  <a href="https://charlieleee.github.io/publication/inksight/">
156
- <img src="https://img.shields.io/badge/🔗_Project_Page-FFA500?&logo=link&logoColor=white" alt="Project Page">
 
 
 
157
  </a>
158
- <a href="https://huggingface.co/datasets/Derendering/InkSight-Derenderings">
159
- <img src="https://img.shields.io/badge/Dataset-InkSight-40AF40?&logo=huggingface&logoColor=white" alt="Hugging Face Dataset">
160
  </a>
161
- <a href="https://github.com/google-research/inksight">
162
- <img src="https://img.shields.io/badge/GitHub-InkSight-green?&logo=github&logoColor=white" alt="GitHub Repository">
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()