nickyongzhang

Results 2 comments of nickyongzhang

I am running the `msmarco-passage-ranking` example and see the same error. I have done `pip uninstall dense && pip install --editable .` and still see the error. My env info...

I am able to solve this error by updating the `datasets` package to 1.12.0 and make the following change ``` self.train_data = datasets.load_dataset( 'json', data_files=os.path.join(path_to_data, "*.json"), ignore_verifications=False, )['train'] ``` By...