Add description

#1
by merve HF staff - opened
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -70,7 +70,7 @@ examples = [
70
  ["a panda is surfing", 4, 128, 128, 10, 7.5]
71
  ]
72
 
73
-
74
 
75
  demo_app = gr.Interface(
76
  fn=tune_video_predict,
@@ -80,6 +80,7 @@ demo_app = gr.Interface(
80
  cache_examples=False,
81
  title="Tune-A-Video",
82
  theme="huggingface",
 
83
  )
84
 
85
  demo_app.launch(debug=True, enable_queue=True)
 
70
  ["a panda is surfing", 4, 128, 128, 10, 7.5]
71
  ]
72
 
73
+ description = "This generates video from an input text, using [one-shot tuning of diffusion models](https://arxiv.org/abs/2212.11565). To use it, simply input a text."
74
 
75
  demo_app = gr.Interface(
76
  fn=tune_video_predict,
 
80
  cache_examples=False,
81
  title="Tune-A-Video",
82
  theme="huggingface",
83
+ description=description
84
  )
85
 
86
  demo_app.launch(debug=True, enable_queue=True)