Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +72 -0
- preprocessor_config.json +20 -0
- pytorch_model.bin +3 -0
- runs/May18_03-51-12_e8f6b7c072a8/1652845892.1030118/events.out.tfevents.1652845892.e8f6b7c072a8.72.1 +3 -0
- runs/May18_03-51-12_e8f6b7c072a8/events.out.tfevents.1652845892.e8f6b7c072a8.72.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/beit-base-patch16-224",
|
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": "airplane",
|
17 |
+
"1": "automobile",
|
18 |
+
"2": "bird",
|
19 |
+
"3": "cat",
|
20 |
+
"4": "deer",
|
21 |
+
"5": "dog",
|
22 |
+
"6": "frog",
|
23 |
+
"7": "horse",
|
24 |
+
"8": "ship",
|
25 |
+
"9": "truck"
|
26 |
+
},
|
27 |
+
"image_size": 224,
|
28 |
+
"initializer_range": 0.02,
|
29 |
+
"intermediate_size": 3072,
|
30 |
+
"label2id": {
|
31 |
+
"airplane": 0,
|
32 |
+
"automobile": 1,
|
33 |
+
"bird": 2,
|
34 |
+
"cat": 3,
|
35 |
+
"deer": 4,
|
36 |
+
"dog": 5,
|
37 |
+
"frog": 6,
|
38 |
+
"horse": 7,
|
39 |
+
"ship": 8,
|
40 |
+
"truck": 9
|
41 |
+
},
|
42 |
+
"layer_norm_eps": 1e-12,
|
43 |
+
"layer_scale_init_value": 0.1,
|
44 |
+
"model_type": "beit",
|
45 |
+
"num_attention_heads": 12,
|
46 |
+
"num_channels": 3,
|
47 |
+
"num_hidden_layers": 12,
|
48 |
+
"out_indices": [
|
49 |
+
3,
|
50 |
+
5,
|
51 |
+
7,
|
52 |
+
11
|
53 |
+
],
|
54 |
+
"patch_size": 16,
|
55 |
+
"pool_scales": [
|
56 |
+
1,
|
57 |
+
2,
|
58 |
+
3,
|
59 |
+
6
|
60 |
+
],
|
61 |
+
"problem_type": "single_label_classification",
|
62 |
+
"semantic_loss_ignore_index": 255,
|
63 |
+
"torch_dtype": "float32",
|
64 |
+
"transformers_version": "4.19.2",
|
65 |
+
"use_absolute_position_embeddings": false,
|
66 |
+
"use_auxiliary_head": true,
|
67 |
+
"use_mask_token": false,
|
68 |
+
"use_mean_pooling": true,
|
69 |
+
"use_relative_position_bias": true,
|
70 |
+
"use_shared_relative_position_bias": false,
|
71 |
+
"vocab_size": 8192
|
72 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": 224,
|
3 |
+
"do_center_crop": false,
|
4 |
+
"do_normalize": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"feature_extractor_type": "BeitFeatureExtractor",
|
7 |
+
"image_mean": [
|
8 |
+
0.5,
|
9 |
+
0.5,
|
10 |
+
0.5
|
11 |
+
],
|
12 |
+
"image_std": [
|
13 |
+
0.5,
|
14 |
+
0.5,
|
15 |
+
0.5
|
16 |
+
],
|
17 |
+
"reduce_labels": false,
|
18 |
+
"resample": 2,
|
19 |
+
"size": 224
|
20 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79aedae6661eb2686d0a7bebc5f495ea15a539317bfc4867ec8eaa4c1fcb6cfc
|
3 |
+
size 346883051
|
runs/May18_03-51-12_e8f6b7c072a8/1652845892.1030118/events.out.tfevents.1652845892.e8f6b7c072a8.72.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4a571ae1f82e3fc07032bac969e505487e15075ae63cc60b2026e7ed8cb4bdc2
|
3 |
+
size 5158
|
runs/May18_03-51-12_e8f6b7c072a8/events.out.tfevents.1652845892.e8f6b7c072a8.72.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:009cd3f988127646f112c38cbb9e95d0cb7869723e5620aa2729acf907cbdbe7
|
3 |
+
size 10107
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b71f89e8d58b169d54a2ec4420a02d56a915c88d1e97510ee322356a5f136ea
|
3 |
+
size 3183
|