Am wondering if this is a manifestation of a related problem?
My python code starts with:
from transformers import AutoTokenizer, AutoModel
Then crashes during execution of the following code:
model = AutoModel.from_pretrained("bert-base-uncased")
Running from within PyCharm SDE, I get this error:
Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
Interestingly, this crashes on my (Intel i5 w 16MB RAM) MacMini, but runs fine on
my (Apple M1 w 16 MB RAM) MacBook Air. Both are running MacOS Ventura, v13.0.1 at the moment.