Training in progress, step 80
Browse files- all_results.json +8 -0
- config.json +60 -0
- model.safetensors +3 -0
- preprocessor_config.json +26 -0
- train_results.json +8 -0
- trainer_state.json +50 -0
- training_args.bin +3 -0
all_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 20.0,
|
3 |
+
"total_flos": 1.337851081728e+17,
|
4 |
+
"train_loss": 1.9536447048187255,
|
5 |
+
"train_runtime": 67.9851,
|
6 |
+
"train_samples_per_second": 4.119,
|
7 |
+
"train_steps_per_second": 1.177
|
8 |
+
}
|
config.json
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"backbone_kwargs": {
|
12 |
+
"in_chans": 3,
|
13 |
+
"out_indices": [
|
14 |
+
1,
|
15 |
+
2,
|
16 |
+
3,
|
17 |
+
4
|
18 |
+
]
|
19 |
+
},
|
20 |
+
"bbox_cost": 5,
|
21 |
+
"bbox_loss_coefficient": 5,
|
22 |
+
"class_cost": 1,
|
23 |
+
"classifier_dropout": 0.0,
|
24 |
+
"d_model": 256,
|
25 |
+
"decoder_attention_heads": 8,
|
26 |
+
"decoder_ffn_dim": 2048,
|
27 |
+
"decoder_layerdrop": 0.0,
|
28 |
+
"decoder_layers": 6,
|
29 |
+
"dice_loss_coefficient": 1,
|
30 |
+
"dilation": false,
|
31 |
+
"dropout": 0.1,
|
32 |
+
"encoder_attention_heads": 8,
|
33 |
+
"encoder_ffn_dim": 2048,
|
34 |
+
"encoder_layerdrop": 0.0,
|
35 |
+
"encoder_layers": 6,
|
36 |
+
"eos_coefficient": 0.1,
|
37 |
+
"giou_cost": 2,
|
38 |
+
"giou_loss_coefficient": 2,
|
39 |
+
"id2label": {
|
40 |
+
"0": "Window"
|
41 |
+
},
|
42 |
+
"init_std": 0.02,
|
43 |
+
"init_xavier_std": 1.0,
|
44 |
+
"is_encoder_decoder": true,
|
45 |
+
"label2id": {
|
46 |
+
"Window": 0
|
47 |
+
},
|
48 |
+
"mask_loss_coefficient": 1,
|
49 |
+
"max_position_embeddings": 1024,
|
50 |
+
"model_type": "detr",
|
51 |
+
"num_channels": 3,
|
52 |
+
"num_hidden_layers": 6,
|
53 |
+
"num_queries": 100,
|
54 |
+
"position_embedding_type": "sine",
|
55 |
+
"scale_embedding": false,
|
56 |
+
"torch_dtype": "float32",
|
57 |
+
"transformers_version": "4.50.3",
|
58 |
+
"use_pretrained_backbone": true,
|
59 |
+
"use_timm_backbone": true
|
60 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:07472c331b1e17cc45ee0fbff1d4eab1401da42e81acdb9d8352e7ba8b8e4803
|
3 |
+
size 166494824
|
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 |
+
}
|
train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 20.0,
|
3 |
+
"total_flos": 1.337851081728e+17,
|
4 |
+
"train_loss": 1.9536447048187255,
|
5 |
+
"train_runtime": 67.9851,
|
6 |
+
"train_samples_per_second": 4.119,
|
7 |
+
"train_steps_per_second": 1.177
|
8 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_global_step": null,
|
3 |
+
"best_metric": null,
|
4 |
+
"best_model_checkpoint": null,
|
5 |
+
"epoch": 20.0,
|
6 |
+
"eval_steps": 500,
|
7 |
+
"global_step": 80,
|
8 |
+
"is_hyper_param_search": false,
|
9 |
+
"is_local_process_zero": true,
|
10 |
+
"is_world_process_zero": true,
|
11 |
+
"log_history": [
|
12 |
+
{
|
13 |
+
"epoch": 12.5,
|
14 |
+
"grad_norm": 210.8382110595703,
|
15 |
+
"learning_rate": 2.25e-05,
|
16 |
+
"loss": 2.4839,
|
17 |
+
"step": 50
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"epoch": 20.0,
|
21 |
+
"step": 80,
|
22 |
+
"total_flos": 1.337851081728e+17,
|
23 |
+
"train_loss": 1.9536447048187255,
|
24 |
+
"train_runtime": 67.9851,
|
25 |
+
"train_samples_per_second": 4.119,
|
26 |
+
"train_steps_per_second": 1.177
|
27 |
+
}
|
28 |
+
],
|
29 |
+
"logging_steps": 50,
|
30 |
+
"max_steps": 80,
|
31 |
+
"num_input_tokens_seen": 0,
|
32 |
+
"num_train_epochs": 20,
|
33 |
+
"save_steps": 500,
|
34 |
+
"stateful_callbacks": {
|
35 |
+
"TrainerControl": {
|
36 |
+
"args": {
|
37 |
+
"should_epoch_stop": false,
|
38 |
+
"should_evaluate": false,
|
39 |
+
"should_log": false,
|
40 |
+
"should_save": true,
|
41 |
+
"should_training_stop": true
|
42 |
+
},
|
43 |
+
"attributes": {}
|
44 |
+
}
|
45 |
+
},
|
46 |
+
"total_flos": 1.337851081728e+17,
|
47 |
+
"train_batch_size": 4,
|
48 |
+
"trial_name": null,
|
49 |
+
"trial_params": null
|
50 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d80a6ef6b3fc0a76571a33a21faebc9d1d411ee501a317928c977b4d40341884
|
3 |
+
size 5304
|