Commit
·
7a53ce0
1
Parent(s):
583b0ea
Update app.py
Browse files
app.py
CHANGED
@@ -26,12 +26,59 @@ from sklearn.cluster import KMeans
|
|
26 |
|
27 |
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
st.set_page_config(page_title="Interpretable Classification/Clustering")
|
30 |
|
31 |
st.title("Interpretable Clustering/Classification - by Allen Roush")
|
32 |
|
33 |
st.caption("Under active development! Please contact me or drop a star/issue on https://github.com/Hellisotherpeople/Active-Explainable-Classification")
|
34 |
|
|
|
|
|
|
|
35 |
form = st.sidebar.form("choose_settings")
|
36 |
|
37 |
form.header("Main Settings")
|
|
|
26 |
|
27 |
|
28 |
|
29 |
+
foster_text = """
|
30 |
+
|
31 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////
|
32 |
+
////////////////////////////////////////////////////////////////////////////////////////////////////
|
33 |
+
/////////////////////////////////////////////////#&&&%#/////////////////////////////////////////////
|
34 |
+
///////(////////////////////////////////////#@&%%&&&&%%%@@&(////////////////////////////*///////////
|
35 |
+
/////////////////////////////////////////##&&@@&&%&%%%#&&%%&&//////////////////////*/*////**////////
|
36 |
+
////////////////////////////////////////##@@@@&%#(((%(/***/#@@%(////////////////////////**//********
|
37 |
+
///////////////////////////////////////##%@@(/***,*********/(@&%//////////////////*/*/***/*/********
|
38 |
+
//////////////////////////////////////%%%%&%(/********,****/(@&##///////*///**//*//*****************
|
39 |
+
//////////////////////////////////////%##((@%(/***/(///(#&%((#@%%(///*///***************************
|
40 |
+
//////////////////////////////////////%##%&&%###(&@&,%*#%//((/&&(#//*///*/**************************
|
41 |
+
/////////////////////////////////////(##(#&&%#/((//*/(**/////(%&%%%/********************************
|
42 |
+
/////////////////////////////////////%%%#%%&&%((//**(///(#///(&%#%&#********************************
|
43 |
+
////////////////////////////////////#&&&###%&&%#((////#(#%(/((&%#%%#(/******************************
|
44 |
+
////////////////////////////////////%&&&&&&&&@@%#(((##&&&((%(%@&&&&#//******************************
|
45 |
+
//////////////////////////////////&@%#@&&&&&&&@@&%#%(##&&%((%@@&&&@@&#/*****************************
|
46 |
+
//////////////////////////////(&%#(#%&@@@@@@@&@@@@@&&%((###&@@&@@&&@&@@@%&&*************************
|
47 |
+
////////////////////////(/ #%&&@%&&*@@@@@@@@&&&@@@@@@@&@@@@@@&@&#&@&%&&&&%&&&&%&&&&%#***************
|
48 |
+
///////////////////%(#&%%////&(#///(%%&&@@@&%&&@@@@&&&&@@@@@&&@&@@@&@&&&&&&&&&&&&%&&&&&/************
|
49 |
+
/////////////////##//////@&/#&&&////&&@@@@@@@@@&@@&@&&&&&@@@@@&%@@@&&&&&&&&&&&&&&&&&&%%%%***********
|
50 |
+
////////////////%//*@&%@@%%&//%&%&@&@@@@&@@@@@@@@&@@@&@@@&@&&@@@@&&&&&&&&&&&&&@&&&&&&&&%%%**********
|
51 |
+
//////////////#&(&&&///////#%%%%%%&&&@@@&&@@@@&&@@%@&&@@&%%@@@&@&&&&&&&&&&&&&&&&&&&&&&&&&%&&&*******
|
52 |
+
////////%&(&/&*/////////%&&%%&%&&&%&&&%%%%&&@@(@&&&%%%%%@@@&&&&&&&&&&&&&&&&&@@&&&&@&&&&&@&&&&&%*****
|
53 |
+
//(@##&@#(////////////#@&%%%&&&&&&%%%%&&&&&&&&@@#&#*,%&@&&&&&&&&&&&&&&&&&&&&&&@&@&@@&&@@&&&&&&%%&***
|
54 |
+
&&&#/%///////////////#%%&&%%%%%&&&@&&@@@&@%%&&&@@@&(%%&&@&&&&&&&&&&&&%%%&@@@&&@@@&&&@@&&&&&%&&&%%&%*
|
55 |
+
////////////////////###%%#%&&&&&&@@@@@@@@@@@&&%&&%&%&&%&&&&@&@&@&@@@&@@&&@@@@@@@@@@@&&@&&@&&%&&%#(..
|
56 |
+
///////////////////(,,,..,#%%&%%@@@@@&@@&&@&&&@%&%@#%&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@&&&&&&&&%......,
|
57 |
+
/////////......//*,,.....,*//%@@@@@@@@@@@%%&&&&&%@&@@,,*,&&&&&&&&&&@&&&&&&&@&@&&@@@&&&&&&%,......(**
|
58 |
+
/////,...,..,...*,,,.,*////////*///////////(#%%&&&%(#* ((%&&&&&&&&&&&&&&&&&&@@@&@&@*&&&&*,,,....***/
|
59 |
+
////,..,. ,. ....**///****////////////////////////////////////////(&&&&&&&&&&&&&@@&(*&@@(/*,,,,**//(
|
60 |
+
*//*(#* (,,#,.,*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%/*///////(##&%&&&@@@@@&********((**(//(#
|
61 |
+
*/(%%%%%%%#,(##%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%&##&&@@@@@@@@************/%%%%
|
62 |
+
///%%%%%%%&&%%&%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###@&&&&&@%*****************
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
We live in an era of terrible preoccupation with presentation and interpretation, one in which relations between who someone is and what they believes and how they "expresses themself" have been thrown into big time flux.”
|
67 |
+
― David Foster Wallace,
|
68 |
+
|
69 |
+
"""
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
st.set_page_config(page_title="Interpretable Classification/Clustering")
|
74 |
|
75 |
st.title("Interpretable Clustering/Classification - by Allen Roush")
|
76 |
|
77 |
st.caption("Under active development! Please contact me or drop a star/issue on https://github.com/Hellisotherpeople/Active-Explainable-Classification")
|
78 |
|
79 |
+
with st.expander("Dedicated to the late..."):
|
80 |
+
st.text(foster_text)
|
81 |
+
|
82 |
form = st.sidebar.form("choose_settings")
|
83 |
|
84 |
form.header("Main Settings")
|