ML-model-card-creator / pages /3_❓_about.py
yourusername's picture
:sparkles: update app to include new features
4e3cf4d
raw
history blame
231 Bytes
from persist import load_widget_state
from pathlib import Path
import streamlit as st
def main():
st.markdown(Path('about.md').read_text(), unsafe_allow_html=True)
if __name__ == '__main__':
load_widget_state()
main()