Update app.py
Browse files
app.py
CHANGED
|
@@ -94,17 +94,17 @@ if selected == 'Tools and Experience':
|
|
| 94 |
col1,col2,col3,col4 = st.columns(4)
|
| 95 |
with col1:
|
| 96 |
st.image(loadimg('Linear.png'),use_column_width=False)
|
| 97 |
-
st.write("
|
| 98 |
with col2:
|
| 99 |
-
st.image(loadimg('
|
| 100 |
-
st.write("
|
| 101 |
with col3:
|
| 102 |
st.image(loadimg('naive bayes.png'),use_column_width=False)
|
| 103 |
-
st.write("
|
| 104 |
with col4:
|
| 105 |
st.image(loadimg('DecisionTree.jpg'),use_column_width=False)
|
| 106 |
-
st.write("
|
| 107 |
-
|
| 108 |
elif selected == 'Projects':
|
| 109 |
st.write(selected)
|
| 110 |
else:
|
|
|
|
| 94 |
col1,col2,col3,col4 = st.columns(4)
|
| 95 |
with col1:
|
| 96 |
st.image(loadimg('Linear.png'),use_column_width=False)
|
| 97 |
+
st.write("Linear Regression")
|
| 98 |
with col2:
|
| 99 |
+
st.image(loadimg('logistic.jpg'),use_column_width=False)
|
| 100 |
+
st.write("Logistic Regression")
|
| 101 |
with col3:
|
| 102 |
st.image(loadimg('naive bayes.png'),use_column_width=False)
|
| 103 |
+
st.write("Naive Bayes Classifier")
|
| 104 |
with col4:
|
| 105 |
st.image(loadimg('DecisionTree.jpg'),use_column_width=False)
|
| 106 |
+
st.write("Decision Tree Classiifer")
|
| 107 |
+
|
| 108 |
elif selected == 'Projects':
|
| 109 |
st.write(selected)
|
| 110 |
else:
|