Remove traces of lexemes from vocab serialization (#9400)

This commit is contained in:
Adriane Boyd 2021-10-11 11:13:35 +02:00 committed by GitHub
parent 3b144a3a51
commit a5231cb044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -530,7 +530,6 @@ cdef class Vocab:
setters = {
"strings": lambda b: self.strings.from_bytes(b),
"lexemes": lambda b: self.lexemes_from_bytes(b),
"vectors": lambda b: serialize_vectors(b),
"lookups": lambda b: self.lookups.from_bytes(b),
}

View File

@ -325,6 +325,5 @@ serialization by passing in the string names via the `exclude` argument.
| Name | Description |
| --------- | ----------------------------------------------------- |
| `strings` | The strings in the [`StringStore`](/api/stringstore). |
| `lexemes` | The lexeme data. |
| `vectors` | The word vectors, if available. |
| `lookups` | The lookup tables, if available. |