stochastic commited on
Commit
3f610ee
1 Parent(s): 6ff4b63

Training in progress, epoch 1

Browse files
Files changed (5) hide show
  1. .gitignore +1 -0
  2. config.json +140 -0
  3. preprocessor_config.json +17 -0
  4. pytorch_model.bin +3 -0
  5. training_args.bin +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/vit-base-patch16-224-in21k",
3
+ "architectures": [
4
+ "ViTForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "encoder_stride": 16,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "SK",
13
+ "1": "HK",
14
+ "10": "KR",
15
+ "11": "SI",
16
+ "12": "BD",
17
+ "13": "PE",
18
+ "14": "US",
19
+ "15": "AU",
20
+ "16": "ZA",
21
+ "17": "LT",
22
+ "18": "FI",
23
+ "19": "KH",
24
+ "2": "JP",
25
+ "20": "SE",
26
+ "21": "MY",
27
+ "22": "HU",
28
+ "23": "CH",
29
+ "24": "CO",
30
+ "25": "IL",
31
+ "26": "IS",
32
+ "27": "UA",
33
+ "28": "TW",
34
+ "29": "PL",
35
+ "3": "GB",
36
+ "30": "ES",
37
+ "31": "CL",
38
+ "32": "BW",
39
+ "33": "RU",
40
+ "34": "LV",
41
+ "35": "NL",
42
+ "36": "BE",
43
+ "37": "AD",
44
+ "38": "BT",
45
+ "39": "AR",
46
+ "4": "IE",
47
+ "40": "NO",
48
+ "41": "GR",
49
+ "42": "IT",
50
+ "43": "HR",
51
+ "44": "ID",
52
+ "45": "SZ",
53
+ "46": "CZ",
54
+ "47": "AE",
55
+ "48": "EE",
56
+ "49": "TH",
57
+ "5": "FR",
58
+ "50": "MX",
59
+ "51": "DE",
60
+ "52": "BR",
61
+ "53": "DK",
62
+ "54": "RO",
63
+ "55": "PT",
64
+ "6": "CA",
65
+ "7": "BG",
66
+ "8": "SG",
67
+ "9": "NZ"
68
+ },
69
+ "image_size": 224,
70
+ "initializer_range": 0.02,
71
+ "intermediate_size": 3072,
72
+ "label2id": {
73
+ "AD": "37",
74
+ "AE": "47",
75
+ "AR": "39",
76
+ "AU": "15",
77
+ "BD": "12",
78
+ "BE": "36",
79
+ "BG": "7",
80
+ "BR": "52",
81
+ "BT": "38",
82
+ "BW": "32",
83
+ "CA": "6",
84
+ "CH": "23",
85
+ "CL": "31",
86
+ "CO": "24",
87
+ "CZ": "46",
88
+ "DE": "51",
89
+ "DK": "53",
90
+ "EE": "48",
91
+ "ES": "30",
92
+ "FI": "18",
93
+ "FR": "5",
94
+ "GB": "3",
95
+ "GR": "41",
96
+ "HK": "1",
97
+ "HR": "43",
98
+ "HU": "22",
99
+ "ID": "44",
100
+ "IE": "4",
101
+ "IL": "25",
102
+ "IS": "26",
103
+ "IT": "42",
104
+ "JP": "2",
105
+ "KH": "19",
106
+ "KR": "10",
107
+ "LT": "17",
108
+ "LV": "34",
109
+ "MX": "50",
110
+ "MY": "21",
111
+ "NL": "35",
112
+ "NO": "40",
113
+ "NZ": "9",
114
+ "PE": "13",
115
+ "PL": "29",
116
+ "PT": "55",
117
+ "RO": "54",
118
+ "RU": "33",
119
+ "SE": "20",
120
+ "SG": "8",
121
+ "SI": "11",
122
+ "SK": "0",
123
+ "SZ": "45",
124
+ "TH": "49",
125
+ "TW": "28",
126
+ "UA": "27",
127
+ "US": "14",
128
+ "ZA": "16"
129
+ },
130
+ "layer_norm_eps": 1e-12,
131
+ "model_type": "vit",
132
+ "num_attention_heads": 12,
133
+ "num_channels": 3,
134
+ "num_hidden_layers": 12,
135
+ "patch_size": 16,
136
+ "problem_type": "single_label_classification",
137
+ "qkv_bias": true,
138
+ "torch_dtype": "float32",
139
+ "transformers_version": "4.21.2"
140
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_resize": true,
4
+ "feature_extractor_type": "ViTFeatureExtractor",
5
+ "image_mean": [
6
+ 0.5,
7
+ 0.5,
8
+ 0.5
9
+ ],
10
+ "image_std": [
11
+ 0.5,
12
+ 0.5,
13
+ 0.5
14
+ ],
15
+ "resample": 2,
16
+ "size": 224
17
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1252694b65478d2c05d8f113b2e08cb5d06c4d6faee3dd333b4f393252c24cf
3
+ size 343433073
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8269e8215456698c44ac5533c8971c1da4d9766f1997ade5233ce017317ec68
3
+ size 3375