spaCy/spacy/__init__.py

31 lines
1.0 KiB
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
2018-08-09 21:49:24 +00:00
import warnings
2018-08-09 21:49:24 +00:00
# This is used to suppress numpy runtime warnings, which warn about irrelevant
# binary incompatibility. We could pin to a specific numpy version, but then
# we risk entering dependency hell if other packages pin to different constraints.
# Ideally we would somehow specify the warning to suppress?
with warnings.catch_warnings(record=True) as w:
from .cli.info import info as cli_info
from .glossary import explain
from .about import __version__
from .errors import Warnings, deprecation_warning
from . import util
2017-01-31 22:27:29 +00:00
2017-05-29 20:10:50 +00:00
2016-10-18 17:23:31 +00:00
def load(name, **overrides):
depr_path = overrides.get('path')
if depr_path not in (True, False, None):
deprecation_warning(Warnings.W001.format(path=depr_path))
return util.load_model(name, **overrides)
2017-07-25 16:56:37 +00:00
def blank(name, **kwargs):
LangClass = util.get_lang_class(name)
return LangClass(**kwargs)
def info(model=None, markdown=False, silent=False):
return cli_info(model, markdown, silent)