├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── data ├── .gitignore └── fetch_vt-refine_data.sh └── docker ├── Dockerfile ├── build.sh └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/fetch_vt-refine_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/data/fetch_vt-refine_data.sh -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVlabs/vt-refine/HEAD/docker/run.sh --------------------------------------------------------------------------------