mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 10:16:27 +03:00
Fix vectors name arg to init-model
This commit is contained in:
parent
92ed4dc5e0
commit
1251b57dbb
|
@ -35,7 +35,12 @@ msg = Printer()
|
||||||
clusters_loc=("Optional location of brown clusters data", "option", "c", str),
|
clusters_loc=("Optional location of brown clusters data", "option", "c", str),
|
||||||
vectors_loc=("Optional vectors file in Word2Vec format", "option", "v", str),
|
vectors_loc=("Optional vectors file in Word2Vec format", "option", "v", str),
|
||||||
prune_vectors=("Optional number of vectors to prune to", "option", "V", int),
|
prune_vectors=("Optional number of vectors to prune to", "option", "V", int),
|
||||||
vectors_name=("Optional name for the word vectors, e.g. en_core_web_lg.vectors", "vn", str)
|
vectors_name=(
|
||||||
|
"Optional name for the word vectors, e.g. en_core_web_lg.vectors",
|
||||||
|
"option",
|
||||||
|
"vn",
|
||||||
|
str,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
def init_model(
|
def init_model(
|
||||||
lang,
|
lang,
|
||||||
|
@ -45,7 +50,7 @@ def init_model(
|
||||||
jsonl_loc=None,
|
jsonl_loc=None,
|
||||||
vectors_loc=None,
|
vectors_loc=None,
|
||||||
prune_vectors=-1,
|
prune_vectors=-1,
|
||||||
vectors_name=None
|
vectors_name=None,
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
Create a new model from raw data, like word frequencies, Brown clusters
|
Create a new model from raw data, like word frequencies, Brown clusters
|
||||||
|
|
Loading…
Reference in New Issue
Block a user