Slide 1

Slide 1 text

Making Android Apps with Intelligence Margaret Maynard-Reid, July 29 2016 @margaretmz +MargaretMaynardReid @margaretmz

Slide 2

Slide 2 text

Machine learning everywhere! 2

Slide 3

Slide 3 text

What is Machine Learning? ● A subset of Artificial Intelligence ● Study of algorithms ● Learn from examples and experience (instead of hard-coded programming rules) Source: ML Recipes #1 by Google Developers - https://www.youtube.com/watch?v=cKxRvEZd3Mw 3 Collect training data Train a model Use model to predict

Slide 4

Slide 4 text

Topics covered today 4 Complexity Other topics ● Amazon Alexa ● Pepper the Robot ● Design considerations ML Services (REST APIs) Vision Speech Language Text… (Google, MS, IBM, HP…) ML Services (build or train your ML models) Google Cloud ML Platform TensorFlow Amazon ML Google Play services Awareness API Mobile Vision API

Slide 5

Slide 5 text

Google Play services 5

Slide 6

Slide 6 text

Google Awareness API ● Unifies 7 signals into one API - time, location, place, activity, beacons, headphones & weather ● Two options - ○ Snapshot API: current state ○ Fence API: state change I/O YouTube recording: https://youtu.be/37ia7S4Lsv4 https://developers.google.com/awareness/ 6

Slide 7

Slide 7 text

Getting started ● Add this to app build.gradle file ● Get an Awareness API key from Google dev console ● Add the API key in manifest ● (Optional) add required permissions in manifest ● (Optional) enable additional APIs for Places and Beacon states Demo: SampleAwareness 7 com.google.android.gms:play-services-contextmanager:9.2.1

Slide 8

Slide 8 text

Google Mobile Vision API ● Part of the Google Play services ● Very easy to get started ● Can detect: ○ Face (FaceDetector) | codelab ○ Barcode (BarcodeDetector) | codelab ○ Text (TextRecognizer) | codelab https://developers.google.com/vision/ 8

Slide 9

Slide 9 text

Face API ● Facial detection not recognition ● Detection from image or live video ● Face can be detected from different angles ● Detects activities: ○ winking, blinking and smiling ● Detect landmarks on face 9

Slide 10

Slide 10 text

Face detector Add this to app build.gradle file Create a detector Make sure detector is operational first 10 com.google.android.gms:play-services-vision:9.2.1 FaceDetector faceDetector = new FaceDetector.Builder(getApplicationContext()) .setTrackingEnabled(false) .build(); if(!faceDetector.isOperational()){ // let user know face detector isn’t working // log error etc... }

Slide 11

Slide 11 text

Face detector Detect the face Draw Rectangles on the Faces Refer to code lab for details... Demo: Multi tracker and OCR reader 11 Frame frame = new Frame.Builder().setBitmap(myBitmap).build(); SparseArray faces = faceDetector.detect(frame);

Slide 12

Slide 12 text

Machine Learning Services - via REST APIs 12

Slide 13

Slide 13 text

Machine learning services Pre-trained models No need for much ML knowledge Just REST API calls “Try the API” directly online from the websites ● Google Cloud ML APIs ● Microsoft Cognitive Services ● IBM Watson ● HPE Haven OnDemand 13

Slide 14

Slide 14 text

Getting started Free trial based on time or # of transactions A typical process: ● Get API key ● Include key in Android app ● Download SDK or include dependency in build.gradle (if sdk available) ● Make your REST API calls 14

Slide 15

Slide 15 text

REST API calls 15 ML REST APIs Vision Speech Language Text Translate Search…. HTTP response images text HTTP call audio video

Slide 16

Slide 16 text

Microsoft Vision APIs Vision APIs ● Computer Vision, Emotion & Face Can detect ● Gender ● Age ● Emotions etc. Demo: SampleVision - image caption 16

Slide 17

Slide 17 text

Demo - Mimicker Alarm Mimicker Alarm uses 3 ML APIs: ● Computer Vision ● Emotion ● Speech https://github.com/Microsoft/ProjectOxford-Apps-MimickerAlarm 17

Slide 18

Slide 18 text

Microsoft LUIS ● Language Understanding Intelligence Service https://www.luis.ai/ ● Train a pre-built language understanding model ● Deploy your model to http endpoint ● Activate models on mobile device 18

Slide 19

Slide 19 text

Machine Learning Services - build your own ML models 19

Slide 20

Slide 20 text

ML Services Build your own ML models, or train your own models. Examples: ● Google Cloud ML Platform ● Amazon ML 20

Slide 21

Slide 21 text

Google TensorFlow ● Open source machine learning library https://www.tensorflow.org/ ● A Neural Network Playground - TensorFlow Demo: Android sample app with TensorFlow *** note this app doesn’t need network for it work Code lab: https://codelabs.developers.google.com/codelabs/tensorflow-for-poets/index.html 21

Slide 22

Slide 22 text

Beyond ML Services 22

Slide 23

Slide 23 text

Amazon Alexa Voice as the user interface! ● Train Alexa by building new skills ● Connect what you build with Android ● Create your own echo - DIY echo with Alexa + Raspberry Pi 23

Slide 24

Slide 24 text

Pepper the Robot + Android 1. Download Android plugin & SDK 2. Create an Android project 3. Enable robot project structure Now you are ready to program robots! https://android.aldebaran.com/doc/introduction.html 24

Slide 25

Slide 25 text

Closing 25

Slide 26

Slide 26 text

Design considerations ● Does your app really need the intelligence? ● Choose a API/service ○ ease of use, support, pricing ● Get user permissions ● Inform user about data privacy ● Be mindful with user's data 26

Slide 27

Slide 27 text

What is next? The future is already here! ● Build an app with intelligence ● Make your own echo ● Program a robot ● Study machine learning... 27

Slide 28

Slide 28 text

Thank you! Reminder to fill out session feedback Keep in touch @margaretmz +MargaretMaynardReid @margaretmz 28

Slide 29

Slide 29 text

Appendix ML Sessions at I/O - ● Google’s Vision on Machine Learning ● Machine Learning for Art ● Machine learning is not the future ● Breakthroughs in Machine Learning ● How to build a smart RasPi Bot with Cloud Vision and Speech API 29

Slide 30

Slide 30 text

Appendix Getting started with ML - Udacity ● Intro to Machine Learning ● Deep Learning (TensorFlow) Stanford ● Andrew Ng’s ML course on Coursera Google Developers ● Machine Learning Recipes Reading ● Python Machine Learning by Sabastian Raschka 30