- 概要
- スタートアップガイド
- ユーザガイド
-
リファレンス
-
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-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