Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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("
|
| 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("
|
| 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)")
|