sinxcosx11 commited on
Commit
3f91261
·
verified ·
1 Parent(s): e204e43

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -1
README.md CHANGED
@@ -64,4 +64,40 @@ The model was trained on a proprietary dataset of text-mined inorganic synthesis
64
  https://www.nature.com/articles/s41597-019-0224-1
65
 
66
  **Evaluation Results:**
67
- (soon)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  https://www.nature.com/articles/s41597-019-0224-1
65
 
66
  **Evaluation Results:**
67
+ The models were evaluated on a hold-out test set.
68
+
69
+ **1. Tuned Temperature Bin Prediction Model:**
70
+ * **Overall Test Set Accuracy:** 0.6821
71
+ * **Overall Test Set F1 Score (Weighted):** 0.6785
72
+ * **Per-Class Performance (Test Set):**
73
+ ```
74
+ precision recall f1-score support
75
+
76
+ TempBin_1_(1_to_900] 0.77 0.79 0.78 954
77
+ TempBin_2_(900_to_1100] 0.62 0.53 0.57 743
78
+ TempBin_3_(1100_to_1300] 0.58 0.58 0.58 768
79
+ TempBin_4_(1300_to_3000] 0.72 0.80 0.76 715
80
+
81
+ accuracy 0.68 3180
82
+ macro avg 0.67 0.68 0.67 3180
83
+ weighted avg 0.68 0.68 0.68 3180
84
+ ```
85
+
86
+ **2. Tuned Atmosphere Category Prediction Model:**
87
+ * **Overall Test Set Accuracy:** 0.7193
88
+ * **Overall Test Set F1 Score (Weighted):** 0.7174
89
+ * **Per-Class Performance (Test Set):**
90
+ ```
91
+ precision recall f1-score support
92
+
93
+ Inert 0.59 0.38 0.46 139
94
+ Other_Atm_Target 1.00 0.44 0.62 9
95
+ Oxidizing 0.67 0.71 0.69 1552
96
+ Reducing 0.70 0.47 0.56 100
97
+ Unknown_Atm_Category 0.76 0.76 0.76 2098
98
+
99
+ accuracy 0.72 3898
100
+ macro avg 0.74 0.55 0.62 3898
101
+ weighted avg 0.72 0.72 0.72 3898
102
+ ```
103
+ )