Spaces:
Sleeping
Sleeping
init
Browse files
app.py
CHANGED
@@ -16,8 +16,6 @@ st.info(
|
|
16 |
"The inference speed is very slow on Huggingface spaces due to it being processed entirely on CPU ",
|
17 |
icon="ℹ️",
|
18 |
)
|
19 |
-
st.info("Author ©️ : wissem karous ")
|
20 |
-
st.info("Made with ❤️ ")
|
21 |
# Generating a list of options or videos
|
22 |
options = os.listdir(os.path.join("app_input"))
|
23 |
selected_video = st.selectbox("Choose video", options)
|
@@ -58,3 +56,6 @@ with col2:
|
|
58 |
)
|
59 |
txt = ctc_decode(y[0])
|
60 |
st.text(txt[-1])
|
|
|
|
|
|
|
|
16 |
"The inference speed is very slow on Huggingface spaces due to it being processed entirely on CPU ",
|
17 |
icon="ℹ️",
|
18 |
)
|
|
|
|
|
19 |
# Generating a list of options or videos
|
20 |
options = os.listdir(os.path.join("app_input"))
|
21 |
selected_video = st.selectbox("Choose video", options)
|
|
|
56 |
)
|
57 |
txt = ctc_decode(y[0])
|
58 |
st.text(txt[-1])
|
59 |
+
|
60 |
+
st.info("Author ©️ : wissem karous ")
|
61 |
+
st.info("Made with ❤️ ")
|