I've been testing out Google's Vision API to attach labels to different images.
For a given image, I'll get back something like this:
"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"
}]
}]
}
--> My questions are:
- Does anybody know if Google has published their full list of labels (
['produce', 'meal', ...]
) and where I could find that? - Are those labels structured in any way? - e.g. is it known that 'food' is a superset of 'produce', for example.
I'm guessing 'No' and 'No' as I haven't been able to find anything, but, maybe not. Thanks!