├── LICENSE ├── README.md ├── data ├── coco_classes.py └── hico │ ├── hico_constants.py │ ├── hoi_cls_count.py │ ├── mat_to_json.py │ ├── process.sh │ ├── readme.md │ └── split_ids.py ├── exp ├── detect_coco_objects │ ├── evaluate_boxes.py │ ├── prepare_data_for_faster_rcnn.py │ ├── run.py │ └── select_confident_boxes.py ├── experimenter.py ├── hico_eval │ ├── compute_map.py │ ├── compute_map.sh │ └── sample_complexity_analysis.py ├── hoi_classifier │ ├── data │ │ ├── assign_pose_to_human_candidates.py │ │ ├── box_features.py │ │ ├── cache_box_features.py │ │ ├── cache_pose_features.py │ │ ├── features_dataset.py │ │ ├── hoi_candidates.py │ │ ├── label_hoi_candidates.py │ │ ├── pose_features.py │ │ └── write_faster_rcnn_feats_to_hdf5.py │ ├── eval.py │ ├── models │ │ ├── hoi_classifier_model.py │ │ ├── scatter_verbs_to_hois.py │ │ ├── verb_given_boxes_and_object_label.py │ │ ├── verb_given_human_appearance.py │ │ ├── verb_given_human_pose.py │ │ └── verb_given_object_appearance.py │ ├── run.py │ ├── scripts │ │ ├── eval.sh │ │ ├── preprocess.sh │ │ ├── train.sh │ │ └── visualize.sh │ ├── train.py │ └── vis │ │ ├── faster_rcnn_aps.py │ │ ├── top_boxes_per_hoi.py │ │ ├── vis_human_pose.py │ │ ├── vis_interaction_aps_per_object.py │ │ └── vis_object_aps_per_interaction.py └── run_template.py ├── find_correlation.py ├── imgs ├── ACP_matrix.png └── ACP_teaser.png └── utils ├── argparse_utils.py ├── bbox_utils.py ├── constants.py ├── html_writer.py ├── io.py ├── losses.py ├── model.py └── pytorch_layers.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/README.md -------------------------------------------------------------------------------- /data/coco_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/coco_classes.py -------------------------------------------------------------------------------- /data/hico/hico_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/hico/hico_constants.py -------------------------------------------------------------------------------- /data/hico/hoi_cls_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/hico/hoi_cls_count.py -------------------------------------------------------------------------------- /data/hico/mat_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/hico/mat_to_json.py -------------------------------------------------------------------------------- /data/hico/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/hico/process.sh -------------------------------------------------------------------------------- /data/hico/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/hico/readme.md -------------------------------------------------------------------------------- /data/hico/split_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/data/hico/split_ids.py -------------------------------------------------------------------------------- /exp/detect_coco_objects/evaluate_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/detect_coco_objects/evaluate_boxes.py -------------------------------------------------------------------------------- /exp/detect_coco_objects/prepare_data_for_faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/detect_coco_objects/prepare_data_for_faster_rcnn.py -------------------------------------------------------------------------------- /exp/detect_coco_objects/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/detect_coco_objects/run.py -------------------------------------------------------------------------------- /exp/detect_coco_objects/select_confident_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/detect_coco_objects/select_confident_boxes.py -------------------------------------------------------------------------------- /exp/experimenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/experimenter.py -------------------------------------------------------------------------------- /exp/hico_eval/compute_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hico_eval/compute_map.py -------------------------------------------------------------------------------- /exp/hico_eval/compute_map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hico_eval/compute_map.sh -------------------------------------------------------------------------------- /exp/hico_eval/sample_complexity_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hico_eval/sample_complexity_analysis.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/assign_pose_to_human_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/assign_pose_to_human_candidates.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/box_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/box_features.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/cache_box_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/cache_box_features.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/cache_pose_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/cache_pose_features.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/features_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/features_dataset.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/hoi_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/hoi_candidates.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/label_hoi_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/label_hoi_candidates.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/pose_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/pose_features.py -------------------------------------------------------------------------------- /exp/hoi_classifier/data/write_faster_rcnn_feats_to_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/data/write_faster_rcnn_feats_to_hdf5.py -------------------------------------------------------------------------------- /exp/hoi_classifier/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/eval.py -------------------------------------------------------------------------------- /exp/hoi_classifier/models/hoi_classifier_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/models/hoi_classifier_model.py -------------------------------------------------------------------------------- /exp/hoi_classifier/models/scatter_verbs_to_hois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/models/scatter_verbs_to_hois.py -------------------------------------------------------------------------------- /exp/hoi_classifier/models/verb_given_boxes_and_object_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/models/verb_given_boxes_and_object_label.py -------------------------------------------------------------------------------- /exp/hoi_classifier/models/verb_given_human_appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/models/verb_given_human_appearance.py -------------------------------------------------------------------------------- /exp/hoi_classifier/models/verb_given_human_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/models/verb_given_human_pose.py -------------------------------------------------------------------------------- /exp/hoi_classifier/models/verb_given_object_appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/models/verb_given_object_appearance.py -------------------------------------------------------------------------------- /exp/hoi_classifier/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/run.py -------------------------------------------------------------------------------- /exp/hoi_classifier/scripts/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/scripts/eval.sh -------------------------------------------------------------------------------- /exp/hoi_classifier/scripts/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/scripts/preprocess.sh -------------------------------------------------------------------------------- /exp/hoi_classifier/scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/scripts/train.sh -------------------------------------------------------------------------------- /exp/hoi_classifier/scripts/visualize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/scripts/visualize.sh -------------------------------------------------------------------------------- /exp/hoi_classifier/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/train.py -------------------------------------------------------------------------------- /exp/hoi_classifier/vis/faster_rcnn_aps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/vis/faster_rcnn_aps.py -------------------------------------------------------------------------------- /exp/hoi_classifier/vis/top_boxes_per_hoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/vis/top_boxes_per_hoi.py -------------------------------------------------------------------------------- /exp/hoi_classifier/vis/vis_human_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/vis/vis_human_pose.py -------------------------------------------------------------------------------- /exp/hoi_classifier/vis/vis_interaction_aps_per_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/vis/vis_interaction_aps_per_object.py -------------------------------------------------------------------------------- /exp/hoi_classifier/vis/vis_object_aps_per_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/hoi_classifier/vis/vis_object_aps_per_interaction.py -------------------------------------------------------------------------------- /exp/run_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/exp/run_template.py -------------------------------------------------------------------------------- /find_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/find_correlation.py -------------------------------------------------------------------------------- /imgs/ACP_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/imgs/ACP_matrix.png -------------------------------------------------------------------------------- /imgs/ACP_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/imgs/ACP_teaser.png -------------------------------------------------------------------------------- /utils/argparse_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/argparse_utils.py -------------------------------------------------------------------------------- /utils/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/bbox_utils.py -------------------------------------------------------------------------------- /utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/constants.py -------------------------------------------------------------------------------- /utils/html_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/html_writer.py -------------------------------------------------------------------------------- /utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/io.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/model.py -------------------------------------------------------------------------------- /utils/pytorch_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dong-JinKim/ActionCooccurrencePriors/HEAD/utils/pytorch_layers.py --------------------------------------------------------------------------------