cems-official commited on
Commit
e53df61
·
verified ·
1 Parent(s): 2246f9b

Training in progress, epoch 1

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