import logging from classification_model_monitor import classification_model_monitor import streamlit as st logging.basicConfig(format='%(asctime)s %(levelname)s: %(message)s', level=logging.INFO) def main(): try: st.markdown(""" """, unsafe_allow_html=True) logging.info('Entering application') classification_model_monitor() logging.info('Exiting application') except Exception as e: logging.critical(f"Error in main(): {e}") st.error("Unexpected Error. Unable to display the dashboard") if __name__ == '__main__': main()