Update scripts

This commit is contained in:
D-X-Y
2021-03-28 00:34:21 -07:00
parent 92d0df0926
commit 0055511829
5 changed files with 9 additions and 363 deletions

View File

@@ -1,6 +1,7 @@
#!/bin/bash
#
# bash scripts/trade/tsf.sh 0 csi300 3
# bash scripts/trade/tsf.sh 0 csi300 3 0
# bash scripts/trade/tsf.sh 0 csi300 3 0.1
# bash scripts/trade/tsf.sh 1 csi100 3
# bash scripts/trade/tsf.sh 1 all 3
#
@@ -8,7 +9,7 @@ set -e
echo script name: $0
echo $# arguments
if [ "$#" -ne 3 ] ;then
if [ "$#" -ne 4 ] ;then
echo "Input illegal number of parameters " $#
exit 1
fi
@@ -16,12 +17,13 @@ fi
gpu=$1
market=$2
depth=$3
drop=$4
channels="6 12 24 32 48 64"
for channel in ${channels}
do
python exps/trading/baselines.py --alg TSF-${depth}x${channel}-d0 --gpu ${gpu} --market ${market}
python exps/trading/baselines.py --alg TSF-${depth}x${channel}-d${drop} --gpu ${gpu} --market ${market}
done