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"
}