diff options
author | philblunsom <philblunsom@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-29 17:56:28 +0000 |
---|---|---|
committer | philblunsom <philblunsom@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-29 17:56:28 +0000 |
commit | 6c81b1ff98d641a97fefb74f2f86f8bca6438b13 (patch) | |
tree | ee734179aa0494aadf5763805d72938fc2047466 /gi/pyp-topics/scripts | |
parent | 432fe5aa084fe508cd5aa9ecaf35dc04e1891086 (diff) |
Think the pipeline is working now...
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@63 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'gi/pyp-topics/scripts')
-rwxr-xr-x | gi/pyp-topics/scripts/spans2labels.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/pyp-topics/scripts/spans2labels.py b/gi/pyp-topics/scripts/spans2labels.py index 3221dbf0..7cbc521c 100755 --- a/gi/pyp-topics/scripts/spans2labels.py +++ b/gi/pyp-topics/scripts/spans2labels.py @@ -41,5 +41,5 @@ for line in sys.stdin: context = "%s<PHRASE> %s" % (left_context, right_context) label = phrase_context_index[(phrase,context)] - print "%s-%s:X%s" % (t1-1,t2-1,label), + print "%s-%s:X%s" % (t1-order,t2-order,label), print |