From 75b8dfb3484e89be88dd10fa9ab7ebdedf949efe Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 4 Dec 2014 22:14:34 +1100 Subject: [PATCH] * Remove upper_pc from lexeme.pyx --- spacy/lexeme.pyx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spacy/lexeme.pyx b/spacy/lexeme.pyx index 5c8d7a60e..cd92c4845 100644 --- a/spacy/lexeme.pyx +++ b/spacy/lexeme.pyx @@ -22,8 +22,7 @@ cpdef Lexeme init(id_t i, unicode string, hash_t hashed, lex.sense_type = props.get('sense_type', 0) lex.prob = props.get('prob', 0) - lex.upper_pc = props.get('upper_pc', 0.0) - lex.title_pc = props.get('lower_pc', 0.0) + lex.lower_pc = props.get('lower_pc', 0.0) lex.prefix = string_store[string[:1]] lex.suffix = string_store[string[-3:]]