반응형
#!/bin/bash
for dataset in 3
do
for exp in 30 31 32
do
if [ ${exp} -eq 30 ];then
lambda=0.001
elif [ ${exp} -eq 31 ];then
lambda=0.01
else
lambda=0.1
fi
echo "dataset: ${dataset}, exp id: ${exp}, lambda: ${lambda}"
done
done
'Linux' 카테고리의 다른 글
Install OpenCV + Cuda + cuDNN + TensorRT on Ubuntu 18.04 (0) | 2022.01.27 |
---|---|
Basic Shell Script (for/if/echo) Example with Python Run (0) | 2019.01.04 |
Permission denied error when update anaconda3 or installing tensorflow using anaconda (0) | 2018.07.06 |
How install ROS kinetic (0) | 2018.05.31 |
How to use shell script (0) | 2018.04.20 |