Awesome
Amodal Segmentation through Out-of-Task and Out-of-Distribution Generalization with a Bayesian Model
Paper | arXiv
Official PyTorch implementation for the CVPR 2022 paper: "Amodal Segmentation through Out-of-Task and Out-of-Distribution Generalization with a Bayesian Model"
<a href="#license"><img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
<img src="misc/teaser.jpg" width="570" />Quick Start
Setup environment / Download models and dataset
conda env create -f environment.yml
conda activate amodal
bash download.sh
- In the case that
download.sh
cannot be executed properly, please identify the missing directory and rerun thewget
command for the corresponding zip file. If the issue persists, please refer to thedownload.sh
description below.
Run experiments
-
Table 1: change the file
Code/configs.py
to setTABLE_NUM = 1
andMODEL_TYPE = 'ML'
orMODEL_TYPE = 'E2E'
and run the command below. -
Table 2: change the file
Code/configs.py
to setTABLE_NUM = 2
andMODEL_TYPE = 'ML'
orMODEL_TYPE = 'E2E'
and run the command below. -
Table 3: change the file
Code/configs.py
to setTABLE_NUM = 3
andMODEL_TYPE = 'ML'
orMODEL_TYPE = 'E2E'
and run the command below.
cd Code
python3 run_experiment.py
Optional: download.sh
Description
Download models
-
Download pretrained model weights from here, unzip
Models.zip
and place the folder as/Models/
. -
Download RPN results used for evaluatiooon from here, unzip
RPN_results.zip
and place the folder as/RPN_results/
.
Download dataset
-
Download Occluded Vehicle Dataset from here, unzip
Occluded_Vehicles.zip
and place the folder as/Dataset/Occluded_Vehicles/
. -
Download KINS Dataset from here, unzip
kitti.zip
and place the folder as/Dataset/kitti/
. -
Download COCOA Dataset from here, unzip
COCO.zip
and place the folder as/Dataset/COCO/
. Additionally, download COCO data train2014 and val2014 and place the folders as/Dataset/COCO/train2014/
and/Dataset/COCO/val2014/
.
Qualitative Results
<img src='misc/qualitative.jpg'/>Citation
Please cite the following papers if you use the code directly or indirectly in your research projects.
@article{sun2021amodal,
title=Amodal Segmentation through Out-of-Task and Out-of-Distribution Generalization with a Bayesian Model},
author={Sun, Yihong and Kortylewski, Adam and Yuille, Alan},
journal={arXiv preprint arXiv:2010.13175},
year={2021}
}