├── README.md ├── checkpoint └── checkpoint_last.pt ├── example ├── config.yaml ├── data │ ├── dset1.yaml │ └── dset2.yaml └── train.py ├── example_job.sh ├── example_job.slrm ├── hyperparameter_sweep.sh ├── launch_slurm_job.sh └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/README.md -------------------------------------------------------------------------------- /checkpoint/checkpoint_last.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/checkpoint/checkpoint_last.pt -------------------------------------------------------------------------------- /example/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/example/config.yaml -------------------------------------------------------------------------------- /example/data/dset1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/example/data/dset1.yaml -------------------------------------------------------------------------------- /example/data/dset2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/example/data/dset2.yaml -------------------------------------------------------------------------------- /example/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/example/train.py -------------------------------------------------------------------------------- /example_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/example_job.sh -------------------------------------------------------------------------------- /example_job.slrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/example_job.slrm -------------------------------------------------------------------------------- /hyperparameter_sweep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/hyperparameter_sweep.sh -------------------------------------------------------------------------------- /launch_slurm_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/launch_slurm_job.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nng555/cluster_examples/HEAD/train.py --------------------------------------------------------------------------------