├── README.md ├── bib ├── detection_filter.py ├── eval.py ├── inplace_abn ├── __init__.py ├── bn.py ├── functions.py └── src │ ├── common.h │ ├── inplace_abn.cpp │ ├── inplace_abn.h │ ├── inplace_abn_cpu.cpp │ └── inplace_abn_cuda.cu ├── metrics └── iou.py ├── networks ├── __init__.py ├── deeplabv3.py ├── inits.py └── nets.py ├── requirements.txt └── utils ├── __init__.py └── parallel.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/README.md -------------------------------------------------------------------------------- /bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/bib -------------------------------------------------------------------------------- /detection_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/detection_filter.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/eval.py -------------------------------------------------------------------------------- /inplace_abn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/__init__.py -------------------------------------------------------------------------------- /inplace_abn/bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/bn.py -------------------------------------------------------------------------------- /inplace_abn/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/functions.py -------------------------------------------------------------------------------- /inplace_abn/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/src/common.h -------------------------------------------------------------------------------- /inplace_abn/src/inplace_abn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/src/inplace_abn.cpp -------------------------------------------------------------------------------- /inplace_abn/src/inplace_abn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/src/inplace_abn.h -------------------------------------------------------------------------------- /inplace_abn/src/inplace_abn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/src/inplace_abn_cpu.cpp -------------------------------------------------------------------------------- /inplace_abn/src/inplace_abn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/inplace_abn/src/inplace_abn_cuda.cu -------------------------------------------------------------------------------- /metrics/iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/metrics/iou.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/deeplabv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/networks/deeplabv3.py -------------------------------------------------------------------------------- /networks/inits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/networks/inits.py -------------------------------------------------------------------------------- /networks/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/networks/nets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yz93/anchor-diff-VOS/HEAD/utils/parallel.py --------------------------------------------------------------------------------