Why does my kernal keep dying when I try to import Hugging Face BERT models to Amazon SageMaker?

1

When I try to import Hugging Face BERT models to the conda_pytorch_p36 kernal of my Amazon SageMaker Notebook instance using the following pip command, the kernal always dies:

! pip install transformers

The result is the same for Hugging Face BERT, RoBERTa, and GPT2 models on ml.c5.2xlarge and ml.c5d.4xlarge Amazon SageMaker instances.

Why is this happening, and how do I resolve the issue?

AWS
EXPERT
asked 3 years ago1775 views
2 Answers
0
Accepted Answer

This issue occurs when the latest sentence piece breaks. The workaround is to force install sentencepiece==0.1.91.

pip install sentencepiece==0.1.91

AWS
EXPERT
answered 3 years ago
0

Any update on this I am trying to download "GPT-J-6B" model on the sagemaker and getting the dying kernel again and again. I have explained my issue on this question.

And installing sentencepieve==0.1.91 gives the error. I have also checked from the pypi, the syntax and versions are correct but returns: subprocess-exited-with-error in pip install error.

Any update on this?

(Please view the link given above for my reproducible code) Thanks.

EM_User
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions