if not self.threads:
print("Error: can"t run batch_geoparse without setting threads = True.")
return
nlped_docs = nlp.pipe(text_list, multiprocessing.cpu_count())
//pool = ThreadPool(self.n_threads)
//processed = pool.map(self.geoparse, nlped_docs)
//pool.close()
//pool.join()
After Change
if not self.threads:
print("batch_geoparsed should be used with threaded searches. Please set `threads=True` when initializing the geoparser.")
nlped_docs = list(nlp.pipe(text_list, as_tuples=False, n_threads=multiprocessing.cpu_count()))
processed = []
for i in tqdm(nlped_docs, disable=not self.progress):
p = self.geoparse(i)
processed.append(p)