├── LICENSE ├── README.md ├── dataset ├── __init__.py ├── aug.py ├── coco.py ├── dataset.py ├── davis.py └── youtube.py ├── demo.py ├── eval.py ├── evaldavis2017 ├── __init__.py ├── davis2017 │ ├── __init__.py │ ├── davis.py │ ├── evaluation.py │ ├── metrics.py │ ├── results.py │ └── utils.py └── evaluation_method.py ├── model ├── __init__.py └── model.py ├── train_coco.py ├── train_davis.py └── utils ├── __init__.py └── helpers.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/README.md -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset/aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/dataset/aug.py -------------------------------------------------------------------------------- /dataset/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/dataset/coco.py -------------------------------------------------------------------------------- /dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/dataset/dataset.py -------------------------------------------------------------------------------- /dataset/davis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/dataset/davis.py -------------------------------------------------------------------------------- /dataset/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/dataset/youtube.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/demo.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/eval.py -------------------------------------------------------------------------------- /evaldavis2017/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /evaldavis2017/davis2017/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/davis2017/__init__.py -------------------------------------------------------------------------------- /evaldavis2017/davis2017/davis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/davis2017/davis.py -------------------------------------------------------------------------------- /evaldavis2017/davis2017/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/davis2017/evaluation.py -------------------------------------------------------------------------------- /evaldavis2017/davis2017/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/davis2017/metrics.py -------------------------------------------------------------------------------- /evaldavis2017/davis2017/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/davis2017/results.py -------------------------------------------------------------------------------- /evaldavis2017/davis2017/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/davis2017/utils.py -------------------------------------------------------------------------------- /evaldavis2017/evaluation_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/evaldavis2017/evaluation_method.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/model/model.py -------------------------------------------------------------------------------- /train_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/train_coco.py -------------------------------------------------------------------------------- /train_davis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/train_davis.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haochenheheda/Training-Code-of-STM/HEAD/utils/helpers.py --------------------------------------------------------------------------------