Skip to content

Commit

Permalink
[egs] GPU id defaults to $CUDA_VISIBLE_DEVICES in all recipes (aste…
Browse files Browse the repository at this point in the history
  • Loading branch information
mpariente authored May 29, 2020
1 parent 83a6bf1 commit 7c1cf78
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion egs/dns_challenge/baseline/run.sh
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ python_path=python
stage=0
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES

# Experiment config
is_complex=1 # If we use a complex network for training.
2 changes: 1 addition & 1 deletion egs/fuss/baseline/run.sh
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ python_path=python
stage=0 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES


# Data
2 changes: 1 addition & 1 deletion egs/librimix/ConvTasNet/run.sh
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ python_path=python
stage=0 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES
out_dir=librimix # Controls the directory name associated to the evaluation results inside the experiment directory

# Network config
2 changes: 1 addition & 1 deletion egs/wham/ConvTasNet/run.sh
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ python_path=python
stage=0 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES

# Data
task=sep_clean # Specify the task here (sep_clean, sep_noisy, enh_single, enh_both)
2 changes: 1 addition & 1 deletion egs/wham/DPRNN/run.sh
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ python_path=python
stage=3 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=0
id=$CUDA_VISIBLE_DEVICES

# Data
task=sep_clean # Specify the task here (sep_clean, sep_noisy, enh_single, enh_both)
2 changes: 1 addition & 1 deletion egs/wham/DynamicMixing/run.sh
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ python_path=python
stage=3 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=0
id=$CUDA_VISIBLE_DEVICES

# Data
data_dir=data # Local data directory (No disk space needed)
2 changes: 1 addition & 1 deletion egs/wham/TwoStep/run.sh
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ python_path=python
stage=0 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES

# Data
data_dir=data # Local data directory (No disk space needed)
2 changes: 1 addition & 1 deletion egs/whamr/TasNet/run.sh
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ python_path=python
stage=0 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES

# Data
task=sep_clean # Specify the task here (sep_clean, sep_noisy, sep_reverb, sep_reverb_noisy)
2 changes: 1 addition & 1 deletion egs/wsj0-mix/DeepClustering/run.sh
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ python_path=python
stage=3 # Controls from which stage to start
tag="" # Controls the directory name associated to the experiment
# You can ask for several GPUs using id (passed to CUDA_VISIBLE_DEVICES)
id=
id=$CUDA_VISIBLE_DEVICES

# Data
#data_dir=data # Local data directory (No disk space needed)

0 comments on commit 7c1cf78

Please sign in to comment.