LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

kaggle-competitions

manages Kaggle machine learning competitions from the command line

TLDR

List competitions
$ kaggle competitions list
copy
Download competition files
$ kaggle competitions download -c [competition-name]
copy
Submit to competition
$ kaggle competitions submit -c [competition-name] -f [submission.csv] -m "[message]"
copy
List competition files
$ kaggle competitions files -c [competition-name]
copy
View leaderboard
$ kaggle competitions leaderboard -c [competition-name] -s
copy
List past submissions
$ kaggle competitions submissions -c [competition-name]
copy
Search competitions by keyword
$ kaggle competitions list -s "[search-term]"
copy
Download a specific file from a competition
$ kaggle competitions download -c [competition-name] -f [filename]
copy

SYNOPSIS

kaggle competitions subcommand [options]

DESCRIPTION

kaggle competitions manages Kaggle machine learning competitions from the command line. Part of the Kaggle CLI, it allows downloading datasets, submitting predictions, and checking leaderboard standings without using the web interface.

PARAMETERS

list

List available competitions. Supports --category, --sort-by, --page, --search, --csv.
download -c name
Download competition data. Use -f for a specific file, -p for destination path, -o to overwrite.
submit -c name -f file -m message
Submit predictions. Both -f and -m are required.
files -c name
List competition data files.
submissions -c name
List your past submissions and scores.
leaderboard -c name
View competition leaderboard. Use -s to show, -d to download as CSV.

SEE ALSO

Copied to clipboard
Kai