Blame view
combinedRun.sh
336 Bytes
001a8f7f4
|
1 2 3 4 5 6 |
#!/bin/bash BASEDIR=$(dirname $0) if [ $1 == 'time' ] then |
cfb2c9df1
|
7 8 |
sh $BASEDIR/score.sh TimeScore sh $BASEDIR/score.sh TimeHyperParam |
001a8f7f4
|
9 10 11 12 |
fi if [ $1 == 'content' ] then |
cfb2c9df1
|
13 |
sh $BASEDIR/score.sh DashRelatedScore |
001a8f7f4
|
14 |
|
cfb2c9df1
|
15 16 17 18 |
sh $BASEDIR/score.sh ConRejectScore sh $BASEDIR/score.sh ConEfficiencyScore sh $BASEDIR/score.sh ContentScore fi |