mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-03 05:04:09 +03:00
Remove thinc util reimports (#11665)
* Remove imports marked as v2 leftovers There are a few functions that were in `spacy.util` in v2, but were moved to Thinc. In v3 these were imported in `spacy.util` so that code could be used unchanged, but the comment over them indicates they should always be imported from Thinc. This commit removes those imports. It doesn't look like any DeprecationWarning was ever thrown for using these, but it is probably fine to remove them anyway with a major version. It is not clear that they were widely used. * Import fix_random_seed correctly This seems to be the only place in spaCy that was using the old import.
This commit is contained in:
parent
446a3ecf34
commit
0e2b7fb28b
|
@ -1,7 +1,7 @@
|
|||
import pytest
|
||||
import numpy
|
||||
from numpy.testing import assert_array_equal, assert_almost_equal
|
||||
from thinc.api import get_current_ops, Ragged
|
||||
from thinc.api import get_current_ops, Ragged, fix_random_seed
|
||||
|
||||
from spacy import util
|
||||
from spacy.lang.en import English
|
||||
|
@ -9,7 +9,7 @@ from spacy.language import Language
|
|||
from spacy.tokens import SpanGroup
|
||||
from spacy.tokens.span_groups import SpanGroups
|
||||
from spacy.training import Example
|
||||
from spacy.util import fix_random_seed, registry, make_tempdir
|
||||
from spacy.util import registry, make_tempdir
|
||||
|
||||
OPS = get_current_ops()
|
||||
|
||||
|
|
|
@ -37,12 +37,6 @@ try:
|
|||
except ImportError:
|
||||
cupy = None
|
||||
|
||||
# These are functions that were previously (v2.x) available from spacy.util
|
||||
# and have since moved to Thinc. We're importing them here so people's code
|
||||
# doesn't break, but they should always be imported from Thinc from now on,
|
||||
# not from spacy.util.
|
||||
from thinc.api import fix_random_seed, compounding, decaying # noqa: F401
|
||||
|
||||
|
||||
from .symbols import ORTH
|
||||
from .compat import cupy, CudaStream, is_windows, importlib_metadata
|
||||
|
|
Loading…
Reference in New Issue
Block a user