mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
c417c380e3
* allow phrasematcher to link one match to multiple original patterns * small fix for defining ent_id in the matcher (anti-ghost prevention) * cleanup * formatting
6 lines
100 B
Cython
6 lines
100 B
Cython
from libcpp.vector cimport vector
|
|
|
|
from ..typedefs cimport hash_t
|
|
|
|
ctypedef vector[hash_t] hash_vec
|