-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 87dc803
Showing
37 changed files
with
5,272 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.idea/ | ||
__pycache__/ | ||
*.pyc | ||
.DS_Store |
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,39 @@ | ||
# GMED-anonymous-submission | ||
|
||
## Links for downloadable datasets: | ||
- MNIST dataset | ||
|
||
http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz | ||
http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz | ||
http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz | ||
http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz | ||
|
||
- CIFAR-10 and CIFAR-100 datsets | ||
|
||
https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz | ||
https://www.cs.toronto.edu/~kriz/cifar-100-python.tar.gz | ||
|
||
|
||
- mini-ImageNet | ||
|
||
https://data.deepai.org/miniimagenet.zip | ||
|
||
The partition of the datasets into tasks will be performed each time you train the model. | ||
|
||
## Running experiments | ||
Running experiments on MNIST | ||
|
||
``` | ||
export stride=0.1 # editing stride (alpha) | ||
export reg=0.01 # reg strength (beta) | ||
export dataset="split_mnist" | ||
export mem=500 | ||
export start_seed=100 | ||
export stop_seed=109 | ||
export method="-" # change to "mirr" for MIR+GMED | ||
./scripts/gme_tune_${dataset}.sh ${dataset}_iter1_stride${stride}_1_0_2${reg}_m${mem} 1 ${stride} 1 0 2 ${mem} ${method} ${start_seed} ${stop_seed} "OUTPUT_DIR=runs EXTERNAL.OCL.REG_STRENGTH=${reg}" | ||
``` | ||
|
||
Similary, experiments on other datasets can be run by changing the name of the dataset variable above. | ||
|
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,11 @@ | ||
class _Config: | ||
def __init__(self): | ||
self.image_size = 224 | ||
self.vocab_path = '' | ||
|
||
def update(self, cfg): | ||
for k in cfg.__dict__: | ||
if k not in self.__dict__: | ||
setattr(self, k, cfg.__dict__[k]) | ||
|
||
cfg = _Config() |
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,102 @@ | ||
# config file | ||
MNIST: | ||
ACTIVATED: True | ||
TASK: 'permute' | ||
EPOCH: 1 | ||
INSTANCE_NUM: 1000 | ||
EXTERNAL: | ||
IMAGE_IDS: [] | ||
OBJECT_NAMES: [] | ||
# OBJECT_NAMES: [] | ||
ATTRIBUTES: [] | ||
|
||
OBJECT_TOP_K: 100 | ||
# 0 refers to all | ||
ATTRIBUTE_TOP_K: 0 | ||
RELOAD_SCENE_GRAPH: False | ||
|
||
# Change the directory of your own | ||
IMG_DIR: "/home/xisen/online-concept-learning/GQA/images" | ||
TRAIN_SCENE_GRAPH_PATH: "/home/xisen/online-concept-learning/GQA/sceneGraphs/train_sceneGraphs.json" | ||
TRAIN_SCENE_GRAPH_DUMP_PATH: "/home/xisen/online-concept-learning/GQADump/sceneGraphs/train_sceneGraphs_dump.pkl" | ||
VAL_SCENE_GRAPH_PATH: "/home/xisen/online-concept-learning/GQA/sceneGraphs/val_sceneGraphs.json" | ||
VAL_SCENE_GRAPH_DUMP_PATH: "/home/xisen/online-concept-learning/GQADump/sceneGraphs/val_sceneGraphs_dump.pkl" | ||
|
||
NUM_WORKERS: 0 | ||
PIN_MEMORY: True | ||
SHUFFLE: False | ||
# IMAGES PER GPU | ||
BATCH_SIZE: 10 | ||
BALANCE_ATTRIBUTES: False | ||
IMAGE_SIZE: 224 | ||
IMAGE: | ||
HEIGHT: 640 | ||
WIDTH: 640 | ||
REPLAY: | ||
MEM_BS: 10 | ||
MEM_LIMIT: 100 | ||
FILTER_SELF: 0 | ||
|
||
# 0 for unknown | ||
ROI_BOX_HEAD: | ||
NUM_ATTR: 13 | ||
|
||
OPTIMIZER: | ||
ADAM: False | ||
|
||
OCL: | ||
ACTIVATED: True | ||
SORT_BY_ATTRIBUTES: False | ||
ALGO: "VERX" | ||
VOCAB: "/home/xisen/online-concept-learning/vocab/vocab_gqa_full.pkl" | ||
INPUT: | ||
MIN_SIZE_TRAIN: (640,) | ||
MAX_SIZE_TRAIN: 640 | ||
MIN_SIZE_TEST: 640 | ||
MAX_SIZE_TEST: 640 | ||
MODEL: | ||
META_ARCHITECTURE: "GeneralizedRCNN" | ||
# WEIGHT: "catalog://ImageNetPretrained/MSRA/R-50" # ResNet-50 on Imagenet | ||
WEIGHT: "./pretrained-models/e2e_faster_rcnn_R_50_FPN_1x_trimmed.pth" # faster-rcnn-r50 | ||
BACKBONE: | ||
CONV_BODY: "R-50-FPN" | ||
RESNETS: | ||
BACKBONE_OUT_CHANNELS: 256 | ||
RPN: | ||
USE_FPN: True | ||
ANCHOR_STRIDE: (4, 8, 16, 32, 64) | ||
PRE_NMS_TOP_N_TRAIN: 1200 | ||
PRE_NMS_TOP_N_TEST: 1200 | ||
PRE_NMS_TOP_N_TEST: 200 | ||
POST_NMS_TOP_N_TEST: 200 | ||
FPN_POST_NMS_TOP_N_TRAIN: 1000 | ||
FPN_POST_NMS_TOP_N_TEST: 1000 | ||
ROI_HEADS: | ||
USE_FPN: True | ||
# BG_IOU_THRESHOLD: 0.3 | ||
# FG_IOU_THRESHOLD: 0.5 | ||
# OHEM: False | ||
ROI_BOX_HEAD: | ||
POOLER_RESOLUTION: 7 | ||
POOLER_SCALES: (0.25, 0.125, 0.0625, 0.03125) | ||
POOLER_SAMPLING_RATIO: 2 | ||
# MLP_HEAD_DIM: 2048 | ||
FEATURE_EXTRACTOR: "FPN2MLPFeatureExtractor" | ||
PREDICTOR: "FPNPredictor" | ||
NUM_CLASSES: 1601 | ||
MASK_ON: False | ||
TYPE: "float32" | ||
DATASETS: | ||
TRAIN: ("coco_gqa_train",) | ||
TEST: ("coco_gqa_val",) | ||
DATALOADER: | ||
SIZE_DIVISIBILITY: 32 | ||
SOLVER: | ||
BASE_LR: 0.05 | ||
MOMENTUM: 0. | ||
WEIGHT_DECAY: 0.00001 | ||
STEPS: (12500, ) | ||
MAX_ITER: 30000 | ||
IMS_PER_BATCH: 32 | ||
TEST: | ||
IMS_PER_BATCH: 32 |
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,106 @@ | ||
# config file | ||
MNIST: | ||
ACTIVATED: True | ||
TASK: 'rotate' | ||
EPOCH: 1 | ||
INSTANCE_NUM: 1000 | ||
EXTERNAL: | ||
IMAGE_IDS: [] | ||
OBJECT_NAMES: [] | ||
# OBJECT_NAMES: [] | ||
ATTRIBUTES: [] | ||
|
||
OBJECT_TOP_K: 100 | ||
# 0 refers to all | ||
ATTRIBUTE_TOP_K: 0 | ||
RELOAD_SCENE_GRAPH: False | ||
|
||
# Change the directory of your own | ||
IMG_DIR: "/home/xisen/online-concept-learning/GQA/images" | ||
TRAIN_SCENE_GRAPH_PATH: "/home/xisen/online-concept-learning/GQA/sceneGraphs/train_sceneGraphs.json" | ||
TRAIN_SCENE_GRAPH_DUMP_PATH: "/home/xisen/online-concept-learning/GQADump/sceneGraphs/train_sceneGraphs_dump.pkl" | ||
VAL_SCENE_GRAPH_PATH: "/home/xisen/online-concept-learning/GQA/sceneGraphs/val_sceneGraphs.json" | ||
VAL_SCENE_GRAPH_DUMP_PATH: "/home/xisen/online-concept-learning/GQADump/sceneGraphs/val_sceneGraphs_dump.pkl" | ||
|
||
NUM_WORKERS: 0 | ||
PIN_MEMORY: True | ||
SHUFFLE: False | ||
# IMAGES PER GPU | ||
BATCH_SIZE: 10 | ||
BALANCE_ATTRIBUTES: False | ||
IMAGE_SIZE: 224 | ||
IMAGE: | ||
HEIGHT: 640 | ||
WIDTH: 640 | ||
REPLAY: | ||
MEM_BS: 10 | ||
MEM_LIMIT: 200 | ||
FILTER_SELF: 0 | ||
|
||
# 0 for unknown | ||
ROI_BOX_HEAD: | ||
NUM_ATTR: 13 | ||
|
||
OPTIMIZER: | ||
ADAM: False | ||
|
||
OCL: | ||
ACTIVATED: True | ||
SORT_BY_ATTRIBUTES: False | ||
ALGO: "VERX" | ||
TASK_INCREMENTAL: False | ||
TASK_NUM: 20 | ||
CLASS_NUM: 10 | ||
|
||
VOCAB: "/home/xisen/online-concept-learning/vocab/vocab_gqa_full.pkl" | ||
INPUT: | ||
MIN_SIZE_TRAIN: (640,) | ||
MAX_SIZE_TRAIN: 640 | ||
MIN_SIZE_TEST: 640 | ||
MAX_SIZE_TEST: 640 | ||
MODEL: | ||
META_ARCHITECTURE: "GeneralizedRCNN" | ||
# WEIGHT: "catalog://ImageNetPretrained/MSRA/R-50" # ResNet-50 on Imagenet | ||
WEIGHT: "./pretrained-models/e2e_faster_rcnn_R_50_FPN_1x_trimmed.pth" # faster-rcnn-r50 | ||
BACKBONE: | ||
CONV_BODY: "R-50-FPN" | ||
RESNETS: | ||
BACKBONE_OUT_CHANNELS: 256 | ||
RPN: | ||
USE_FPN: True | ||
ANCHOR_STRIDE: (4, 8, 16, 32, 64) | ||
PRE_NMS_TOP_N_TRAIN: 1200 | ||
PRE_NMS_TOP_N_TEST: 1200 | ||
PRE_NMS_TOP_N_TEST: 200 | ||
POST_NMS_TOP_N_TEST: 200 | ||
FPN_POST_NMS_TOP_N_TRAIN: 1000 | ||
FPN_POST_NMS_TOP_N_TEST: 1000 | ||
ROI_HEADS: | ||
USE_FPN: True | ||
# BG_IOU_THRESHOLD: 0.3 | ||
# FG_IOU_THRESHOLD: 0.5 | ||
# OHEM: False | ||
ROI_BOX_HEAD: | ||
POOLER_RESOLUTION: 7 | ||
POOLER_SCALES: (0.25, 0.125, 0.0625, 0.03125) | ||
POOLER_SAMPLING_RATIO: 2 | ||
# MLP_HEAD_DIM: 2048 | ||
FEATURE_EXTRACTOR: "FPN2MLPFeatureExtractor" | ||
PREDICTOR: "FPNPredictor" | ||
NUM_CLASSES: 1601 | ||
MASK_ON: False | ||
TYPE: "float32" | ||
DATASETS: | ||
TRAIN: ("coco_gqa_train",) | ||
TEST: ("coco_gqa_val",) | ||
DATALOADER: | ||
SIZE_DIVISIBILITY: 32 | ||
SOLVER: | ||
BASE_LR: 0.05 | ||
MOMENTUM: 0. | ||
WEIGHT_DECAY: 0.00001 | ||
STEPS: (12500, ) | ||
MAX_ITER: 30000 | ||
IMS_PER_BATCH: 32 | ||
TEST: | ||
IMS_PER_BATCH: 32 |
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,107 @@ | ||
# config file | ||
CIFAR: | ||
ACTIVATED: True | ||
EPOCH: 1 | ||
DATASET: "CIFAR10" | ||
VERX: | ||
LOSS1: 0 | ||
LOSS2: 0 | ||
EXTERNAL: | ||
IMAGE_IDS: [] | ||
OBJECT_NAMES: [] | ||
# OBJECT_NAMES: [] | ||
ATTRIBUTES: [] | ||
|
||
OBJECT_TOP_K: 100 | ||
# 0 refers to all | ||
ATTRIBUTE_TOP_K: 0 | ||
RELOAD_SCENE_GRAPH: False | ||
|
||
# Change the directory of your own | ||
IMG_DIR: "/home/xisen/online-concept-learning/GQA/images" | ||
TRAIN_SCENE_GRAPH_PATH: "/home/xisen/online-concept-learning/GQA/sceneGraphs/train_sceneGraphs.json" | ||
TRAIN_SCENE_GRAPH_DUMP_PATH: "/home/xisen/online-concept-learning/GQADump/sceneGraphs/train_sceneGraphs_dump.pkl" | ||
VAL_SCENE_GRAPH_PATH: "/home/xisen/online-concept-learning/GQA/sceneGraphs/val_sceneGraphs.json" | ||
VAL_SCENE_GRAPH_DUMP_PATH: "/home/xisen/online-concept-learning/GQADump/sceneGraphs/val_sceneGraphs_dump.pkl" | ||
|
||
NUM_WORKERS: 0 | ||
PIN_MEMORY: True | ||
SHUFFLE: False | ||
# IMAGES PER GPU | ||
BATCH_SIZE: 10 | ||
BALANCE_ATTRIBUTES: False | ||
IMAGE_SIZE: 224 | ||
IMAGE: | ||
HEIGHT: 640 | ||
WIDTH: 640 | ||
REPLAY: | ||
MEM_BS: 10 | ||
MEM_LIMIT: 500 | ||
FILTER_SELF: 0 | ||
|
||
# 0 for unknown | ||
ROI_BOX_HEAD: | ||
NUM_ATTR: 13 | ||
|
||
OPTIMIZER: | ||
ADAM: False | ||
|
||
OCL: | ||
ACTIVATED: True | ||
SORT_BY_ATTRIBUTES: False | ||
ALGO: "VERX" | ||
TASK_NUM: 5 | ||
CLASS_NUM: 2 | ||
|
||
VOCAB: "/home/xisen/online-concept-learning/vocab/vocab_gqa_full.pkl" | ||
INPUT: | ||
MIN_SIZE_TRAIN: (640,) | ||
MAX_SIZE_TRAIN: 640 | ||
MIN_SIZE_TEST: 640 | ||
MAX_SIZE_TEST: 640 | ||
MODEL: | ||
META_ARCHITECTURE: "GeneralizedRCNN" | ||
# WEIGHT: "catalog://ImageNetPretrained/MSRA/R-50" # ResNet-50 on Imagenet | ||
WEIGHT: "./pretrained-models/e2e_faster_rcnn_R_50_FPN_1x_trimmed.pth" # faster-rcnn-r50 | ||
BACKBONE: | ||
CONV_BODY: "R-50-FPN" | ||
RESNETS: | ||
BACKBONE_OUT_CHANNELS: 256 | ||
RPN: | ||
USE_FPN: True | ||
ANCHOR_STRIDE: (4, 8, 16, 32, 64) | ||
PRE_NMS_TOP_N_TRAIN: 1200 | ||
PRE_NMS_TOP_N_TEST: 1200 | ||
PRE_NMS_TOP_N_TEST: 200 | ||
POST_NMS_TOP_N_TEST: 200 | ||
FPN_POST_NMS_TOP_N_TRAIN: 1000 | ||
FPN_POST_NMS_TOP_N_TEST: 1000 | ||
ROI_HEADS: | ||
USE_FPN: True | ||
# BG_IOU_THRESHOLD: 0.3 | ||
# FG_IOU_THRESHOLD: 0.5 | ||
# OHEM: False | ||
ROI_BOX_HEAD: | ||
POOLER_RESOLUTION: 7 | ||
POOLER_SCALES: (0.25, 0.125, 0.0625, 0.03125) | ||
POOLER_SAMPLING_RATIO: 2 | ||
# MLP_HEAD_DIM: 2048 | ||
FEATURE_EXTRACTOR: "FPN2MLPFeatureExtractor" | ||
PREDICTOR: "FPNPredictor" | ||
NUM_CLASSES: 1601 | ||
MASK_ON: False | ||
TYPE: "float32" | ||
DATASETS: | ||
TRAIN: ("coco_gqa_train",) | ||
TEST: ("coco_gqa_val",) | ||
DATALOADER: | ||
SIZE_DIVISIBILITY: 32 | ||
SOLVER: | ||
BASE_LR: 0.1 | ||
MOMENTUM: 0. | ||
WEIGHT_DECAY: 0.00001 | ||
STEPS: (12500, ) | ||
MAX_ITER: 30000 | ||
IMS_PER_BATCH: 32 | ||
TEST: | ||
IMS_PER_BATCH: 32 |
Oops, something went wrong.