machinelearningzuu commited on
Commit
ff5f577
1 Parent(s): 76ffa19

Training in progress, step 1000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_commit_hash": "480370a8aeeed9fc8d78837b4e94e5f936fe73f2",
3
+ "_name_or_path": "facebook/detr-resnet-50",
4
+ "activation_dropout": 0.0,
5
+ "activation_function": "relu",
6
+ "architectures": [
7
+ "DetrForObjectDetection"
8
+ ],
9
+ "attention_dropout": 0.0,
10
+ "auxiliary_loss": false,
11
+ "backbone": "resnet50",
12
+ "backbone_config": null,
13
+ "bbox_cost": 5,
14
+ "bbox_loss_coefficient": 5,
15
+ "class_cost": 1,
16
+ "classifier_dropout": 0.0,
17
+ "d_model": 256,
18
+ "decoder_attention_heads": 8,
19
+ "decoder_ffn_dim": 2048,
20
+ "decoder_layerdrop": 0.0,
21
+ "decoder_layers": 6,
22
+ "dice_loss_coefficient": 1,
23
+ "dilation": false,
24
+ "dropout": 0.1,
25
+ "encoder_attention_heads": 8,
26
+ "encoder_ffn_dim": 2048,
27
+ "encoder_layerdrop": 0.0,
28
+ "encoder_layers": 6,
29
+ "eos_coefficient": 0.1,
30
+ "giou_cost": 2,
31
+ "giou_loss_coefficient": 2,
32
+ "id2label": {
33
+ "0": "person",
34
+ "1": "bicycle",
35
+ "2": "car",
36
+ "3": "motorcycle",
37
+ "4": "airplane",
38
+ "5": "bus",
39
+ "6": "train",
40
+ "7": "truck",
41
+ "8": "boat",
42
+ "9": "traffic light",
43
+ "10": "fire hydrant",
44
+ "11": "stop sign",
45
+ "12": "parking meter",
46
+ "13": "bench",
47
+ "14": "bird",
48
+ "15": "cat",
49
+ "16": "dog",
50
+ "17": "horse",
51
+ "18": "sheep",
52
+ "19": "cow",
53
+ "20": "elephant",
54
+ "21": "bear",
55
+ "22": "zebra",
56
+ "23": "giraffe",
57
+ "24": "backpack",
58
+ "25": "umbrella",
59
+ "26": "handbag",
60
+ "27": "tie",
61
+ "28": "suitcase",
62
+ "29": "frisbee",
63
+ "30": "skis",
64
+ "31": "snowboard",
65
+ "32": "sports ball",
66
+ "33": "kite",
67
+ "34": "baseball bat",
68
+ "35": "baseball glove",
69
+ "36": "skateboard",
70
+ "37": "surfboard",
71
+ "38": "tennis racket",
72
+ "39": "bottle",
73
+ "40": "wine glass",
74
+ "41": "cup",
75
+ "42": "fork",
76
+ "43": "knife",
77
+ "44": "spoon",
78
+ "45": "bowl",
79
+ "46": "banana",
80
+ "47": "apple",
81
+ "48": "sandwich",
82
+ "49": "orange",
83
+ "50": "broccoli",
84
+ "51": "carrot",
85
+ "52": "hot dog",
86
+ "53": "pizza",
87
+ "54": "donut",
88
+ "55": "cake",
89
+ "56": "chair",
90
+ "57": "couch",
91
+ "58": "potted plant",
92
+ "59": "bed",
93
+ "60": "dining table",
94
+ "61": "toilet",
95
+ "62": "tv",
96
+ "63": "laptop",
97
+ "64": "mouse",
98
+ "65": "remote",
99
+ "66": "keyboard",
100
+ "67": "cell phone",
101
+ "68": "microwave",
102
+ "69": "oven",
103
+ "70": "toaster",
104
+ "71": "sink",
105
+ "72": "refrigerator",
106
+ "73": "book",
107
+ "74": "clock",
108
+ "75": "vase",
109
+ "76": "scissors",
110
+ "77": "teddy bear",
111
+ "78": "hair drier",
112
+ "79": "toothbrush"
113
+ },
114
+ "init_std": 0.02,
115
+ "init_xavier_std": 1.0,
116
+ "is_encoder_decoder": true,
117
+ "label2id": {
118
+ "0": 0,
119
+ "1": 1,
120
+ "2": 2,
121
+ "3": 3,
122
+ "4": 4,
123
+ "5": 5,
124
+ "6": 6,
125
+ "7": 7,
126
+ "8": 8,
127
+ "9": 9,
128
+ "10": 10,
129
+ "11": 11,
130
+ "12": 12,
131
+ "13": 13,
132
+ "14": 14,
133
+ "15": 15,
134
+ "16": 16,
135
+ "17": 17,
136
+ "18": 18,
137
+ "19": 19,
138
+ "20": 20,
139
+ "21": 21,
140
+ "22": 22,
141
+ "23": 23,
142
+ "24": 24,
143
+ "25": 25,
144
+ "26": 26,
145
+ "27": 27,
146
+ "28": 28,
147
+ "29": 29,
148
+ "30": 30,
149
+ "31": 31,
150
+ "32": 32,
151
+ "33": 33,
152
+ "34": 34,
153
+ "35": 35,
154
+ "36": 36,
155
+ "37": 37,
156
+ "38": 38,
157
+ "39": 39,
158
+ "40": 40,
159
+ "41": 41,
160
+ "42": 42,
161
+ "43": 43,
162
+ "44": 44,
163
+ "45": 45,
164
+ "46": 46,
165
+ "47": 47,
166
+ "48": 48,
167
+ "49": 49,
168
+ "50": 50,
169
+ "51": 51,
170
+ "52": 52,
171
+ "53": 53,
172
+ "54": 54,
173
+ "55": 55,
174
+ "56": 56,
175
+ "57": 57,
176
+ "58": 58,
177
+ "59": 59,
178
+ "60": 60,
179
+ "61": 61,
180
+ "62": 62,
181
+ "63": 63,
182
+ "64": 64,
183
+ "65": 65,
184
+ "66": 66,
185
+ "67": 67,
186
+ "68": 68,
187
+ "69": 69,
188
+ "70": 70,
189
+ "71": 71,
190
+ "72": 72,
191
+ "73": 73,
192
+ "74": 74,
193
+ "75": 75,
194
+ "76": 76,
195
+ "77": 77,
196
+ "78": 78,
197
+ "79": 79
198
+ },
199
+ "mask_loss_coefficient": 1,
200
+ "max_position_embeddings": 1024,
201
+ "model_type": "detr",
202
+ "num_channels": 3,
203
+ "num_hidden_layers": 6,
204
+ "num_queries": 100,
205
+ "position_embedding_type": "sine",
206
+ "scale_embedding": false,
207
+ "torch_dtype": "float32",
208
+ "transformers_version": "4.7.0.dev0",
209
+ "use_pretrained_backbone": true,
210
+ "use_timm_backbone": true
211
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_pad": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "format": "coco_detection",
7
+ "image_mean": [
8
+ 0.485,
9
+ 0.456,
10
+ 0.406
11
+ ],
12
+ "image_processor_type": "DetrImageProcessor",
13
+ "image_std": [
14
+ 0.229,
15
+ 0.224,
16
+ 0.225
17
+ ],
18
+ "resample": 2,
19
+ "rescale_factor": 0.00392156862745098,
20
+ "size": {
21
+ "longest_edge": 1333,
22
+ "shortest_edge": 800
23
+ }
24
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34933bef37cbb5542e1dd4c8487a196ce0d4fa5cec8307aa25d9d9598d7f192c
3
+ size 166697317
runs/Aug18_12-28-54_LAPTOP-5QD1OBBG/events.out.tfevents.1692341942.LAPTOP-5QD1OBBG.20260.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f50dbae4a19d703a0cde3878f5245b309578666e0bc474931b84a90acafe54b
3
+ size 7426
runs/Aug18_12-45-51_LAPTOP-5QD1OBBG/events.out.tfevents.1692342955.LAPTOP-5QD1OBBG.34284.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2aac82b0e3069739375e491f70a64b9ac7938be9555f758fe3949511fe5388c
3
+ size 10560
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfae2424493d46ab11180cabad9088e1d9c5b58e03f91c9d70bf13fdd4bf79ea
3
+ size 4027