File size: 593 Bytes
b63a4be
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c37f4c0
b63a4be
 
 
8db9944
b63a4be
 
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
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
"""
)