Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,8 @@ def main():
|
|
15 |
if st.button("Get text"):
|
16 |
with st.spinner("Wait for it...."):
|
17 |
a2t = A2T(audio)
|
18 |
-
print(a2t)
|
19 |
text = a2t.predict()
|
|
|
20 |
st.write(text)
|
21 |
st.success("Done")
|
22 |
else:
|
|
|
15 |
if st.button("Get text"):
|
16 |
with st.spinner("Wait for it...."):
|
17 |
a2t = A2T(audio)
|
|
|
18 |
text = a2t.predict()
|
19 |
+
print(text)
|
20 |
st.write(text)
|
21 |
st.success("Done")
|
22 |
else:
|