-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
51 changed files
with
5,254 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
sciencebirdsagents/PhyreAgents/RPIN/configs/rpcin_cross_plan.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
OUTPUT_DIR: ./outputs/phys | ||
DATA_ROOT: 'data/planning/' | ||
DATASET_ABS: 'PHYREO' # online version of PHYRE data loader | ||
PHYRE_PROTOCAL: 'cross' | ||
PHYRE_FOLD: 0 | ||
SOLVER: | ||
BASE_LR: 2.0e-4 # single GPU LR | ||
WEIGHT_DECAY: 3.0e-7 | ||
SCHEDULER: 'cosine' | ||
MAX_ITERS: 6000000 | ||
VAL_INTERVAL: 600000 | ||
WARMUP_ITERS: 40000 | ||
BATCH_SIZE: 40 # single GPU Batch Size | ||
INPUT: | ||
PRELOAD_TO_MEMORY: False | ||
IMAGE_CHANNEL: 3 | ||
RPIN: | ||
BACKBONE: 'hourglass_bn' | ||
ARCH: 'rpcin' | ||
VE_FEAT_DIM: 256 | ||
IN_FEAT_DIM: 256 | ||
# prediction setting: | ||
INPUT_SIZE: 1 | ||
PRED_SIZE_TRAIN: 10 | ||
PRED_SIZE_TEST: 10 | ||
# input setting: | ||
INPUT_HEIGHT: 128 | ||
INPUT_WIDTH: 128 | ||
MAX_NUM_OBJS: 6 | ||
# data augmentation | ||
HORIZONTAL_FLIP: True | ||
VERTICAL_FLIP: False | ||
# loss weight | ||
POSITION_LOSS_WEIGHT: 1 | ||
# ----- RoIPooling Setting | ||
ROI_POOL_SIZE: 5 | ||
ROI_POOL_SAMPLE_R: 2 | ||
# ----- mask prediction | ||
MASK_LOSS_WEIGHT: 0.003 | ||
MASK_SIZE: 21 | ||
# ----- Architecture | ||
N_EXTRA_ROI_F: 2 | ||
N_EXTRA_PRED_F: 0 | ||
N_EXTRA_SELFD_F: 0 | ||
N_EXTRA_RELD_F: 0 | ||
N_EXTRA_AFFECTOR_F: 0 | ||
N_EXTRA_AGGREGATOR_F: 0 | ||
EXTRA_F_KERNEL: 3 | ||
EXTRA_F_PADDING: 1 | ||
IMAGE_EXT: '.npy' | ||
SEQ_CLS_LOSS_WEIGHT: 0.02 |
50 changes: 50 additions & 0 deletions
50
sciencebirdsagents/PhyreAgents/RPIN/configs/rpcin_cross_pred.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
OUTPUT_DIR: ./outputs/phys | ||
DATA_ROOT: 'data/PHYRE_1fps_p100n400/' | ||
DATASET_ABS: 'PHYRE' | ||
PHYRE_PROTOCAL: 'cross' | ||
PHYRE_FOLD: 0 | ||
SOLVER: | ||
BASE_LR: 2.0e-4 # single GPU LR | ||
WEIGHT_DECAY: 3.0e-7 | ||
SCHEDULER: 'cosine' | ||
MAX_ITERS: 6000000 | ||
VAL_INTERVAL: 6000000 | ||
WARMUP_ITERS: 40000 | ||
BATCH_SIZE: 40 # single GPU Batch Size | ||
INPUT: | ||
PRELOAD_TO_MEMORY: False | ||
IMAGE_CHANNEL: 3 | ||
RPIN: | ||
BACKBONE: 'hourglass_bn' | ||
ARCH: 'rpcin' | ||
VE_FEAT_DIM: 256 | ||
IN_FEAT_DIM: 256 | ||
# prediction setting: | ||
INPUT_SIZE: 1 | ||
PRED_SIZE_TRAIN: 5 | ||
PRED_SIZE_TEST: 10 | ||
# input setting: | ||
INPUT_HEIGHT: 128 | ||
INPUT_WIDTH: 128 | ||
MAX_NUM_OBJS: 6 | ||
# data augmentation | ||
HORIZONTAL_FLIP: True | ||
VERTICAL_FLIP: False | ||
# loss weight | ||
POSITION_LOSS_WEIGHT: 1 | ||
# ----- RoIPooling Setting | ||
ROI_POOL_SIZE: 5 | ||
ROI_POOL_SAMPLE_R: 2 | ||
# ----- mask prediction | ||
MASK_LOSS_WEIGHT: 0.003 | ||
MASK_SIZE: 21 | ||
# ----- Architecture | ||
N_EXTRA_ROI_F: 2 | ||
N_EXTRA_PRED_F: 0 | ||
N_EXTRA_SELFD_F: 0 | ||
N_EXTRA_RELD_F: 0 | ||
N_EXTRA_AFFECTOR_F: 0 | ||
N_EXTRA_AGGREGATOR_F: 0 | ||
EXTRA_F_KERNEL: 3 | ||
EXTRA_F_PADDING: 1 | ||
IMAGE_EXT: '.npy' |
Oops, something went wrong.