Skip to content

Commit

Permalink
optimise perf
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene123tw committed Oct 23, 2023
1 parent fd67555 commit 506bfaa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,11 @@
output_names=["boxes", "labels", "masks"],
)

codebase_config = dict(
post_processing=dict(
max_output_boxes_per_class=100,
pre_top_k=300,
)
)

scale_ir_input = False
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@
assigner=dict(type="DynamicSoftLabelAssigner", topk=13), allowed_border=-1, pos_weight=-1, debug=False
),
test_cfg=dict(
nms_pre=1000,
nms_pre=300,
min_bbox_size=0,
score_thr=0.05,
nms=dict(type="nms", iou_threshold=0.6),
max_per_img=200,
max_per_img=100,
mask_thr_binary=0.5,
),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ hyper_parameters:
learning_rate_warmup_iters:
default_value: 3
num_iters:
default_value: 200
default_value: 100
pot_parameters:
stat_requests_number:
default_value: 1
Expand Down

0 comments on commit 506bfaa

Please sign in to comment.