CineAI commited on
Commit
a001cc5
1 Parent(s): 5adbbbe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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("Text output in main : ", text)
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: