Updated main to make use of lang variable (#3220)

Updated main to make use of language variable when initializing spacy.
This commit is contained in:
mak 2019-01-31 23:43:22 +01:00 committed by Ines Montani
parent 03d58f9feb
commit 8fc6aaf134

View File

@ -57,7 +57,7 @@ import spacy
n=("Number of texts to read", "option", "n", int),
lang=("Language class to initialise", "option", "l", str))
def main(patterns_loc, text_loc, n=10000, lang='en'):
nlp = spacy.blank('en')
nlp = spacy.blank(lang)
nlp.vocab.lex_attr_getters = {}
phrases = read_gazetteer(nlp.tokenizer, patterns_loc)
count = 0