Trouble getting access to dataset
Hi!
I'm getting an error response when running real_winoground = load_dataset('facebook/winoground', use_auth_token= is DatasetNotFoundError: Dataset 'facebook/winoground' is a gated dataset on the Hub. You must be authenticated to access it.
However, on the Winoground Huggingface page, it says that Gated dataset: You have been granted access to this dataset.
Does anyone know how to overcome this issue? Thanks!
Thanks for raising this issue! There seems to be a compatibility issue with the latest version of datasets (which doesn't surprise me - a pain point for me and many other researchers is that HF updates break things all the time). In the meantime I've checked that I can download the dataset by downgrading datasets:
pip install datasets==2.21.0
Does that work for you?
I will look into the possibility of modifying the winoground repo to be compatible with the new version of datasets, or I will raise the issue with Hugging Face.
Hi Tristan, thank you for the swift response! I was able to load the dataset, but only the first row. If I tried to index into any row past the first, I get the following error:
FileNotFoundError: [Errno 2] No such file or directory: '/n/home10/iliang1234/.cache/huggingface/datasets/downloads/extracted/4f9780491a4b0393bb83e22b22aa96405c556677679ba0b32c5e38b196d3c215/images/ex_1_img_0.png'
Interesting, I actually couldn't replicate your error. What happens if you remove your cache and try again?
At this point I was able to convert the dataset into a form that the latest version of datasets seems happy with, so hopefully you can even do this with the datasets 3.0.2 now. Let me know if it works, thanks!