-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52d2bcd
commit 37c097c
Showing
6 changed files
with
81 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
hyperparameter,min_value,max_value,search_scale | ||
lr,0.0001,0.1,log | ||
regular_lr,0.0001,0.1,log | ||
fine_tuning_lr,0.00001,0.01,log | ||
weight_decay,0.00001,0.001,log | ||
dropout,0.8,0.2,linear |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
|
||
# Example script to start 16 clients using SLURM | ||
|
||
#SBATCH --partition=deep | ||
#SBATCH --time=72:00:00 | ||
#SBATCH --nodes=12 | ||
#SBATCH --ntasks=12 | ||
#SBATCH --ntasks-per-node=1 | ||
#SBATCH --cpus-per-task=4 | ||
#SBATCH --mem=8G | ||
|
||
# GPUs per node | ||
#SBATCH --gres=gpu:1 | ||
|
||
#SBATCH --job-name="pbt" | ||
#SBATCH --output=%j_pbt.out | ||
|
||
# Send email when the job begins, fails, or ends | ||
#SBATCH [email protected] | ||
#SBATCH --mail-type=ALL | ||
|
||
# Print some useful job information | ||
echo "SLURM_JOBID="$SLURM_JOBID | ||
echo "SLURM_JOB_NODELIST"=$SLURM_JOB_NODELIST | ||
echo "SLURM_PWD "$SLURM_SUBMIT_DIR | ||
|
||
# Command to run on each node | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
srun --gres=gpu:1 --exclusive -n1 -N1-1 python train.py --name=inception_PBT --use_pbt=True --pbt_server_url=deep24 & | ||
wait |
This file was deleted.
Oops, something went wrong.