AkshayShetty
commited on
Commit
•
95bbfe0
1
Parent(s):
b64840b
Training in progress, step 200
Browse files- .gitignore +1 -0
- config.json +67 -0
- preprocessor_config.json +24 -0
- pytorch_model.bin +3 -0
- runs/Jul02_22-44-16_9070ac5e4e40/events.out.tfevents.1688338160.9070ac5e4e40.3409.0 +3 -0
- runs/Jul02_22-44-16_9070ac5e4e40/events.out.tfevents.1688338186.9070ac5e4e40.3409.1 +3 -0
- runs/Jul02_22-55-36_9070ac5e4e40/events.out.tfevents.1688338544.9070ac5e4e40.3409.2 +3 -0
- runs/Jul02_22-56-15_9070ac5e4e40/events.out.tfevents.1688338581.9070ac5e4e40.3409.3 +3 -0
- runs/Jul02_22-57-30_9070ac5e4e40/events.out.tfevents.1688338658.9070ac5e4e40.7081.0 +3 -0
- runs/Jul02_22-58-21_9070ac5e4e40/events.out.tfevents.1688338712.9070ac5e4e40.7081.1 +3 -0
- runs/Jul02_22-59-01_9070ac5e4e40/events.out.tfevents.1688338751.9070ac5e4e40.7081.2 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_commit_hash": "480370a8aeeed9fc8d78837b4e94e5f936fe73f2",
|
3 |
+
"_name_or_path": "facebook/detr-resnet-50",
|
4 |
+
"activation_dropout": 0.0,
|
5 |
+
"activation_function": "relu",
|
6 |
+
"architectures": [
|
7 |
+
"DetrForObjectDetection"
|
8 |
+
],
|
9 |
+
"attention_dropout": 0.0,
|
10 |
+
"auxiliary_loss": false,
|
11 |
+
"backbone": "resnet50",
|
12 |
+
"backbone_config": null,
|
13 |
+
"bbox_cost": 5,
|
14 |
+
"bbox_loss_coefficient": 5,
|
15 |
+
"class_cost": 1,
|
16 |
+
"classifier_dropout": 0.0,
|
17 |
+
"d_model": 256,
|
18 |
+
"decoder_attention_heads": 8,
|
19 |
+
"decoder_ffn_dim": 2048,
|
20 |
+
"decoder_layerdrop": 0.0,
|
21 |
+
"decoder_layers": 6,
|
22 |
+
"dice_loss_coefficient": 1,
|
23 |
+
"dilation": false,
|
24 |
+
"dropout": 0.1,
|
25 |
+
"encoder_attention_heads": 8,
|
26 |
+
"encoder_ffn_dim": 2048,
|
27 |
+
"encoder_layerdrop": 0.0,
|
28 |
+
"encoder_layers": 6,
|
29 |
+
"eos_coefficient": 0.1,
|
30 |
+
"giou_cost": 2,
|
31 |
+
"giou_loss_coefficient": 2,
|
32 |
+
"id2label": {
|
33 |
+
"0": "Black_star",
|
34 |
+
"1": "Cat",
|
35 |
+
"2": "Grey_star",
|
36 |
+
"3": "Insect",
|
37 |
+
"4": "Moon",
|
38 |
+
"5": "Owl",
|
39 |
+
"6": "Unicorn_head",
|
40 |
+
"7": "Unicorn_whole"
|
41 |
+
},
|
42 |
+
"init_std": 0.02,
|
43 |
+
"init_xavier_std": 1.0,
|
44 |
+
"is_encoder_decoder": true,
|
45 |
+
"label2id": {
|
46 |
+
"Black_star": 0,
|
47 |
+
"Cat": 1,
|
48 |
+
"Grey_star": 2,
|
49 |
+
"Insect": 3,
|
50 |
+
"Moon": 4,
|
51 |
+
"Owl": 5,
|
52 |
+
"Unicorn_head": 6,
|
53 |
+
"Unicorn_whole": 7
|
54 |
+
},
|
55 |
+
"mask_loss_coefficient": 1,
|
56 |
+
"max_position_embeddings": 1024,
|
57 |
+
"model_type": "detr",
|
58 |
+
"num_channels": 3,
|
59 |
+
"num_hidden_layers": 6,
|
60 |
+
"num_queries": 100,
|
61 |
+
"position_embedding_type": "sine",
|
62 |
+
"scale_embedding": false,
|
63 |
+
"torch_dtype": "float32",
|
64 |
+
"transformers_version": "4.7.0.dev0",
|
65 |
+
"use_pretrained_backbone": true,
|
66 |
+
"use_timm_backbone": true
|
67 |
+
}
|
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:1f136060f6b921440a806539aff1cb69f3cde405ed2dda9fc5394ae2d04ac0bf
|
3 |
+
size 166623269
|
runs/Jul02_22-44-16_9070ac5e4e40/events.out.tfevents.1688338160.9070ac5e4e40.3409.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0300b4f347fbc47232dbf64b5c4e039bc345587e9a581ee7d8a071b62d282cd9
|
3 |
+
size 4974
|
runs/Jul02_22-44-16_9070ac5e4e40/events.out.tfevents.1688338186.9070ac5e4e40.3409.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:50b931271d9b23d8fa735e5179cda3af808b21e747db567dba9d0c3b11b1c9cf
|
3 |
+
size 5322
|
runs/Jul02_22-55-36_9070ac5e4e40/events.out.tfevents.1688338544.9070ac5e4e40.3409.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6d57f3dba244b2557ae4b044ed0b8e5304e01214652f363928ee77be58b59df
|
3 |
+
size 4184
|
runs/Jul02_22-56-15_9070ac5e4e40/events.out.tfevents.1688338581.9070ac5e4e40.3409.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b737ab9954a25aab2b8f86892a124e7f2945ba49afee448230832e4b3eebb416
|
3 |
+
size 4184
|
runs/Jul02_22-57-30_9070ac5e4e40/events.out.tfevents.1688338658.9070ac5e4e40.7081.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a46fb00251a5a43fb201ac742bb2f058c2eb6df9d7017bb8e5494e50309d1077
|
3 |
+
size 5322
|
runs/Jul02_22-58-21_9070ac5e4e40/events.out.tfevents.1688338712.9070ac5e4e40.7081.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26b16f49d93a942356d27da6b016bf0aa86231763eaa0bdc594efea50f9708d3
|
3 |
+
size 4974
|
runs/Jul02_22-59-01_9070ac5e4e40/events.out.tfevents.1688338751.9070ac5e4e40.7081.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:feb24632fdb495b56667a605d33afc1df810fa5300e50b75008fa771dd81ae29
|
3 |
+
size 5597
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f0bb811aa2db65f8bd1639dc461a709b911f381d85a695aa6be5de1f9c83b9cd
|
3 |
+
size 3963
|