├── .gitignore ├── cluster-config.yaml ├── requirements.txt ├── train_cifar.ipynb ├── trained.ipynb └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewdeng/ray-train-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /cluster-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewdeng/ray-train-demos/HEAD/cluster-config.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewdeng/ray-train-demos/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_cifar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewdeng/ray-train-demos/HEAD/train_cifar.ipynb -------------------------------------------------------------------------------- /trained.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewdeng/ray-train-demos/HEAD/trained.ipynb -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewdeng/ray-train-demos/HEAD/utils.py --------------------------------------------------------------------------------