CoolFace
Apppublic

aieye/emotion_classifier_tutorial

sourceHugging Faceopenrailupdated 3y agoView on Hugging Face
0likes
6_Congratulations.py16 linesDownload Raw Back to pages
1import streamlit as st2from utils.levels import render_page, initialize_level3 4initialize_level()5 6LEVEL = 67 8 9def complete_page():10    st.header("Congratulations!")11    st.subheader("You have completed the tutorial! Now You know how to build an emotion classifier!")12    st.balloons()13 14 15render_page(complete_page, LEVEL)16