Beasto commited on
Commit
0e9a5b1
·
1 Parent(s): eb1380e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
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("Pix2Pix")
98
  with col2:
99
- st.image(loadimg('Logistic.jpg'),use_column_width=False)
100
- st.write("Object Detection using YOLO")
101
  with col3:
102
  st.image(loadimg('naive bayes.png'),use_column_width=False)
103
- st.write("Unet model for semantic segmentation")
104
  with col4:
105
  st.image(loadimg('DecisionTree.jpg'),use_column_width=False)
106
- st.write("Instance Segmentation using YOLO")
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: