Spaces:
Sleeping
Sleeping
Update home.py
Browse files
home.py
CHANGED
@@ -2,59 +2,24 @@ import streamlit as st
|
|
2 |
|
3 |
def home():
|
4 |
st.markdown("""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
A
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
## Installation
|
20 |
-
|
21 |
-
1. Clone the repository:
|
22 |
-
|
23 |
-
```bash
|
24 |
-
git clone https://github.com/CrimsonREwind/face-recognition-web-app.git
|
25 |
-
cd face_recognition
|
26 |
-
```
|
27 |
-
|
28 |
-
2. Install dependencies:
|
29 |
-
|
30 |
-
```bash
|
31 |
-
pip install -r requirements.txt
|
32 |
-
```
|
33 |
-
|
34 |
-
3. Run the Streamlit app:
|
35 |
-
|
36 |
-
```bash
|
37 |
-
streamlit run app.py
|
38 |
-
```
|
39 |
-
|
40 |
-
Visit `http://localhost:8501` in your browser to access the web app.
|
41 |
-
|
42 |
-
## Usage
|
43 |
-
|
44 |
-
- Open the web app in your browser.
|
45 |
-
- You can use register page to register your face in database
|
46 |
-
- You can use login page to see if user is registered or not
|
47 |
-
- All the activities like login, register will be stored in log file
|
48 |
-
|
49 |
-
## Contributing
|
50 |
-
|
51 |
-
Feel free to contribute to the project! If you find bugs, have feature requests, or want to improve the code, follow these steps:
|
52 |
-
|
53 |
-
1. Fork the repository.
|
54 |
-
2. Create a new branch: `git checkout -b feature/bugfix-your-feature`.
|
55 |
-
3. Commit your changes: `git commit -m 'Add some feature'`.
|
56 |
-
4. Push to the branch: `git push origin feature/bugfix-your-feature`.
|
57 |
-
5. Submit a pull request.
|
58 |
-
|
59 |
-
|
60 |
-
""")
|
|
|
2 |
|
3 |
def home():
|
4 |
st.markdown("""
|
5 |
+
<style>
|
6 |
+
.title {
|
7 |
+
color: purple;
|
8 |
+
font-size: 30px;
|
9 |
+
}
|
10 |
+
</style>
|
11 |
+
""", unsafe_allow_html=True)
|
12 |
|
13 |
+
st.markdown("""
|
14 |
+
<h1 class="title">AI NANBAN</h1>
|
15 |
+
<p>A AI Personalised Coach application for CBSE Classs using face recognition.</p>
|
16 |
+
<h2>Introduction</h2>
|
17 |
+
<p>This project utilizes the face recognition Python module to build a web app powered by Streamlit. It allows users to perform face recognition tasks interactively.</p>
|
18 |
+
<h2>Features</h2>
|
19 |
+
<ul>
|
20 |
+
<li>Face detection and recognition of Students</li>
|
21 |
+
<li>Customised Quiz Generation for Students based on CBSE Class notes</li>
|
22 |
+
<li>Personalised Score tracking of students for progress tracking</li>
|
23 |
+
</ul>
|
24 |
+
<p>An Initiative by Koodapakkam school, Suggestions are Welcome to email id</p>
|
25 |
+
""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|