Spaces:
Runtime error
Runtime error
Commit ·
52e3665
1
Parent(s): 9d61c9b
Add app file
Browse files
app.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
|
| 3 |
+
os.system("pip install nemo_toolkit[all]")
|
| 4 |
+
|
| 5 |
+
import matplotlib
|
| 6 |
+
import matplotlib.axes
|
| 7 |
+
|
| 8 |
+
print(matplotlib.get_backend())
|
| 9 |
+
print(matplotlib.axes.Axes)
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
from demo.delightful_univnet import interfaceDelightfulUnuvnet22050
|
| 13 |
+
|
| 14 |
+
interfaceDelightfulUnuvnet22050.launch()
|