Spaces:
Sleeping
Sleeping
Elle McFarlane
commited on
Commit
·
d7c3280
1
Parent(s):
e79e9ae
update gif path for gradio
Browse files- text2motion/app.py +1 -2
text2motion/app.py
CHANGED
|
@@ -3,12 +3,11 @@ import sys
|
|
| 3 |
import gradio as gr
|
| 4 |
import logging
|
| 5 |
|
| 6 |
-
os.makedirs("outputs", exist_ok=True)
|
| 7 |
sys.path.insert(0, ".")
|
| 8 |
|
| 9 |
def generate(prompt, length):
|
| 10 |
logging.warning("NOT generating per the prompt [TODO], just returning a denoising gif.")
|
| 11 |
-
result_path = "media/denoising_grab_model.gif"
|
| 12 |
return result_path
|
| 13 |
|
| 14 |
|
|
|
|
| 3 |
import gradio as gr
|
| 4 |
import logging
|
| 5 |
|
|
|
|
| 6 |
sys.path.insert(0, ".")
|
| 7 |
|
| 8 |
def generate(prompt, length):
|
| 9 |
logging.warning("NOT generating per the prompt [TODO], just returning a denoising gif.")
|
| 10 |
+
result_path = "./media/denoising_grab_model.gif"
|
| 11 |
return result_path
|
| 12 |
|
| 13 |
|