全部產品
Search
文件中心

Platform For AI:自訂模板

更新時間:Jul 13, 2024

如果iTAG提供的標註模板無法滿足您的需求,建立標註任務時,您也可以選擇自訂模板。本文介紹自訂模板的資料結構。

  • 應用情境

    您特定的標註情境。

  • 資料結構

    • 輸入資料

      manifest檔案的每行資料是一道題目,且每行資料的欄位名不限制,在建立任務時,您可以自由選擇欄位。

      {"data":{"picture_url":"oss://tongxin-lly.oss-cn-hangzhou.aliyuncs.com/iTAG/pic/13.jpg","text":"阿里巴巴集團慶祝創立十周年,同時成立阿里雲計算"}}
      ...
    • 輸出資料

      manifest檔案的每行資料由題目和標註結果一起產生。每行資料的JSON結構如下。

      {
          "data": {
              "picture_url": "oss://itag.oss-cn-hangzhou.aliyuncs.com/tongxin_pic/13.jpg", 
              "text": "阿里巴巴集團慶祝創立十周年,同時成立阿里雲計算"
          }, 
          "label-1435504604476547072": {
              "results": [
                  {
                      "questionId": "1", 
                      "data": [
                          {
                              "id": "e0755602-b90f-4d15-a11d-8951e001****", 
                              "type": "image/polygon", 
                              "value": [
                                  [
                                      281.0181818181821, 
                                      451.49090909090916
                                  ], 
                                  [
                                      281.0181818181821, 
                                      1116.7636363636366
                                  ], 
                                  [
                                      829.927272727273, 
                                      1116.7636363636366
                                  ], 
                                  [
                                      829.927272727273, 
                                      451.49090909090916
                                  ]
                              ], 
                              "labels": {
                                  "boundingbox": "標籤2"
                              }
                          }
                      ], 
                      "rotation": 0, 
                      "markTitle": "框選題-IMG-3", 
                      "width": 960, 
                      "type": "image", 
                      "height": 960
                  }, 
                  {
                      "objects": [
                          {
                              "result": {
                                  "NER": [
                                      "標籤7"
                                  ]
                              }, 
                              "color": null, 
                              "id": null, 
                              "text": "集團慶祝", 
                              "start": 4, 
                              "end": 7
                          }
                      ], 
                      "empty": false
                  }, 
                  {
                      "questionId": "3", 
                      "data": "這裡是填空題的答案", 
                      "markTitle": "常值內容", 
                      "type": "survey/value"
                  }, 
                  {
                      "questionId": "4", 
                      "data": "標籤222", 
                      "markTitle": "單選題", 
                      "type": "survey/value"
                  }
              ]
          }
      }