priyankloco
commited on
Commit
•
e43b0ee
1
Parent(s):
0a2adae
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +88 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/swin-base-patch4-window7-224-in22k",
|
3 |
+
"architectures": [
|
4 |
+
"SwinForImageClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.0,
|
7 |
+
"depths": [
|
8 |
+
2,
|
9 |
+
2,
|
10 |
+
18,
|
11 |
+
2
|
12 |
+
],
|
13 |
+
"drop_path_rate": 0.1,
|
14 |
+
"embed_dim": 128,
|
15 |
+
"encoder_stride": 32,
|
16 |
+
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout_prob": 0.0,
|
18 |
+
"hidden_size": 1024,
|
19 |
+
"id2label": {
|
20 |
+
"0": "Accordion",
|
21 |
+
"1": "Button",
|
22 |
+
"2": "Cards",
|
23 |
+
"3": "Checkbox",
|
24 |
+
"4": "Date-time",
|
25 |
+
"5": "Date-time picker",
|
26 |
+
"6": "Dropdown_closed",
|
27 |
+
"7": "Dropdown_open",
|
28 |
+
"8": "Footers",
|
29 |
+
"9": "Form",
|
30 |
+
"10": "Headers",
|
31 |
+
"11": "Input",
|
32 |
+
"12": "Multi-Node_horizontal",
|
33 |
+
"13": "Multi-Node_vertical",
|
34 |
+
"14": "Progress_circular",
|
35 |
+
"15": "Progress_linear",
|
36 |
+
"16": "Progress_stepper",
|
37 |
+
"17": "Radio",
|
38 |
+
"18": "Sections",
|
39 |
+
"19": "Slider",
|
40 |
+
"20": "Switch",
|
41 |
+
"21": "Text-area"
|
42 |
+
},
|
43 |
+
"image_size": 224,
|
44 |
+
"initializer_range": 0.02,
|
45 |
+
"label2id": {
|
46 |
+
"Accordion": 0,
|
47 |
+
"Button": 1,
|
48 |
+
"Cards": 2,
|
49 |
+
"Checkbox": 3,
|
50 |
+
"Date-time": 4,
|
51 |
+
"Date-time picker": 5,
|
52 |
+
"Dropdown_closed": 6,
|
53 |
+
"Dropdown_open": 7,
|
54 |
+
"Footers": 8,
|
55 |
+
"Form": 9,
|
56 |
+
"Headers": 10,
|
57 |
+
"Input": 11,
|
58 |
+
"Multi-Node_horizontal": 12,
|
59 |
+
"Multi-Node_vertical": 13,
|
60 |
+
"Progress_circular": 14,
|
61 |
+
"Progress_linear": 15,
|
62 |
+
"Progress_stepper": 16,
|
63 |
+
"Radio": 17,
|
64 |
+
"Sections": 18,
|
65 |
+
"Slider": 19,
|
66 |
+
"Switch": 20,
|
67 |
+
"Text-area": 21
|
68 |
+
},
|
69 |
+
"layer_norm_eps": 1e-05,
|
70 |
+
"mlp_ratio": 4.0,
|
71 |
+
"model_type": "swin",
|
72 |
+
"num_channels": 3,
|
73 |
+
"num_heads": [
|
74 |
+
4,
|
75 |
+
8,
|
76 |
+
16,
|
77 |
+
32
|
78 |
+
],
|
79 |
+
"num_layers": 4,
|
80 |
+
"patch_size": 4,
|
81 |
+
"path_norm": true,
|
82 |
+
"problem_type": "single_label_classification",
|
83 |
+
"qkv_bias": true,
|
84 |
+
"torch_dtype": "float32",
|
85 |
+
"transformers_version": "4.25.1",
|
86 |
+
"use_absolute_embeddings": false,
|
87 |
+
"window_size": 7
|
88 |
+
}
|
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:ffbadea4b96eaec7099611769edf752b94456fdbcc3fcd79528eea28324b31cc
|
3 |
+
size 347681745
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1515eaf941a9050ce4ed9a4e2b3bca7011bdeeae93c440063413fee36d10d14b
|
3 |
+
size 3579
|