Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
|
3 |
# Установка конфигурации страницы
|
4 |
st.set_page_config(
|
5 |
-
page_title="
|
6 |
page_icon=":sparkles:",
|
7 |
layout="wide",
|
8 |
initial_sidebar_state="expanded",
|
@@ -63,17 +63,21 @@ st.markdown(
|
|
63 |
)
|
64 |
|
65 |
# Основной контент
|
66 |
-
st.title("
|
67 |
-
st.subheader("Welcome to the
|
68 |
-
st.markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
# Пример кнопки
|
71 |
-
if st.button("
|
72 |
-
st.write("
|
73 |
|
74 |
# Боковая панель
|
75 |
st.sidebar.title("Sidebar")
|
76 |
-
st.sidebar.markdown("
|
77 |
-
st.sidebar.button("Go to page 1")
|
78 |
-
st.sidebar.button("Go to page 2")
|
79 |
|
|
|
2 |
|
3 |
# Установка конфигурации страницы
|
4 |
st.set_page_config(
|
5 |
+
page_title="Sign Language Recognition Demo",
|
6 |
page_icon=":sparkles:",
|
7 |
layout="wide",
|
8 |
initial_sidebar_state="expanded",
|
|
|
63 |
)
|
64 |
|
65 |
# Основной контент
|
66 |
+
st.title("Sign Language Recognition Demo")
|
67 |
+
st.subheader("Welcome to the Sign Language Recognition App!")
|
68 |
+
st.markdown("""
|
69 |
+
This application is designed to recognize sign language using a webcam feed.
|
70 |
+
The model has been trained to recognize various sign language gestures and display the corresponding text in real-time.
|
71 |
+
|
72 |
+
The demo app is based on code from [GitHub](https://github.com/ai-forever/easy_sign).
|
73 |
+
The project is open for collaboration. If you have any suggestions or want to contribute, please feel free to reach out.
|
74 |
+
""")
|
75 |
|
76 |
# Пример кнопки
|
77 |
+
if st.button("Start Recognition"):
|
78 |
+
st.write("Recognition started!")
|
79 |
|
80 |
# Боковая панель
|
81 |
st.sidebar.title("Sidebar")
|
82 |
+
st.sidebar.markdown("Use the sidebar to navigate between different pages.")
|
|
|
|
|
83 |
|