priyankloco
commited on
Commit
·
8cd20bc
1
Parent(s):
6f43897
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +79 -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,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/resnet-152",
|
3 |
+
"architectures": [
|
4 |
+
"ResNetForImageClassification"
|
5 |
+
],
|
6 |
+
"depths": [
|
7 |
+
3,
|
8 |
+
8,
|
9 |
+
36,
|
10 |
+
3
|
11 |
+
],
|
12 |
+
"downsample_in_first_stage": false,
|
13 |
+
"embedding_size": 64,
|
14 |
+
"hidden_act": "relu",
|
15 |
+
"hidden_sizes": [
|
16 |
+
256,
|
17 |
+
512,
|
18 |
+
1024,
|
19 |
+
2048
|
20 |
+
],
|
21 |
+
"id2label": {
|
22 |
+
"0": "Accordion",
|
23 |
+
"1": "Black",
|
24 |
+
"2": "Button",
|
25 |
+
"3": "Cards",
|
26 |
+
"4": "Checkbox",
|
27 |
+
"5": "Date-time",
|
28 |
+
"6": "Dropdown_closed",
|
29 |
+
"7": "Form",
|
30 |
+
"8": "Input",
|
31 |
+
"9": "Multi-Node_horizontal",
|
32 |
+
"10": "Multi-Node_vertical",
|
33 |
+
"11": "Progress_circular",
|
34 |
+
"12": "Progress_linear",
|
35 |
+
"13": "Progress_stepper",
|
36 |
+
"14": "Radio",
|
37 |
+
"15": "Sections",
|
38 |
+
"16": "Slider",
|
39 |
+
"17": "Switch",
|
40 |
+
"18": "Text-area",
|
41 |
+
"19": "White"
|
42 |
+
},
|
43 |
+
"label2id": {
|
44 |
+
"Accordion": 0,
|
45 |
+
"Black": 1,
|
46 |
+
"Button": 2,
|
47 |
+
"Cards": 3,
|
48 |
+
"Checkbox": 4,
|
49 |
+
"Date-time": 5,
|
50 |
+
"Dropdown_closed": 6,
|
51 |
+
"Form": 7,
|
52 |
+
"Input": 8,
|
53 |
+
"Multi-Node_horizontal": 9,
|
54 |
+
"Multi-Node_vertical": 10,
|
55 |
+
"Progress_circular": 11,
|
56 |
+
"Progress_linear": 12,
|
57 |
+
"Progress_stepper": 13,
|
58 |
+
"Radio": 14,
|
59 |
+
"Sections": 15,
|
60 |
+
"Slider": 16,
|
61 |
+
"Switch": 17,
|
62 |
+
"Text-area": 18,
|
63 |
+
"White": 19
|
64 |
+
},
|
65 |
+
"layer_type": "bottleneck",
|
66 |
+
"model_type": "resnet",
|
67 |
+
"num_channels": 3,
|
68 |
+
"out_features": null,
|
69 |
+
"problem_type": "single_label_classification",
|
70 |
+
"stage_names": [
|
71 |
+
"stem",
|
72 |
+
"stage1",
|
73 |
+
"stage2",
|
74 |
+
"stage3",
|
75 |
+
"stage4"
|
76 |
+
],
|
77 |
+
"torch_dtype": "float32",
|
78 |
+
"transformers_version": "4.25.1"
|
79 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_pct": 0.875,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"feature_extractor_type": "ConvNextFeatureExtractor",
|
7 |
+
"image_mean": [
|
8 |
+
0.485,
|
9 |
+
0.456,
|
10 |
+
0.406
|
11 |
+
],
|
12 |
+
"image_processor_type": "ConvNextImageProcessor",
|
13 |
+
"image_std": [
|
14 |
+
0.229,
|
15 |
+
0.224,
|
16 |
+
0.225
|
17 |
+
],
|
18 |
+
"resample": 3,
|
19 |
+
"rescale_factor": 0.00392156862745098,
|
20 |
+
"size": {
|
21 |
+
"shortest_edge": 224
|
22 |
+
}
|
23 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6ead59766b112bfef6a74befd1986f3022e3f79d75c121559ba5e5007319a0b6
|
3 |
+
size 233678685
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e49336979285d4b7525d6b69b2bf67daead22bdc696628885a942d1a08ae7845
|
3 |
+
size 3579
|