Use Custom Image

Using custom images

Custom images are only available with the following features

  • Notebook (Jupyter Notebook)
  • Training Job
  • Create model

“Edge”, “Batch”, “Trigger” functions are not supported

Jupyter Notebook

Select to use Custom image when starting Notebook. Enter the repository and tag and specify a custom image.

image.png

Training Job

Specify a custom image for “training.yaml” used during Create job definition.

Sample:training.yaml

name: training1
handler: train:handler
image: custom/{organization_id}/{repository_name}:{tag_name}
datasets:
  "mnist": "1111111111111"

CLI Document(CREATE-JOB-DEFINITION)

Creating a model

When using the management screen, use Custom image when creating a model. Enter the repository and tag and specify a custom image.

image.png

In the case of CLI, specify a custom image for the argument image to be used.

CLI Command example

$ abeja model create-version --model_id 1234567890123 --version "0.1" --image "custom/{organization_id}/{repository_name}:{tag_name}" --handler "main:handler"

CLI Document(CREATE-VERSION)