mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
25 lines
563 B
Python
25 lines
563 B
Python
import plac
|
|
import sputnik
|
|
|
|
from ..download import download
|
|
from .. import about
|
|
|
|
|
|
@plac.annotations(
|
|
force=("Force overwrite", "flag", "f", bool),
|
|
)
|
|
def main(data_size='all', force=False):
|
|
if force:
|
|
sputnik.purge(about.__title__, about.__version__)
|
|
|
|
if data_size in ('all', 'parser'):
|
|
print("Downloading parsing model")
|
|
download('en', False)
|
|
if data_size in ('all', 'glove'):
|
|
print("Downloading GloVe vectors")
|
|
download('en_glove_cc_300_1m_vectors', False)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
plac.call(main)
|