Update app.py
Browse files
app.py
CHANGED
@@ -17,8 +17,8 @@ def main():
|
|
17 |
with st.spinner("Wait for it...."):
|
18 |
a2t = A2T(audio)
|
19 |
text = a2t.predict()
|
20 |
-
print(text)
|
21 |
-
st.write(
|
22 |
st.success("Done")
|
23 |
del audio
|
24 |
else:
|
|
|
17 |
with st.spinner("Wait for it...."):
|
18 |
a2t = A2T(audio)
|
19 |
text = a2t.predict()
|
20 |
+
print("Text output in main : ", text)
|
21 |
+
st.write(text)
|
22 |
st.success("Done")
|
23 |
del audio
|
24 |
else:
|