Fix tensor shape in test for #3288

This commit is contained in:
Ines Montani 2019-02-18 11:01:54 +01:00
parent c32290557f
commit 8fa26ca97e
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ def test_issue3288(en_vocab):
heads = [1, 0, -1, 1, 0, 1, -2, -3]
deps = ["intj", "ROOT", "punct", "advmod", "ROOT", "det", "nsubj", "punct"]
doc = get_doc(en_vocab, words=words, heads=heads, deps=deps)
doc.tensor = numpy.zeros(96, dtype="float32")
doc.tensor = numpy.zeros((len(words), 96), dtype="float32")
displacy.render(doc)