Angy309 commited on
Commit
5c567aa
1 Parent(s): 5dd36c3

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/swinv2-tiny-patch4-window8-256",
3
+ "architectures": [
4
+ "Swinv2ForImageClassification"
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": "11214 Bush 3M friction with Cross axle",
21
+ "1": "18651 Cross Axle 2M with Snap friction",
22
+ "2": "2357 Brick corner 1x2x2",
23
+ "3": "3003 Brick 2x2",
24
+ "4": "3004 Brick 1x2",
25
+ "5": "3005 Brick 1x1",
26
+ "6": "3022 Plate 2x2",
27
+ "7": "3023 Plate 1x2",
28
+ "8": "3024 Plate 1x1",
29
+ "9": "3040 Roof Tile 1x2x45deg",
30
+ "10": "3069 Flat Tile 1x2",
31
+ "11": "32123 half Bush",
32
+ "12": "3673 Peg 2M",
33
+ "13": "3713 Bush for Cross Axle",
34
+ "14": "3794 Plate 1X2 with 1 Knob",
35
+ "15": "6632 Technic Lever 3M"
36
+ },
37
+ "image_size": 256,
38
+ "initializer_range": 0.02,
39
+ "label2id": {
40
+ "11214 Bush 3M friction with Cross axle": 0,
41
+ "18651 Cross Axle 2M with Snap friction": 1,
42
+ "2357 Brick corner 1x2x2": 2,
43
+ "3003 Brick 2x2": 3,
44
+ "3004 Brick 1x2": 4,
45
+ "3005 Brick 1x1": 5,
46
+ "3022 Plate 2x2": 6,
47
+ "3023 Plate 1x2": 7,
48
+ "3024 Plate 1x1": 8,
49
+ "3040 Roof Tile 1x2x45deg": 9,
50
+ "3069 Flat Tile 1x2": 10,
51
+ "32123 half Bush": 11,
52
+ "3673 Peg 2M": 12,
53
+ "3713 Bush for Cross Axle": 13,
54
+ "3794 Plate 1X2 with 1 Knob": 14,
55
+ "6632 Technic Lever 3M": 15
56
+ },
57
+ "layer_norm_eps": 1e-05,
58
+ "mlp_ratio": 4.0,
59
+ "model_type": "swinv2",
60
+ "num_channels": 3,
61
+ "num_heads": [
62
+ 3,
63
+ 6,
64
+ 12,
65
+ 24
66
+ ],
67
+ "num_layers": 4,
68
+ "out_features": [
69
+ "stage4"
70
+ ],
71
+ "out_indices": [
72
+ 4
73
+ ],
74
+ "patch_size": 4,
75
+ "path_norm": true,
76
+ "pretrained_window_sizes": [
77
+ 0,
78
+ 0,
79
+ 0,
80
+ 0
81
+ ],
82
+ "problem_type": "single_label_classification",
83
+ "qkv_bias": true,
84
+ "stage_names": [
85
+ "stem",
86
+ "stage1",
87
+ "stage2",
88
+ "stage3",
89
+ "stage4"
90
+ ],
91
+ "torch_dtype": "float32",
92
+ "transformers_version": "4.40.2",
93
+ "use_absolute_embeddings": false,
94
+ "window_size": 8
95
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be7dafdf84b344623a848785a420e10a78556f6ff4059d5948a0b7dbcda96940
3
+ size 110393216
preprocessor_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "resample",
7
+ "do_rescale",
8
+ "rescale_factor",
9
+ "do_normalize",
10
+ "image_mean",
11
+ "image_std",
12
+ "return_tensors",
13
+ "data_format",
14
+ "input_data_format"
15
+ ],
16
+ "do_normalize": true,
17
+ "do_rescale": true,
18
+ "do_resize": true,
19
+ "image_mean": [
20
+ 0.485,
21
+ 0.456,
22
+ 0.406
23
+ ],
24
+ "image_processor_type": "ViTImageProcessor",
25
+ "image_std": [
26
+ 0.229,
27
+ 0.224,
28
+ 0.225
29
+ ],
30
+ "resample": 3,
31
+ "rescale_factor": 0.00392156862745098,
32
+ "size": {
33
+ "height": 256,
34
+ "width": 256
35
+ }
36
+ }
runs/May13_20-55-46_24cc275b3536/events.out.tfevents.1715633747.24cc275b3536.549.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f49da83d106fcbda1b159022b1524d5389d679a82fa320714669732cf60c0917
3
+ size 7306
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bf33fa8c46d863410a3786127630a94677ec0cc768fb609ebc518a5f0e133b6
3
+ size 5048