File size: 981 Bytes
adff838
 
 
 
c72ccf6
 
 
 
 
 
 
adff838
c72ccf6
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import streamlit as st

def home():
    st.markdown("""
        <style>
        .title {
            color: purple;
            font-size: 30px;
        }
        </style>
        """, unsafe_allow_html=True)

    st.markdown("""
        <h1 class="title">AI NANBAN</h1>
        <p>A AI Personalised Coach application for CBSE Classs using face recognition.</p>
        <h2>Introduction</h2>
        <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>
        <h2>Features</h2>
        <ul>
            <li>Face detection and recognition of Students</li>
            <li>Customised Quiz Generation for Students based on CBSE Class notes</li>
            <li>Personalised Score tracking of students for progress tracking</li>
        </ul>
        <p>An Initiative by Koodapakkam school, Suggestions are Welcome to email id</p>
        """, unsafe_allow_html=True)