aieye/emotion_classifier_tutorial
0
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 