Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
metrics:
|
4 |
+
- accuracy
|
5 |
+
- f1
|
6 |
+
base_model:
|
7 |
+
- google/vit-base-patch16-224-in21k
|
8 |
+
---
|
9 |
+
|
10 |
+
Returns with about 83% accuracy whether is a crime in a CCTV camera image.
|
11 |
+
|
12 |
+
See https://www.kaggle.com/code/dima806/crime-cctv-detection-vit for more details.
|
13 |
+
|
14 |
+

|
15 |
+
|
16 |
+
```
|
17 |
+
Classification report:
|
18 |
+
|
19 |
+
precision recall f1-score support
|
20 |
+
|
21 |
+
Crime 0.7971 0.7823 0.7896 46356
|
22 |
+
Normal 0.8467 0.8579 0.8522 64952
|
23 |
+
|
24 |
+
accuracy 0.8264 111308
|
25 |
+
macro avg 0.8219 0.8201 0.8209 111308
|
26 |
+
weighted avg 0.8260 0.8264 0.8262 111308
|
27 |
+
```
|