- Overview
- Getting Started Guide
- UserGuide
-
References
-
ABEJA Platform CLI
- CONFIG COMMAND
- DATALAKE COMMAND
- DATASET COMMAND
- TRAINING COMMAND
-
MODEL COMMAND
- check-endpoint-image
- check-endpoint-json
- create-deployment
- create-endpoint
- create-model
- create-service
- create-trigger
- create-version
- delete-deployment
- delete-endpoint
- delete-model
- delete-service
- delete-version
- describe-deployments
- describe-endpoints
- describe-models
- describe-service-logs
- describe-services
- describe-versions
- download-versions
- run-local
- run-local-server
- start-service
- stop-service
- submit-run
- update-endpoint
- startapp command
-
ABEJA Platform CLI
- FAQ
- Appendix
describe-versions
Description
Describe versions.
If version_id
is specified, the corresponding version is displayed.
Ifversion_id
is not specified, the version is displayed in a list.
Synopsis
$ abeja model describe-versions [--help]
Usage: abeja model describe-versions [OPTIONS]
Get to version or version list
Options:
-m, --model_id TEXT Model identifier [required]
-v, --version_id TEXT Version identifier
--help Show this message and exit.
Options
-m
, --model_id
Specify model_id when created with create-model.
-v
, --version_id
Specify model_id when created with create-version.
Example
Describe information of specified version
Command:
$ abeja model describe-versions --model_id 1234567890123 --version_id ver-2345678901234
Output:
{
"created_at": "2017-09-01T00:00:00.000000Z",
"handler": "",
"image": "abeja-inc/all-cpu:18.10",
"model_id": "1234567890123",
"modified_at": "2017-09-01T00:00:00.000000Z",
"version": "0.1",
"version_id": "ver-2345678901234"
}