WwYc commited on
Commit
869d27d
·
verified ·
1 Parent(s): 5328ab1

Upload config.yaml

Browse files
lxmert/unc-nlp/frcnn-vg-finetuned/config.yaml ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ model :
2
+ load_proposals: false
3
+ device: cpu
4
+ max_pool: true
5
+ chkpoint: ""
6
+ pixel_mean: [102.9801, 115.9465, 122.7717]
7
+ pixel_std: [1.0, 1.0, 1.0]
8
+ input:
9
+ max_size_train: 1333
10
+ min_size_train: 640
11
+ max_size_test: 1333
12
+ min_size_test: 800
13
+ format: BGR
14
+ backbone:
15
+ freeze_at: 2
16
+ proposal_generator:
17
+ hidden_channels: 512
18
+ min_size: 0.0
19
+ anchor_generator:
20
+ sizes: [[64, 128, 256, 512]]
21
+ aspect_ratios: [[0.5, 1.0, 2.0]]
22
+ angles: [[-90.0, 0.0, 90.0]]
23
+ offset: 0
24
+ rpn:
25
+ batch_size_per_image : 1
26
+ pre_nms_topk_test: 6000
27
+ post_nms_topk_test: 300
28
+ pre_nms_topk_train : 12000
29
+ post_nms_topk_train : 2000
30
+ in_features : [res4]
31
+ boundary_thresh : -1.0
32
+ iou_thresholds : [0.3, 0.7]
33
+ iou_labels : [0.0, -1.0, 1.0]
34
+ positive_fraction : 0.5
35
+ bbox_reg_weights : [1.0, 1.0, 1.0, 1.0]
36
+ smooth_l1_beta : 0.0
37
+ loss_weight : 1.0
38
+ nms_thresh : 0.7
39
+ roi_heads:
40
+ num_classes : 1600
41
+ in_features : [res4]
42
+ iou_thresholds : [0.5]
43
+ iou_labels : [0, 1]
44
+ positive_fraction : 0.25
45
+ score_thresh_test : 0.2
46
+ nms_thresh_test : [0.5, 0.6, 0.7]
47
+ proposal_append_gt : true
48
+ roi_box_head:
49
+ bbox_reg_weights : [10.0, 10.0, 5.0, 5.0]
50
+ smooth_l1_beta : 0.0
51
+ pooler_resolution : 14
52
+ pooler_sampling_ratio : 0
53
+ res5halve : False
54
+ attr: true
55
+ num_attrs: 400
56
+ num_fc : 0
57
+ fc_dim : 1024
58
+ num_conv : 0
59
+ conv_dim : 256
60
+ cls_agnostic_bbox_reg : False
61
+ resnets:
62
+ depth : 101
63
+ out_features : [res4]
64
+ num_groups : 1
65
+ norm : BN
66
+ width_per_group : 64
67
+ stride_in_1x1 : true
68
+ res5_dilation : 1
69
+ res2_out_channels : 256
70
+ stem_out_channels : 64
71
+ solver:
72
+ lr_scheduler_name : warmupmultisteplr
73
+ max_iter : 270000
74
+ base_lr : 0.002
75
+ momentum : 0.9
76
+ weight_decay : 0.0001
77
+ weight_decay_norm : 0.0
78
+ gamma : 0.1
79
+ steps : [210000, 250000]
80
+ warmup_factor : 0.001
81
+ warmup_iters : 1000
82
+ warmup_method : linear
83
+ checkpoint_period : 5000
84
+ ims_per_batch : 1.0
85
+ bias_lr_factor : 1.0
86
+ weight_decay_bias : 0.0
87
+ size_divisibility: 0
88
+ pad_value: 0.0
89
+ min_detections: 36
90
+ max_detections: 36