NanoNets
  1. Image Classification Model
NanoNets
  • Image Classification Model Predict
    • Prediction for image File
      POST
    • Prediction for image URLs
      POST
  • Image Classification Model
    • Get Model by Id
      GET
    • Create New Model
      POST
    • Get All Models
      GET
  • Image Classification Model Train
    • Train Model
      POST
  • Image Classification Model Upload
    • Upload training images by File
      POST
    • Upload training images by Url
      POST
  • OCR Predict
    • Get Prediction File By Page ID
      GET
    • Get All Prediction Files
      GET
    • Get Prediction File By File ID
      GET
    • Prediction for image file
      POST
    • Async Prediction for image file
      POST
    • Prediction for image url
      POST
    • Async Prediction for image url
      POST
  • Get Full Text
    • Get Full Text
      POST
  • OCR Model
    • Create New Model
      POST
    • Get Model by Id
      GET
  • OCR Train
    • Train Model
      POST
  • OCR Upload
    • Upload training images by File
      POST
    • Upload training images by Url
      POST
  1. Image Classification Model

Get All Models

开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
GET
/ImageCategorization/Models/
This endpoint returns information of all models created by user

请求参数

无

返回响应

🟢200Model Object
application/json
Body

请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://dev-cn.your-api-server.com/ImageCategorization/Models/'
响应示例响应示例
[
    {
        "categories": [
            {
                "count": 0,
                "name": "category1"
            },
            {
                "count": 0,
                "name": "category2"
            }
        ],
        "model_id": "00000000-0000-0000-0000-000000000000",
        "model_type": "classification",
        "state": 0
    }
]
修改于 2024-05-29 05:52:24
上一页
Create New Model
下一页
Train Model
Built with