0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

google colabでKaggleのデータセットを保存する

Last updated at Posted at 2023-12-21

google colabのノートブックを使って、Kaggleのコンテストの分析を行う時がある。
その第一歩、データの保存手順を記入しておく。
参考になれば幸いです。

1. Kaggle API Tokenの取得

[Kaggle]
Kaggleマイアカウントページ → 「your account」 → 「Create New API Token」をクリック
すると、「kaggle.json」のファイルがダウンロードされる。

※以前API Tokenを使った場合、一度「Expire API Token」をクリックし、以前のTokenを失効させた方がトラブルが減るかも

2. Google Colabの準備

ノートブック開き(または作成し)、以下を記入し、実行させる

  1. ! pip install -q kaggle
  2. from google.colab import files
  3. files.upload()--------ダウンロードされたkaggle.jsonを選択し、アップロードする。
  4. ! mkdir ~/.kaggle
  5. ! cp kaggle.json ~/.kaggle/
  6. ! chmod 600 ~/.kaggle/kaggle.json
  7. ! kaggle datasets list ------現在kaggle持ちのデータセットのリストが表示される

3.コンペのデータをダウンロード

  1. ! kaggle competitions download -c '「コンペ名」' -----データのzipファイルがダウンロードされる
    https://kaggle.com/competitions/「コンペ名」

zipファイルを「example_dir」フォルダに解凍する
2) ! mkdir example_dir ------
3) ! unzip 「コンペ名.zip」 -d example_dir

参照文章:
https://www.kaggle.com/discussions/general/74235

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?