SnakeCLEF2021 - Snake Species Identification Challenge
Download dataset in Colab/Notebook via CLI
This notebook contain example on how to download dataset via notebook/colab using aicrowd-cli
Download dataset example for SnakesCLEF 🛠¶
In [ ]:
!pip install -U aicrowd-cli==0.1 > /dev/null
In [ ]:
# Get your API key from https://www.aicrowd.com/participants/me
API_KEY = "add-your-api-key-here"
!aicrowd login --api-key $API_KEY
In [ ]:
!aicrowd dataset list --challenge snakeclef2021-snake-species-identification-challenge
In [ ]:
# Download file at index=0 (or multiple indexes)
!aicrowd dataset download --challenge snakeclef2021-snake-species-identification-challenge 0
!aicrowd dataset download --challenge snakeclef2021-snake-species-identification-challenge 0 1
In [ ]:
# Download file by file name (can specify multiple at same time too)
!aicrowd dataset download --challenge snakeclef2021-snake-species-identification-challenge "Species to Country Map File"
!aicrowd dataset download --challenge snakeclef2021-snake-species-identification-challenge "Species to Country Map File" "BaseLine Notebook - Training Script"
Content
Comments
You must login before you can post a comment.
@shivam How can I save the downloaded dataset in Google Drive? Next time when I run the notebook, I don’t want to download the dataset again, I just want to mount google drive and run the model on the dataset. I am working on Global Wheat Challenge Dataset.