Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dataset not available #190

Open
Leo-Thomas opened this issue Dec 27, 2022 · 3 comments
Open

Dataset not available #190

Leo-Thomas opened this issue Dec 27, 2022 · 3 comments

Comments

@Leo-Thomas
Copy link

I have tried to download the dataset but the link does not redirect anywhere. Maybe you have the dataset in another place or can you upload it to another place to download it?

Thanks for the help.

@Leo-Thomas Leo-Thomas reopened this Jan 5, 2023
@AndreiMoraru123
Copy link

@Leo-Thomas , yes the link to MSCOCO seems to be broken indeed. Here is how you can get the 2014 dataset

You can run this in a bash script:

mkdir coco
cd coco
mkdir images
cd images

wget -c http://images.cocodataset.org/zips/train2014.zip
wget -c http://images.cocodataset.org/zips/val2014.zip
wget -c http://images.cocodataset.org/zips/test2014.zip
wget -c http://images.cocodataset.org/zips/unlabeled2014.zip

unzip train2014.zip
unzip val2014.zip
unzip test2014.zip
unzip unlabeled2014.zip

rm train2014.zip
rm val2014.zip
rm test2014.zip
rm unlabeled2014.zip

cd ../
wget -c http://images.cocodataset.org/annotations/annotations_trainval2014.zip
wget -c http://images.cocodataset.org/annotations/stuff_annotations_trainval2014.zip
wget -c http://images.cocodataset.org/annotations/image_info_test2014.zip
wget -c http://images.cocodataset.org/annotations/image_info_unlabeled2014.zip

unzip annotations_trainval2014.zip
unzip stuff_annotations_trainval2014.zip
unzip image_info_test2014.zip
unzip image_info_unlabeled2014.zip

rm annotations_trainval2014.zip
rm stuff_annotations_trainval2014.zip
rm image_info_test2014.zip
rm image_info_unlabeled2014.zip

or you can alternatively call it from a jupyter notebook cell using %%bash before the commands, or by adding ! in front of each command.

@Nostalgist7
Copy link

@Stanlito-AI
Copy link

http://cs.stanford.edu/people/karpathy/deepimagesent/caption_datasets.zip
please which folder can i place the downloaded file?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants