Movid-vis / app.py
EvanTHU
Add application file
a8cd8ac
raw
history blame
360 Bytes
import gradio as gr
import os
def see_files(path):
return os.listdir(path)
def greet(name):
return "Hello " + name + "!!"
REPO_ID = "EvanTHU/MoVid"
FILENAME = "animation-video.zip"
file = hf_hub_download(repo_id=REPO_ID, filename=FILENAME, repo_type="dataset")
print(file)
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()