mainakhf commited on
Commit
44206d8
·
1 Parent(s): cea7de3

upload app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -0
app.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.set_page_config(
4
+ page_title='mainak webapp',
5
+ page_icon='🖐'
6
+ )
7
+
8
+ st.sidebar.success('choose a task for training')
9
+
10
+ # Add a title and a catchy introduction
11
+ st.title("AI Vision Wizard")
12
+ st.markdown("Welcome to AI Vision Wizard, your magical gateway to the world of image classification and object detection!")
13
+
14
+ # Display an enticing image
15
+ st.image("elements/banner.jpeg", use_column_width=True)
16
+
17
+ # Add a brief description of the app
18
+ st.write("Are you ready to unlock the power of AI and explore the hidden secrets within your images? Look no further! With AI Vision Wizard, you can effortlessly classify and detect objects in any image with just a few clicks. Whether you're a photography enthusiast, a business owner, or a researcher, our cutting-edge technology will transform the way you see the world.")
19
+
20
+
21
+ # Add a footer with credits or links
22
+ st.write("Made with ❤️ by Mainak")
23
+ st.write("[GitHub](https://github.com/mainak11) | [LinkedIn](https://www.linkedin.com/in/mainak-maity-b97255217/)")
24
+
25
+ # Add some fun animations or visuals to make the page more engaging
26
+ # st.video("your_intro_video.mp4")
27
+
28
+ # You can even include a quote or inspirational message
29
+ st.write("Remember, 'Every image has a story to tell; let AI Vision Wizard help you uncover it!'")