Skip to content

gbeltramo/kaggle-digit-recognizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kaggle: Digit Recognizer competition

Overview

This repo provides Python code to obtain predictions for the digit recognizer Kaggle competition.

Setup

  • conda env with mamba env create --file dev/conda_env.yaml
  • kaggle.json for API in ~/.kaggle/ and chmod 600 $HOME/.kaggle/kaggle.json
  • kaggle command line and data
    1. kaggle config set -n competition -v digit-recognizer set competitions value
    2. kaggle competitions files list competition files
    3. Download the data in $HOME/data/kaggle/digit-recognizer
kaggle competitions download --path $HOME/data/kaggle/digit-recognizer
cd $HOME/data/kaggle/digit-recognizer && unzip digit-recognizer.zip
  • install kaggland package and run tests with make all in root of repo.