Spaces:
Running
Running
# Set the page config | |
import streamlit as st | |
# Set the page configuration | |
st.set_page_config( | |
page_title="Welcome", | |
page_icon=":open_file_folder:", | |
layout="wide", | |
) | |
# Welcome Title | |
st.title("Welcome to No-Code Computer Vision Accelerator") | |
# Tool Description | |
st.markdown( | |
""" | |
### About This Tool | |
**No-Code Computer Vision Accelerator** is a powerful, no-code application designed to streamline the process of automated image labeling and augmentation pipeline creation. Key features include: | |
- **No-Code Interface:** Easily build and manage image labeling and augmentation pipelines without writing code. | |
- **Real-Time Visualization:** Instantly visualize your pipelines to ensure they meet your project requirements. | |
- **Automated Code Generation:** Seamlessly generate deployment-ready code with just a few clicks. | |
- **Enhanced Model Training & Validation:** Advanced error detection and warning systems to ensure efficient and reliable pipeline operation. | |
Experience the efficiency of our tool by trying out a sample dataset below. | |
""" | |
) | |
# Add a download button for the sample dataset | |
with open("sample_data.zip", "rb") as file: | |
st.download_button( | |
label="Download Sample Dataset", | |
data=file, | |
file_name="sample_data.zip", | |
mime="application/zip", | |
) | |