EvanTHU
commited on
Commit
·
a8cd8ac
1
Parent(s):
356f2d7
Add application file
Browse files
app.py
CHANGED
|
@@ -7,8 +7,10 @@ def see_files(path):
|
|
| 7 |
def greet(name):
|
| 8 |
return "Hello " + name + "!!"
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
|
| 13 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 14 |
demo.launch()
|
|
|
|
| 7 |
def greet(name):
|
| 8 |
return "Hello " + name + "!!"
|
| 9 |
|
| 10 |
+
REPO_ID = "EvanTHU/MoVid"
|
| 11 |
+
FILENAME = "animation-video.zip"
|
| 12 |
+
file = hf_hub_download(repo_id=REPO_ID, filename=FILENAME, repo_type="dataset")
|
| 13 |
+
print(file)
|
| 14 |
|
| 15 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 16 |
demo.launch()
|