TomasFAV commited on
Commit
f71a977
·
verified ·
1 Parent(s): d7ca235

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "relu",
4
+ "architectures": [
5
+ "DetrForObjectDetection"
6
+ ],
7
+ "attention_dropout": 0.0,
8
+ "auxiliary_loss": false,
9
+ "backbone": null,
10
+ "backbone_config": {
11
+ "depths": [
12
+ 3,
13
+ 4,
14
+ 6,
15
+ 3
16
+ ],
17
+ "downsample_in_bottleneck": false,
18
+ "downsample_in_first_stage": false,
19
+ "dtype": "float32",
20
+ "embedding_size": 64,
21
+ "hidden_act": "relu",
22
+ "hidden_sizes": [
23
+ 256,
24
+ 512,
25
+ 1024,
26
+ 2048
27
+ ],
28
+ "layer_type": "bottleneck",
29
+ "model_type": "resnet",
30
+ "num_channels": 3,
31
+ "out_features": [
32
+ "stage4"
33
+ ],
34
+ "out_indices": [
35
+ 4
36
+ ],
37
+ "stage_names": [
38
+ "stem",
39
+ "stage1",
40
+ "stage2",
41
+ "stage3",
42
+ "stage4"
43
+ ]
44
+ },
45
+ "backbone_kwargs": null,
46
+ "bbox_cost": 5,
47
+ "bbox_loss_coefficient": 5,
48
+ "class_cost": 1,
49
+ "d_model": 256,
50
+ "decoder_attention_heads": 8,
51
+ "decoder_ffn_dim": 2048,
52
+ "decoder_layerdrop": 0.0,
53
+ "decoder_layers": 6,
54
+ "dice_loss_coefficient": 1,
55
+ "dilation": null,
56
+ "dropout": 0.1,
57
+ "dtype": "float32",
58
+ "encoder_attention_heads": 8,
59
+ "encoder_ffn_dim": 2048,
60
+ "encoder_layerdrop": 0.0,
61
+ "encoder_layers": 6,
62
+ "eos_coefficient": 0.1,
63
+ "giou_cost": 2,
64
+ "giou_loss_coefficient": 2,
65
+ "id2label": {
66
+ "0": "LABEL_0",
67
+ "1": "LABEL_1",
68
+ "2": "LABEL_2",
69
+ "3": "LABEL_3",
70
+ "4": "LABEL_4",
71
+ "5": "LABEL_5",
72
+ "6": "LABEL_6",
73
+ "7": "LABEL_7",
74
+ "8": "LABEL_8",
75
+ "9": "LABEL_9",
76
+ "10": "LABEL_10",
77
+ "11": "LABEL_11",
78
+ "12": "LABEL_12",
79
+ "13": "LABEL_13",
80
+ "14": "LABEL_14",
81
+ "15": "LABEL_15",
82
+ "16": "LABEL_16",
83
+ "17": "LABEL_17",
84
+ "18": "LABEL_18"
85
+ },
86
+ "init_std": 0.02,
87
+ "init_xavier_std": 1.0,
88
+ "is_encoder_decoder": true,
89
+ "label2id": {
90
+ "LABEL_0": 0,
91
+ "LABEL_1": 1,
92
+ "LABEL_10": 10,
93
+ "LABEL_11": 11,
94
+ "LABEL_12": 12,
95
+ "LABEL_13": 13,
96
+ "LABEL_14": 14,
97
+ "LABEL_15": 15,
98
+ "LABEL_16": 16,
99
+ "LABEL_17": 17,
100
+ "LABEL_18": 18,
101
+ "LABEL_2": 2,
102
+ "LABEL_3": 3,
103
+ "LABEL_4": 4,
104
+ "LABEL_5": 5,
105
+ "LABEL_6": 6,
106
+ "LABEL_7": 7,
107
+ "LABEL_8": 8,
108
+ "LABEL_9": 9
109
+ },
110
+ "mask_loss_coefficient": 1,
111
+ "model_type": "detr",
112
+ "num_channels": 3,
113
+ "num_hidden_layers": 6,
114
+ "num_queries": 100,
115
+ "position_embedding_type": "sine",
116
+ "scale_embedding": false,
117
+ "transformers_version": "4.57.6",
118
+ "use_pretrained_backbone": null,
119
+ "use_timm_backbone": false
120
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76ee9825855fb355b1ef927feed343078845bf5e369e3ef13d09b82a73ddd05e
3
+ size 166522232
preprocessor_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_annotations": true,
3
+ "do_normalize": true,
4
+ "do_pad": true,
5
+ "do_rescale": true,
6
+ "do_resize": true,
7
+ "format": "coco_detection",
8
+ "image_mean": [
9
+ 0.485,
10
+ 0.456,
11
+ 0.406
12
+ ],
13
+ "image_processor_type": "DetrImageProcessor",
14
+ "image_std": [
15
+ 0.229,
16
+ 0.224,
17
+ 0.225
18
+ ],
19
+ "pad_size": null,
20
+ "resample": 2,
21
+ "rescale_factor": 0.00392156862745098,
22
+ "size": {
23
+ "longest_edge": 1333,
24
+ "shortest_edge": 800
25
+ }
26
+ }
runs/Jan28_22-01-23_80b560aaeb1b/events.out.tfevents.1769637686.80b560aaeb1b.1030.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:844b9349e727d1f8277138b35a9106f50b6d653e69d955f4f4a034750faedcf1
3
+ size 7129
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:305e06c2fcfdc1d9044dc8973dc690550f17096b03f36c979c1ba8e0e33548f3
3
+ size 5841