Update app.py
Browse files
app.py
CHANGED
|
@@ -38,4 +38,7 @@ def main():
|
|
| 38 |
#Stage 1: Image to Text
|
| 39 |
st.text('Processing img2text...')
|
| 40 |
scenario = img2text(uploaded_file.name)
|
| 41 |
-
st.write(scenario)
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
#Stage 1: Image to Text
|
| 39 |
st.text('Processing img2text...')
|
| 40 |
scenario = img2text(uploaded_file.name)
|
| 41 |
+
st.write(scenario)
|
| 42 |
+
|
| 43 |
+
if __name__ == "__main__":
|
| 44 |
+
main()
|