Commit
·
a5c3d58
1
Parent(s):
f894e7c
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +76 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Apr15_08-12-42_9c6f63b521fa/1681546397.0752318/events.out.tfevents.1681546397.9c6f63b521fa.325.1 +3 -0
- runs/Apr15_08-12-42_9c6f63b521fa/events.out.tfevents.1681546397.9c6f63b521fa.325.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "A",
|
13 |
+
"1": "B",
|
14 |
+
"10": "M",
|
15 |
+
"11": "N",
|
16 |
+
"12": "O",
|
17 |
+
"13": "P",
|
18 |
+
"14": "Q",
|
19 |
+
"15": "R",
|
20 |
+
"16": "S",
|
21 |
+
"17": "T",
|
22 |
+
"18": "U",
|
23 |
+
"19": "V",
|
24 |
+
"2": "C",
|
25 |
+
"20": "W",
|
26 |
+
"21": "X",
|
27 |
+
"22": "Y",
|
28 |
+
"23": "Z",
|
29 |
+
"3": "D",
|
30 |
+
"4": "E",
|
31 |
+
"5": "F",
|
32 |
+
"6": "G",
|
33 |
+
"7": "I",
|
34 |
+
"8": "K",
|
35 |
+
"9": "L"
|
36 |
+
},
|
37 |
+
"image_size": 224,
|
38 |
+
"initializer_range": 0.02,
|
39 |
+
"intermediate_size": 3072,
|
40 |
+
"label2id": {
|
41 |
+
"A": "0",
|
42 |
+
"B": "1",
|
43 |
+
"C": "2",
|
44 |
+
"D": "3",
|
45 |
+
"E": "4",
|
46 |
+
"F": "5",
|
47 |
+
"G": "6",
|
48 |
+
"I": "7",
|
49 |
+
"K": "8",
|
50 |
+
"L": "9",
|
51 |
+
"M": "10",
|
52 |
+
"N": "11",
|
53 |
+
"O": "12",
|
54 |
+
"P": "13",
|
55 |
+
"Q": "14",
|
56 |
+
"R": "15",
|
57 |
+
"S": "16",
|
58 |
+
"T": "17",
|
59 |
+
"U": "18",
|
60 |
+
"V": "19",
|
61 |
+
"W": "20",
|
62 |
+
"X": "21",
|
63 |
+
"Y": "22",
|
64 |
+
"Z": "23"
|
65 |
+
},
|
66 |
+
"layer_norm_eps": 1e-12,
|
67 |
+
"model_type": "vit",
|
68 |
+
"num_attention_heads": 12,
|
69 |
+
"num_channels": 3,
|
70 |
+
"num_hidden_layers": 12,
|
71 |
+
"patch_size": 16,
|
72 |
+
"problem_type": "single_label_classification",
|
73 |
+
"qkv_bias": true,
|
74 |
+
"torch_dtype": "float32",
|
75 |
+
"transformers_version": "4.28.1"
|
76 |
+
}
|
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:8944f23c5eed09ba84b3a1889c89d0b4b5246931cc2b119bfed8f252d84d4174
|
3 |
+
size 343336365
|
runs/Apr15_08-12-42_9c6f63b521fa/1681546397.0752318/events.out.tfevents.1681546397.9c6f63b521fa.325.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a9ed2454cb44b6dd3bbb03ee504ef004f59001a16df08743a423b044baba73b3
|
3 |
+
size 5853
|
runs/Apr15_08-12-42_9c6f63b521fa/events.out.tfevents.1681546397.9c6f63b521fa.325.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:949605f6abbdf92cc5779bf8c6693597463ebe4e5f698b665af5f981f9538c1d
|
3 |
+
size 6141
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c438e660c2c660f1aca4c664ecd7bc12206a8abca4bef4cf127249e1eaf46394
|
3 |
+
size 3643
|