mirror of https://github.com/explosion/spaCy.git
Update download script
This commit is contained in:
parent
47c4a8e317
commit
edc45c19d6
|
@ -4,9 +4,11 @@ from ..download import download
|
|||
|
||||
@plac.annotations(
|
||||
force=("Force overwrite", "flag", "f", bool),
|
||||
ignore_glove=("Don't install the GloVe vectors", "flag", "g", bool),
|
||||
)
|
||||
def main(data_size='all', force=False):
|
||||
def main(data_size='all', force=False, ignore_glove=False):
|
||||
download('en', force)
|
||||
download('en_glove_cc_300_1m_vectors', force)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in New Issue