joeulaa
joeulaa

Reputation: 1

pipe() got an unexpected keyword argument 'n_threads'

I am trying to run this code for an LDA Topic Model for free form text responses. The path is referencing the raw text from the reviews. When I run this, the error is

TypeError: pipe() got an unexpected keyword argument 'n_threads'

Any possible solutions? This is my first time running a LDA Topic model from scratch. Let me know if more info is needed. thanks

CODE:

sw = stopwords.words('english')

nlp = spacy.load('en_core_web_sm')

import time t0 = time.time()

write_parsed_sentence_corpus(nlppath+'rawtext.txt', nlppath+'parsedtexts.txt', nlp, batch_size=1000, n_threads=2, sw=sw, exclusions = ['-PRON-'])

td = time.time()-t0

print('Took {:.2f} minutes'.format(td/60))

Upvotes: 0

Views: 1002

Answers (1)

dofften
dofften

Reputation: 9

Change n_threads=2 to n_process=2 and it should work

Upvotes: 1

Related Questions