File size: 1,351 Bytes
3d90a2e
 
 
881f679
3d90a2e
 
 
 
881f679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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",
    )