gitextract_gj6tfm4_/ ├── LICENSE ├── README.md ├── README_zh_Hans.md ├── dataset/ │ ├── augmentation.py │ ├── coco.py │ ├── imagematte.py │ ├── spd.py │ ├── videomatte.py │ └── youtubevis.py ├── documentation/ │ ├── inference.md │ ├── inference_zh_Hans.md │ ├── misc/ │ │ ├── aim_test.txt │ │ ├── d646_test.txt │ │ ├── dvm_background_test_clips.txt │ │ ├── dvm_background_train_clips.txt │ │ ├── imagematte_train.txt │ │ ├── imagematte_valid.txt │ │ └── spd_preprocess.py │ └── training.md ├── evaluation/ │ ├── evaluate_hr.py │ ├── evaluate_lr.py │ ├── generate_imagematte_with_background_image.py │ ├── generate_imagematte_with_background_video.py │ ├── generate_videomatte_with_background_image.py │ └── generate_videomatte_with_background_video.py ├── hubconf.py ├── inference.py ├── inference_speed_test.py ├── inference_utils.py ├── model/ │ ├── __init__.py │ ├── decoder.py │ ├── deep_guided_filter.py │ ├── fast_guided_filter.py │ ├── lraspp.py │ ├── mobilenetv3.py │ ├── model.py │ └── resnet.py ├── requirements_inference.txt ├── requirements_training.txt ├── train.py ├── train_config.py └── train_loss.py