mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
10 lines
308 B
Python
10 lines
308 B
Python
import spacy
|
|
import spacy.lang.en
|
|
from spacy.pipeline import TextCategorizer
|
|
|
|
def test_bytes_serialize_issue_1105():
|
|
nlp = spacy.lang.en.English()
|
|
tokenizer = nlp.tokenizer
|
|
textcat = TextCategorizer(tokenizer.vocab, labels=['ENTITY', 'ACTION', 'MODIFIER'])
|
|
textcat_bytes = textcat.to_bytes()
|