danielle2003 commited on
Commit
cf5e603
·
verified ·
1 Parent(s): 90f81dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -552,14 +552,14 @@ with st.container(key="content-container-1"):
552
  st.write("")
553
  if st.session_state.choice == "tensorflow":
554
  st.markdown(f""" <div class="title-container">
555
- <img src="data:image/png;base64,{base64.b64encode(open("images/tensorflow.png","rb").read()).decode()}" alt="Uploaded Image">
556
  <h2 class="title">Tensorflow Model Information</h2></div>""", unsafe_allow_html=True)
557
  st.write("This is a Convolutional Neural Network (CNN) model trained on image data.")
558
  st.write(f"Input Shape: (64, 64, 3)")
559
  st.write(f"Output Classes: {4} classes")
560
  else :
561
  st.markdown(f""" <div class="title-container">
562
- <img src="data:image/png;base64,{base64.b64encode(open("images/pytorch.png","rb").read()).decode()}" alt="Uploaded Image">
563
  <h2 class="title">Pytorch Model Information</h2></div>""", unsafe_allow_html=True)
564
  st.write("This is a Convolutional Neural Network (CNN) model trained on image data.")
565
  st.write(f"Input Shape: (64, 64, 3)")
 
552
  st.write("")
553
  if st.session_state.choice == "tensorflow":
554
  st.markdown(f""" <div class="title-container">
555
+ <img src="data:image/png;base64,{base64.b64encode(open("tensorflow.png","rb").read()).decode()}" alt="Uploaded Image">
556
  <h2 class="title">Tensorflow Model Information</h2></div>""", unsafe_allow_html=True)
557
  st.write("This is a Convolutional Neural Network (CNN) model trained on image data.")
558
  st.write(f"Input Shape: (64, 64, 3)")
559
  st.write(f"Output Classes: {4} classes")
560
  else :
561
  st.markdown(f""" <div class="title-container">
562
+ <img src="data:image/png;base64,{base64.b64encode(open("pytorch.png","rb").read()).decode()}" alt="Uploaded Image">
563
  <h2 class="title">Pytorch Model Information</h2></div>""", unsafe_allow_html=True)
564
  st.write("This is a Convolutional Neural Network (CNN) model trained on image data.")
565
  st.write(f"Input Shape: (64, 64, 3)")