Upload folder using huggingface_hub
Browse files- README.md +31 -0
- checkpoint-6/config.json +64 -0
- checkpoint-6/model.safetensors +3 -0
- checkpoint-6/optimizer.pt +3 -0
- checkpoint-6/rng_state.pth +3 -0
- checkpoint-6/scheduler.pt +3 -0
- checkpoint-6/trainer_state.json +123 -0
- checkpoint-6/training_args.bin +3 -0
- config.json +64 -0
- model.safetensors +3 -0
- preprocessor_config.json +22 -0
- runs/Sep03_11-41-31_r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120/events.out.tfevents.1725363693.r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120.112.0 +2 -2
- runs/Sep03_11-41-31_r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120/events.out.tfevents.1725363735.r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120.112.1 +3 -0
- training_args.bin +3 -0
- training_params.json +29 -0
README.md
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- autotrain
|
5 |
+
- image-classification
|
6 |
+
base_model: Organika/sdxl-detector
|
7 |
+
widget:
|
8 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/tiger.jpg
|
9 |
+
example_title: Tiger
|
10 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/teapot.jpg
|
11 |
+
example_title: Teapot
|
12 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/palace.jpg
|
13 |
+
example_title: Palace
|
14 |
+
---
|
15 |
+
|
16 |
+
# Model Trained Using AutoTrain
|
17 |
+
|
18 |
+
- Problem type: Image Classification
|
19 |
+
|
20 |
+
## Validation Metrics
|
21 |
+
loss: 1.6360101699829102
|
22 |
+
|
23 |
+
f1: 0.0
|
24 |
+
|
25 |
+
precision: 0.0
|
26 |
+
|
27 |
+
recall: 0.0
|
28 |
+
|
29 |
+
auc: 0.0
|
30 |
+
|
31 |
+
accuracy: 0.6666666666666666
|
checkpoint-6/config.json
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Organika/sdxl-detector",
|
3 |
+
"_num_labels": 2,
|
4 |
+
"architectures": [
|
5 |
+
"SwinForImageClassification"
|
6 |
+
],
|
7 |
+
"attention_probs_dropout_prob": 0.0,
|
8 |
+
"depths": [
|
9 |
+
2,
|
10 |
+
2,
|
11 |
+
18,
|
12 |
+
2
|
13 |
+
],
|
14 |
+
"drop_path_rate": 0.1,
|
15 |
+
"embed_dim": 128,
|
16 |
+
"encoder_stride": 32,
|
17 |
+
"hidden_act": "gelu",
|
18 |
+
"hidden_dropout_prob": 0.0,
|
19 |
+
"hidden_size": 1024,
|
20 |
+
"id2label": {
|
21 |
+
"0": "manipulated-Images",
|
22 |
+
"1": "non-manipulated-Images"
|
23 |
+
},
|
24 |
+
"image_size": 224,
|
25 |
+
"initializer_range": 0.02,
|
26 |
+
"label2id": {
|
27 |
+
"manipulated-Images": 0,
|
28 |
+
"non-manipulated-Images": 1
|
29 |
+
},
|
30 |
+
"layer_norm_eps": 1e-05,
|
31 |
+
"max_length": 128,
|
32 |
+
"mlp_ratio": 4.0,
|
33 |
+
"model_type": "swin",
|
34 |
+
"num_channels": 3,
|
35 |
+
"num_heads": [
|
36 |
+
4,
|
37 |
+
8,
|
38 |
+
16,
|
39 |
+
32
|
40 |
+
],
|
41 |
+
"num_layers": 4,
|
42 |
+
"out_features": [
|
43 |
+
"stage4"
|
44 |
+
],
|
45 |
+
"out_indices": [
|
46 |
+
4
|
47 |
+
],
|
48 |
+
"padding": "max_length",
|
49 |
+
"patch_size": 4,
|
50 |
+
"path_norm": true,
|
51 |
+
"problem_type": "single_label_classification",
|
52 |
+
"qkv_bias": true,
|
53 |
+
"stage_names": [
|
54 |
+
"stem",
|
55 |
+
"stage1",
|
56 |
+
"stage2",
|
57 |
+
"stage3",
|
58 |
+
"stage4"
|
59 |
+
],
|
60 |
+
"torch_dtype": "float32",
|
61 |
+
"transformers_version": "4.44.1",
|
62 |
+
"use_absolute_embeddings": false,
|
63 |
+
"window_size": 7
|
64 |
+
}
|
checkpoint-6/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:552e7fc9b3d60412d316b7b2467313599991214b4a36af084a139c6feb5fb5ef
|
3 |
+
size 347498816
|
checkpoint-6/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7db5e22e3191cbdf721439dc75eb21d81171d731b4051519a4f0cbd6686dfed4
|
3 |
+
size 694305741
|
checkpoint-6/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf12795bc333f98850af58c90b86c1e276b4ad11dcacea96538dba2a5903bbaf
|
3 |
+
size 13990
|
checkpoint-6/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1a507d9cafa2419d0ab9d8bfd3d73565df3d210c7e1a2b8ba116f25efdab63f1
|
3 |
+
size 1064
|
checkpoint-6/trainer_state.json
ADDED
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": 1.6360101699829102,
|
3 |
+
"best_model_checkpoint": "autotrain-ai-detection/checkpoint-6",
|
4 |
+
"epoch": 3.0,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 6,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"epoch": 0.5,
|
13 |
+
"grad_norm": 67.11053466796875,
|
14 |
+
"learning_rate": 5e-05,
|
15 |
+
"loss": 0.2288,
|
16 |
+
"step": 1
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"epoch": 1.0,
|
20 |
+
"grad_norm": 12.405567169189453,
|
21 |
+
"learning_rate": 4e-05,
|
22 |
+
"loss": 0.0293,
|
23 |
+
"step": 2
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"epoch": 1.0,
|
27 |
+
"eval_accuracy": 0.6666666666666666,
|
28 |
+
"eval_auc": 0.0,
|
29 |
+
"eval_f1": 0.0,
|
30 |
+
"eval_loss": 2.797226667404175,
|
31 |
+
"eval_precision": 0.0,
|
32 |
+
"eval_recall": 0.0,
|
33 |
+
"eval_runtime": 1.0634,
|
34 |
+
"eval_samples_per_second": 2.821,
|
35 |
+
"eval_steps_per_second": 0.94,
|
36 |
+
"step": 2
|
37 |
+
},
|
38 |
+
{
|
39 |
+
"epoch": 1.5,
|
40 |
+
"grad_norm": 172.7128448486328,
|
41 |
+
"learning_rate": 3e-05,
|
42 |
+
"loss": 0.9881,
|
43 |
+
"step": 3
|
44 |
+
},
|
45 |
+
{
|
46 |
+
"epoch": 2.0,
|
47 |
+
"grad_norm": 365.2555847167969,
|
48 |
+
"learning_rate": 2e-05,
|
49 |
+
"loss": 5.6348,
|
50 |
+
"step": 4
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"epoch": 2.0,
|
54 |
+
"eval_accuracy": 0.6666666666666666,
|
55 |
+
"eval_auc": 0.0,
|
56 |
+
"eval_f1": 0.0,
|
57 |
+
"eval_loss": 2.092874765396118,
|
58 |
+
"eval_precision": 0.0,
|
59 |
+
"eval_recall": 0.0,
|
60 |
+
"eval_runtime": 1.119,
|
61 |
+
"eval_samples_per_second": 2.681,
|
62 |
+
"eval_steps_per_second": 0.894,
|
63 |
+
"step": 4
|
64 |
+
},
|
65 |
+
{
|
66 |
+
"epoch": 2.5,
|
67 |
+
"grad_norm": 6.614980220794678,
|
68 |
+
"learning_rate": 1e-05,
|
69 |
+
"loss": 0.0195,
|
70 |
+
"step": 5
|
71 |
+
},
|
72 |
+
{
|
73 |
+
"epoch": 3.0,
|
74 |
+
"grad_norm": 0.002860192209482193,
|
75 |
+
"learning_rate": 0.0,
|
76 |
+
"loss": 0.0,
|
77 |
+
"step": 6
|
78 |
+
},
|
79 |
+
{
|
80 |
+
"epoch": 3.0,
|
81 |
+
"eval_accuracy": 0.6666666666666666,
|
82 |
+
"eval_auc": 0.0,
|
83 |
+
"eval_f1": 0.0,
|
84 |
+
"eval_loss": 1.6360101699829102,
|
85 |
+
"eval_precision": 0.0,
|
86 |
+
"eval_recall": 0.0,
|
87 |
+
"eval_runtime": 1.229,
|
88 |
+
"eval_samples_per_second": 2.441,
|
89 |
+
"eval_steps_per_second": 0.814,
|
90 |
+
"step": 6
|
91 |
+
}
|
92 |
+
],
|
93 |
+
"logging_steps": 1,
|
94 |
+
"max_steps": 6,
|
95 |
+
"num_input_tokens_seen": 0,
|
96 |
+
"num_train_epochs": 3,
|
97 |
+
"save_steps": 500,
|
98 |
+
"stateful_callbacks": {
|
99 |
+
"EarlyStoppingCallback": {
|
100 |
+
"args": {
|
101 |
+
"early_stopping_patience": 5,
|
102 |
+
"early_stopping_threshold": 0.01
|
103 |
+
},
|
104 |
+
"attributes": {
|
105 |
+
"early_stopping_patience_counter": 0
|
106 |
+
}
|
107 |
+
},
|
108 |
+
"TrainerControl": {
|
109 |
+
"args": {
|
110 |
+
"should_epoch_stop": false,
|
111 |
+
"should_evaluate": false,
|
112 |
+
"should_log": false,
|
113 |
+
"should_save": true,
|
114 |
+
"should_training_stop": true
|
115 |
+
},
|
116 |
+
"attributes": {}
|
117 |
+
}
|
118 |
+
},
|
119 |
+
"total_flos": 2115330001956864.0,
|
120 |
+
"train_batch_size": 8,
|
121 |
+
"trial_name": null,
|
122 |
+
"trial_params": null
|
123 |
+
}
|
checkpoint-6/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c986e3a4f78e8334d70c010d6493b03b1faf0513acdd9b6f7870ca9fd6a52feb
|
3 |
+
size 5240
|
config.json
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Organika/sdxl-detector",
|
3 |
+
"_num_labels": 2,
|
4 |
+
"architectures": [
|
5 |
+
"SwinForImageClassification"
|
6 |
+
],
|
7 |
+
"attention_probs_dropout_prob": 0.0,
|
8 |
+
"depths": [
|
9 |
+
2,
|
10 |
+
2,
|
11 |
+
18,
|
12 |
+
2
|
13 |
+
],
|
14 |
+
"drop_path_rate": 0.1,
|
15 |
+
"embed_dim": 128,
|
16 |
+
"encoder_stride": 32,
|
17 |
+
"hidden_act": "gelu",
|
18 |
+
"hidden_dropout_prob": 0.0,
|
19 |
+
"hidden_size": 1024,
|
20 |
+
"id2label": {
|
21 |
+
"0": "manipulated-Images",
|
22 |
+
"1": "non-manipulated-Images"
|
23 |
+
},
|
24 |
+
"image_size": 224,
|
25 |
+
"initializer_range": 0.02,
|
26 |
+
"label2id": {
|
27 |
+
"manipulated-Images": 0,
|
28 |
+
"non-manipulated-Images": 1
|
29 |
+
},
|
30 |
+
"layer_norm_eps": 1e-05,
|
31 |
+
"max_length": 128,
|
32 |
+
"mlp_ratio": 4.0,
|
33 |
+
"model_type": "swin",
|
34 |
+
"num_channels": 3,
|
35 |
+
"num_heads": [
|
36 |
+
4,
|
37 |
+
8,
|
38 |
+
16,
|
39 |
+
32
|
40 |
+
],
|
41 |
+
"num_layers": 4,
|
42 |
+
"out_features": [
|
43 |
+
"stage4"
|
44 |
+
],
|
45 |
+
"out_indices": [
|
46 |
+
4
|
47 |
+
],
|
48 |
+
"padding": "max_length",
|
49 |
+
"patch_size": 4,
|
50 |
+
"path_norm": true,
|
51 |
+
"problem_type": "single_label_classification",
|
52 |
+
"qkv_bias": true,
|
53 |
+
"stage_names": [
|
54 |
+
"stem",
|
55 |
+
"stage1",
|
56 |
+
"stage2",
|
57 |
+
"stage3",
|
58 |
+
"stage4"
|
59 |
+
],
|
60 |
+
"torch_dtype": "float32",
|
61 |
+
"transformers_version": "4.44.1",
|
62 |
+
"use_absolute_embeddings": false,
|
63 |
+
"window_size": 7
|
64 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:552e7fc9b3d60412d316b7b2467313599991214b4a36af084a139c6feb5fb5ef
|
3 |
+
size 347498816
|
preprocessor_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_rescale": true,
|
4 |
+
"do_resize": true,
|
5 |
+
"image_mean": [
|
6 |
+
0.485,
|
7 |
+
0.456,
|
8 |
+
0.406
|
9 |
+
],
|
10 |
+
"image_processor_type": "ViTImageProcessor",
|
11 |
+
"image_std": [
|
12 |
+
0.229,
|
13 |
+
0.224,
|
14 |
+
0.225
|
15 |
+
],
|
16 |
+
"resample": 3,
|
17 |
+
"rescale_factor": 0.00392156862745098,
|
18 |
+
"size": {
|
19 |
+
"height": 224,
|
20 |
+
"width": 224
|
21 |
+
}
|
22 |
+
}
|
runs/Sep03_11-41-31_r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120/events.out.tfevents.1725363693.r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120.112.0
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1c1e95ee83c5ec2c1f02b3de71eeaecf0b74ccd8c35f2cf221ccb5396825deb
|
3 |
+
size 8601
|
runs/Sep03_11-41-31_r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120/events.out.tfevents.1725363735.r-franibm-autotrain-advanced-z4u9t9ko-e4b57-3h120.112.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c484a385c5018938ce0baaaf1344a573dffd3a5bf77334875a940160e92b7a8d
|
3 |
+
size 597
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c986e3a4f78e8334d70c010d6493b03b1faf0513acdd9b6f7870ca9fd6a52feb
|
3 |
+
size 5240
|
training_params.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"data_path": "autotrain-ai-detection/autotrain-data",
|
3 |
+
"model": "Organika/sdxl-detector",
|
4 |
+
"username": "franibm",
|
5 |
+
"lr": 5e-05,
|
6 |
+
"epochs": 3,
|
7 |
+
"batch_size": 8,
|
8 |
+
"warmup_ratio": 0.1,
|
9 |
+
"gradient_accumulation": 1,
|
10 |
+
"optimizer": "adamw_torch",
|
11 |
+
"scheduler": "linear",
|
12 |
+
"weight_decay": 0.0,
|
13 |
+
"max_grad_norm": 1.0,
|
14 |
+
"seed": 42,
|
15 |
+
"train_split": "train",
|
16 |
+
"valid_split": "validation",
|
17 |
+
"logging_steps": -1,
|
18 |
+
"project_name": "autotrain-ai-detection",
|
19 |
+
"auto_find_batch_size": false,
|
20 |
+
"mixed_precision": "fp16",
|
21 |
+
"save_total_limit": 1,
|
22 |
+
"push_to_hub": true,
|
23 |
+
"eval_strategy": "epoch",
|
24 |
+
"image_column": "autotrain_image",
|
25 |
+
"target_column": "autotrain_label",
|
26 |
+
"log": "tensorboard",
|
27 |
+
"early_stopping_patience": 5,
|
28 |
+
"early_stopping_threshold": 0.01
|
29 |
+
}
|