import streamlit as st
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import sklearn
from io import StringIO
# main page
custom_css = """
"""
# Apply custom CSS
st.markdown(custom_css, unsafe_allow_html=True)
st.markdown('
CLASSIFICATION MODEL
', unsafe_allow_html=True)
st.markdown('Upload the Classification Dataset
',unsafe_allow_html=True)
st.file_uploader(label="Choose a file to upload",type=["csv","xlsx","json","txt"])
options = ["Info About the DataSet", "Pre-Processing"]
selection = st.pills("Directions", options, selection_mode="multi")