jentegeo commited on
Commit
98442ac
·
verified ·
1 Parent(s): aea341d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -0
README.md CHANGED
@@ -13,4 +13,18 @@ A machine learning model that classifies IT service desk emails into four catego
13
  Overall accuracy: **76%**
14
  Macro avg F1: **0.73**
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
 
13
  Overall accuracy: **76%**
14
  Macro avg F1: **0.73**
15
 
16
+ ## How to Use
17
+
18
+ Load Pretrained Model
19
+
20
+ ```python
21
+ import joblib
22
+
23
+ # Load model
24
+ model = joblib.load("email_classifier.joblib")
25
+
26
+ # Predict
27
+ sample = ["My Outlook stopped working after update."]
28
+ prediction = model.predict(sample)
29
+ print(prediction)
30