Beasto commited on
Commit
22e0349
·
1 Parent(s): 6979e4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -53,11 +53,13 @@ if selected == 'Tools and Experience':
53
  st.button('\n \t Scikit-Learn \t \n')
54
 
55
  st.write('# Machine Learning Algorithim')
56
- col1,col2,col3,col4 = st.columns(4)
57
  with col1:
58
  st.button("\n \t Linear Regression \t \n")
59
  with col2:
60
  st.button('\n \t Logistic Regression \t \n')
 
 
61
  with col3:
62
  st.button('\n \t Naive Bayes \t \n')
63
  with col4:
 
53
  st.button('\n \t Scikit-Learn \t \n')
54
 
55
  st.write('# Machine Learning Algorithim')
56
+ col1,col2 = st.columns(2)
57
  with col1:
58
  st.button("\n \t Linear Regression \t \n")
59
  with col2:
60
  st.button('\n \t Logistic Regression \t \n')
61
+
62
+ col3,col4 = st.columns(2)
63
  with col3:
64
  st.button('\n \t Naive Bayes \t \n')
65
  with col4: