mirror of https://github.com/explosion/spaCy.git
Fix bug in 8-token parser features
This commit is contained in:
parent
b713d10d97
commit
a0c7dabb72
|
@ -110,7 +110,7 @@ cdef cppclass StateC:
|
|||
ids[3] = this.S(1)
|
||||
ids[4] = this.H(this.S(0))
|
||||
ids[5] = this.L(this.B(0), 1)
|
||||
ids[6] = this.L(this.S(0), 2)
|
||||
ids[6] = this.L(this.S(0), 1)
|
||||
ids[7] = this.R(this.S(0), 1)
|
||||
elif n == 13:
|
||||
ids[0] = this.B(0)
|
||||
|
|
Loading…
Reference in New Issue