python 下载Kaggle数据集到colab笔记本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 下载Kaggle数据集到colab笔记本相关的知识,希望对你有一定的参考价值。

# the kaggle API
!pip install kaggle

# the username and api key can be found in kaggle create new API token
!echo '{"username":"<your_user_name>","key":"<your_api_key>"}' > /root/.kaggle/kaggle.json
!chmod 600 /root/.kaggle/kaggle.json

# then you can use the kaggle to see competitions and download data
!kaggle competitions list
!kaggle competitions download -c <competition_name>
kaggle config path -p /content/<competion_name>

以上是关于python 下载Kaggle数据集到colab笔记本的主要内容,如果未能解决你的问题,请参考以下文章