Deep learning docker with geo-package support. it's only support python3(currently python 3.5).
You can pull the image from docker hub: https://hub.docker.com/r/sshuair/dl-satellite/
docker build -t repository:tag . -f Dockerfile.cpu
docker pull sshuair/dl-satellite:cpudocker pull sshuair/dl-satellite:gpudocker run -it --name dl-satellite -p 8888:8888 -p 6006:6006 -v /sharedfolder:/workdir sshuair/dl-satellite:cpu bashnvidia-docker run -it --name dl-satellite -p 8888:8888 -p 6006:6006 -v /sharedfolder:/workdir sshuair/dl-satellite:gpu bashIf you want run jupyter notebook in a docker container you should use the follow command in a running docker container:
jupyter notebook --allow-root
Please note that PyTorch uses shared memory to share data between processes, so if torch multiprocessing is used (e.g. for multithreaded data loaders) the default shared memory segment size that container runs with is not enough, and you should increase shared memory size either with --ipc=host or --shm-size command line options to nvidia-docker run.
nvidia-docker run --rm -ti --ipc=host sshuair/dl-satellite:gpu
Content type
Image
Digest
Size
1.6 GB
Last updated
almost 8 years ago
docker pull sshuair/deepsat:cpu