Answer the question
In order to leave comments, you need to log in
Why is the kernel dying on Jupyter?
I train the model on doc2vec during training, an error occurs that the core has died.
The kernel appears to have died. It will restart automatically.
corpus = ''
normal = Normalizer()
if __name__ == "__main__":
for i, file in enumerate(files):
try:
with open('.....', 'r') as text:
corpus += text.read()
if i % 100 == 0 or i == len(files):
sentences = normal.normalize(corpus)
documents = [TaggedDocument(sentences, [i])]
model.train(documents, total_examples=model.corpus_count, epochs=model.epochs)
model.build_vocab(documents, update=True)
model.save('model.model')
corpus = ''
if i % 1000 == 0:
print('Loading {0}/{1}, '.format(i, len(files)))
except BaseException:
print('ERROR {0}'.format(file))
model.train(documents, total_examples=model.corpus_count, epochs=model.epochs)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question