Add more algorithms
This commit is contained in:
25
others/GDAS/scripts-rnn/train-PTB.sh
Normal file
25
others/GDAS/scripts-rnn/train-PTB.sh
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/env sh
|
||||
if [ "$#" -ne 1 ] ;then
|
||||
echo "Input illegal number of parameters " $#
|
||||
echo "Need 1 parameters for the GPU and the architecture"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
arch=$1
|
||||
SAVED=./output/NAS-RNN/Search-${arch}-PTB
|
||||
PY_C="./env/bin/python"
|
||||
|
||||
if [ ! -f ${PY_C} ]; then
|
||||
echo "Local Run with Python: "`which python`
|
||||
PY_C="python"
|
||||
else
|
||||
echo "Cluster Run with Python: "${PY_C}
|
||||
fi
|
||||
|
||||
${PY_C} --version
|
||||
|
||||
${PY_C} ./exps-rnn/train_rnn_base.py \
|
||||
--arch ${arch} \
|
||||
--save_path ${SAVED} \
|
||||
--config_path ./configs/NAS-PTB-BASE.config \
|
||||
--print_freq 200
|
Reference in New Issue
Block a user