Elle McFarlane
update gif path for gradio app
4a7b364
raw
history blame
791 Bytes
import os
import sys
import gradio as gr
import logging
os.makedirs("outputs", exist_ok=True)
sys.path.insert(0, ".")
def generate(prompt, length):
logging.warning("NOT generating per the prompt [TODO], just returning a denoising gif.")
result_path = "media/denoising_grab_model.gif"
return result_path
demo = gr.Interface(
fn=generate,
inputs=["text", gr.Slider(5, 30, value=10)],
examples=[
["happily flying airplane", 10],
],
outputs="image",
title="COMING SOON: Text2EMotionDiffuse Demo. Currently: shows denoising gif for any prompt.",
description="COMING SOON, SPACE NOT CURRENTLY CONFIGURED TO HANDLE PROMPTS, but please Github: https://github.com/ellemcfarlane/Text2EMotionDiffuse",
)
if __name__ == "__main__":
demo.launch()