run.sh 245 字节
Newer Older
Y
yinhaofeng 已提交
1 2
#!/bin/bash
echo "................run................."
Y
yinhaofeng 已提交
3
python -m paddlerec.run -m ./config.yaml &>result1.txt
Y
yinhaofeng 已提交
4 5 6
grep -i "prediction" ./result1.txt >./result2.txt
sed '$d' result2.txt >result.txt
rm -f result2.txt
Y
yinhaofeng 已提交
7 8
rm -f result1.txt
python eval.py