keithanpai
commited on
Commit
•
ea49c1e
1
Parent(s):
1e9e8b8
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +86 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Jan17_17-49-29_12633ededa03/1673977795.060566/events.out.tfevents.1673977795.12633ededa03.19922.1 +3 -0
- runs/Jan17_17-49-29_12633ededa03/1673979183.1418371/events.out.tfevents.1673979183.12633ededa03.19922.2 +3 -0
- runs/Jan17_17-49-29_12633ededa03/events.out.tfevents.1673977795.12633ededa03.19922.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-base-patch32-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 |
+
"2": "C",
|
15 |
+
"3": "D",
|
16 |
+
"4": "E",
|
17 |
+
"5": "F",
|
18 |
+
"6": "G",
|
19 |
+
"7": "H",
|
20 |
+
"8": "I",
|
21 |
+
"9": "J",
|
22 |
+
"10": "K",
|
23 |
+
"11": "L",
|
24 |
+
"12": "M",
|
25 |
+
"13": "N",
|
26 |
+
"14": "O",
|
27 |
+
"15": "P",
|
28 |
+
"16": "Q",
|
29 |
+
"17": "R",
|
30 |
+
"18": "S",
|
31 |
+
"19": "T",
|
32 |
+
"20": "U",
|
33 |
+
"21": "V",
|
34 |
+
"22": "W",
|
35 |
+
"23": "X",
|
36 |
+
"24": "Y",
|
37 |
+
"25": "Z",
|
38 |
+
"26": "del",
|
39 |
+
"27": "nothing",
|
40 |
+
"28": "space"
|
41 |
+
},
|
42 |
+
"image_size": 224,
|
43 |
+
"initializer_range": 0.02,
|
44 |
+
"intermediate_size": 3072,
|
45 |
+
"label2id": {
|
46 |
+
"A": 0,
|
47 |
+
"B": 1,
|
48 |
+
"C": 2,
|
49 |
+
"D": 3,
|
50 |
+
"E": 4,
|
51 |
+
"F": 5,
|
52 |
+
"G": 6,
|
53 |
+
"H": 7,
|
54 |
+
"I": 8,
|
55 |
+
"J": 9,
|
56 |
+
"K": 10,
|
57 |
+
"L": 11,
|
58 |
+
"M": 12,
|
59 |
+
"N": 13,
|
60 |
+
"O": 14,
|
61 |
+
"P": 15,
|
62 |
+
"Q": 16,
|
63 |
+
"R": 17,
|
64 |
+
"S": 18,
|
65 |
+
"T": 19,
|
66 |
+
"U": 20,
|
67 |
+
"V": 21,
|
68 |
+
"W": 22,
|
69 |
+
"X": 23,
|
70 |
+
"Y": 24,
|
71 |
+
"Z": 25,
|
72 |
+
"del": 26,
|
73 |
+
"nothing": 27,
|
74 |
+
"space": 28
|
75 |
+
},
|
76 |
+
"layer_norm_eps": 1e-12,
|
77 |
+
"model_type": "vit",
|
78 |
+
"num_attention_heads": 12,
|
79 |
+
"num_channels": 3,
|
80 |
+
"num_hidden_layers": 12,
|
81 |
+
"patch_size": 32,
|
82 |
+
"problem_type": "single_label_classification",
|
83 |
+
"qkv_bias": true,
|
84 |
+
"torch_dtype": "float32",
|
85 |
+
"transformers_version": "4.25.1"
|
86 |
+
}
|
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:6ff74987461667b7a5f25ebbf716deb0b744b4f4eceb0ff945849a9d8dad1522
|
3 |
+
size 349978029
|
runs/Jan17_17-49-29_12633ededa03/1673977795.060566/events.out.tfevents.1673977795.12633ededa03.19922.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ba8ca54d882b4ddc4187a93c9b4d0f540333aaa7218b18d0dcdfdd7e94f78662
|
3 |
+
size 5591
|
runs/Jan17_17-49-29_12633ededa03/1673979183.1418371/events.out.tfevents.1673979183.12633ededa03.19922.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ab1e3e558e3f7d2cfdc82303fcc8ce6ba224ea0f25dcb32e1661dee160274bc
|
3 |
+
size 5591
|
runs/Jan17_17-49-29_12633ededa03/events.out.tfevents.1673977795.12633ededa03.19922.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68e5ee30f6f081a1afe98a64dbe3426201a67cf685abe1e6c4a9a5ea8149a1dc
|
3 |
+
size 10950
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4a05986e348d41c7cc1d3bbe6f1867606d9ad2fc08cf26908f73da582e19bd0
|
3 |
+
size 3451
|