2017-03-16 19:13:08 +03:00
|
|
|
# coding: utf8
|
2017-04-15 13:05:47 +03:00
|
|
|
from __future__ import unicode_literals
|
2017-03-16 19:13:08 +03:00
|
|
|
|
2017-05-27 21:01:46 +03:00
|
|
|
from .cli.info import info as cli_info
|
2017-05-03 18:01:53 +03:00
|
|
|
from .glossary import explain
|
2017-05-29 21:43:24 +03:00
|
|
|
from .about import __version__
|
2017-05-08 16:27:25 +03:00
|
|
|
from . import util
|
2017-02-01 01:27:29 +03:00
|
|
|
|
2017-05-29 23:10:50 +03:00
|
|
|
|
2016-10-18 20:23:31 +03:00
|
|
|
def load(name, **overrides):
|
2017-11-01 18:49:42 +03:00
|
|
|
depr_path = overrides.get('path')
|
|
|
|
if depr_path not in (True, False, None):
|
|
|
|
util.deprecated(
|
|
|
|
"As of spaCy v2.0, the keyword argument `path=` is deprecated. "
|
|
|
|
"You can now call spacy.load with the path as its first argument, "
|
|
|
|
"and the model's meta.json will be used to determine the language "
|
|
|
|
"to load. For example:\nnlp = spacy.load('{}')".format(depr_path),
|
|
|
|
'error')
|
2017-05-29 15:10:10 +03:00
|
|
|
return util.load_model(name, **overrides)
|
2017-05-27 21:01:46 +03:00
|
|
|
|
|
|
|
|
2017-07-25 19:56:37 +03:00
|
|
|
def blank(name, **kwargs):
|
|
|
|
LangClass = util.get_lang_class(name)
|
|
|
|
return LangClass(**kwargs)
|
|
|
|
|
|
|
|
|
2017-05-27 21:01:46 +03:00
|
|
|
def info(model=None, markdown=False):
|
2018-01-05 11:37:05 +03:00
|
|
|
return cli_info(model, markdown)
|