yota-code commited on
Commit
f889b64
1 Parent(s): 44628bb

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/conditional-detr-resnet-50",
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "relu",
5
+ "architectures": [
6
+ "ConditionalDetrForObjectDetection"
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": 2,
24
+ "cls_loss_coefficient": 2,
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
+ "focal_alpha": 0.25,
38
+ "giou_cost": 2,
39
+ "giou_loss_coefficient": 2,
40
+ "id2label": {
41
+ "0": "Spinal Canal Stenosis L1/L2",
42
+ "1": "Spinal Canal Stenosis L2/L3",
43
+ "2": "Spinal Canal Stenosis L3/L4",
44
+ "3": "Spinal Canal Stenosis L4/L5",
45
+ "4": "Spinal Canal Stenosis L5/S1",
46
+ "5": "Right Neural Foraminal Narrowing L4/L5",
47
+ "6": "Right Neural Foraminal Narrowing L5/S1",
48
+ "7": "Right Neural Foraminal Narrowing L3/L4",
49
+ "8": "Right Neural Foraminal Narrowing L1/L2",
50
+ "9": "Right Neural Foraminal Narrowing L2/L3",
51
+ "10": "Left Neural Foraminal Narrowing L1/L2",
52
+ "11": "Left Neural Foraminal Narrowing L4/L5",
53
+ "12": "Left Neural Foraminal Narrowing L5/S1",
54
+ "13": "Left Neural Foraminal Narrowing L2/L3",
55
+ "14": "Left Neural Foraminal Narrowing L3/L4",
56
+ "15": "Left Subarticular Stenosis L1/L2",
57
+ "16": "Right Subarticular Stenosis L1/L2",
58
+ "17": "Left Subarticular Stenosis L2/L3",
59
+ "18": "Right Subarticular Stenosis L2/L3",
60
+ "19": "Left Subarticular Stenosis L3/L4",
61
+ "20": "Right Subarticular Stenosis L3/L4",
62
+ "21": "Left Subarticular Stenosis L4/L5",
63
+ "22": "Right Subarticular Stenosis L4/L5",
64
+ "23": "Left Subarticular Stenosis L5/S1",
65
+ "24": "Right Subarticular Stenosis L5/S1"
66
+ },
67
+ "init_std": 0.02,
68
+ "init_xavier_std": 1.0,
69
+ "is_encoder_decoder": true,
70
+ "label2id": {
71
+ "Left Neural Foraminal Narrowing L1/L2": 10,
72
+ "Left Neural Foraminal Narrowing L2/L3": 13,
73
+ "Left Neural Foraminal Narrowing L3/L4": 14,
74
+ "Left Neural Foraminal Narrowing L4/L5": 11,
75
+ "Left Neural Foraminal Narrowing L5/S1": 12,
76
+ "Left Subarticular Stenosis L1/L2": 15,
77
+ "Left Subarticular Stenosis L2/L3": 17,
78
+ "Left Subarticular Stenosis L3/L4": 19,
79
+ "Left Subarticular Stenosis L4/L5": 21,
80
+ "Left Subarticular Stenosis L5/S1": 23,
81
+ "Right Neural Foraminal Narrowing L1/L2": 8,
82
+ "Right Neural Foraminal Narrowing L2/L3": 9,
83
+ "Right Neural Foraminal Narrowing L3/L4": 7,
84
+ "Right Neural Foraminal Narrowing L4/L5": 5,
85
+ "Right Neural Foraminal Narrowing L5/S1": 6,
86
+ "Right Subarticular Stenosis L1/L2": 16,
87
+ "Right Subarticular Stenosis L2/L3": 18,
88
+ "Right Subarticular Stenosis L3/L4": 20,
89
+ "Right Subarticular Stenosis L4/L5": 22,
90
+ "Right Subarticular Stenosis L5/S1": 24,
91
+ "Spinal Canal Stenosis L1/L2": 0,
92
+ "Spinal Canal Stenosis L2/L3": 1,
93
+ "Spinal Canal Stenosis L3/L4": 2,
94
+ "Spinal Canal Stenosis L4/L5": 3,
95
+ "Spinal Canal Stenosis L5/S1": 4
96
+ },
97
+ "mask_loss_coefficient": 1,
98
+ "max_position_embeddings": 1024,
99
+ "model_type": "conditional_detr",
100
+ "num_channels": 3,
101
+ "num_hidden_layers": 6,
102
+ "num_queries": 300,
103
+ "position_embedding_type": "sine",
104
+ "scale_embedding": false,
105
+ "torch_dtype": "float32",
106
+ "transformers_version": "4.41.2",
107
+ "use_pretrained_backbone": true,
108
+ "use_timm_backbone": true
109
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45e4bfe354f9d3301d3d61b41213667f269d497c1a009423403e783b3320c971
3
+ size 174100356
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": true,
24
+ "do_pad": false,
25
+ "do_rescale": true,
26
+ "do_resize": false,
27
+ "format": "coco_detection",
28
+ "image_mean": [
29
+ 0.485,
30
+ 0.456,
31
+ 0.406
32
+ ],
33
+ "image_processor_type": "ConditionalDetrImageProcessor",
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/Jun13_13-59-45_aa257b34ea84/events.out.tfevents.1718287186.aa257b34ea84.34.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b4a223b3064aa977f72ec4099085b57c5250bcad1618009c928296d4f8711e7
3
+ size 11545
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aee4b475fe4edeeeb6752db65dc84c36ee1f310a0ba99e7427afdfcdb25521e1
3
+ size 5112