snumprlab / cl-alfred

Official Implementation of CL-ALFRED (ICLR'24)
https://bhkim94.github.io/projects/CL-ALFRED/
GNU General Public License v3.0
12 stars 2 forks source link

dataset download #5

Closed hjson1022 closed 2 months ago

hjson1022 commented 2 months ago

I got the error message when I tried to download the dataset from huggingface: repository 'https://huggingface.co/byeonghwikim/abp_dataset/' not found

So, I tried the following comment: git clone https://huggingface.co/datasets/byeonghwikim/abp_dataset json_feat_2.1.0

But, there is an error message in the part of loading resnet features (138 lines in seq2seq_im_mask.py file): _pickle.UnpicklingError: invalid load key, 'v' (I already tried to download dataset several times.)

Please reply to my question. Thanks.

bhkim94 commented 2 months ago

Hi @hjson1022,

Thank you for having an interest in our work!

I got the error message when I tried to download the dataset from huggingface: repository 'https://huggingface.co/byeonghwikim/abp_dataset/' not found

Thank you for pointing this out. I've just modified it.

So, I tried the following comment: git clone https://huggingface.co/datasets/byeonghwikim/abp_dataset json_feat_2.1.0 But, there is an error message in the part of loading resnet features (138 lines in seq2seq_im_mask.py file): _pickle.UnpicklingError: invalid load key, 'v' (I already tried to download dataset several times.)

That seems expected. Can you try data/json_feat_2.1.0 not just json_feat_2.1.0? The code loads image features stored in data/json_feat_2.1.0

bhkim94 commented 2 months ago

Closing this issue. Feel free to reopen this if you have any further questions.

hjson1022 commented 2 months ago

I solved the problem. Thanks

solution: sudo apt-get install git-lfs git lfs install

bhkim94 commented 2 months ago

Thank you for sharing your solution!