Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +92 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
- runs/Jan02_18-10-40_d87ead9bfa95/1672683076.055135/events.out.tfevents.1672683076.d87ead9bfa95.102.1 +3 -0
- runs/Jan02_18-10-40_d87ead9bfa95/events.out.tfevents.1672683076.d87ead9bfa95.102.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/swin-tiny-patch4-window7-224",
|
3 |
+
"architectures": [
|
4 |
+
"SwinForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"depths": [
|
8 |
+
2,
|
9 |
+
2,
|
10 |
+
6,
|
11 |
+
2
|
12 |
+
],
|
13 |
+
"drop_path_rate": 0.1,
|
14 |
+
"embed_dim": 96,
|
15 |
+
"encoder_stride": 32,
|
16 |
+
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout_prob": 0.0,
|
18 |
+
"hidden_size": 768,
|
19 |
+
"id2label": {
|
20 |
+
"0": "A",
|
21 |
+
"1": "B",
|
22 |
+
"2": "C",
|
23 |
+
"3": "D",
|
24 |
+
"4": "E",
|
25 |
+
"5": "F",
|
26 |
+
"6": "G",
|
27 |
+
"7": "H",
|
28 |
+
"8": "I",
|
29 |
+
"9": "K",
|
30 |
+
"10": "L",
|
31 |
+
"11": "M",
|
32 |
+
"12": "N",
|
33 |
+
"13": "O",
|
34 |
+
"14": "P",
|
35 |
+
"15": "Q",
|
36 |
+
"16": "R",
|
37 |
+
"17": "S",
|
38 |
+
"18": "T",
|
39 |
+
"19": "U",
|
40 |
+
"20": "V",
|
41 |
+
"21": "W",
|
42 |
+
"22": "X",
|
43 |
+
"23": "Y"
|
44 |
+
},
|
45 |
+
"image_size": 224,
|
46 |
+
"initializer_range": 0.02,
|
47 |
+
"label2id": {
|
48 |
+
"A": 0,
|
49 |
+
"B": 1,
|
50 |
+
"C": 2,
|
51 |
+
"D": 3,
|
52 |
+
"E": 4,
|
53 |
+
"F": 5,
|
54 |
+
"G": 6,
|
55 |
+
"H": 7,
|
56 |
+
"I": 8,
|
57 |
+
"K": 9,
|
58 |
+
"L": 10,
|
59 |
+
"M": 11,
|
60 |
+
"N": 12,
|
61 |
+
"O": 13,
|
62 |
+
"P": 14,
|
63 |
+
"Q": 15,
|
64 |
+
"R": 16,
|
65 |
+
"S": 17,
|
66 |
+
"T": 18,
|
67 |
+
"U": 19,
|
68 |
+
"V": 20,
|
69 |
+
"W": 21,
|
70 |
+
"X": 22,
|
71 |
+
"Y": 23
|
72 |
+
},
|
73 |
+
"layer_norm_eps": 1e-05,
|
74 |
+
"mlp_ratio": 4.0,
|
75 |
+
"model_type": "swin",
|
76 |
+
"num_channels": 3,
|
77 |
+
"num_heads": [
|
78 |
+
3,
|
79 |
+
6,
|
80 |
+
12,
|
81 |
+
24
|
82 |
+
],
|
83 |
+
"num_layers": 4,
|
84 |
+
"patch_size": 4,
|
85 |
+
"path_norm": true,
|
86 |
+
"problem_type": "single_label_classification",
|
87 |
+
"qkv_bias": true,
|
88 |
+
"torch_dtype": "float32",
|
89 |
+
"transformers_version": "4.25.1",
|
90 |
+
"use_absolute_embeddings": false,
|
91 |
+
"window_size": 7
|
92 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_rescale": true,
|
4 |
+
"do_resize": true,
|
5 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
6 |
+
"image_mean": [
|
7 |
+
0.485,
|
8 |
+
0.456,
|
9 |
+
0.406
|
10 |
+
],
|
11 |
+
"image_processor_type": "ViTImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.229,
|
14 |
+
0.224,
|
15 |
+
0.225
|
16 |
+
],
|
17 |
+
"resample": 3,
|
18 |
+
"rescale_factor": 0.00392156862745098,
|
19 |
+
"size": {
|
20 |
+
"height": 224,
|
21 |
+
"width": 224
|
22 |
+
}
|
23 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:34722b59fb5392094a037e243759c4d019d1b0849f0e9aabcf561b55a4694e0f
|
3 |
+
size 110462513
|
runs/Jan02_18-10-40_d87ead9bfa95/1672683076.055135/events.out.tfevents.1672683076.d87ead9bfa95.102.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a339cef7b77df86d3ea7945fe65aa3d33d9ff2a5788f3d64b7587ff4210690d7
|
3 |
+
size 5597
|
runs/Jan02_18-10-40_d87ead9bfa95/events.out.tfevents.1672683076.d87ead9bfa95.102.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e566245f207f6bcc1d8943eb961f40b28318808de74b273f12980b6a55ce4235
|
3 |
+
size 5233
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:90fbb0674739a222e109d857c5f45e2abb7bf9c0a7e914506f445c17c7cc01ac
|
3 |
+
size 3451
|