mirror of https://github.com/explosion/spaCy.git
Merge remote-tracking branch 'refs/remotes/honnibal/master'
This commit is contained in:
commit
2768213683
|
@ -11,7 +11,6 @@ import io
|
|||
import math
|
||||
import json
|
||||
import tempfile
|
||||
import copy_reg
|
||||
|
||||
from .lexeme cimport EMPTY_LEXEME
|
||||
from .lexeme cimport Lexeme
|
||||
|
@ -29,6 +28,11 @@ from . import util
|
|||
from .serialize.packer cimport Packer
|
||||
from .attrs cimport PROB
|
||||
|
||||
try:
|
||||
import copy_reg
|
||||
except ImportError:
|
||||
import copyreg as copy_reg
|
||||
|
||||
|
||||
DEF MAX_VEC_SIZE = 100000
|
||||
|
||||
|
|
Loading…
Reference in New Issue