Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
SOLOv2-pytorch
Commits
10c82efb
"docs/vscode:/vscode.git/clone" did not exist on "c5b69336e951beac842aae09bca5cc62c114e018"
Unverified
Commit
10c82efb
authored
Jan 28, 2020
by
Kai Chen
Committed by
GitHub
Jan 28, 2020
Browse files
format configs with yapf (#2023)
parent
51bf54a8
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
22 deletions
+11
-22
.isort.cfg
.isort.cfg
+1
-1
.travis.yml
.travis.yml
+1
-1
configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py
configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py
+1
-2
configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py
configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py
+1
-2
configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py
configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py
+1
-2
configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py
configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py
+1
-4
configs/dcn/faster_rcnn_mdconv_c3-c5_group4_r50_fpn_1x.py
configs/dcn/faster_rcnn_mdconv_c3-c5_group4_r50_fpn_1x.py
+1
-2
configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py
configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py
+1
-2
configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py
configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py
+1
-2
configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py
...al_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py
+1
-2
configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py
...al_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py
+1
-2
No files found.
.isort.cfg
View file @
10c82efb
...
...
@@ -3,6 +3,6 @@ line_length = 79
multi_line_output = 0
known_standard_library = setuptools
known_first_party = mmdet
known_third_party = Cython,a
lbumentations,asynctest,cv2,imagecorruptions
,matplotlib,mmcv,numpy,pycocotools,robustness_eval,roi_align,roi_pool,seaborn,six,terminaltables,torch,torchvision
known_third_party = Cython,a
synctest,cv2
,matplotlib,mmcv,numpy,pycocotools,robustness_eval,roi_align,roi_pool,seaborn,six,terminaltables,torch,torchvision
no_lines_before = STDLIB,LOCALFOLDER
default_section = THIRDPARTY
.travis.yml
View file @
10c82efb
...
...
@@ -31,7 +31,7 @@ install:
before_script
:
-
flake8 .
-
isort -rc --check-only --diff mmdet/ tools/ tests/
-
yapf -r -d --style .style.yapf mmdet/ tools/ tests/
-
yapf -r -d --style .style.yapf mmdet/ tools/ tests/
configs/
script
:
-
python setup.py check -m -s
...
...
configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py
View file @
10c82efb
...
...
@@ -10,8 +10,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py
View file @
10c82efb
...
...
@@ -10,8 +10,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py
View file @
10c82efb
...
...
@@ -9,8 +9,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py
View file @
10c82efb
...
...
@@ -11,10 +11,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/dcn/faster_rcnn_mdconv_c3-c5_group4_r50_fpn_1x.py
View file @
10c82efb
...
...
@@ -9,8 +9,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCNv2'
,
deformable_groups
=
4
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCNv2'
,
deformable_groups
=
4
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py
View file @
10c82efb
...
...
@@ -9,8 +9,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCNv2'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCNv2'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py
View file @
10c82efb
...
...
@@ -9,8 +9,7 @@ model = dict(
out_indices
=
(
0
,
1
,
2
,
3
),
frozen_stages
=
1
,
style
=
'pytorch'
,
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
)),
neck
=
dict
(
type
=
'FPN'
,
...
...
configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py
View file @
10c82efb
...
...
@@ -12,8 +12,7 @@ model = dict(
gen_attention
=
dict
(
spatial_range
=-
1
,
num_heads
=
8
,
attention_type
=
'0010'
,
kv_stride
=
2
),
stage_with_gen_attention
=
[[],
[],
[
0
,
1
,
2
,
3
,
4
,
5
],
[
0
,
1
,
2
]],
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
),
),
neck
=
dict
(
...
...
configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py
View file @
10c82efb
...
...
@@ -12,8 +12,7 @@ model = dict(
gen_attention
=
dict
(
spatial_range
=-
1
,
num_heads
=
8
,
attention_type
=
'1111'
,
kv_stride
=
2
),
stage_with_gen_attention
=
[[],
[],
[
0
,
1
,
2
,
3
,
4
,
5
],
[
0
,
1
,
2
]],
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
dcn
=
dict
(
type
=
'DCN'
,
deformable_groups
=
1
,
fallback_on_stride
=
False
),
stage_with_dcn
=
(
False
,
True
,
True
,
True
),
),
neck
=
dict
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment