create-dataset

説明

CLIよりデータセットを作成します。

概要

$ abeja dataset create-dataset [--help]
Usage: abeja dataset create-dataset [OPTIONS]

  Create dataset channel

Options:
  -n, --name TEXT       Display name  [required]
  -t, --type TEXT       Type of dataset ex. classification, detection
                        [required]
  -p, --props FILENAME  Format to validate annotation attributes.  [required]
  --help                Show this message and exit.

オプション

-n, --name

データセット名を指定します (必須)

-t, --type

データセットのタイプ( classification , detection , segmentation-image , Custom )を指定します。(必須)

-p, --props

データセットのラベルを定義したファイルを指定します。(必須)

ラベル定義例 (property_file.json)

{
  "categories": [
        {
            "labels": [
                {
                    "label_id": 1,
                    "label": "dog"
                },
                {
                    "label_id": 2,
                    "label": "cat"
                },
                {
                    "label_id": 3,
                    "label": "others"
                }
            ],
            "category_id": 1,
            "name": "cats_dogs"
        }
    ]
}

データセットの作成

データセットの作成を行ないます。

コマンド:

$ abeja dataset create-dataset --name demo-dataset \
                                     --type classification \
                                     --props ./property_file.json