marcelomoreno26
commited on
Commit
•
7606f5c
1
Parent(s):
46c4a8f
Training in progress, epoch 1
Browse files- config.json +138 -0
- model.safetensors +3 -0
- preprocessor_config.json +36 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-base-patch16-384",
|
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": "Argentina",
|
13 |
+
"1": "Australia",
|
14 |
+
"2": "Austria",
|
15 |
+
"3": "Bangladesh",
|
16 |
+
"4": "Belgium",
|
17 |
+
"5": "Bolivia",
|
18 |
+
"6": "Botswana",
|
19 |
+
"7": "Brazil",
|
20 |
+
"8": "Bulgaria",
|
21 |
+
"9": "Cambodia",
|
22 |
+
"10": "Canada",
|
23 |
+
"11": "Chile",
|
24 |
+
"12": "Colombia",
|
25 |
+
"13": "Croatia",
|
26 |
+
"14": "Czechia",
|
27 |
+
"15": "Denmark",
|
28 |
+
"16": "Finland",
|
29 |
+
"17": "France",
|
30 |
+
"18": "Germany",
|
31 |
+
"19": "Ghana",
|
32 |
+
"20": "Greece",
|
33 |
+
"21": "Hungary",
|
34 |
+
"22": "India",
|
35 |
+
"23": "Indonesia",
|
36 |
+
"24": "Ireland",
|
37 |
+
"25": "Israel",
|
38 |
+
"26": "Italy",
|
39 |
+
"27": "Japan",
|
40 |
+
"28": "Kenya",
|
41 |
+
"29": "Latvia",
|
42 |
+
"30": "Lithuania",
|
43 |
+
"31": "Malaysia",
|
44 |
+
"32": "Mexico",
|
45 |
+
"33": "Netherlands",
|
46 |
+
"34": "New Zealand",
|
47 |
+
"35": "Nigeria",
|
48 |
+
"36": "Norway",
|
49 |
+
"37": "Peru",
|
50 |
+
"38": "Philippines",
|
51 |
+
"39": "Poland",
|
52 |
+
"40": "Portugal",
|
53 |
+
"41": "Romania",
|
54 |
+
"42": "Russia",
|
55 |
+
"43": "Singapore",
|
56 |
+
"44": "Slovakia",
|
57 |
+
"45": "South Africa",
|
58 |
+
"46": "South Korea",
|
59 |
+
"47": "Spain",
|
60 |
+
"48": "Sweden",
|
61 |
+
"49": "Switzerland",
|
62 |
+
"50": "Taiwan",
|
63 |
+
"51": "Thailand",
|
64 |
+
"52": "Turkey",
|
65 |
+
"53": "Ukraine",
|
66 |
+
"54": "United Kingdom"
|
67 |
+
},
|
68 |
+
"image_size": 384,
|
69 |
+
"initializer_range": 0.02,
|
70 |
+
"intermediate_size": 3072,
|
71 |
+
"label2id": {
|
72 |
+
"Argentina": 0,
|
73 |
+
"Australia": 1,
|
74 |
+
"Austria": 2,
|
75 |
+
"Bangladesh": 3,
|
76 |
+
"Belgium": 4,
|
77 |
+
"Bolivia": 5,
|
78 |
+
"Botswana": 6,
|
79 |
+
"Brazil": 7,
|
80 |
+
"Bulgaria": 8,
|
81 |
+
"Cambodia": 9,
|
82 |
+
"Canada": 10,
|
83 |
+
"Chile": 11,
|
84 |
+
"Colombia": 12,
|
85 |
+
"Croatia": 13,
|
86 |
+
"Czechia": 14,
|
87 |
+
"Denmark": 15,
|
88 |
+
"Finland": 16,
|
89 |
+
"France": 17,
|
90 |
+
"Germany": 18,
|
91 |
+
"Ghana": 19,
|
92 |
+
"Greece": 20,
|
93 |
+
"Hungary": 21,
|
94 |
+
"India": 22,
|
95 |
+
"Indonesia": 23,
|
96 |
+
"Ireland": 24,
|
97 |
+
"Israel": 25,
|
98 |
+
"Italy": 26,
|
99 |
+
"Japan": 27,
|
100 |
+
"Kenya": 28,
|
101 |
+
"Latvia": 29,
|
102 |
+
"Lithuania": 30,
|
103 |
+
"Malaysia": 31,
|
104 |
+
"Mexico": 32,
|
105 |
+
"Netherlands": 33,
|
106 |
+
"New Zealand": 34,
|
107 |
+
"Nigeria": 35,
|
108 |
+
"Norway": 36,
|
109 |
+
"Peru": 37,
|
110 |
+
"Philippines": 38,
|
111 |
+
"Poland": 39,
|
112 |
+
"Portugal": 40,
|
113 |
+
"Romania": 41,
|
114 |
+
"Russia": 42,
|
115 |
+
"Singapore": 43,
|
116 |
+
"Slovakia": 44,
|
117 |
+
"South Africa": 45,
|
118 |
+
"South Korea": 46,
|
119 |
+
"Spain": 47,
|
120 |
+
"Sweden": 48,
|
121 |
+
"Switzerland": 49,
|
122 |
+
"Taiwan": 50,
|
123 |
+
"Thailand": 51,
|
124 |
+
"Turkey": 52,
|
125 |
+
"Ukraine": 53,
|
126 |
+
"United Kingdom": 54
|
127 |
+
},
|
128 |
+
"layer_norm_eps": 1e-12,
|
129 |
+
"model_type": "vit",
|
130 |
+
"num_attention_heads": 12,
|
131 |
+
"num_channels": 3,
|
132 |
+
"num_hidden_layers": 12,
|
133 |
+
"patch_size": 16,
|
134 |
+
"problem_type": "single_label_classification",
|
135 |
+
"qkv_bias": true,
|
136 |
+
"torch_dtype": "float32",
|
137 |
+
"transformers_version": "4.39.1"
|
138 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d36430667fd1585194f5e30d37b9a3f7a1bc232e4e3b301b9a65a4329f9c7a08
|
3 |
+
size 344554372
|
preprocessor_config.json
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_valid_processor_keys": [
|
3 |
+
"images",
|
4 |
+
"do_resize",
|
5 |
+
"size",
|
6 |
+
"resample",
|
7 |
+
"do_rescale",
|
8 |
+
"rescale_factor",
|
9 |
+
"do_normalize",
|
10 |
+
"image_mean",
|
11 |
+
"image_std",
|
12 |
+
"return_tensors",
|
13 |
+
"data_format",
|
14 |
+
"input_data_format"
|
15 |
+
],
|
16 |
+
"do_normalize": true,
|
17 |
+
"do_rescale": true,
|
18 |
+
"do_resize": true,
|
19 |
+
"image_mean": [
|
20 |
+
0.5,
|
21 |
+
0.5,
|
22 |
+
0.5
|
23 |
+
],
|
24 |
+
"image_processor_type": "ViTImageProcessor",
|
25 |
+
"image_std": [
|
26 |
+
0.5,
|
27 |
+
0.5,
|
28 |
+
0.5
|
29 |
+
],
|
30 |
+
"resample": 2,
|
31 |
+
"rescale_factor": 0.00392156862745098,
|
32 |
+
"size": {
|
33 |
+
"height": 384,
|
34 |
+
"width": 384
|
35 |
+
}
|
36 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aca596b390752dedf763002d3b43228c665d83af92d9c926f29520226e600508
|
3 |
+
size 4856
|