├── .gitignore ├── README.md ├── README_cn.md ├── cuda11_3 ├── pytorch11.3-pyqt-cuda12.DockerFile └── qt5-requirements.txt ├── cuda11_8 └── base-cuda11.8.Dockerfile ├── cuda12_0 ├── base-cuda12.Dockerfile ├── conda-cuda12.0.Dockerfile ├── pytorch2.0-cuda12.Dockerfile └── requirements.txt ├── runjupyter.sh └── sshstart.sh /.gitignore: -------------------------------------------------------------------------------- 1 | fonts/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/README_cn.md -------------------------------------------------------------------------------- /cuda11_3/pytorch11.3-pyqt-cuda12.DockerFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda11_3/pytorch11.3-pyqt-cuda12.DockerFile -------------------------------------------------------------------------------- /cuda11_3/qt5-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda11_3/qt5-requirements.txt -------------------------------------------------------------------------------- /cuda11_8/base-cuda11.8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda11_8/base-cuda11.8.Dockerfile -------------------------------------------------------------------------------- /cuda12_0/base-cuda12.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda12_0/base-cuda12.Dockerfile -------------------------------------------------------------------------------- /cuda12_0/conda-cuda12.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda12_0/conda-cuda12.0.Dockerfile -------------------------------------------------------------------------------- /cuda12_0/pytorch2.0-cuda12.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda12_0/pytorch2.0-cuda12.Dockerfile -------------------------------------------------------------------------------- /cuda12_0/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/cuda12_0/requirements.txt -------------------------------------------------------------------------------- /runjupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/runjupyter.sh -------------------------------------------------------------------------------- /sshstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mortals-debuging/pytorch-docker/HEAD/sshstart.sh --------------------------------------------------------------------------------