Image Classification
ONNX
art
Plana-Archive commited on
Commit
2594635
·
verified ·
1 Parent(s): b8b771b

Migrasi otomatis

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +18 -0
  2. caformer_s36_plus_sce/meta.json +9 -0
  3. caformer_s36_plus_sce/metrics.json +7 -0
  4. caformer_s36_plus_sce/model.ckpt +3 -0
  5. caformer_s36_plus_sce/model.onnx +3 -0
  6. caformer_s36_plus_sce/plot_confusion.png +0 -0
  7. caformer_s36_plus_sce/plot_f1_curve.png +0 -0
  8. caformer_s36_plus_sce/plot_p_curve.png +0 -0
  9. caformer_s36_plus_sce/plot_pr_curve.png +0 -0
  10. caformer_s36_plus_sce/plot_r_curve.png +0 -0
  11. caformer_s36_plus_sce/plot_roc_curve.png +0 -0
  12. caformer_s36_sce_v1/meta.json +9 -0
  13. caformer_s36_sce_v1/metrics.json +7 -0
  14. caformer_s36_sce_v1/model.ckpt +3 -0
  15. caformer_s36_sce_v1/model.onnx +3 -0
  16. caformer_s36_sce_v1/plot_confusion.png +0 -0
  17. caformer_s36_sce_v1/plot_f1_curve.png +0 -0
  18. caformer_s36_sce_v1/plot_p_curve.png +0 -0
  19. caformer_s36_sce_v1/plot_pr_curve.png +0 -0
  20. caformer_s36_sce_v1/plot_r_curve.png +0 -0
  21. caformer_s36_sce_v1/plot_roc_curve.png +0 -0
  22. mobilenetv3_sce/meta.json +8 -0
  23. mobilenetv3_sce/metrics.json +7 -0
  24. mobilenetv3_sce/model.ckpt +3 -0
  25. mobilenetv3_sce/model.onnx +3 -0
  26. mobilenetv3_sce/plot_confusion.png +0 -0
  27. mobilenetv3_sce/plot_f1_curve.png +0 -0
  28. mobilenetv3_sce/plot_p_curve.png +0 -0
  29. mobilenetv3_sce/plot_pr_curve.png +0 -0
  30. mobilenetv3_sce/plot_r_curve.png +0 -0
  31. mobilenetv3_sce/plot_roc_curve.png +0 -0
  32. mobilenetv3_sce_dist/meta.json +8 -0
  33. mobilenetv3_sce_dist/metrics.json +7 -0
  34. mobilenetv3_sce_dist/model.ckpt +3 -0
  35. mobilenetv3_sce_dist/model.onnx +3 -0
  36. mobilenetv3_sce_dist/plot_confusion.png +0 -0
  37. mobilenetv3_sce_dist/plot_f1_curve.png +0 -0
  38. mobilenetv3_sce_dist/plot_p_curve.png +0 -0
  39. mobilenetv3_sce_dist/plot_pr_curve.png +0 -0
  40. mobilenetv3_sce_dist/plot_r_curve.png +0 -0
  41. mobilenetv3_sce_dist/plot_roc_curve.png +0 -0
  42. mobilenetv3_sce_dist_v1/meta.json +8 -0
  43. mobilenetv3_sce_dist_v1/metrics.json +7 -0
  44. mobilenetv3_sce_dist_v1/model.ckpt +3 -0
  45. mobilenetv3_sce_dist_v1/model.onnx +3 -0
  46. mobilenetv3_sce_dist_v1/plot_confusion.png +0 -0
  47. mobilenetv3_sce_dist_v1/plot_f1_curve.png +0 -0
  48. mobilenetv3_sce_dist_v1/plot_p_curve.png +0 -0
  49. mobilenetv3_sce_dist_v1/plot_pr_curve.png +0 -0
  50. mobilenetv3_sce_dist_v1/plot_r_curve.png +0 -0
