devilent2's picture
Update app.py
927931c verified
raw
history blame
272 Bytes
import gradio as gr
import numpy as np
import time
graudio=gr.Audio(type="filepath",show_download_button=True)
demo = gr.Interface(fake_diffusion,
inputs=[graudio],
outputs="image")
if __name__ == "__main__":
demo.launch()