Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titletrain-pytorch.sh
linenumberstrue
collapsetrue
#!/bin/bash

#PBS -l select=2:ngpus=2:ncpus=16
#PBS -e output/
#PBS -o output/

# environment
module load scientific/ray/2.4.0-rayproject

# cd
cd ${PBS_O_WORKDIR:-""}

# run
ray-launcher.sh train-pytorch.py

...

Code Block
languagebash
titletune-tensorflow.sh
linenumberstrue
collapsetrue
#!/bin/bash

#PBS -l select=2:ngpus=2:ncpus=16
#PBS -e output/
#PBS -o output/

# environment
module load scientific/ray/2.4.0-rayproject

# cd
cd ${PBS_O_WORKDIR:-""}

# run
ray-launcher.sh tune-tensorflow.py

...

Code Block
languagebash
titlesklearn-automl.sh
linenumberstrue
collapsetrue
#!/bin/bash

#PBS -l select=12:ngpus=1:ncpus=4
#PBS -e output/
#PBS -o output/

# environment
# module load scientific/ray/2.4.0-rayproject

# cd
cd ${PBS_O_WORKDIR:-""}

# run

ray-launcher.sh sklearn-automl.py 

...