LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

kaggle-models

manages Kaggle machine learning models from the command line

TLDR

List models
$ kaggle models list
copy
Get model details
$ kaggle models get -m [owner/model-name]
copy
Initialize model metadata
$ kaggle models init -p [path]
copy
Create a new model
$ kaggle models create -p [path]
copy
Download model instance version
$ kaggle models instances versions download -m [owner/model/framework/instance] -v [version]
copy

SYNOPSIS

kaggle models subcommand [options]

DESCRIPTION

kaggle models manages Kaggle machine learning models from the command line. Part of the Kaggle CLI, it provides access to pre-trained models and allows publishing custom models for the community.The command hierarchy has three levels: models (top-level repositories), instances (specific framework implementations), and instance versions (versioned snapshots). The shorthand kaggle m can be used instead of kaggle models.

PARAMETERS

list

List available models.
get -m model
Get model details.
init
Initialize model metadata.
create
Create new model.
update
Update an existing model.
delete
Delete a model.
instances
Manage model instances (get, init, create, update, delete, files).
instances versions
Manage model instance versions (create, download, delete, files).

SEE ALSO

Copied to clipboard
Kai