Commit
·
24d65ed
1
Parent(s):
3c30628
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +50 -0
- preprocessor_config.json +25 -0
- pytorch_model.bin +3 -0
- runs/Mar01_14-41-49_Agatas-MacBook-Pro.local/1677678114.49608/events.out.tfevents.1677678114.Agatas-MacBook-Pro.local.35252.1 +3 -0
- runs/Mar01_14-41-49_Agatas-MacBook-Pro.local/events.out.tfevents.1677678114.Agatas-MacBook-Pro.local.35252.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"bbox_cost": 5,
|
| 12 |
+
"bbox_loss_coefficient": 5,
|
| 13 |
+
"class_cost": 1,
|
| 14 |
+
"d_model": 256,
|
| 15 |
+
"decoder_attention_heads": 4,
|
| 16 |
+
"decoder_ffn_dim": 2048,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 4,
|
| 19 |
+
"dice_loss_coefficient": 1,
|
| 20 |
+
"dilation": false,
|
| 21 |
+
"dropout": 0.1,
|
| 22 |
+
"encoder_attention_heads": 4,
|
| 23 |
+
"encoder_ffn_dim": 2048,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 4,
|
| 26 |
+
"eos_coefficient": 0.1,
|
| 27 |
+
"giou_cost": 2,
|
| 28 |
+
"giou_loss_coefficient": 2,
|
| 29 |
+
"id2label": {
|
| 30 |
+
"0": "Leukocyte"
|
| 31 |
+
},
|
| 32 |
+
"init_std": 0.02,
|
| 33 |
+
"init_xavier_std": 1.0,
|
| 34 |
+
"is_encoder_decoder": true,
|
| 35 |
+
"label2id": {
|
| 36 |
+
"Leukocyte": 0
|
| 37 |
+
},
|
| 38 |
+
"mask_loss_coefficient": 1,
|
| 39 |
+
"max_position_embeddings": 1024,
|
| 40 |
+
"model_type": "detr",
|
| 41 |
+
"num_channels": 3,
|
| 42 |
+
"num_hidden_layers": 6,
|
| 43 |
+
"num_queries": 100,
|
| 44 |
+
"position_embedding_type": "sine",
|
| 45 |
+
"scale_embedding": false,
|
| 46 |
+
"torch_dtype": "float32",
|
| 47 |
+
"transformers_version": "4.26.1",
|
| 48 |
+
"use_pretrained_backbone": true,
|
| 49 |
+
"use_timm_backbone": true
|
| 50 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_pad": true,
|
| 4 |
+
"do_rescale": true,
|
| 5 |
+
"do_resize": true,
|
| 6 |
+
"feature_extractor_type": "DetrFeatureExtractor",
|
| 7 |
+
"format": "coco_detection",
|
| 8 |
+
"image_mean": [
|
| 9 |
+
0.485,
|
| 10 |
+
0.456,
|
| 11 |
+
0.406
|
| 12 |
+
],
|
| 13 |
+
"image_processor_type": "DetrFeatureExtractor",
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.229,
|
| 16 |
+
0.224,
|
| 17 |
+
0.225
|
| 18 |
+
],
|
| 19 |
+
"resample": 2,
|
| 20 |
+
"rescale_factor": 0.00392156862745098,
|
| 21 |
+
"size": {
|
| 22 |
+
"longest_edge": 1333,
|
| 23 |
+
"shortest_edge": 800
|
| 24 |
+
}
|
| 25 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a643b58921c90a179b2d301f25c129681fcfa11a9b5081deda85e5670c1edfb
|
| 3 |
+
size 143430549
|
runs/Mar01_14-41-49_Agatas-MacBook-Pro.local/1677678114.49608/events.out.tfevents.1677678114.Agatas-MacBook-Pro.local.35252.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0b4025fbefe655e624a6c31ff630f4e0b2295a7a5ed94fabf7642f6fee50f72
|
| 3 |
+
size 5810
|
runs/Mar01_14-41-49_Agatas-MacBook-Pro.local/events.out.tfevents.1677678114.Agatas-MacBook-Pro.local.35252.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab2e3c6805c26001f951e0a7bbe8e29330aade50e736d4bfb48dfba042e32fb5
|
| 3 |
+
size 4893
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97ecb8cb64922a99589facae9f7cd13a386955563eba46b4e17fdd4351a34cf7
|
| 3 |
+
size 3579
|