Kaggle Link for downloading and using the dataset.
Data · 15 Mar 2024, 14:34 · 2

I have downloaded and uploaded the dataset on the Kaggle so everyone can easily download as well as build notebooks on the kaggle easily. Here is the link - https://www.kaggle.com/datasets/takihasan/arm-unicef-disaster-vulnerability-challenge

Don't forget to give an upvote before downloading or using it for notebook😉

Guys give an upvote in Kaggle also. It will help to build my profile

Discussion 2 answers

If anyone want to use the kaggle api to download, and use it directly in the colab, do the following -

1. go to kaggle profile setting and download the kaggle.json file from api section of setting by creating a token.

2. Then paste the following in the first cell -

!pip install -q kaggle

from google.colab import files

files.upload()

3. upload the kaggle.json file here and paste the following into the second cell

!mkdir -p ~/.kaggle

!cp kaggle.json ~/.kaggle/

!ls ~/.kaggle

!chmod 600 /root/.kaggle/kaggle.json

!kaggle datasets download -d takihasan/arm-unicef-disaster-vulnerability-challenge

!unzip arm-unicef-distaster-vulnerability-challenge.zip

15 Mar 2024, 14:52
Upvotes 2
User avatar
sid4ds

What about this?:

"The data used in this competition is the sole property of Zindi and the competition host. You may not transmit, duplicate, publish, redistribute or otherwise provide or make available any competition data to any party not participating in the Competition (this includes uploading the data to any public site such as Kaggle or GitHub)"

21 Mar 2024, 14:38
Upvotes 2