Remove print statement

This commit is contained in:
Matthew Honnibal 2017-10-06 16:19:02 -05:00
parent 8e731009fe
commit 8be46d766e
1 changed files with 0 additions and 1 deletions

View File

@ -246,7 +246,6 @@ cdef class Parser:
embed_size = util.env_opt('embed_size', cfg.get('embed_size', 7000))
hist_size = util.env_opt('history_feats', cfg.get('hist_size', 0))
hist_width = util.env_opt('history_width', cfg.get('hist_width', 0))
print("Create parser model", locals())
if hist_size >= 1 and depth == 0:
raise ValueError("Inconsistent hyper-params: "
"history_feats >= 1 but parser_hidden_depth==0")