signify / Welcome.py
crashedice's picture
Update Welcome.py
8db9944
raw
history blame contribute delete
593 Bytes
import streamlit as st
st.set_page_config(
page_title="Hello",
page_icon="πŸ‘‹",
)
st.write("# Welcome to Signify! πŸ‘‹")
st.sidebar.success("Select a demo above.")
st.markdown(
"""
Signfiy is an open-source project addressing core problems in signature verification with the help of deep learning.
### 3 Tasks
- Signature Detection (Object detection with YOLO)
- Signature Cleaning (Cycle-GAN)
- Signature Verification (Siamese Model)
**πŸ‘ˆ Select a demo from the sidebar**
### Want to learn more?
- Ask a question at mdessl@proton.me
"""
)