mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-10 08:30:34 +03:00
Address upcoming numpy v1.25 deprecations in test suite
This commit is contained in:
parent
9b7a59c325
commit
583815377e
|
@ -72,7 +72,7 @@ def entity_linker():
|
||||||
|
|
||||||
def create_kb(vocab):
|
def create_kb(vocab):
|
||||||
kb = InMemoryLookupKB(vocab, entity_vector_length=1)
|
kb = InMemoryLookupKB(vocab, entity_vector_length=1)
|
||||||
kb.add_entity("test", 0.0, zeros((1, 1), dtype="f"))
|
kb.add_entity("test", 0.0, zeros((1,), dtype="f"))
|
||||||
return kb
|
return kb
|
||||||
|
|
||||||
entity_linker = nlp.add_pipe("entity_linker")
|
entity_linker = nlp.add_pipe("entity_linker")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user