File size: 1,553 Bytes
f360b47
 
a35b819
f360b47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import streamlit as st
from utilities.land import land_page
from utilities.standard_template import Page, get_info
import analysis.preprocessing
import analysis.exploration
import warnings

import algos.others.others_page
 
warnings.filterwarnings("ignore")

# PAGE CONFIGURATION, CHANGE NAME AND ICON

st.set_page_config(layout="wide",page_title='AIViz',page_icon='carott.png')
hide_streamlit_style = """
            <style>
            #MainMenu {visibility: hidden;}
            footer {visibility: hidden;}
            </style>
            """
#st.markdown(hide_streamlit_style, unsafe_allow_html=True)

with st.sidebar:
    #st.image('carott.png')
    choice = st.selectbox('Choose Algorithm Category',[
                                                " --- Choose --- ",
                                                "Clustering",
                                                "Classification",
                                                "Regression",
                                                "Data Exploration",
                                                "Data Preprocessing",
                                                #"Others"
                                            ])
    get_info(choice)

if choice in ['Clustering', 'Classification', 'Regression']:
    Page(choice).render()
    
elif choice == 'Data Preprocessing':
    analysis.preprocessing.render()

elif choice == 'Data Exploration':
    analysis.exploration.render()

elif choice == 'Others':
    algos.others.others_page.render()

else:
    land_page()