ybashir commited on
Commit
4d66d7a
·
verified ·
1 Parent(s): 41f37a6

Upload eval/report_full.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. eval/report_full.md +24 -0
eval/report_full.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Game classifier — eval report
2
+
3
+ - Checkpoint: `models/models/game_classifier_mobilenet_v3_small.pt`
4
+ - Frames evaluated: 1118
5
+ - Mean inference latency: 7.83 ms/frame
6
+ - **Accuracy: 0.9991**
7
+
8
+ ## Per-class
9
+
10
+ | Class | Precision | Recall | F1 | Support |
11
+ |---|---|---|---|---|
12
+ | cs2 | 0.9974 | 1.0000 | 0.9987 | 390 |
13
+ | dota2 | 1.0000 | 1.0000 | 1.0000 | 295 |
14
+ | valorant | 1.0000 | 0.9977 | 0.9988 | 433 |
15
+
16
+ ## Confusion matrix
17
+
18
+ Rows = true class, columns = predicted class.
19
+
20
+ | | cs2 | dota2 | valorant |
21
+ |---|---|---|---|
22
+ | **cs2** | 390 | 0 | 0 |
23
+ | **dota2** | 0 | 295 | 0 |
24
+ | **valorant** | 1 | 0 | 432 |