GopalSaraf commited on
Commit
8546b01
·
1 Parent(s): dfb7e52

Project Upload 1.1

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -345,11 +345,13 @@ st.write(
345
 
346
  st.header("Results")
347
  st.write(
348
- """| Model | Accuracy | Precision | Recall | F1 Score |
349
- | ------------- | -------- | --------- | ------ | -------- |
350
- | Logistic | 0.79 | 0.80 | 0.73 | 0.75 |
351
- | Decision Tree | 0.96 | 0.95 | 0.95 | 0.95 |
352
- | XGBoost | 0.96 | 0.95 | 0.95 | 0.95 |"""
 
 
353
  )
354
 
355
 
 
345
 
346
  st.header("Results")
347
  st.write(
348
+ """
349
+ | Model | Accuracy | Precision | Recall | F1 Score |
350
+ | ------------- | -------- | --------- | ------ | -------- |
351
+ | Logistic Regression | 0.79 | 0.80 | 0.73 | 0.75 |
352
+ | Decision Tree | 0.96 | 0.95 | 0.95 | 0.95 |
353
+ | XGBoost | 0.96 | 0.95 | 0.95 | 0.95 |
354
+ """
355
  )
356
 
357