annotation_specs list_label_attribute#

Description#

アノテーション仕様のラベルとラベルに含まれている属性の一覧を出力します。

Examples#

$ annofabcli annotation_specs list_label_attribute --project_id prj1

出力結果#

CSV出力#

$ annofabcli annotation_specs list_label_attribute --project_id prj1 --format csv --output out.csv
out.json#
[
{
    "label_id": "a0a0c27b-dad8-42da-9235-c09688cdfd12",
    "label_name_en": "car",
    "label_name_ja": "car",
    "label_name_vi": "car",
    "annotation_type": "bounding_box",
    "attribute_id": "0f739b17-c22b-4f4a-a791-d142eb0bcd41",
    "attribute_name_en": "truncation",
    "attribute_name_ja": "truncation",
    "attribute_name_vi": "truncation",
    "attribute_type": "flag"
},
{
    "label_id": "53530a8f-e48f-46e9-833f-8e48becb25af",
    "label_name_en": "road",
    "label_name_ja": "road",
    "label_name_vi": "road",
    "annotation_type": "segmentation_v2",
    "attribute_id": "0f739b17-c22b-4f4a-a791-d142eb0bcd41",
    "attribute_name_en": "truncation",
    "attribute_name_ja": "truncation",
    "attribute_name_vi": "truncation",
    "attribute_type": "flag"
}
]
  • label_id : ラベルID

  • label_name_en : ラベル名(英語)

  • label_name_ja : ラベル名(日本語)

  • label_name_vi : ラベル名(ベトナム語)

  • annotation_type : アノテーションの種類

  • attribute_id : 属性ID

  • attribute_name_en : 属性名(英語)

  • attribute_name_ja : 属性名(日本語)

  • attribute_name_vi : 属性名(ベトナム語)

  • attribute_type : 属性の種類

Usage Details#

アノテーション仕様のラベルとラベルに含まれている属性の一覧を出力します。

usage: annofabcli annotation_specs list_label_attribute [-h] [--yes]
                                                        [--endpoint_url ENDPOINT_URL]
                                                        [--annofab_user_id ANNOFAB_USER_ID]
                                                        [--annofab_password ANNOFAB_PASSWORD]
                                                        [--annofab_pat ANNOFAB_PAT]
                                                        [--logdir LOGDIR]
                                                        [--disable_log]
                                                        [--debug]
                                                        (-p PROJECT_ID | --annotation_specs_json ANNOTATION_SPECS_JSON)
                                                        [--history_id HISTORY_ID | --before BEFORE]
                                                        [-f {csv,json,pretty_json}]
                                                        [-o OUTPUT]

Named Arguments#

-p, --project_id

対象のプロジェクトのproject_idを指定します。APIで取得したアノテーション仕様情報を元に出力します。

--annotation_specs_json

指定したアノテーション仕様のJSONファイルを指定します。JSONファイルに記載された情報を元に出力します。ただしアノテーション仕様の format_version3 である必要があります。

--history_id

出力したいアノテーション仕様のhistory_idを指定してください。 history_idは annotation_specs list_history コマンドで確認できます。 指定しない場合は、最新のアノテーション仕様が出力されます。

--before

出力したい過去のアノテーション仕様が、最新よりいくつ前のアノテーション仕様であるかを指定してください。 たとえば 1 を指定した場合、最新より1個前のアノテーション仕様を出力します。 指定しない場合は、最新のアノテーション仕様が出力されます。

-f, --format

Possible choices: csv, json, pretty_json

出力フォーマット

Default: 'csv'

-o, --output

出力先のファイルパスを指定します。未指定の場合は、標準出力に出力されます。

global optional arguments#

--yes

処理中に現れる問い合わせに対して、常に yes と回答します。

--endpoint_url

Annofab WebAPIのエンドポイントを指定します。

Default: 'https://annofab.com'

--annofab_user_id

Annofabにログインする際のユーザーID

--annofab_password

Annofabにログインする際のパスワード

--annofab_pat

Annofabにログインする際のパーソナルアクセストークン

--logdir

ログファイルを保存するディレクトリを指定します。

Default: .log

--disable_log

ログを無効にします。

--debug

HTTPリクエストの内容やレスポンスのステータスコードなど、デバッグ用のログが出力されます。