Spaces:
Runtime error
Runtime error
import streamlit as st | |
st.set_page_config( | |
page_title='mainak webapp', | |
page_icon='π' | |
) | |
st.sidebar.success('choose a task for training') | |
# Add a title and a catchy introduction | |
st.title("AI Vision Wizard") | |
st.markdown("Welcome to AI Vision Wizard, your magical gateway to the world of image classification and object detection!") | |
# Display an enticing image | |
st.image("elements/banner.jpeg", use_column_width=True) | |
# Add a brief description of the app | |
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.") | |
# Add a footer with credits or links | |
st.write("Made with β€οΈ by Mainak") | |
st.write("[GitHub](https://github.com/mainak11) | [LinkedIn](https://www.linkedin.com/in/mainak-maity-b97255217/)") | |
# Add some fun animations or visuals to make the page more engaging | |
# st.video("your_intro_video.mp4") | |
# You can even include a quote or inspirational message | |
st.write("Remember, 'Every image has a story to tell; let AI Vision Wizard help you uncover it!'") | |