Currently I am using transformers(3.0.2) and python(3.7.3) which encountered the below error:
cannot import name 'TFBertForQuestionAnswering' from 'transformers'
from transformers import BertTokenizer, TFBertForQuestionAnswering
model = TFBertForQuestionAnswering.from_pretrained('bert-base-cased')
f = open(model_path, "wb")
pickle.dump(model, f)
How do resolve this issue?