How to Solve NameError: name 'AlbertForQuestionAnswering' is not defined -- transformers

Solution: Import the 'AlbertForQuestionAnswering' module

To Solve the error, add the following line to the top of your code.

from transformers import AlbertForQuestionAnswering

 

For more information:
Python transformers AlbertForQuestionAnswering