face_recognition_tutorial / pages /6_Congratulations.py
chandralegend's picture
added quiz page
fd07f64
raw
history blame
366 Bytes
import streamlit as st
from utils.levels import render_page, initialize_level
initialize_level()
LEVEL = 6
def complete_page():
st.header("Congratulations!")
st.subheader(
"You have completed the tutorial! Now you know how to use Face Recognition to detect faces in images and videos!"
)
st.balloons()
render_page(complete_page, LEVEL)