kadirnar commited on
Commit
3da13dc
1 Parent(s): ddac078

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -8,7 +8,7 @@ import requests
8
 
9
  def model_url_list():
10
  url_list = []
11
- for i in range(0, 6):
12
  url_list.append(f"https://huggingface.co/models?p={i}&sort=downloads&search=sd-dreambooth-library")
13
  return url_list
14
 
@@ -101,7 +101,8 @@ examples = [
101
  ["sd-dreambooth-library/mr-potato-head", "sks mr potato head is surfing in the forest.", 5, 416, 416, 50, 7.5],
102
  ]
103
 
104
- 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."
 
105
 
106
  demo_app = gr.Interface(
107
  fn=tune_video_predict,
@@ -109,7 +110,7 @@ demo_app = gr.Interface(
109
  outputs=demo_outputs,
110
  examples=examples,
111
  cache_examples=False,
112
- title="Tune-A-Video",
113
  theme="huggingface",
114
  description=description
115
  )
 
8
 
9
  def model_url_list():
10
  url_list = []
11
+ for i in range(0, 7):
12
  url_list.append(f"https://huggingface.co/models?p={i}&sort=downloads&search=sd-dreambooth-library")
13
  return url_list
14
 
 
101
  ["sd-dreambooth-library/mr-potato-head", "sks mr potato head is surfing in the forest.", 5, 416, 416, 50, 7.5],
102
  ]
103
 
104
+ description = "Orijinal Model: [Tune-A-Video-library/a-man-is-surfing](Tune-A-Video-library/a-man-is-surfing) Alternatively Models: [Dreambooth](https://huggingface.co/sd-dreambooth-library)"
105
+ title = "Tune-A-Video: One-Shot Tuning of Image Diffusion Models for Text-to-Video Generation"
106
 
107
  demo_app = gr.Interface(
108
  fn=tune_video_predict,
 
110
  outputs=demo_outputs,
111
  examples=examples,
112
  cache_examples=False,
113
+ title=title,
114
  theme="huggingface",
115
  description=description
116
  )