End of training
Browse files- .gitignore +1 -0
- config.json +74 -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,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"id2label": {
|
16 |
+
"0": "title_page",
|
17 |
+
"1": "index_general_or_place",
|
18 |
+
"10": "adverts_index_business_cat",
|
19 |
+
"2": "prefatory_text",
|
20 |
+
"3": "county_residence_alpha",
|
21 |
+
"4": "county_trades",
|
22 |
+
"5": "major_residences_index",
|
23 |
+
"6": "county_desc",
|
24 |
+
"7": "local_desc",
|
25 |
+
"8": "advert",
|
26 |
+
"9": "adverts_index_alpha"
|
27 |
+
},
|
28 |
+
"image_size": 224,
|
29 |
+
"initializer_range": 0.02,
|
30 |
+
"intermediate_size": 3072,
|
31 |
+
"label2id": {
|
32 |
+
"advert": "8",
|
33 |
+
"adverts_index_alpha": "9",
|
34 |
+
"adverts_index_business_cat": "10",
|
35 |
+
"county_desc": "6",
|
36 |
+
"county_residence_alpha": "3",
|
37 |
+
"county_trades": "4",
|
38 |
+
"index_general_or_place": "1",
|
39 |
+
"local_desc": "7",
|
40 |
+
"major_residences_index": "5",
|
41 |
+
"prefatory_text": "2",
|
42 |
+
"title_page": "0"
|
43 |
+
},
|
44 |
+
"layer_norm_eps": 1e-12,
|
45 |
+
"layer_scale_init_value": 0.1,
|
46 |
+
"model_type": "beit",
|
47 |
+
"num_attention_heads": 12,
|
48 |
+
"num_channels": 3,
|
49 |
+
"num_hidden_layers": 12,
|
50 |
+
"out_indices": [
|
51 |
+
3,
|
52 |
+
5,
|
53 |
+
7,
|
54 |
+
11
|
55 |
+
],
|
56 |
+
"patch_size": 16,
|
57 |
+
"pool_scales": [
|
58 |
+
1,
|
59 |
+
2,
|
60 |
+
3,
|
61 |
+
6
|
62 |
+
],
|
63 |
+
"problem_type": "single_label_classification",
|
64 |
+
"semantic_loss_ignore_index": 255,
|
65 |
+
"torch_dtype": "float32",
|
66 |
+
"transformers_version": "4.25.1",
|
67 |
+
"use_absolute_position_embeddings": true,
|
68 |
+
"use_auxiliary_head": true,
|
69 |
+
"use_mask_token": true,
|
70 |
+
"use_mean_pooling": true,
|
71 |
+
"use_relative_position_bias": false,
|
72 |
+
"use_shared_relative_position_bias": false,
|
73 |
+
"vocab_size": 8192
|
74 |
+
}
|
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:f520f2b8b35e41848231404eeff38debe218d78a6a6f4e31692a90b2310af9d6
|
3 |
+
size 343335639
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d210168ea04f5658c89800d07881a6797e1cb1af649723be57b31bfa96a97d66
|
3 |
+
size 3375
|