qubvel-hf HF staff commited on
Commit
5783011
1 Parent(s): 68e84b8

Training in progress, epoch 1

Browse files
Files changed (4) hide show
  1. config.json +101 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +45 -0
  4. training_args.bin +3 -0
config.json ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "sbchoi/rtdetr_r50vd_coco_o365",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "silu",
5
+ "anchor_image_size": [
6
+ 640,
7
+ 640
8
+ ],
9
+ "architectures": [
10
+ "RTDetrForObjectDetection"
11
+ ],
12
+ "attention_dropout": 0.0,
13
+ "auxiliary_loss": true,
14
+ "backbone": "resnet50d",
15
+ "backbone_config": null,
16
+ "backbone_kwargs": {
17
+ "features_only": true,
18
+ "out_indices": [
19
+ 2,
20
+ 3,
21
+ 4
22
+ ]
23
+ },
24
+ "batch_norm_eps": 1e-05,
25
+ "box_noise_scale": 1.0,
26
+ "d_model": 256,
27
+ "decoder_activation_function": "relu",
28
+ "decoder_attention_heads": 8,
29
+ "decoder_ffn_dim": 1024,
30
+ "decoder_in_channels": [
31
+ 256,
32
+ 256,
33
+ 256
34
+ ],
35
+ "decoder_layers": 6,
36
+ "decoder_n_points": 4,
37
+ "disable_custom_kernels": true,
38
+ "dropout": 0.0,
39
+ "encode_proj_layers": [
40
+ 2
41
+ ],
42
+ "encoder_activation_function": "gelu",
43
+ "encoder_attention_heads": 8,
44
+ "encoder_ffn_dim": 1024,
45
+ "encoder_hidden_dim": 256,
46
+ "encoder_in_channels": [
47
+ 512,
48
+ 1024,
49
+ 2048
50
+ ],
51
+ "encoder_layers": 1,
52
+ "eos_coefficient": 0.0001,
53
+ "eval_size": null,
54
+ "feat_strides": [
55
+ 8,
56
+ 16,
57
+ 32
58
+ ],
59
+ "focal_loss_alpha": 0.75,
60
+ "focal_loss_gamma": 2.0,
61
+ "hidden_expansion": 1.0,
62
+ "id2label": {
63
+ "0": "Coverall",
64
+ "1": "Face_Shield",
65
+ "2": "Gloves",
66
+ "3": "Goggles",
67
+ "4": "Mask"
68
+ },
69
+ "initializer_range": 0.01,
70
+ "is_encoder_decoder": true,
71
+ "label2id": {
72
+ "Coverall": 0,
73
+ "Face_Shield": 1,
74
+ "Gloves": 2,
75
+ "Goggles": 3,
76
+ "Mask": 4
77
+ },
78
+ "label_noise_ratio": 0.5,
79
+ "layer_norm_eps": 1e-05,
80
+ "learn_initial_query": false,
81
+ "matcher_alpha": 0.25,
82
+ "matcher_bbox_cost": 5.0,
83
+ "matcher_class_cost": 2.0,
84
+ "matcher_gamma": 2.0,
85
+ "matcher_giou_cost": 2.0,
86
+ "model_type": "rt_detr",
87
+ "normalize_before": false,
88
+ "num_denoising": 100,
89
+ "num_feature_levels": 3,
90
+ "num_queries": 300,
91
+ "positional_encoding_temperature": 10000,
92
+ "torch_dtype": "float32",
93
+ "transformers_version": "4.42.0.dev0",
94
+ "use_focal_loss": true,
95
+ "use_pretrained_backbone": true,
96
+ "use_timm_backbone": true,
97
+ "weight_loss_bbox": 5.0,
98
+ "weight_loss_giou": 2.0,
99
+ "weight_loss_vfl": 1.0,
100
+ "with_box_refine": true
101
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7830cfb620b6946414794232927f6205ae0e6ef097e1430fe2c854060335cd76
3
+ size 171552884
preprocessor_config.json ADDED
@@ -0,0 +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": false,
24
+ "do_pad": false,
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": "RTDetrImageProcessor",
34
+ "image_std": [
35
+ 0.229,
36
+ 0.224,
37
+ 0.225
38
+ ],
39
+ "resample": 2,
40
+ "rescale_factor": 0.00392156862745098,
41
+ "size": {
42
+ "height": 640,
43
+ "width": 640
44
+ }
45
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05d2d9d1722da01089ac23e156be106e8c6defb22a144f3b0cf71f7a90408ec0
3
+ size 5176