File size: 264 Bytes
08215ff
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st
import pandas as pd
import numpy as np

def run():
    st.title("ASL image Prediction")

    st.subheader("Analysis Data for ASL")

    st.write("This page made by Dicky Gabriel")
    st.markdown("---")

if __name__ == "__main__":
    run()