CoolFace
Apppublic

okeowo1014/intelimageclassifier

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
app.py15 linesDownload Raw Back to root
1import streamlit as st2import trainer3st.title('Image classification project final')4st.title('Image classification with keras')5st.text('Fixed width text')6st.markdown('_Markdown_') # see #*7st.caption('Balloons. Hundreds of them...')8st.latex(r''' e^{i\pi} + 1 = 0 ''')9st.write('Most objects') # df, err, func, keras!10st.write(['st', 'is <', 3]) # see *11st.header('My header')12st.subheader('My sub')13st.code('for i in range(8): foo()')14 15# * optional kwarg unsafe_allow_html = True
okeowo1014/intelimageclassifier · CoolFace