Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #!/bin/bash
  2. #PBS -l nodes=1:ppn=1:gpus=1
  3. #PBS -l walltime=8:00:00
  4. #PBS -l mem=50GB
  5. #PBS -N name_of_script
  6. #PBS -M emailid
  7. #PBS -m b -m e -m a -m abe
  8. #PBS -j oe
  9.  
  10. module purge
  11.  
  12. SRCDIR=$HOME/inference_project
  13. RUNDIR=$SCRATCH/run-${PBS_JOBID/.*}
  14. mkdir -p $RUNDIR
  15.  
  16. cd $PBS_O_WORKDIR
  17. cp -R $SRCDIR/* $RUNDIR
  18.  
  19. cd $RUNDIR
  20.  
  21. module load librosa/
  22. # Whatever tensorflow version you need
  23. module load keras/1.1.1
  24.  
  25. # Write whatever you want here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement