"...git@developer.sourcefind.cn:OpenDAS/torch-scatter.git" did not exist on "c108f700df57be038bf953ea787d702bace412bf"
Commit 3d2b79bd authored by Kai Chen's avatar Kai Chen
Browse files

fix path issues

parent 8b47a12b
...@@ -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(
......
...@@ -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(
......
...@@ -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(
......
...@@ -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}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment