pimientoyolo commited on
Commit
57f5e2c
·
verified ·
1 Parent(s): e221538

Training in progress epoch 0

Browse files
Files changed (5) hide show
  1. .gitignore +2 -0
  2. all_results.json +18 -0
  3. config.json +63 -0
  4. model.safetensors +3 -0
  5. preprocessor_config.json +29 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
all_results.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "test_map": 0.36,
3
+ "test_map_50": 0.7458,
4
+ "test_map_75": 0.293,
5
+ "test_map_small": 0.1851,
6
+ "test_map_medium": 0.3627,
7
+ "test_map_large": 0.4267,
8
+ "test_mar_1": 0.1027,
9
+ "test_mar_10": 0.417,
10
+ "test_mar_100": 0.5238,
11
+ "test_mar_small": 0.2902,
12
+ "test_mar_medium": 0.5331,
13
+ "test_mar_large": 0.5634,
14
+ "test_map_0": 0.204,
15
+ "test_mar_100_0": 0.4279,
16
+ "test_map_1": 0.516,
17
+ "test_mar_100_1": 0.6197
18
+ }
config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/conditional-detr-resnet-50",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "relu",
5
+ "architectures": [
6
+ "ConditionalDetrForObjectDetection"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "auxiliary_loss": false,
10
+ "backbone": "resnet50",
11
+ "backbone_config": null,
12
+ "backbone_kwargs": {
13
+ "in_chans": 3,
14
+ "out_indices": [
15
+ 1,
16
+ 2,
17
+ 3,
18
+ 4
19
+ ]
20
+ },
21
+ "bbox_cost": 5,
22
+ "bbox_loss_coefficient": 5,
23
+ "class_cost": 2,
24
+ "cls_loss_coefficient": 2,
25
+ "d_model": 256,
26
+ "decoder_attention_heads": 8,
27
+ "decoder_ffn_dim": 2048,
28
+ "decoder_layerdrop": 0.0,
29
+ "decoder_layers": 6,
30
+ "dice_loss_coefficient": 1,
31
+ "dilation": false,
32
+ "dropout": 0.1,
33
+ "encoder_attention_heads": 8,
34
+ "encoder_ffn_dim": 2048,
35
+ "encoder_layerdrop": 0.0,
36
+ "encoder_layers": 6,
37
+ "focal_alpha": 0.25,
38
+ "giou_cost": 2,
39
+ "giou_loss_coefficient": 2,
40
+ "id2label": {
41
+ "0": 0,
42
+ "1": 1
43
+ },
44
+ "init_std": 0.02,
45
+ "init_xavier_std": 1.0,
46
+ "is_encoder_decoder": true,
47
+ "label2id": {
48
+ "0": 0,
49
+ "1": 1
50
+ },
51
+ "mask_loss_coefficient": 1,
52
+ "max_position_embeddings": 1024,
53
+ "model_type": "conditional_detr",
54
+ "num_channels": 3,
55
+ "num_hidden_layers": 6,
56
+ "num_queries": 300,
57
+ "position_embedding_type": "sine",
58
+ "scale_embedding": false,
59
+ "torch_dtype": "float32",
60
+ "transformers_version": "4.47.0.dev0",
61
+ "use_pretrained_backbone": true,
62
+ "use_timm_backbone": true
63
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d2a339657d33b3b7f34281e32b4317a94ad82628918eab3ec36fc214a84ac56
3
+ size 174076712
preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "ConditionalDetrImageProcessor",
14
+ "image_std": [
15
+ 0.229,
16
+ 0.224,
17
+ 0.225
18
+ ],
19
+ "pad_size": {
20
+ "height": 1000,
21
+ "width": 1000
22
+ },
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "max_height": 1000,
27
+ "max_width": 1000
28
+ }
29
+ }