AliArshad commited on
Commit
1b6df88
1 Parent(s): 7ee7af1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -20
README.md CHANGED
@@ -1,25 +1,31 @@
 
 
 
 
 
1
  label_mapping = {'non-severe': 0, 'severe': 1}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
 
3
 
4
- Step Training Loss
5
- 500 0.518800
6
- 1000 0.321000
7
- 1500 0.210000
8
- 2000 0.120900
9
-
10
- ------------------------------
11
- --_----------------------------
12
- Accuracy: 0.8452921586436573
13
- ------------------------------
14
- Precision: 0.8686567164179104
15
- ------------------------------
16
- Recall: 0.909375
17
- ------------------------------
18
- F1-score: 0.8885496183206106
19
- ------------------------------
20
- MCC: 0.637922907223529
21
- ------------------------------
22
- Confusion Matrix:
23
  [[ 755 308]
24
  [ 203 2037]]
25
- ------------------------------
 
1
+
2
+ # Model Training Summary
3
+
4
+ ## Label Mapping
5
+ ```python
6
  label_mapping = {'non-severe': 0, 'severe': 1}
7
+ ```
8
+
9
+ ## Training Loss Over Iterations
10
+
11
+ | Step | Training Loss |
12
+ |------|---------------|
13
+ | 500 | 0.518800 |
14
+ | 1000 | 0.321000 |
15
+ | 1500 | 0.210000 |
16
+ | 2000 | 0.120900 |
17
+
18
+ ## Evaluation Metrics
19
+
20
+ - **Accuracy**: 0.8452921586436573
21
+ - **Precision**: 0.8686567164179104
22
+ - **Recall**: 0.909375
23
+ - **F1-score**: 0.8885496183206106
24
+ - **MCC (Matthews Correlation Coefficient)**: 0.637922907223529
25
 
26
+ ## Confusion Matrix
27
 
28
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  [[ 755 308]
30
  [ 203 2037]]
31
+ ```