├── .gitattributes ├── LICENSE.md ├── README-Docker-Source-Location.md ├── README.md ├── README_NIGHTLY.md ├── SECURITY.md ├── ubuntu-14.04 ├── version_1 │ └── 1.7.2 │ │ ├── cpu │ │ └── runtime │ │ │ └── Dockerfile │ │ └── gpu │ │ └── runtime │ │ └── Dockerfile └── version_2 │ ├── 1bitsgd │ └── runtime │ │ ├── python-2 │ │ └── Dockerfile │ │ └── python-3 │ │ └── Dockerfile │ ├── 2.0.beta10.0 │ ├── cpu │ │ └── runtime │ │ │ ├── Dockerfile │ │ │ ├── install-cntk-docker.sh │ │ │ └── python-2.7 │ │ │ ├── Dockerfile │ │ │ └── install-cntk-docker.sh │ └── gpu │ │ └── runtime │ │ ├── Dockerfile │ │ ├── install-cntk-docker.sh │ │ └── python-2.7 │ │ ├── Dockerfile │ │ └── install-cntk-docker.sh │ ├── 2.0.beta11.0 │ ├── cpu │ │ └── runtime │ │ │ ├── Dockerfile │ │ │ ├── install-cntk-docker.sh │ │ │ └── python-2.7 │ │ │ ├── Dockerfile │ │ │ └── install-cntk-docker.sh │ └── gpu │ │ └── runtime │ │ ├── Dockerfile │ │ ├── install-cntk-docker.sh │ │ └── python-2.7 │ │ ├── Dockerfile │ │ └── install-cntk-docker.sh │ ├── 2.0.beta7.0 │ ├── cpu │ │ └── runtime │ │ │ ├── Dockerfile │ │ │ └── install-cntk-docker.sh │ └── gpu │ │ └── runtime │ │ ├── Dockerfile │ │ └── install-cntk-docker.sh │ ├── 2.0.beta8.0 │ ├── cpu │ │ └── runtime │ │ │ ├── Dockerfile │ │ │ └── install-cntk-docker.sh │ └── gpu │ │ └── runtime │ │ ├── Dockerfile │ │ └── install-cntk-docker.sh │ ├── 2.0.beta9.0 │ ├── cpu │ │ └── runtime │ │ │ ├── Dockerfile │ │ │ └── install-cntk-docker.sh │ └── gpu │ │ └── runtime │ │ ├── Dockerfile │ │ └── install-cntk-docker.sh │ ├── cpu │ └── runtime │ │ ├── python-2 │ │ └── Dockerfile │ │ └── python-3 │ │ └── Dockerfile │ └── gpu │ └── runtime │ ├── python-2 │ └── Dockerfile │ └── python-3 │ └── Dockerfile └── ubuntu-16.04 └── version_2 ├── cpu └── runtime │ ├── python-2 │ └── Dockerfile │ └── python-3 │ └── Dockerfile └── gpu └── runtime ├── python-2 └── Dockerfile └── python-3 └── Dockerfile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README-Docker-Source-Location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/README-Docker-Source-Location.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/README.md -------------------------------------------------------------------------------- /README_NIGHTLY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/README_NIGHTLY.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ubuntu-14.04/version_1/1.7.2/cpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_1/1.7.2/cpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_1/1.7.2/gpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_1/1.7.2/gpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/1bitsgd/runtime/python-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/1bitsgd/runtime/python-2/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/1bitsgd/runtime/python-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/1bitsgd/runtime/python-3/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/python-2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/python-2.7/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/python-2.7/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/cpu/runtime/python-2.7/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/python-2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/python-2.7/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/python-2.7/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta10.0/gpu/runtime/python-2.7/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/python-2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/python-2.7/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/python-2.7/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/cpu/runtime/python-2.7/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/python-2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/python-2.7/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/python-2.7/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta11.0/gpu/runtime/python-2.7/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta7.0/cpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta7.0/cpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta7.0/cpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta7.0/cpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta7.0/gpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta7.0/gpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta7.0/gpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta7.0/gpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta8.0/cpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta8.0/cpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta8.0/cpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta8.0/cpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta8.0/gpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta8.0/gpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta8.0/gpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta8.0/gpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta9.0/cpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta9.0/cpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta9.0/cpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta9.0/cpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta9.0/gpu/runtime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta9.0/gpu/runtime/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/2.0.beta9.0/gpu/runtime/install-cntk-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/2.0.beta9.0/gpu/runtime/install-cntk-docker.sh -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/cpu/runtime/python-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/cpu/runtime/python-2/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/cpu/runtime/python-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/cpu/runtime/python-3/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/gpu/runtime/python-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/gpu/runtime/python-2/Dockerfile -------------------------------------------------------------------------------- /ubuntu-14.04/version_2/gpu/runtime/python-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-14.04/version_2/gpu/runtime/python-3/Dockerfile -------------------------------------------------------------------------------- /ubuntu-16.04/version_2/cpu/runtime/python-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-16.04/version_2/cpu/runtime/python-2/Dockerfile -------------------------------------------------------------------------------- /ubuntu-16.04/version_2/cpu/runtime/python-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-16.04/version_2/cpu/runtime/python-3/Dockerfile -------------------------------------------------------------------------------- /ubuntu-16.04/version_2/gpu/runtime/python-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-16.04/version_2/gpu/runtime/python-2/Dockerfile -------------------------------------------------------------------------------- /ubuntu-16.04/version_2/gpu/runtime/python-3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CNTK-docker/HEAD/ubuntu-16.04/version_2/gpu/runtime/python-3/Dockerfile --------------------------------------------------------------------------------