davabbb commited on
Commit
2b07429
1 Parent(s): 3b55f92

Training in progress, step 200

Browse files
config.json CHANGED
@@ -1,57 +1,69 @@
1
- {
2
- "_name_or_path": "facebook/detr-resnet-50",
3
- "activation_dropout": 0.0,
4
- "activation_function": "relu",
5
- "architectures": [
6
- "DetrForObjectDetection"
7
- ],
8
- "attention_dropout": 0.0,
9
- "auxiliary_loss": false,
10
- "backbone": "resnet50",
11
- "backbone_config": null,
12
- "backbone_kwargs": 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": 0,
34
- "1": 1,
35
- "2": 2
36
- },
37
- "init_std": 0.02,
38
- "init_xavier_std": 1.0,
39
- "is_encoder_decoder": true,
40
- "label2id": {
41
- "0": 0,
42
- "1": 1,
43
- "2": 2
44
- },
45
- "mask_loss_coefficient": 1,
46
- "max_position_embeddings": 1024,
47
- "model_type": "detr",
48
- "num_channels": 3,
49
- "num_hidden_layers": 6,
50
- "num_queries": 100,
51
- "position_embedding_type": "sine",
52
- "scale_embedding": false,
53
- "torch_dtype": "float32",
54
- "transformers_version": "4.40.0.dev0",
55
- "use_pretrained_backbone": true,
56
- "use_timm_backbone": true
57
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/detr-resnet-50",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "relu",
5
+ "architectures": [
6
+ "DetrForObjectDetection"
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": 1,
24
+ "classifier_dropout": 0.0,
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
+ "eos_coefficient": 0.1,
38
+ "giou_cost": 2,
39
+ "giou_loss_coefficient": 2,
40
+ "id2label": {
41
+ "0": 0,
42
+ "1": 1,
43
+ "2": 2,
44
+ "3": 3,
45
+ "4": 4
46
+ },
47
+ "init_std": 0.02,
48
+ "init_xavier_std": 1.0,
49
+ "is_encoder_decoder": true,
50
+ "label2id": {
51
+ "0": 0,
52
+ "1": 1,
53
+ "2": 2,
54
+ "3": 3,
55
+ "4": 4
56
+ },
57
+ "mask_loss_coefficient": 1,
58
+ "max_position_embeddings": 1024,
59
+ "model_type": "detr",
60
+ "num_channels": 3,
61
+ "num_hidden_layers": 6,
62
+ "num_queries": 100,
63
+ "position_embedding_type": "sine",
64
+ "scale_embedding": false,
65
+ "torch_dtype": "float32",
66
+ "transformers_version": "4.41.0.dev0",
67
+ "use_pretrained_backbone": true,
68
+ "use_timm_backbone": true
69
+ }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:92dfb296d33383d95cd4408e1a0ed4d09b3e9ccc7a8e9a3706ea620cd4f4a74b
3
- size 166496880
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87b945943f92c7724eb86d8c92f62a46e2926263ab708da486433460586c3819
3
+ size 166498936
preprocessor_config.json CHANGED
@@ -1,45 +1,45 @@
1
- {
2
- "_valid_processor_keys": [
3
- "images",
4
- "annotations",
5
- "return_segmentation_masks",
6
- "masks_path",
7
- "do_resize",
8
- "size",
9
- "resample",
10
- "do_rescale",
11
- "rescale_factor",
12
- "do_normalize",
13
- "do_convert_annotations",
14
- "image_mean",
15
- "image_std",
16
- "do_pad",
17
- "format",
18
- "return_tensors",
19
- "data_format",
20
- "input_data_format"
21
- ],
22
- "do_convert_annotations": true,
23
- "do_normalize": true,
24
- "do_pad": true,
25
- "do_rescale": true,
26
- "do_resize": true,
27
- "format": "coco_detection",
28
- "image_mean": [
29
- 0.485,
30
- 0.456,
31
- 0.406
32
- ],
33
- "image_processor_type": "DetrImageProcessor",
34
- "image_std": [
35
- 0.229,
36
- 0.224,
37
- 0.225
38
- ],
39
- "resample": 2,
40
- "rescale_factor": 0.00392156862745098,
41
- "size": {
42
- "longest_edge": 1333,
43
- "shortest_edge": 800
44
- }
45
- }
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "annotations",
5
+ "return_segmentation_masks",
6
+ "masks_path",
7
+ "do_resize",
8
+ "size",
9
+ "resample",
10
+ "do_rescale",
11
+ "rescale_factor",
12
+ "do_normalize",
13
+ "do_convert_annotations",
14
+ "image_mean",
15
+ "image_std",
16
+ "do_pad",
17
+ "format",
18
+ "return_tensors",
19
+ "data_format",
20
+ "input_data_format"
21
+ ],
22
+ "do_convert_annotations": true,
23
+ "do_normalize": true,
24
+ "do_pad": true,
25
+ "do_rescale": true,
26
+ "do_resize": true,
27
+ "format": "coco_detection",
28
+ "image_mean": [
29
+ 0.485,
30
+ 0.456,
31
+ 0.406
32
+ ],
33
+ "image_processor_type": "DetrImageProcessor",
34
+ "image_std": [
35
+ 0.229,
36
+ 0.224,
37
+ 0.225
38
+ ],
39
+ "resample": 2,
40
+ "rescale_factor": 0.00392156862745098,
41
+ "size": {
42
+ "longest_edge": 1333,
43
+ "shortest_edge": 800
44
+ }
45
+ }
runs/Apr09_22-02-13_DESKTOP-3A7SKVD/events.out.tfevents.1712682134.DESKTOP-3A7SKVD.14396.1 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:97fb390daebb40cb2f421d2efc9d823380d238f189691759d65b6259f2cb9e76
3
- size 12801
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d68b8fe8666c6cbbd9441cba91b5c9a406e0afca370de9036acc3aa1fe08b369
3
+ size 13366
runs/May03_00-33-24_DESKTOP-3A7SKVD/events.out.tfevents.1714678406.DESKTOP-3A7SKVD.3016.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b134503b4c075cb9edddaa1758fb94e751768fe6be5ff5cb7607324080d46b8
3
+ size 6317
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:82ba9cec0500e7a25c59bbd5346c5214ee75607e9994319f729dfdb6d03109ad
3
- size 4984
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8684b23e7d86a9013d348c1f88e0ea0a2865f3ace171dfe3f3ff4145b826b45a
3
+ size 5112