summaryrefslogtreecommitdiff
path: root/gi/pyp-topics/scripts
diff options
context:
space:
mode:
authorredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-06-30 02:41:55 +0000
committerredpony <redpony@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-06-30 02:41:55 +0000
commit0e126beea093457c35479d8f4cb43934ec8ecf9d (patch)
tree7b64f7df4dfb145508c8a3e6c9bc0192638becde /gi/pyp-topics/scripts
parent343aa6aa9ffddf8e3523b1b5ce76373b58d698fc (diff)
fix bug
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@75 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'gi/pyp-topics/scripts')
-rwxr-xr-xgi/pyp-topics/scripts/spans2labels.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gi/pyp-topics/scripts/spans2labels.py b/gi/pyp-topics/scripts/spans2labels.py
index 402bcd63..09f879d0 100755
--- a/gi/pyp-topics/scripts/spans2labels.py
+++ b/gi/pyp-topics/scripts/spans2labels.py
@@ -40,6 +40,6 @@ for line in sys.stdin:
right_context = reduce(lambda x, y: x+y+" ", target[t2:t2+order], "").strip()
context = "%s<PHRASE> %s" % (left_context, right_context)
- label = phrase_context_index.get((phrase,context, "<UNK>")
+ label = phrase_context_index.get((phrase,context), "<UNK>")
print "%s-%s:X%s" % (t1-order,t2-order,label),
print