danelcsb commited on
Commit
ad98054
·
verified ·
1 Parent(s): ff8089a

Training in progress epoch 0

Browse files
Files changed (4) hide show
  1. .gitignore +2 -0
  2. config.json +68 -0
  3. model.safetensors +3 -0
  4. preprocessor_config.json +38 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ step_*
2
+ epoch_*
config.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "relu",
4
+ "architectures": [
5
+ "DetrForObjectDetection"
6
+ ],
7
+ "attention_dropout": 0.0,
8
+ "auxiliary_loss": false,
9
+ "backbone": "resnet50",
10
+ "backbone_config": null,
11
+ "backbone_kwargs": {
12
+ "in_chans": 3,
13
+ "out_indices": [
14
+ 1,
15
+ 2,
16
+ 3,
17
+ 4
18
+ ]
19
+ },
20
+ "bbox_cost": 5,
21
+ "bbox_loss_coefficient": 5,
22
+ "class_cost": 1,
23
+ "classifier_dropout": 0.0,
24
+ "d_model": 256,
25
+ "decoder_attention_heads": 8,
26
+ "decoder_ffn_dim": 2048,
27
+ "decoder_layerdrop": 0.0,
28
+ "decoder_layers": 6,
29
+ "dice_loss_coefficient": 1,
30
+ "dilation": false,
31
+ "dropout": 0.1,
32
+ "encoder_attention_heads": 8,
33
+ "encoder_ffn_dim": 2048,
34
+ "encoder_layerdrop": 0.0,
35
+ "encoder_layers": 6,
36
+ "eos_coefficient": 0.1,
37
+ "giou_cost": 2,
38
+ "giou_loss_coefficient": 2,
39
+ "id2label": {
40
+ "0": "Coverall",
41
+ "1": "Face_Shield",
42
+ "2": "Gloves",
43
+ "3": "Goggles",
44
+ "4": "Mask"
45
+ },
46
+ "init_std": 0.02,
47
+ "init_xavier_std": 1.0,
48
+ "is_encoder_decoder": true,
49
+ "label2id": {
50
+ "Coverall": 0,
51
+ "Face_Shield": 1,
52
+ "Gloves": 2,
53
+ "Goggles": 3,
54
+ "Mask": 4
55
+ },
56
+ "mask_loss_coefficient": 1,
57
+ "max_position_embeddings": 1024,
58
+ "model_type": "detr",
59
+ "num_channels": 3,
60
+ "num_hidden_layers": 6,
61
+ "num_queries": 100,
62
+ "position_embedding_type": "sine",
63
+ "scale_embedding": false,
64
+ "torch_dtype": "float32",
65
+ "transformers_version": "4.52.0.dev0",
66
+ "use_pretrained_backbone": true,
67
+ "use_timm_backbone": true
68
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bb55ccb1224921501255c99cab8f05faf188127676fcee3b1a3f3009a6a96b3
3
+ size 166498936
preprocessor_config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": false,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_annotations": true,
8
+ "do_convert_rgb": null,
9
+ "do_normalize": true,
10
+ "do_pad": true,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "format": "coco_detection",
14
+ "image_mean": [
15
+ 0.485,
16
+ 0.456,
17
+ 0.406
18
+ ],
19
+ "image_processor_type": "DetrImageProcessorFast",
20
+ "image_std": [
21
+ 0.229,
22
+ 0.224,
23
+ 0.225
24
+ ],
25
+ "input_data_format": null,
26
+ "pad_size": {
27
+ "height": 600,
28
+ "width": 600
29
+ },
30
+ "resample": 2,
31
+ "rescale_factor": 0.00392156862745098,
32
+ "return_segmentation_masks": null,
33
+ "return_tensors": null,
34
+ "size": {
35
+ "max_height": 600,
36
+ "max_width": 600
37
+ }
38
+ }