File size: 272 Bytes
a67942c
927931c
 
a1dd53c
9ba2a1c
927931c
9ba2a1c
a1dd53c
927931c
 
 
a1dd53c
927931c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()