anthonymartinez1 commited on
Commit
efcd22f
·
verified ·
1 Parent(s): ba3116d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -6
README.md CHANGED
@@ -121,12 +121,6 @@ div.sk-label-container:hover .sk-estimator-doc-link.fitted:hover,
121
 
122
  ## Evaluation Results
123
 
124
- plt.figure(figsize=(15,20))
125
-
126
- tree.plot_tree(dt, rounded =True, class_names = ['0','1'],
127
- proportion=True, filled =True, impurity=False,fontsize=10);
128
-
129
-
130
  precision recall f1-score support
131
 
132
  0 1.00 0.74 0.85 20189
@@ -140,6 +134,13 @@ The overall accuracy of the model was 89%. For Class 0, the precision score was
140
 
141
  The model could possibly be used for real scenarios, but not for high risk use. It would be helpful in situations where you only need a general screening of phishing vs legitimate websites. So although it is accurate, it is not accurate enough. However, I would still trust this model. It performs well and behaves predictably. If more precision/recall is needed, then it would certainly make sense to use a more complex model. It all depends on what the model is being used for.
142
 
 
 
 
 
 
 
 
143
  # Model Card Authors
144
 
145
  Anthony Martinez
 
121
 
122
  ## Evaluation Results
123
 
 
 
 
 
 
 
124
  precision recall f1-score support
125
 
126
  0 1.00 0.74 0.85 20189
 
134
 
135
  The model could possibly be used for real scenarios, but not for high risk use. It would be helpful in situations where you only need a general screening of phishing vs legitimate websites. So although it is accurate, it is not accurate enough. However, I would still trust this model. It performs well and behaves predictably. If more precision/recall is needed, then it would certainly make sense to use a more complex model. It all depends on what the model is being used for.
136
 
137
+ ## Visualization
138
+
139
+ plt.figure(figsize=(15,20))
140
+
141
+ tree.plot_tree(dt, rounded =True, class_names = ['0','1'],
142
+ proportion=True, filled =True, impurity=False,fontsize=10);
143
+
144
  # Model Card Authors
145
 
146
  Anthony Martinez