List Models - List Models
この操作は、Computer Vision API でサポートされているドメイン固有モデルの一覧を返します。 現時点では、この API によってサポートされるドメイン固有モデルは著名人認識機能とランドマーク認識機能です。 成功した応答は JSON で返されます。 要求が失敗した場合、応答にはエラー コードと、何が問題が発生したかを理解するのに役立つメッセージが含まれます。
GET {Endpoint}/vision/v3.2/models
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
Endpoint
|
path | True |
string |
サポートされている Cognitive Services エンドポイント。 |
要求ヘッダー
名前 | 必須 | 型 | 説明 |
---|---|---|---|
Ocp-Apim-Subscription-Key | True |
string |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
使用可能なドメイン モデルの一覧。 |
|
Other Status Codes |
エラー応答。 |
セキュリティ
Ocp-Apim-Subscription-Key
型:
apiKey
/:
header
例
Successful ListModels request
要求のサンプル
GET https://westus.api.cognitive.microsoft.com/vision/v3.2/models
応答のサンプル
{
"models": [
{
"name": "celebrities",
"categories": [
"people_"
]
},
{
"name": "landmarks",
"categories": [
"building_"
]
}
]
}
定義
名前 | 説明 |
---|---|
Computer |
API 要求エラー。 |
Computer |
エラー コード。 |
Computer |
API エラー応答。 |
Computer |
API 要求エラーの詳細。 |
Computer |
エラー コード。 |
List |
ドメイン モデルの一覧表示操作の結果。 |
Model |
サポートされているモデルを名前とカテゴリ別に記述する オブジェクト。 |
ComputerVisionError
API 要求エラー。
名前 | 型 | 説明 |
---|---|---|
code |
エラー コード。 |
|
innererror |
内部エラーには、より具体的な情報が含まれています。 |
|
message |
string |
サービスによって報告されたエラーを説明するメッセージ。 |
ComputerVisionErrorCodes
エラー コード。
名前 | 型 | 説明 |
---|---|---|
InternalServerError |
string |
|
InvalidArgument |
string |
|
InvalidRequest |
string |
|
ServiceUnavailable |
string |
ComputerVisionErrorResponse
API エラー応答。
名前 | 型 | 説明 |
---|---|---|
error |
エラーの内容。 |
ComputerVisionInnerError
API 要求エラーの詳細。
名前 | 型 | 説明 |
---|---|---|
code |
エラー コード。 |
|
message |
string |
エラー メッセージ。 |
ComputerVisionInnerErrorCodeValue
エラー コード。
名前 | 型 | 説明 |
---|---|---|
BadArgument |
string |
|
CancelledRequest |
string |
|
DetectFaceError |
string |
|
FailedToProcess |
string |
|
InternalServerError |
string |
|
InvalidDetails |
string |
|
InvalidImageFormat |
string |
|
InvalidImageSize |
string |
|
InvalidImageUrl |
string |
|
InvalidModel |
string |
|
InvalidThumbnailSize |
string |
|
NotSupportedFeature |
string |
|
NotSupportedImage |
string |
|
NotSupportedLanguage |
string |
|
NotSupportedVisualFeature |
string |
|
StorageException |
string |
|
Timeout |
string |
|
Unspecified |
string |
|
UnsupportedMediaType |
string |
ListModelsResult
ドメイン モデルの一覧表示操作の結果。
名前 | 型 | 説明 |
---|---|---|
models |
サポートされているモデルの配列。 |
ModelDescription
サポートされているモデルを名前とカテゴリ別に記述する オブジェクト。
名前 | 型 | 説明 |
---|---|---|
categories |
string[] |
モデルのカテゴリ。 |
name |
string |
モデルの名前。 |