End of training
Browse files- .gitignore +1 -0
- config.json +48 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/dit-base",
|
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 |
+
"image_size": 224,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 3072,
|
18 |
+
"layer_norm_eps": 1e-12,
|
19 |
+
"layer_scale_init_value": 0.1,
|
20 |
+
"model_type": "beit",
|
21 |
+
"num_attention_heads": 12,
|
22 |
+
"num_channels": 3,
|
23 |
+
"num_hidden_layers": 12,
|
24 |
+
"out_indices": [
|
25 |
+
3,
|
26 |
+
5,
|
27 |
+
7,
|
28 |
+
11
|
29 |
+
],
|
30 |
+
"patch_size": 16,
|
31 |
+
"pool_scales": [
|
32 |
+
1,
|
33 |
+
2,
|
34 |
+
3,
|
35 |
+
6
|
36 |
+
],
|
37 |
+
"problem_type": "single_label_classification",
|
38 |
+
"semantic_loss_ignore_index": 255,
|
39 |
+
"torch_dtype": "float32",
|
40 |
+
"transformers_version": "4.25.1",
|
41 |
+
"use_absolute_position_embeddings": true,
|
42 |
+
"use_auxiliary_head": true,
|
43 |
+
"use_mask_token": true,
|
44 |
+
"use_mean_pooling": true,
|
45 |
+
"use_relative_position_bias": false,
|
46 |
+
"use_shared_relative_position_bias": false,
|
47 |
+
"vocab_size": 8192
|
48 |
+
}
|
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.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_processor_type": "ViTImageProcessor",
|
11 |
+
"image_std": [
|
12 |
+
0.5,
|
13 |
+
0.5,
|
14 |
+
0.5
|
15 |
+
],
|
16 |
+
"resample": 2,
|
17 |
+
"rescale_factor": 0.00392156862745098,
|
18 |
+
"size": {
|
19 |
+
"height": 224,
|
20 |
+
"width": 224
|
21 |
+
}
|
22 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1dc031c224a9c05b9023967ff3d68576087cf11d2cfe266f68c7fcc5d2b82b0c
|
3 |
+
size 343307991
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c86ed6f9b6e9724e93e5729c2bf3e675321677102e81a52c133edd5e93baf75c
|
3 |
+
size 3439
|