Microsoft Custom Vision Service 使用筆記

aha (Cheng-Yu Lin)
2 min readOct 1, 2017

--

幾個重點功能

為了建立一組屬於自己的影像庫,所以採用了微軟的Custom Vision Service。這個服務很酷,可以自己建立自己的辨識貼標庫。而且現在免費啊

串接步驟

  1. 上傳圖片
  2. 分類圖片,每類至少五張
  3. 按右上角Train
  4. 按下Performance 然後去按Prediction URL
  5. 最後拿到相關必要資訊後,放入自己的程式內
  6. have fun

回傳資料內容

{
"Id": "xxxxx",
"Project": [Project Id],
"Iteration": [Iteration ID],
"Created": [Timestamp],
"Predictions": [
{
"TagId": [Tag ID 1],
"Tag": [Tag Name 1],
"Probability": [Probability 0-1]
},
{
"TagId": [Tag ID 2],
"Tag": [Tag Name 2],
"Probability": [Probability 0-1]
}
]
}

其他的兩三事

其實可以後續根據上傳的內容進行資料更新,這對如果一開始的測試資料不足的時候,透過後續的測試逐步進步。

--

--

aha (Cheng-Yu Lin)

Passionate about reading, gaming, and travel. Using AI to connect the physical & virtual worlds, I enjoy sharing ideas with others. Let's connect!