https://github.com/paulhendricks/rapids-dataloader-examples
https://github.com/paulhendricks/rapids-dataloader-examples
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/paulhendricks/rapids-dataloader-examples
- Owner: paulhendricks
- Created: 2019-10-03T16:07:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-16T04:34:41.000Z (over 5 years ago)
- Last Synced: 2025-02-13T10:16:12.232Z (4 months ago)
- Language: Jupyter Notebook
- Size: 30.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RAPIDS DataLoader Examples
--------------------------This repository shows how to use the RAPIDS implementation of the PyTorch DataLoaders. This builds off some of the work done here: https://github.com/rapidsai/deeplearning/tree/master/RecSys2019
#### Setup
Build Docker container:
```
docker build -t rapids_examples .
```Run Docker container:
```
docker run --runtime=nvidia \
-it --rm \
-p 8786:8786 \
-p 8787:8787 \
-p 8888:8888 \
-v $PWD:/rapids/examples/ \
-w /rapids/examples \
rapids_examples
```Start the Jupyter Notebook:
```
/bin/bash /rapids/utils/start_jupyter.sh
```