mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-14 03:26:24 +03:00
Remove print statement
This commit is contained in:
parent
0a534ae96a
commit
7fea845374
|
@ -746,10 +746,9 @@ cdef class Parser:
|
||||||
for j in range(doc.length):
|
for j in range(doc.length):
|
||||||
doc.c[j] = state.c._sent[j]
|
doc.c[j] = state.c._sent[j]
|
||||||
if tensors is not None:
|
if tensors is not None:
|
||||||
print(doc.tensor.shape)
|
|
||||||
|
|
||||||
doc.extend_tensor(tensors[i])
|
doc.extend_tensor(tensors[i])
|
||||||
self.moves.finalize_doc(doc)
|
self.moves.finalize_doc(doc)
|
||||||
|
|
||||||
for hook in self.postprocesses:
|
for hook in self.postprocesses:
|
||||||
for doc in docs:
|
for doc in docs:
|
||||||
hook(doc)
|
hook(doc)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user