Spaces:
Runtime error
Runtime error
Zeimoto
commited on
Commit
·
b8d16a0
1
Parent(s):
76c37f0
added pip list
Browse files
app.py
CHANGED
|
@@ -4,11 +4,13 @@ from st_audiorec import st_audiorec
|
|
| 4 |
from nameder import init_model_ner, get_entity_labels
|
| 5 |
from speech2text import init_model_trans, transcribe
|
| 6 |
from resources import audit_elapsedtime, set_start
|
|
|
|
| 7 |
|
| 8 |
def main ():
|
| 9 |
print("------------------------------")
|
| 10 |
print(f"Running main")
|
| 11 |
|
|
|
|
| 12 |
s2t = init_model_trans()
|
| 13 |
ner = init_model_ner() #async
|
| 14 |
|
|
|
|
| 4 |
from nameder import init_model_ner, get_entity_labels
|
| 5 |
from speech2text import init_model_trans, transcribe
|
| 6 |
from resources import audit_elapsedtime, set_start
|
| 7 |
+
import subprocess
|
| 8 |
|
| 9 |
def main ():
|
| 10 |
print("------------------------------")
|
| 11 |
print(f"Running main")
|
| 12 |
|
| 13 |
+
print(subprocess.Popen('pip list', shell=True))
|
| 14 |
s2t = init_model_trans()
|
| 15 |
ner = init_model_ner() #async
|
| 16 |
|