Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot import BertModel from transformers

I am trying to import BertModel from transformers, but it fails. This is code I am using

from transformers import BertModel, BertForMaskedLM

This is the error I get

ImportError: cannot import name 'BertModel' from 'transformers'

Can anyone help me fix this?

like image 667
Moaz Mohammed Husain Avatar asked Sep 04 '25 02:09

Moaz Mohammed Husain


2 Answers

Fixed the error. This is the code

from transformers.modeling_bert import BertModel, BertForMaskedLM
like image 97
Moaz Mohammed Husain Avatar answered Sep 06 '25 16:09

Moaz Mohammed Husain


lastest version of transformers have fix this issue. you can use the below command

pip install --upgrade transformers
like image 45
Fan Yang Avatar answered Sep 06 '25 17:09

Fan Yang