Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ import h5py
|
|
30 |
|
31 |
|
32 |
page_names = ["Blurred or Not Blurred Prediction","Occluded or Not Occluded Prediction"]
|
33 |
-
page = st.radio('Navigation',page_names)
|
34 |
st.write("Welcome to the Project")
|
35 |
|
36 |
if page == "Blurred or Not Blurred Prediction":
|
@@ -115,7 +115,7 @@ else:
|
|
115 |
images1 = ["blur1.png","blurimg2.png","blurimg3.png","images_11.jpeg"]
|
116 |
with st.sidebar:
|
117 |
st.write("choose an image")
|
118 |
-
st.image(
|
119 |
|
120 |
if f is None:
|
121 |
st.write("Please upload an image file")
|
|
|
30 |
|
31 |
|
32 |
page_names = ["Blurred or Not Blurred Prediction","Occluded or Not Occluded Prediction"]
|
33 |
+
page = st.sidebar.radio('Navigation',page_names)
|
34 |
st.write("Welcome to the Project")
|
35 |
|
36 |
if page == "Blurred or Not Blurred Prediction":
|
|
|
115 |
images1 = ["blur1.png","blurimg2.png","blurimg3.png","images_11.jpeg"]
|
116 |
with st.sidebar:
|
117 |
st.write("choose an image")
|
118 |
+
st.image(images1)
|
119 |
|
120 |
if f is None:
|
121 |
st.write("Please upload an image file")
|