wayandadang commited on
Commit
4d3a9bb
1 Parent(s): e135fdb

add new model

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -77,6 +77,20 @@ elif image_url:
77
  except Exception as e:
78
  st.sidebar.error(f"Error loading image from URL: {e}")
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  if img is not None:
81
  st.image(np.array(img), caption='Uploaded Image.', use_column_width=True)
82
  if st.button('Predict'):
 
77
  except Exception as e:
78
  st.sidebar.error(f"Error loading image from URL: {e}")
79
 
80
+ st.sidebar.write("-----")
81
+
82
+ # Define your information for the footer
83
+ name = "Wayan Dadang"
84
+
85
+ st.sidebar.write("Follow me on:")
86
+ # Create a footer section with links and copyright information
87
+ st.sidebar.markdown(f"""
88
+ [LinkedIn](https://www.linkedin.com/in/wayan-dadang-801757116/)
89
+ [GitHub](https://github.com/Wayan123)
90
+ [Resume](https://wayan123.github.io/)
91
+ © {name} - {2024}
92
+ """, unsafe_allow_html=True)
93
+
94
  if img is not None:
95
  st.image(np.array(img), caption='Uploaded Image.', use_column_width=True)
96
  if st.button('Predict'):