Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Buzzvil's Success Story with Google Vision API

Buzzvil
October 25, 2018

Buzzvil's Success Story with Google Vision API

By Yohan

Buzzvil

October 25, 2018
Tweet

More Decks by Buzzvil

Other Decks in Technology

Transcript

  1. 80+ publishing partners with 17 million daily users Our Mission:

    Help advertisers and publishers to engage with users on the first screen of mobile
  2. Safe Search Detection API • Given an image, provides likelihood

    score on each content categories • Code snippet response = google_client.safe_search_detection({ b'content': image_thumbnail.getvalue(), }) if response.safe_search_annotation.adult >= vision.enums.Likelihood.POSSIBLE or\ response.safe_search_annotation.violence >= vision.enums.Likelihood.POSSIBLE or\ response.safe_search_annotation.medical >= vision.enums.Likelihood.POSSIBLE: # filter and log
  3. adult: VERY_UNLIKELY spoof: VERY_UNLIKELY medical: UNLIKELY violence: LIKELY racy: VERY_UNLIKELY

    adult: VERY_UNLIKELY spoof: VERY_UNLIKELY medical: POSSIBLE violence: VERY_UNLIKELY racy: UNLIKELY