Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +56 -0
- preprocessor_config.json +28 -0
- pytorch_model.bin +3 -0
- runs/Feb01_15-13-08_29f76566887f/1675264412.267912/events.out.tfevents.1675264412.29f76566887f.240.4 +3 -0
- runs/Feb01_15-13-08_29f76566887f/events.out.tfevents.1675264412.29f76566887f.240.3 +3 -0
- runs/Feb01_15-14-31_29f76566887f/1675264478.9250698/events.out.tfevents.1675264478.29f76566887f.240.6 +3 -0
- runs/Feb01_15-14-31_29f76566887f/events.out.tfevents.1675264478.29f76566887f.240.5 +3 -0
- runs/Feb01_15-25-51_29f76566887f/1675265159.214481/events.out.tfevents.1675265159.29f76566887f.240.8 +3 -0
- runs/Feb01_15-25-51_29f76566887f/events.out.tfevents.1675265159.29f76566887f.240.7 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/beit-base-patch16-224-pt22k-ft22k",
|
3 |
+
"architectures": [
|
4 |
+
"BeitForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"auxiliary_channels": 256,
|
8 |
+
"auxiliary_concat_input": false,
|
9 |
+
"auxiliary_loss_weight": 0.4,
|
10 |
+
"auxiliary_num_convs": 1,
|
11 |
+
"drop_path_rate": 0.1,
|
12 |
+
"hidden_act": "gelu",
|
13 |
+
"hidden_dropout_prob": 0.0,
|
14 |
+
"hidden_size": 768,
|
15 |
+
"id2label": {
|
16 |
+
"0": "no_ai",
|
17 |
+
"1": "ai"
|
18 |
+
},
|
19 |
+
"image_size": 224,
|
20 |
+
"initializer_range": 0.02,
|
21 |
+
"intermediate_size": 3072,
|
22 |
+
"label2id": {
|
23 |
+
"ai": 1,
|
24 |
+
"no_ai": 0
|
25 |
+
},
|
26 |
+
"layer_norm_eps": 1e-12,
|
27 |
+
"layer_scale_init_value": 0.1,
|
28 |
+
"model_type": "beit",
|
29 |
+
"num_attention_heads": 12,
|
30 |
+
"num_channels": 3,
|
31 |
+
"num_hidden_layers": 12,
|
32 |
+
"out_indices": [
|
33 |
+
3,
|
34 |
+
5,
|
35 |
+
7,
|
36 |
+
11
|
37 |
+
],
|
38 |
+
"patch_size": 16,
|
39 |
+
"pool_scales": [
|
40 |
+
1,
|
41 |
+
2,
|
42 |
+
3,
|
43 |
+
6
|
44 |
+
],
|
45 |
+
"problem_type": "single_label_classification",
|
46 |
+
"semantic_loss_ignore_index": 255,
|
47 |
+
"torch_dtype": "float32",
|
48 |
+
"transformers_version": "4.26.0",
|
49 |
+
"use_absolute_position_embeddings": false,
|
50 |
+
"use_auxiliary_head": true,
|
51 |
+
"use_mask_token": false,
|
52 |
+
"use_mean_pooling": true,
|
53 |
+
"use_relative_position_bias": true,
|
54 |
+
"use_shared_relative_position_bias": false,
|
55 |
+
"vocab_size": 8192
|
56 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 224,
|
4 |
+
"width": 224
|
5 |
+
},
|
6 |
+
"do_center_crop": false,
|
7 |
+
"do_normalize": true,
|
8 |
+
"do_reduce_labels": false,
|
9 |
+
"do_rescale": true,
|
10 |
+
"do_resize": true,
|
11 |
+
"image_mean": [
|
12 |
+
0.5,
|
13 |
+
0.5,
|
14 |
+
0.5
|
15 |
+
],
|
16 |
+
"image_processor_type": "BeitImageProcessor",
|
17 |
+
"image_std": [
|
18 |
+
0.5,
|
19 |
+
0.5,
|
20 |
+
0.5
|
21 |
+
],
|
22 |
+
"resample": 2,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"size": {
|
25 |
+
"height": 224,
|
26 |
+
"width": 224
|
27 |
+
}
|
28 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:641afd3d97fac8b82da6a1a1778565cb515e169e4aebb7cb146261cd6577a8ad
|
3 |
+
size 346860409
|
runs/Feb01_15-13-08_29f76566887f/1675264412.267912/events.out.tfevents.1675264412.29f76566887f.240.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a6b954c979dd1a9aa143b539951eb72781af01490458ce41e5d8caa5e2046b19
|
3 |
+
size 5793
|
runs/Feb01_15-13-08_29f76566887f/events.out.tfevents.1675264412.29f76566887f.240.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9fe1da069515856a0673b6b03e5712e05e99f87e35a78cb0f0046ed3f9a990b0
|
3 |
+
size 4489
|
runs/Feb01_15-14-31_29f76566887f/1675264478.9250698/events.out.tfevents.1675264478.29f76566887f.240.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9e8596acb721a30cc5be16ef47b2e8e4e0b498f605f8ccc625e6ccd749133a5
|
3 |
+
size 5793
|
runs/Feb01_15-14-31_29f76566887f/events.out.tfevents.1675264478.29f76566887f.240.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b87ca37e2458b6d49cc982672f95404b7a8912ea2e4dac55f90c0e65ad2b72f0
|
3 |
+
size 5875
|
runs/Feb01_15-25-51_29f76566887f/1675265159.214481/events.out.tfevents.1675265159.29f76566887f.240.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d14a06d359bf9dff0a4f74e562046c80bf70cb678407049c977b58f7a8b1ad8
|
3 |
+
size 5794
|
runs/Feb01_15-25-51_29f76566887f/events.out.tfevents.1675265159.29f76566887f.240.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:032cd6ecdd04eed372c879b9df62edd183e3886ff654d1f790202e72f14dc915
|
3 |
+
size 5876
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:92807314b0a3e40378b4d80de29f398694a51d284ac16eb4addf2e842319fe96
|
3 |
+
size 3579
|