- 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-training-models
説明
Describe training models information.
概要
$ abeja training describe-training-models [OPTIONS]
Get training model
Options:
-j, --job_definition_name, --job-definition-name TEXT
Training job definition name
-m, --model_id, --model-id TEXT
Model identifier
--include-archived Includes archived training models.
--help Show this message and exit.
Argument
Gets the training-definition name from the training configuration file (training.yaml) . If job-definition-name option is given, the option has priotiry.
Option
-j
, --job_definition_name
, --job-definition-name
Specify the ID of the job-definition name which the training models you want to get information belongs to.
-m
, --model_id
, --model-id
Specify the ID of the training models you want to get the information.
--include-archived
Includes archived training models when listing training models. Archived training models are excluded when this option is not given.
Example
How to describe training job definition versions information
Describe training models information in this example
Training configuration File (training.yaml) :
name: training1
handler: train:handler
image: abeja-inc/all-gpu:19.04
datasets:
"mnist": "1111111111111"
コマンド:
$ abeja training describe-training-models
Output:
{
"total": 0,
"offset": 0,
"limit": 10,
"entries": [
{
"user_parameters": {},
"user": {
"updated_at": "2020-02-06T06:11:48Z",
"role": "admin",
"preferred_language": "ja",
"is_registered": true,
"id": "1128468193291",
"email": "test@example.com",
"display_name": null,
"created_at": "2017-05-26T04:55:21Z"
},
"training_model_id": "2017437807280",
"training_job_id": null,
"modified_at": "2020-02-24T23:46:00.853896Z",
"metrics": {},
"job_definition_id": "2014077699030",
"id": "2017437807280",
"exec_env": "none",
"description": "",
"created_at": "2020-02-24T23:46:00.853855Z",
"archived": true
}
]
}