I tested the Google Vision API for tagging various images.
For this image, I will return 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:
- Does anyone know if Google published its complete list of shortcuts (
['produce', 'meal', ...] ) and where could I find this? - Are these labels structured in any way? - eg. it is known that "food" is, for example, a superset of the "product".
I assume "No" and "No" because I could not find anything, but maybe not. Thanks!
python google-app-engine google-cloud-vision
Hillary sanders
source share