Daniel Bogdoll commited on
Commit
e213096
·
verified ·
1 Parent(s): 3db9a48

End of training

Browse files
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: facebook/detr-resnet-101-dc5
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - generator
9
+ model-index:
10
+ - name: fisheye8k_facebook_detr-resnet-101-dc5
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # fisheye8k_facebook_detr-resnet-101-dc5
18
+
19
+ This model is a fine-tuned version of [facebook/detr-resnet-101-dc5](https://huggingface.co/facebook/detr-resnet-101-dc5) on the generator dataset.
20
+
21
+ ## Model description
22
+
23
+ More information needed
24
+
25
+ ## Intended uses & limitations
26
+
27
+ More information needed
28
+
29
+ ## Training and evaluation data
30
+
31
+ More information needed
32
+
33
+ ## Training procedure
34
+
35
+ ### Training hyperparameters
36
+
37
+ The following hyperparameters were used during training:
38
+ - learning_rate: 5e-05
39
+ - train_batch_size: 1
40
+ - eval_batch_size: 8
41
+ - seed: 0
42
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
43
+ - lr_scheduler_type: cosine
44
+ - num_epochs: 1
45
+ - mixed_precision_training: Native AMP
46
+
47
+ ### Training results
48
+
49
+ | Training Loss | Epoch | Step | Validation Loss |
50
+ |:-------------:|:-----:|:----:|:---------------:|
51
+ | No log | 1.0 | 68 | 2.9064 |
52
+
53
+
54
+ ### Framework versions
55
+
56
+ - Transformers 4.48.3
57
+ - Pytorch 2.5.1+cu124
58
+ - Datasets 3.2.0
59
+ - Tokenizers 0.21.0
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/detr-resnet-101-dc5",
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": "resnet101",
11
+ "backbone_config": null,
12
+ "backbone_kwargs": {
13
+ "in_chans": 3,
14
+ "out_indices": [
15
+ 1,
16
+ 2,
17
+ 3,
18
+ 4
19
+ ],
20
+ "output_stride": 16
21
+ },
22
+ "bbox_cost": 5,
23
+ "bbox_loss_coefficient": 5,
24
+ "class_cost": 1,
25
+ "classifier_dropout": 0.0,
26
+ "d_model": 256,
27
+ "decoder_attention_heads": 8,
28
+ "decoder_ffn_dim": 2048,
29
+ "decoder_layerdrop": 0.0,
30
+ "decoder_layers": 6,
31
+ "dice_loss_coefficient": 1,
32
+ "dilation": true,
33
+ "dropout": 0.1,
34
+ "encoder_attention_heads": 8,
35
+ "encoder_ffn_dim": 2048,
36
+ "encoder_layerdrop": 0.0,
37
+ "encoder_layers": 6,
38
+ "eos_coefficient": 0.1,
39
+ "giou_cost": 2,
40
+ "giou_loss_coefficient": 2,
41
+ "id2label": {
42
+ "0": "Bus",
43
+ "1": "Bike",
44
+ "2": "Car",
45
+ "3": "Pedestrian",
46
+ "4": "Truck"
47
+ },
48
+ "init_std": 0.02,
49
+ "init_xavier_std": 1.0,
50
+ "is_encoder_decoder": true,
51
+ "label2id": {
52
+ "Bike": 1,
53
+ "Bus": 0,
54
+ "Car": 2,
55
+ "Pedestrian": 3,
56
+ "Truck": 4
57
+ },
58
+ "mask_loss_coefficient": 1,
59
+ "max_position_embeddings": 1024,
60
+ "model_type": "detr",
61
+ "num_channels": 3,
62
+ "num_hidden_layers": 6,
63
+ "num_queries": 100,
64
+ "position_embedding_type": "sine",
65
+ "scale_embedding": false,
66
+ "torch_dtype": "float32",
67
+ "transformers_version": "4.48.3",
68
+ "use_pretrained_backbone": true,
69
+ "use_timm_backbone": true
70
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "DetrImageProcessorFast",
14
+ "image_std": [
15
+ 0.229,
16
+ 0.224,
17
+ 0.225
18
+ ],
19
+ "pad_size": {
20
+ "height": 960,
21
+ "width": 960
22
+ },
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "max_height": 960,
27
+ "max_width": 960
28
+ }
29
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83200013938d95bcbfcc87403f6a3544864e5ad7145187bb4f9915f0ea7cacc6
3
+ size 242886798
runs/Feb11_18-55-06_mcity-rtx-4090/events.out.tfevents.1739318107.mcity-rtx-4090.1208791.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82b42fd2659e54529f999c5f14e6ba7d71dfaa83e0643bfa87eb578d4ad5d10b
3
+ size 6095
runs/Feb12_13-11-10_mcity-rtx-4090/events.out.tfevents.1739383871.mcity-rtx-4090.1868198.10 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7de97913ebb4642180ecfba5ed6d337b338fdee3b94698f49904620e44785337
3
+ size 6709
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:548aef0dd03aecc40eeda699190ccfc702fb4f7b9193214447a601ad692d3e3b
3
+ size 5560