-
Notifications
You must be signed in to change notification settings - Fork 10
/
run-precision-test.bash
50 lines (41 loc) · 1.55 KB
/
run-precision-test.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh
# Test precision by generating a bunch of trees and seeing how many of them are accepted by the Codeco parser
# [JJC]
# Usage:
# bash run-precision-test.bash [ NUMBER [DEPTH] | TREES_FILE ]
pgf=ACE-0_0_2.pgf
trees_file=build/gr/precision-test.txt
out=test_precision_out.txt
out_fail=test_precision_out_fail.txt
cat="Text"
# At depth=7 gr can reliably generate 1000s of trees,
# at higher depths it seems to hang.
depth="7"
# Exclude questions for the time being.
tree="(baseText (sText ?))"
if [ $# -ge 1 ]; then
if [[ $1 =~ ^[0-9]+$ ]]; then
# First argument was a number, so we generate new trees
gr_number=$1
# Specified depth
if [ $# -ge 2 ]; then depth=$2 ; fi
echo "Generating ${gr_number} trees of depth ${depth} for category ${cat} ..."
echo "gr -cat=${cat} -number=${gr_number} -depth=${depth} ${tree} | l -lang=Ace -bind" | gf --run ${pgf} > ${trees_file}
else
# Treat argument as a filename
echo "Using trees file ${trees_file}"
trees_file=$1
fi
fi
#echo "Parsing into ${out}..."
egrep ".+" ${trees_file} | tools/Codeco/run.sh 1>${out}
length=`cat ${trees_file} | python tools/length.py | python tools/avg.py`
total=`cat ${out} | wc --lines`
parsed=`egrep "^OK:" ${out} | wc --lines`
failed=`egrep "^FAIL:" ${out} | wc --lines`
echo "Parsed: ${parsed}, Failed: ${failed}"
echo "Precision:" $((parsed*100/total))"%"
echo "Depth: ${depth}"
echo "Average length: ${length}"
#echo "Creating ${out_fail}"
egrep "^FAIL:" ${out} | sed "s/^FAIL: //" | sort | uniq > ${out_fail}