End of training
Browse files- .gitignore +1 -0
- config.json +91 -0
- preprocessor_config.json +24 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/detr-resnet-50",
|
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 |
+
"bbox_cost": 5,
|
13 |
+
"bbox_loss_coefficient": 5,
|
14 |
+
"class_cost": 1,
|
15 |
+
"d_model": 256,
|
16 |
+
"decoder_attention_heads": 8,
|
17 |
+
"decoder_ffn_dim": 2048,
|
18 |
+
"decoder_layerdrop": 0.0,
|
19 |
+
"decoder_layers": 6,
|
20 |
+
"dice_loss_coefficient": 1,
|
21 |
+
"dilation": false,
|
22 |
+
"dropout": 0.1,
|
23 |
+
"encoder_attention_heads": 8,
|
24 |
+
"encoder_ffn_dim": 2048,
|
25 |
+
"encoder_layerdrop": 0.0,
|
26 |
+
"encoder_layers": 6,
|
27 |
+
"eos_coefficient": 0.1,
|
28 |
+
"giou_cost": 2,
|
29 |
+
"giou_loss_coefficient": 2,
|
30 |
+
"id2label": {
|
31 |
+
"0": "bleeding",
|
32 |
+
"1": "blessed",
|
33 |
+
"2": "blindness",
|
34 |
+
"3": "bloodlust",
|
35 |
+
"4": "broken",
|
36 |
+
"5": "cursed",
|
37 |
+
"6": "deepWound",
|
38 |
+
"7": "endurance",
|
39 |
+
"8": "exhaustion",
|
40 |
+
"9": "exposed",
|
41 |
+
"10": "gliph",
|
42 |
+
"11": "haste",
|
43 |
+
"12": "hearing",
|
44 |
+
"13": "hindered",
|
45 |
+
"14": "incapacitated",
|
46 |
+
"15": "madness",
|
47 |
+
"16": "mangled",
|
48 |
+
"17": "oblivious",
|
49 |
+
"18": "sleepPenalty",
|
50 |
+
"19": "undetectable",
|
51 |
+
"20": "vision"
|
52 |
+
},
|
53 |
+
"init_std": 0.02,
|
54 |
+
"init_xavier_std": 1.0,
|
55 |
+
"is_encoder_decoder": true,
|
56 |
+
"label2id": {
|
57 |
+
"bleeding": 0,
|
58 |
+
"blessed": 1,
|
59 |
+
"blindness": 2,
|
60 |
+
"bloodlust": 3,
|
61 |
+
"broken": 4,
|
62 |
+
"cursed": 5,
|
63 |
+
"deepWound": 6,
|
64 |
+
"endurance": 7,
|
65 |
+
"exhaustion": 8,
|
66 |
+
"exposed": 9,
|
67 |
+
"gliph": 10,
|
68 |
+
"haste": 11,
|
69 |
+
"hearing": 12,
|
70 |
+
"hindered": 13,
|
71 |
+
"incapacitated": 14,
|
72 |
+
"madness": 15,
|
73 |
+
"mangled": 16,
|
74 |
+
"oblivious": 17,
|
75 |
+
"sleepPenalty": 18,
|
76 |
+
"undetectable": 19,
|
77 |
+
"vision": 20
|
78 |
+
},
|
79 |
+
"mask_loss_coefficient": 1,
|
80 |
+
"max_position_embeddings": 1024,
|
81 |
+
"model_type": "detr",
|
82 |
+
"num_channels": 3,
|
83 |
+
"num_hidden_layers": 6,
|
84 |
+
"num_queries": 100,
|
85 |
+
"position_embedding_type": "sine",
|
86 |
+
"scale_embedding": false,
|
87 |
+
"torch_dtype": "float32",
|
88 |
+
"transformers_version": "4.26.1",
|
89 |
+
"use_pretrained_backbone": true,
|
90 |
+
"use_timm_backbone": true
|
91 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_pad": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"format": "coco_detection",
|
7 |
+
"image_mean": [
|
8 |
+
0.485,
|
9 |
+
0.456,
|
10 |
+
0.406
|
11 |
+
],
|
12 |
+
"image_processor_type": "DetrImageProcessor",
|
13 |
+
"image_std": [
|
14 |
+
0.229,
|
15 |
+
0.224,
|
16 |
+
0.225
|
17 |
+
],
|
18 |
+
"resample": 2,
|
19 |
+
"rescale_factor": 0.00392156862745098,
|
20 |
+
"size": {
|
21 |
+
"longest_edge": 1333,
|
22 |
+
"shortest_edge": 800
|
23 |
+
}
|
24 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8b0addafffbe984d2422717587b2484f46ffe2d1985b707c11a241d6deba4398
|
3 |
+
size 166636645
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:804dc4f728b50f1403479204b1388bd648b41ef6f5771fc151ddf2089048dfac
|
3 |
+
size 3451
|