我一直在测试 Google 的 Vision API 以将标签附加到不同的图像。
对于给定的图像,我会得到这样的结果:
"google_labels": {
"responses": [{
"labelAnnotations": [{
"score": 0.8966763,
"description": "food",
"mid": "/m/02wbm"
}, {
"score": 0.80512983,
"description": "produce",
"mid": "/m/036qh8"
}, {
"score": 0.73635191,
"description": "juice",
"mid": "/m/01z1kdw"
}, {
"score": 0.69849229,
"description": "meal",
"mid": "/m/0krfg"
}, {
"score": 0.53875387,
"description": "fruit",
"mid": "/m/02xwb"
}]
}]
}
--> 我的问题是:
- 有人知道 Google 是否发布了他们的完整标签列表 (
['produce', 'meal', ...]
) 以及我在哪里可以找到它? - 这些标签有什么结构吗?- 例如,是否已知“食物”是“农产品”的超集。
我猜是“不”和“不”,因为我找不到任何东西,但是,也许不是。谢谢!