Spaces:
Build error
Build error
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 | |
""" | |
) | |