I’m currently working on the Programming Assignment of Week 2 in Course 4, but I kept bumping into this error when executing the line for obtaining train_stream_fn
train_stream_fn = trax.data.TFDS('cnn_dailymail', data_dir='data/', keys=('article', 'highlights'), train=True)
File “/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/tensorflow_datasets/core/download/download_manager.py”, line 808, in _validate_checksums
raise NonMatchingChecksumError(msg)
tensorflow_datasets.core.download.download_manager.NonMatchingChecksumError: Artifact Google Drive - Virus scan warning, downloaded to data/downloads/ucexport_download_id_0BwmD_VLjROrfTHk4NFg2SndKG8BdJPpt2iRo6Dpzz23CByJuAePEilB-pxbcBCHaWDs.tmp.f48299f3037c4bfe9034b12f54275f8d/download, has wrong checksum:
- Expected: UrlInfo(size=151.23 MiB, checksum=‘e8fbc0027e54e0a916abd9c969eb35f708ed1467d7ef4e3b17a56739d65cb200’, filename=‘cnn_stories.tgz’)
- Got: UrlInfo(size=2.36 KiB, checksum=‘7d8358e0aca2c8e06ab0bd64cf3b097603c3573e1f38d3c54c3f15dbab2903ac’, filename=‘download’)
I tried Googling for a solution but couldn’t find a working one. My package versions are trax=1.4.1
, tfds-nightly=4.9.2.dev202308090034.
Any help?