Doubts regarding starting with this competion

#3
by abhinavkcs11 - opened

I am new to this space so finding hard to navigate. I have couple of questions, if anyone can answer then it would of great help

  1. How to download the dataset?
  2. Where we can train our models and do the inferencing?
Data-Driven Science org

Welcome!

There are multiple ways to download the dataset:

  • Using git lfs
git lfs install
git clone https://huggingface.co/datasets/datadrivenscience/ship-detection
  • Using datasets library
from datasets import load_dataset
data = load_dataset("datadrivenscience/ship-detection")

Please note that since its a gated dataset, you must log in using huggingface-cli login command in order to download the dataset after you have requested access for it.

Regarding training and inference you are free to choose any platform or you can even do it locally. For submission, you only need to upload the CSV containing predictions for the test set. You can find sample submission here: https://huggingface.co/datasets/datadrivenscience/ship-detection/blob/main/.extras/sample_submission.csv

How much RAM is needed to load a single datapoint using the huggingface datasets library? I am unable to load it in Colab.

Sign up or log in to comment