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
3d2b79bd
Commit
3d2b79bd
authored
Oct 08, 2018
by
Kai Chen
Browse files
fix path issues
parent
8b47a12b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
configs/r50_fpn_frcnn_1x.py
configs/r50_fpn_frcnn_1x.py
+1
-1
configs/r50_fpn_maskrcnn_1x.py
configs/r50_fpn_maskrcnn_1x.py
+1
-1
configs/r50_fpn_rpn_1x.py
configs/r50_fpn_rpn_1x.py
+1
-1
tools/dist_train.sh
tools/dist_train.sh
+1
-1
No files found.
configs/r50_fpn_frcnn_1x.py
View file @
3d2b79bd
...
@@ -79,7 +79,7 @@ test_cfg = dict(
...
@@ -79,7 +79,7 @@ test_cfg = dict(
rcnn
=
dict
(
score_thr
=
0.05
,
max_per_img
=
100
,
nms_thr
=
0.5
))
rcnn
=
dict
(
score_thr
=
0.05
,
max_per_img
=
100
,
nms_thr
=
0.5
))
# dataset settings
# dataset settings
dataset_type
=
'CocoDataset'
dataset_type
=
'CocoDataset'
data_root
=
'
../
data/coco/'
data_root
=
'data/coco/'
img_norm_cfg
=
dict
(
img_norm_cfg
=
dict
(
mean
=
[
123.675
,
116.28
,
103.53
],
std
=
[
58.395
,
57.12
,
57.375
],
to_rgb
=
True
)
mean
=
[
123.675
,
116.28
,
103.53
],
std
=
[
58.395
,
57.12
,
57.375
],
to_rgb
=
True
)
data
=
dict
(
data
=
dict
(
...
...
configs/r50_fpn_maskrcnn_1x.py
View file @
3d2b79bd
...
@@ -92,7 +92,7 @@ test_cfg = dict(
...
@@ -92,7 +92,7 @@ test_cfg = dict(
score_thr
=
0.05
,
max_per_img
=
100
,
nms_thr
=
0.5
,
mask_thr_binary
=
0.5
))
score_thr
=
0.05
,
max_per_img
=
100
,
nms_thr
=
0.5
,
mask_thr_binary
=
0.5
))
# dataset settings
# dataset settings
dataset_type
=
'CocoDataset'
dataset_type
=
'CocoDataset'
data_root
=
'
../
data/coco/'
data_root
=
'data/coco/'
img_norm_cfg
=
dict
(
img_norm_cfg
=
dict
(
mean
=
[
123.675
,
116.28
,
103.53
],
std
=
[
58.395
,
57.12
,
57.375
],
to_rgb
=
True
)
mean
=
[
123.675
,
116.28
,
103.53
],
std
=
[
58.395
,
57.12
,
57.375
],
to_rgb
=
True
)
data
=
dict
(
data
=
dict
(
...
...
configs/r50_fpn_rpn_1x.py
View file @
3d2b79bd
...
@@ -50,7 +50,7 @@ test_cfg = dict(
...
@@ -50,7 +50,7 @@ test_cfg = dict(
min_bbox_size
=
0
))
min_bbox_size
=
0
))
# dataset settings
# dataset settings
dataset_type
=
'CocoDataset'
dataset_type
=
'CocoDataset'
data_root
=
'
../
data/coco/'
data_root
=
'data/coco/'
img_norm_cfg
=
dict
(
img_norm_cfg
=
dict
(
mean
=
[
123.675
,
116.28
,
103.53
],
std
=
[
58.395
,
57.12
,
57.375
],
to_rgb
=
True
)
mean
=
[
123.675
,
116.28
,
103.53
],
std
=
[
58.395
,
57.12
,
57.375
],
to_rgb
=
True
)
data
=
dict
(
data
=
dict
(
...
...
tools/dist_train.sh
View file @
3d2b79bd
...
@@ -2,4 +2,4 @@
...
@@ -2,4 +2,4 @@
PYTHON
=
${
PYTHON
:-
"python"
}
PYTHON
=
${
PYTHON
:-
"python"
}
$PYTHON
-m
torch.distributed.launch
--nproc_per_node
=
$2
train.py
$1
--launcher
pytorch
${
@
:3
}
$PYTHON
-m
torch.distributed.launch
--nproc_per_node
=
$2
$(
dirname
"
$0
"
)
/
train.py
$1
--launcher
pytorch
${
@
:3
}
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