- 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
create-model
Description
Create Model and after done it, please link with versions by input create version
command.
Specify init_project
to create a model directly at a current directly then you can download sample code.
Synopsis
$ abeja model create-model [--help]
Usage: abeja model create-model [OPTIONS]
Create model
Options:
-n, --name TEXT Model name [required]
-d, --description TEXT Model description [required]
-i, --init_project Set if want to init project
--help Show this message and exit.
options
-n
, --name
Specify distinguished name of model. No problem with duplicating a model name that already exist.
-d
, --description
Specify a overview for model.
-i
, --init_project
sample project will be created at a current directly in case you specify this option.
Example
Create model
This is sample of creating Model
Command:
$ abeja model create-model --name "default" --description "default description"
Output:
{
"created_at": "2017-09-01T00:00:00.000000Z",
"description": "default description",
"model_id": "1234567890123",
"modified_at": "2017-09-01T00:00:00.000000Z",
"name": "default"
}