akshaykumar46 commited on
Commit
3d17cd0
·
verified ·
1 Parent(s): 4e0fea4

Training in progress, step 10

Browse files
Files changed (4) hide show
  1. config.json +106 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +26 -0
  4. training_args.bin +3 -0
config.json ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/detr-resnet-50-dc5",
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
+ "output_stride": 16
21
+ },
22
+ "bbox_cost": 5,
23
+ "bbox_loss_coefficient": 5,
24
+ "class_cost": 1,
25
+ "classifier_dropout": 0.0,
26
+ "d_model": 256,
27
+ "decoder_attention_heads": 8,
28
+ "decoder_ffn_dim": 2048,
29
+ "decoder_layerdrop": 0.0,
30
+ "decoder_layers": 6,
31
+ "dice_loss_coefficient": 1,
32
+ "dilation": true,
33
+ "dropout": 0.1,
34
+ "encoder_attention_heads": 8,
35
+ "encoder_ffn_dim": 2048,
36
+ "encoder_layerdrop": 0.0,
37
+ "encoder_layers": 6,
38
+ "eos_coefficient": 0.1,
39
+ "giou_cost": 2,
40
+ "giou_loss_coefficient": 2,
41
+ "id2label": {
42
+ "0": "B",
43
+ "1": "BA",
44
+ "2": "EO",
45
+ "3": "Er",
46
+ "4": "LAM3",
47
+ "5": "LF",
48
+ "6": "LGL",
49
+ "7": "LH_lyAct",
50
+ "8": "LLC",
51
+ "9": "LM",
52
+ "10": "LY",
53
+ "11": "LZMG",
54
+ "12": "LyB",
55
+ "13": "Lysee",
56
+ "14": "M",
57
+ "15": "MBL",
58
+ "16": "MM",
59
+ "17": "MO",
60
+ "18": "MoB",
61
+ "19": "PM",
62
+ "20": "PNN",
63
+ "21": "SS",
64
+ "22": "Thromb"
65
+ },
66
+ "init_std": 0.02,
67
+ "init_xavier_std": 1.0,
68
+ "is_encoder_decoder": true,
69
+ "label2id": {
70
+ "B": 0,
71
+ "BA": 1,
72
+ "EO": 2,
73
+ "Er": 3,
74
+ "LAM3": 4,
75
+ "LF": 5,
76
+ "LGL": 6,
77
+ "LH_lyAct": 7,
78
+ "LLC": 8,
79
+ "LM": 9,
80
+ "LY": 10,
81
+ "LZMG": 11,
82
+ "LyB": 12,
83
+ "Lysee": 13,
84
+ "M": 14,
85
+ "MBL": 15,
86
+ "MM": 16,
87
+ "MO": 17,
88
+ "MoB": 18,
89
+ "PM": 19,
90
+ "PNN": 20,
91
+ "SS": 21,
92
+ "Thromb": 22
93
+ },
94
+ "mask_loss_coefficient": 1,
95
+ "max_position_embeddings": 1024,
96
+ "model_type": "detr",
97
+ "num_channels": 3,
98
+ "num_hidden_layers": 6,
99
+ "num_queries": 100,
100
+ "position_embedding_type": "sine",
101
+ "scale_embedding": false,
102
+ "torch_dtype": "float32",
103
+ "transformers_version": "4.46.3",
104
+ "use_pretrained_backbone": true,
105
+ "use_timm_backbone": true
106
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb62d1c7e0bf7a0f9f16d81042d9f85a47e6fd8c57d95de02a3d0c7252639248
3
+ size 166517448
preprocessor_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "DetrImageProcessor",
14
+ "image_std": [
15
+ 0.229,
16
+ 0.224,
17
+ 0.225
18
+ ],
19
+ "pad_size": null,
20
+ "resample": 2,
21
+ "rescale_factor": 0.00392156862745098,
22
+ "size": {
23
+ "longest_edge": 1333,
24
+ "shortest_edge": 800
25
+ }
26
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb731d72b1e149abbd7761d52e3c9601f0022281ade6f3effdd170312137fea8
3
+ size 5240