Unable to upload my planet kaggle dataset in colab. HELP

I am unable to upload the planet data set. First it was installing kaggle now this.

Hi using the kaggle api you can load the data directly in colab without having to upload it.
I did something like this https://github.com/averma12/Kaggle/blob/master/NYC_taxi_Kaggle.ipynb to load kaggle data directly. hope it helps

I recommend not messing with Kaggle API parameters when downloading in colab. Just use default API parameters and change the path accordingly in fastai Databunch.

import os
os.environ['KAGGLE_USERNAME']="" #copy paste from kaggle.json
os.environ['KAGGLE_KEY']="" #copy paste from kaggle.json
!kaggle competitions download -c planet-understanding-the-amazon-from-space

It worked man, It worked. Thanks

1 Like

Sorry,It wasn’t working

oh!!. ok. It worked for me. anyways the above approach was what I did in a longer format.