strategies to make your mobile apps feel all the feels!
@jenlooper
Jen Looper
Progress
Senior Developer Advocate
@jenlooper
My apps are stupid and boring
@jenlooper
@jenlooper
"Make Your App Smarter"
@jenlooper
@jenlooper
@jenlooper
@jenlooper
an open source framework for building truly native mobile apps with JavaScript. Use web skills, like TypeScript, Angular and CSS, and get native UI and performance on iOS and Android.
@jenlooper
NativeScript is the best tool for cross-platform native app development 🎉
@jenlooper
Rich, animated, “no compromise” native UI
(with shared UI code)
@jenlooper
You know JavaScript? You know NativeScript!
@jenlooper
@jenlooper
@jenlooper
@jenlooper
@jenlooper
@jenlooper
@jenlooper
Powered by Firebase & NativeScript
QuickNoms.com
@jenlooper
Algolia search
Firebase Remote Config marquee
@jenlooper
@jenlooper
Build an IoT integration to craft a recipe recommender based on room temperature
@jenlooper
@jenlooper
wifi-connected Particle Photon + temperature sensor - about $25 total
@jenlooper
Photon reads temp every 10 secs, writes data to Particle Cloud
@jenlooper
webhook lives in Particle Cloud, watches for data written by Photon to cloud
@jenlooper
@jenlooper
ngOnInit(): void {
this.recipesService.getTemperatures(AuthService.deviceId).subscribe((temperature) => {
this.temperature$ = temperature[0].temperature;
this.getRecommendation(this.mode)
})
}
getRecommendation(mode){
if (mode == 'F'){
if (Number(this.temperature$) > 70) {
this.gradient = this.hotGradient;
this.recommendation = this.hotRecommendation;
}
else {
this.gradient = this.coolGradient;
this.recommendation = this.coolRecommendation;
}
}
...
@jenlooper
@jenlooper
@jenlooper
not
@jenlooper
@jenlooper
@jenlooper
@jenlooper
@jenlooper
Gather a lot of data (images, sounds)
Divide that data into a training set and a test set
Use an algorithm to train a model with the training set by pairing input with expected output
*"supervised learning"
Use the test set to test the accuracy of the training
rinse & repeat
@jenlooper
@jenlooper
StitchFix combines ML + human curation
Formulas to pick out clothes based on customer input
Formulas to pair a shopper with a stylist
Formulas to calculate distance of warehouse to customer
Algorithms to search and classify clothing trends to recommend
@jenlooper
@jenlooper
install a ton of surveillance cameras
get really good at ml-powered facial recognition
match faces to IDs
monitor emotions...and manipulate them
invisibly track location
@jenlooper
@jenlooper
MIT students used mapping data and crafted an algorithm to optimize school bus routes
50 superfluous routes eliminated
$3-5 million saved
50 union bus drivers out of work
@jenlooper
@jenlooper
@jenlooper
@jenlooper
@jenlooper
Specialists in image analysis
Took top 5 awards in 2013 ImageNet challenge
Innovative techniques in training models to analyze images
Offer useful pre-trained models like "Food" "Wedding" "NSFW"
Or, train your own model!
@jenlooper
Use Clarif.ai's pretrained Food model to analyze images of plates of food for inspiration
probably not!
might be!
@jenlooper
takePhoto() {
const options: camera.CameraOptions = {
width: 300,
height: 300,
keepAspectRatio: true,
saveToGallery: false
};
camera.takePicture(options)
.then((imageAsset: ImageAsset) => {
this.processRecipePic(imageAsset);
}).catch(err => {
console.log(err.message);
});
}
@jenlooper
public queryClarifaiAPI(imageAsBase64):Promise<any>{
return http.request({
url: AuthService.clarifaiUrl,
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Key " + AuthService.clarifaiKey,
},
content: JSON.stringify({
"inputs": [{
"data": {
"image": {
"base64": imageAsBase64
}
}
}]
})
})
.then(function (response) {
return response
}
)}
@jenlooper
.then(res => {
this.loader.hide();
try {
let result = res.content.toJSON();
let tags = result.outputs[0].data.concepts.map( mc => mc.name + '|' + mc.value );
let ingredients = [];
tags.forEach(function(entry) {
let prob = entry.split('|');
prob = prob[1];
let ingred = entry.split('|');
if(prob > 0.899){
ingredients.push(ingred[0])
}
});
//there should be between four and eight discernable ingredients
if (ingredients.length >= 4 && ingredients.length <= 8) {
alert("Yes! This dish might qualify as a QuickNom! It contains "+ingredients)
}
else {
alert("Hmm. This recipe doesn't have the qualifications of a QuickNom.
Try again!")
}
}
if between 4 & 8 ingredients are listed with over .899 certainty,
it's a QuickNom!
QuickNom dishes have a few easy-to-see, simple ingredients
@jenlooper
Use Google's Vision API to match images with recipes
@jenlooper
Do it all with Google!
Leverage its consumption of millions of photos via Google Photos with Cloud Vision API
@jenlooper
takePhoto() {
const options: camera.CameraOptions = {
width: 300,
height: 300,
keepAspectRatio: true,
saveToGallery: false
};
camera.takePicture(options)
.then((imageAsset: ImageAsset) => {
this.processItemPic(imageAsset);
}).catch(err => {
console.log(err.message);
});
}
@jenlooper
public queryGoogleVisionAPI(imageAsBase64: string):Promise<any>{
return http.request({
url: "https://vision.googleapis.com/v1/images:annotate?key="+AuthService.googleKey,
method: "POST",
headers: {
"Content-Type": "application/json",
"Content-Length": imageAsBase64.length,
},
content: JSON.stringify({
"requests": [{
"image": {
"content": imageAsBase64
},
"features" : [
{
"type":"LABEL_DETECTION",
"maxResults":1
}
]
}]
})
})
.then(function (response) {
return response
}
)}
this.mlService.queryGoogleVisionAPI(imageAsBase64)
.then(res => {
let result = res.content.toJSON();
this.ingredient = result.responses[0].labelAnnotations.map( mc => mc.description );
this.ngZone.run(() => {
this.searchRecipes(this.ingredient)
})
});
@jenlooper
@jenlooper
@jenlooper
@jenlooper
What if you don't want to make a bunch of REST API calls?
What if you need offline capability?
What if you need to reduce costs? (API calls can add up)
What if you need to train something really custom?
@jenlooper
Now landed in iOS 11: Core ML
Train a model, let Core ML process it for your app on device
@jenlooper
TensorFlow Mobile
Designed for low-end Androids, works for iOS and Android
@jenlooper
next-gen version of TensorFlow for mobile: 11/17 developer release
"on-device machine learning inference with low latency and a small binary size."
@jenlooper
@jenlooper
@jenlooper
@jenlooper