Spaces:
Runtime error
Runtime error
Commit
·
e6d14d6
1
Parent(s):
88e9eb1
Add TensorFlow to requirements.txt
Browse files- app.py +0 -1
- requirements.txt +2 -1
app.py
CHANGED
@@ -15,7 +15,6 @@ def to_audio(s):
|
|
15 |
return audio_path
|
16 |
|
17 |
|
18 |
-
#@title English Learning
|
19 |
def transcription(audio, history):
|
20 |
if audio:
|
21 |
message = transcribe(audio)
|
|
|
15 |
return audio_path
|
16 |
|
17 |
|
|
|
18 |
def transcription(audio, history):
|
19 |
if audio:
|
20 |
message = transcribe(audio)
|
requirements.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
gtts
|
2 |
transformers
|
3 |
gradio
|
4 |
-
torch
|
|
|
|
1 |
gtts
|
2 |
transformers
|
3 |
gradio
|
4 |
+
torch
|
5 |
+
tensorflow
|