Spaces:
Running
on
T4
Running
on
T4
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ import requests
|
|
8 |
|
9 |
def model_url_list():
|
10 |
url_list = []
|
11 |
-
for i in range(0,
|
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 = "
|
|
|
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=
|
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 |
)
|