https://github.com/cair/docker-tutorial
A docker tutorial for cair-gpu's
https://github.com/cair/docker-tutorial
Last synced: 28 days ago
JSON representation
A docker tutorial for cair-gpu's
- Host: GitHub
- URL: https://github.com/cair/docker-tutorial
- Owner: cair
- Created: 2017-04-22T15:07:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-23T04:38:18.000Z (about 8 years ago)
- Last Synced: 2025-02-04T21:45:13.473Z (3 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker-Tutorial
A docker tutorial on how to get things running on cair-gpu servers
The Dockerfile serves as a template for how to create a image that can run CUDA powered applications.
This sample runs cifar_10 as an example.1. git clone https://github.com/UIA-CAIR/Docker-Tutorial.git
2. nvidia-docker build -t cair/tutorial .
3. nvidia-docker run -t cair/tutorial
4. nvidia-docker exec -it bash
5. cd /development
6. python3 cifar10_train.pyYou now succesfully started training of cifar_10!