OSError: bert-base-chinese does not appear to have a file named config.json.

#15
by xiaoxiaolee - opened

I met this error whem I tried to use bert-base-chinese

image.png

BERT community org

Hi @xiaoxiaolee
The following snippet:

from transformers import AutoModelForMaskedLM

model_id = "bert-base-chinese"
model = AutoModelForMaskedLM.from_pretrained(model_id)

Worked fine for me - could you try with the latest transformers on pypi? pip install -U transformers

Hi @ybelkada
Thank you very much! This code didn't work well on my computer too. I met the same problem. And my transformers version is the latest 4.37.2.

Sign up or log in to comment