Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111156122
launch_model.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Apr 29, 22:28
Size
939 B
Mime Type
text/x-shellscript
Expires
Thu, May 1, 22:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25886419
Attached To
R8797 solarPV
launch_model.sh
View Options
#!/bin/bash
## ====== Settings
#SBATCH --account=cadmos
## specific for GPU nodes (free account)
#SBATCH --partition=gpu --qos=gpu --gres=gpu:4
#SBATCH --nodes=4
#SBATCH --mem=25G
#SBATCH --ntasks=4
#SBATCH --cpus-per-task=4
#SBATCH --time=12:00:00
##SBATCH -o UNet_training.out # Standard output
##SBATCH -e UNet_training.err # Standard error
#SBATCH --workdir /home/rcastell/solar_deployment/segmentation/CNN/logs
#SBATCH --mail-user=roberto.castello@epfl.ch
echo STARTING AT $(date)
## == Specify here the needed modules and the virtual env
module purge
module load gcc cuda cudnn python
source /home/rcastell/solar_deployment/1.9-gpu/tensorflow-1.9/bin/activate
## == Specify here the commands to execute
## Run. Argument to pass (in order): rotations, lights, dice, weightnopv, weightpv, epochs
python $HOME/solar_deployment/segmentation/CNN/model_main.py 0 0 0 1 3.5 30
source deactivate
echo FINISHED AT $(date)
Event Timeline
Log In to Comment