├── .gitignore ├── LICENSE ├── README.md ├── config ├── config.yml └── db.yml ├── doc └── change-detection.pdf ├── evaluations ├── bic.scd.txt ├── div.scd.txt ├── ours.txt └── tristounet.2s.scd.txt └── model ├── architecture.yml └── weight.h5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/config/config.yml -------------------------------------------------------------------------------- /config/db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/config/db.yml -------------------------------------------------------------------------------- /doc/change-detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/doc/change-detection.pdf -------------------------------------------------------------------------------- /evaluations/bic.scd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/evaluations/bic.scd.txt -------------------------------------------------------------------------------- /evaluations/div.scd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/evaluations/div.scd.txt -------------------------------------------------------------------------------- /evaluations/ours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/evaluations/ours.txt -------------------------------------------------------------------------------- /evaluations/tristounet.2s.scd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/evaluations/tristounet.2s.scd.txt -------------------------------------------------------------------------------- /model/architecture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/model/architecture.yml -------------------------------------------------------------------------------- /model/weight.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinruiqing/change_detection/HEAD/model/weight.h5 --------------------------------------------------------------------------------