xu3kev commited on
Commit
bf6a775
1 Parent(s): ee62beb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -411,6 +411,7 @@ def main():
411
  gr.Markdown('# Visual Program Synthesis with LLM')
412
  gr.Markdown("""LOGO/Turtle graphics Programming-by-Example problems aims to synthesize a program that generates the given target image, where the program uses drawing library similar to Python Turtle.""")
413
  gr.Markdown("""Here we can draw a target image using the sketchpad, and see what kinds of graphics program LLM generates. To allow the LLM to visually perceive the input image, we convert the image to ASCII strings.""")
 
414
  gr.Markdown("## Draw logo")
415
  with gr.Column():
416
  canvas = gr.Sketchpad(canvas_size=(512,512), brush=Brush(colors=["black"], default_size=2, color_mode='fixed'))
 
411
  gr.Markdown('# Visual Program Synthesis with LLM')
412
  gr.Markdown("""LOGO/Turtle graphics Programming-by-Example problems aims to synthesize a program that generates the given target image, where the program uses drawing library similar to Python Turtle.""")
413
  gr.Markdown("""Here we can draw a target image using the sketchpad, and see what kinds of graphics program LLM generates. To allow the LLM to visually perceive the input image, we convert the image to ASCII strings.""")
414
+ gr.Markdown("Please checkout our [paper](https://arxiv.org/abs/2406.08316) for more details!")
415
  gr.Markdown("## Draw logo")
416
  with gr.Column():
417
  canvas = gr.Sketchpad(canvas_size=(512,512), brush=Brush(colors=["black"], default_size=2, color_mode='fixed'))