mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
590 B
Plaintext
34 lines
590 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# kaggle models
|
|
|
|
> Manage Kaggle models.
|
|
> More information: <https://github.com/Kaggle/kaggle-api/blob/main/docs/README.md#models>.
|
|
|
|
- Get a model:
|
|
|
|
`kaggle {{[m|models]}} get "{{model_name}}"`
|
|
|
|
- List all models:
|
|
|
|
`kaggle {{[m|models]}} list`
|
|
|
|
- Initialize metadata file for model creation:
|
|
|
|
`kaggle {{[m|models]}} init`
|
|
|
|
- Create a new model:
|
|
|
|
`kaggle {{[m|models]}} create`
|
|
|
|
- Delete a model:
|
|
|
|
`kaggle {{[m|models]}} delete "{{model_name}}"`
|
|
|
|
- Update a model:
|
|
|
|
`kaggle {{[m|models]}} update`
|