Ahsen Khaliq
commited on
Commit
•
50a823e
1
Parent(s):
c080f11
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import os
|
2 |
-
os.system("pip install gradio==2.4.6")
|
3 |
import gradio as gr
|
4 |
from scipy.io.wavfile import write
|
5 |
|
@@ -23,6 +22,5 @@ gr.Interface(
|
|
23 |
title=title,
|
24 |
description=description,
|
25 |
article=article,
|
26 |
-
examples=examples
|
27 |
-
enable_queue=True
|
28 |
-
).launch(debug=True)
|
|
|
1 |
import os
|
|
|
2 |
import gradio as gr
|
3 |
from scipy.io.wavfile import write
|
4 |
|
|
|
22 |
title=title,
|
23 |
description=description,
|
24 |
article=article,
|
25 |
+
examples=examples
|
26 |
+
).launch(enable_queue=True,cache_examples=True)
|
|