Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +91 -0
- preprocessor_config.json +29 -0
- pytorch_model.bin +3 -0
- runs/Jun12_17-57-59_20067839244e/1686592690.6477702/events.out.tfevents.1686592690.20067839244e.5803.1 +3 -0
- runs/Jun12_17-57-59_20067839244e/events.out.tfevents.1686592690.20067839244e.5803.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/efficientnet-b3",
|
3 |
+
"architectures": [
|
4 |
+
"EfficientNetForImageClassification"
|
5 |
+
],
|
6 |
+
"batch_norm_eps": 0.001,
|
7 |
+
"batch_norm_momentum": 0.99,
|
8 |
+
"depth_coefficient": 1.4,
|
9 |
+
"depth_divisor": 8,
|
10 |
+
"depthwise_padding": [
|
11 |
+
5,
|
12 |
+
18
|
13 |
+
],
|
14 |
+
"drop_connect_rate": 0.2,
|
15 |
+
"dropout_rate": 0.3,
|
16 |
+
"expand_ratios": [
|
17 |
+
1,
|
18 |
+
6,
|
19 |
+
6,
|
20 |
+
6,
|
21 |
+
6,
|
22 |
+
6,
|
23 |
+
6
|
24 |
+
],
|
25 |
+
"hidden_act": "swish",
|
26 |
+
"hidden_dim": 1536,
|
27 |
+
"id2label": {
|
28 |
+
"0": "seat_belt",
|
29 |
+
"1": "no_seat_belt"
|
30 |
+
},
|
31 |
+
"image_size": 300,
|
32 |
+
"in_channels": [
|
33 |
+
32,
|
34 |
+
16,
|
35 |
+
24,
|
36 |
+
40,
|
37 |
+
80,
|
38 |
+
112,
|
39 |
+
192
|
40 |
+
],
|
41 |
+
"initializer_range": 0.02,
|
42 |
+
"kernel_sizes": [
|
43 |
+
3,
|
44 |
+
3,
|
45 |
+
5,
|
46 |
+
3,
|
47 |
+
5,
|
48 |
+
5,
|
49 |
+
3
|
50 |
+
],
|
51 |
+
"label2id": {
|
52 |
+
"no_seat_belt": 1,
|
53 |
+
"seat_belt": 0
|
54 |
+
},
|
55 |
+
"model_type": "efficientnet",
|
56 |
+
"num_block_repeats": [
|
57 |
+
1,
|
58 |
+
2,
|
59 |
+
2,
|
60 |
+
3,
|
61 |
+
3,
|
62 |
+
4,
|
63 |
+
1
|
64 |
+
],
|
65 |
+
"num_channels": 3,
|
66 |
+
"num_hidden_layers": 64,
|
67 |
+
"out_channels": [
|
68 |
+
16,
|
69 |
+
24,
|
70 |
+
40,
|
71 |
+
80,
|
72 |
+
112,
|
73 |
+
192,
|
74 |
+
320
|
75 |
+
],
|
76 |
+
"pooling_type": "mean",
|
77 |
+
"problem_type": "single_label_classification",
|
78 |
+
"squeeze_expansion_ratio": 0.25,
|
79 |
+
"strides": [
|
80 |
+
1,
|
81 |
+
2,
|
82 |
+
2,
|
83 |
+
2,
|
84 |
+
1,
|
85 |
+
2,
|
86 |
+
1
|
87 |
+
],
|
88 |
+
"torch_dtype": "float32",
|
89 |
+
"transformers_version": "4.27.3",
|
90 |
+
"width_coefficient": 1.2
|
91 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 289,
|
4 |
+
"width": 289
|
5 |
+
},
|
6 |
+
"do_center_crop": false,
|
7 |
+
"do_normalize": true,
|
8 |
+
"do_rescale": true,
|
9 |
+
"do_resize": true,
|
10 |
+
"image_mean": [
|
11 |
+
0.485,
|
12 |
+
0.456,
|
13 |
+
0.406
|
14 |
+
],
|
15 |
+
"image_processor_type": "EfficientNetImageProcessor",
|
16 |
+
"image_std": [
|
17 |
+
0.47853944,
|
18 |
+
0.4732864,
|
19 |
+
0.47434163
|
20 |
+
],
|
21 |
+
"include_top": true,
|
22 |
+
"resample": 0,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"rescale_offset": false,
|
25 |
+
"size": {
|
26 |
+
"height": 300,
|
27 |
+
"width": 300
|
28 |
+
}
|
29 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59dda2656c09bfd58900ce4e4fd626e10d04984123bee739e5b5137b7ed6a2fb
|
3 |
+
size 43348037
|
runs/Jun12_17-57-59_20067839244e/1686592690.6477702/events.out.tfevents.1686592690.20067839244e.5803.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9299cfccf98111b1f344906aafc088abcc70de55b4e26de3be4faf9cbf03b976
|
3 |
+
size 5858
|
runs/Jun12_17-57-59_20067839244e/events.out.tfevents.1686592690.20067839244e.5803.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:17496ffcc9c9c5ad3f991a8b7db1feaed26dd3fdb981484e52d241d4886d1206
|
3 |
+
size 5076
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3c3642816dc3fcda369d1051039ea494bd9e0a435f322fff3a971f5cb5fd944
|
3 |
+
size 3643
|