osheina commited on
Commit
21fb94e
·
verified ·
1 Parent(s): a921068

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -9
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
 
3
  # Установка конфигурации страницы
4
  st.set_page_config(
5
- page_title="Multipage App",
6
  page_icon=":sparkles:",
7
  layout="wide",
8
  initial_sidebar_state="expanded",
@@ -63,17 +63,21 @@ st.markdown(
63
  )
64
 
65
  # Основной контент
66
- st.title("Multipage App")
67
- st.subheader("Welcome to the multipage app!")
68
- st.markdown("This is the main page of the multipage app with a beautiful design. Use the sidebar to navigate between pages.")
 
 
 
 
 
 
69
 
70
  # Пример кнопки
71
- if st.button("Click me"):
72
- st.write("Button clicked!")
73
 
74
  # Боковая панель
75
  st.sidebar.title("Sidebar")
76
- st.sidebar.markdown("This is the sidebar where you can navigate between different pages.")
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