ASL_Image / eda.py
didev007's picture
Upload 5 files
08215ff
raw
history blame
364 Bytes
import streamlit as st
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from matplotlib.ticker import MultipleLocator
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()