README.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - deepghs/anime_ai_check
5
+ metrics:
6
+ - accuracy
7
+ pipeline_tag: image-classification
8
+ tags:
9
+ - art
10
+ ---
11
+
12
+ The model used to predict whether an image is generated by AI techniques, mainly diffusion models. Please note that this model is trained on crawled data, and **its predictions should be used for reference purposes only**. It should not be used to determine the source or origin of an image.
13
+
14
+ | Model | FLOPs | Accuracy | Confusion Matrix | Description |
15
+ |:---------------------:|:------:|:--------:|:--------------------------------------------------------------------------------------------------------------------:|---------------------------------------------------------------------|
16
+ | caformer_s36_plus_sce | 22.10G | 97.54% | [Confusion Matrix](https://huggingface.co/deepghs/anime_ai_check/blob/main/caformer_s36_plus_sce/plot_confusion.png) | Model: caformer_s36.sail_in22k_ft_in1k_384 pratrained from timm |
17
+ | mobilenetv3_sce | 0.63G | 93.20% | [Confusion Matrix](https://huggingface.co/deepghs/anime_ai_check/blob/main/mobilenetv3_sce/plot_confusion.png) | Model: mobilenetv3_large_100 from timm |
18
+ | mobilenetv3_sce_dist | 0.63G | 95.65% | [Confusion Matrix](https://huggingface.co/deepghs/anime_ai_check/blob/main/mobilenetv3_sce_dist/plot_confusion.png) | Distillated from caformer_s36_plus_sce, using mobilenetv3_large_100 |
caformer_s36_plus_sce/meta.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "drop_path_rate": 0.4,
3
+ "labels": [
4
+ "ai",
5
+ "human"
6
+ ],
7
+ "name": "caformer_s36.sail_in22k_ft_in1k_384",
8
+ "pretrained": true
9
+ }
caformer_s36_plus_sce/metrics.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "AUC": 0.9873855979080761,
3
+ "accuracy": 0.9754385964912281,
4
+ "loss": 0.25407937819952564,
5
+ "mAP": 0.9871511707341074,
6
+ "step": 21
7
+ }
caformer_s36_plus_sce/model.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27331a1e9e030f5785f45895cd2f5a51be629a4aefd11eb8de9bfe61e9549a2c
3
+ size 162179823
caformer_s36_plus_sce/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c2120ec61d5adb9c87048d8dbd206c003de10d22029b745c91f3a2fdb053b5f
3
+ size 149574704
caformer_s36_plus_sce/plot_confusion.png ADDED
caformer_s36_plus_sce/plot_f1_curve.png ADDED
caformer_s36_plus_sce/plot_p_curve.png ADDED
caformer_s36_plus_sce/plot_pr_curve.png ADDED
caformer_s36_plus_sce/plot_r_curve.png ADDED
caformer_s36_plus_sce/plot_roc_curve.png ADDED
caformer_s36_sce_v1/meta.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "drop_path_rate": 0.4,
3
+ "labels": [
4
+ "ai",
5
+ "human"
6
+ ],
7
+ "name": "caformer_s36.sail_in22k_ft_in1k_384",
8
+ "pretrained": true
9
+ }
caformer_s36_sce_v1/metrics.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "AUC": 0.9909439909256175,
3
+ "accuracy": 0.9610443431413178,
4
+ "loss": 0.3885019321138965,
5
+ "mAP": 0.9910901017282925,
6
+ "step": 40
7
+ }
caformer_s36_sce_v1/model.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:555ef075329f8fd7887f7c2d7af2460ecab4b77ea33a4fda4de6beb6506c68b1
3
+ size 162181295
caformer_s36_sce_v1/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6795bfa68cbba4b6ffe977339331207327c31db60679c6ac6785417199be0d07
3
+ size 149574704
caformer_s36_sce_v1/plot_confusion.png ADDED
caformer_s36_sce_v1/plot_f1_curve.png ADDED
caformer_s36_sce_v1/plot_p_curve.png ADDED
caformer_s36_sce_v1/plot_pr_curve.png ADDED
caformer_s36_sce_v1/plot_r_curve.png ADDED
caformer_s36_sce_v1/plot_roc_curve.png ADDED
mobilenetv3_sce/meta.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels": [
3
+ "ai",
4
+ "human"
5
+ ],
6
+ "name": "mobilenetv3_large_100.miil_in21k_ft_in1k",
7
+ "pretrained": true
8
+ }
mobilenetv3_sce/metrics.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "AUC": 0.9689821985316303,
3
+ "accuracy": 0.9319298245614035,
4
+ "loss": 0.7638901418277844,
5
+ "mAP": 0.9697108619511428,
6
+ "step": 17
7
+ }
mobilenetv3_sce/model.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e55541e0660261920b171b1451a9670d1625c7998c5b6b8306d680b7d61b1ccb
3
+ size 29811851
mobilenetv3_sce/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94bacb5fc7e2eeae3ae10d4d1ff9c83bcc50b9f140740e30b9f4a5fe77282df5
3
+ size 16822434
mobilenetv3_sce/plot_confusion.png ADDED
mobilenetv3_sce/plot_f1_curve.png ADDED
mobilenetv3_sce/plot_p_curve.png ADDED
mobilenetv3_sce/plot_pr_curve.png ADDED
mobilenetv3_sce/plot_r_curve.png ADDED
mobilenetv3_sce/plot_roc_curve.png ADDED
mobilenetv3_sce_dist/meta.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels": [
3
+ "ai",
4
+ "human"
5
+ ],
6
+ "name": "mobilenetv3_large_100",
7
+ "pretrained": true
8
+ }
mobilenetv3_sce_dist/metrics.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "AUC": 0.9862194508699589,
3
+ "accuracy": 0.9564912280701754,
4
+ "cls_loss": 0.4791290839545821,
5
+ "mAP": 0.985848883761399,
6
+ "step": 21
7
+ }
mobilenetv3_sce_dist/model.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c90349ce6efce2fdd2ad735f34d6e5e7959cfa2e41e7015561e0005dd78c8c6
3
+ size 29809675
mobilenetv3_sce_dist/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0215a215470145a676d7496d138cac3129d93067893573f0c57a7c9ecf7d0dee
3
+ size 16822434
mobilenetv3_sce_dist/plot_confusion.png ADDED
mobilenetv3_sce_dist/plot_f1_curve.png ADDED
mobilenetv3_sce_dist/plot_p_curve.png ADDED
mobilenetv3_sce_dist/plot_pr_curve.png ADDED
mobilenetv3_sce_dist/plot_r_curve.png ADDED
mobilenetv3_sce_dist/plot_roc_curve.png ADDED
mobilenetv3_sce_dist_v1/meta.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels": [
3
+ "ai",
4
+ "human"
5
+ ],
6
+ "name": "mobilenetv3_large_100",
7
+ "pretrained": true
8
+ }
mobilenetv3_sce_dist_v1/metrics.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "AUC": 0.9905496560359759,
3
+ "accuracy": 0.9639452963116453,
4
+ "cls_loss": 0.37494325319342114,
5
+ "mAP": 0.990459750684058,
6
+ "step": 96
7
+ }
mobilenetv3_sce_dist_v1/model.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71cffa9d46442df267e4505b37bdfbfe674cf64e63c8dead71fc8b31de6ae473
3
+ size 29811723
mobilenetv3_sce_dist_v1/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6bf6201d99b86cd77821790c4403c81630d51918be5d3debe23e07a29f95d2a
3
+ size 16822434
mobilenetv3_sce_dist_v1/plot_confusion.png ADDED
mobilenetv3_sce_dist_v1/plot_f1_curve.png ADDED
mobilenetv3_sce_dist_v1/plot_p_curve.png ADDED
mobilenetv3_sce_dist_v1/plot_pr_curve.png ADDED
mobilenetv3_sce_dist_v1/plot_r_curve.png ADDED