I run into an attribute error while trying to load the bert training data:
AttributeError: Can't get attribute 'WikiNBookCorpusPretrainingDataCreator' on <module '__main__' from 'train.py'>
The data is retrieved from https://bertonazuremlwestus2.blob.core.windows.net/public/bert_data.tar.gz based on the notebook instruction (BERT_Pretrain.ipynb)
It seems this issue is raised because WikiNBookCorpusPretrainingDataCreator class is picked into the data file upon creation but not recognized while loading it, reflecting a mismatch between the loading code and the dataset.
I run into an attribute error while trying to load the bert training data:
AttributeError: Can't get attribute 'WikiNBookCorpusPretrainingDataCreator' on <module '__main__' from 'train.py'>
The data is retrieved from
https://bertonazuremlwestus2.blob.core.windows.net/public/bert_data.tar.gz
based on the notebook instruction (BERT_Pretrain.ipynb)It seems this issue is raised because WikiNBookCorpusPretrainingDataCreator class is picked into the data file upon creation but not recognized while loading it, reflecting a mismatch between the loading code and the dataset.