Telerik DevRel
Developer Relations team @ Telerik!
Supervised Drinking with Jen
👑
@jenlooper
(according to Wellesley/Weston
Magazine,
so it must be true)
Let's try Kaggle - The Data Scientist's Heaven
500 crowdsourced cocktails scraped from thecocktaildb.com
back to Kaggle
Use the NativeScript CLI: tns create mixology
Presenting...MixoLogy
icon
logo
home
"I have Tequila, what can I make?"
(hint, this does not need machine learning)
a job for...
❤️
From Excel to JSON
import Vue from 'nativescript-vue'
import firebase from 'nativescript-plugin-firebase'
firebase
.init({
})
.then(
instance => {
console.log('firebase.init done')
},
error => {
console.log(`firebase.init error: ${error}`)
}
);
Vue.prototype.$firebase = firebase
...
new Vue({
render: h => h('frame', [h(Home)]),
}).$start()
main.js
firebase plugin
pre-trained generic model
a mathematical model of sample data built using a machine learning algorithm in order to make predictions without being explicitly programmed
no reason to reinvent the wheel:
Google Codelab "TensorFlow for Poets"
Finding enough images is TIME CONSUMING
use ffmpeg to convert movies to images: get 100+ images easily
😢 this is the worst part
*quantized format - you'll lose accuracy 😢
IMAGE_SIZE=224
toco \
--graph_def_file=tf_files/retrained_graph.pb \
--output_file=tf_files/retrained_graph.tflite \
--input_format=TENSORFLOW_GRAPHDEF \
--output_format=TFLITE \
--inference_type=QUANTIZED_UINT8 \
--input_shape=1,${IMAGE_SIZE},${IMAGE_SIZE},3 \
--input_array=input \
--output_array=final_result \
--mean_value=128 \
--std_dev_values=128 \
--default_ranges_min=0 \
--default_ranges_max=6
verify that the .tflite file is quantized
interpreter = tf.contrib.lite.Interpreter(model_path="./tf_files/retrained_graph.tflite")
interpreter.allocate_tensors()
# Print input shape and type
print(interpreter.get_input_details()[0]['shape'])
print(interpreter.get_input_details()[0]['dtype'])
# Print output shape and type
print(interpreter.get_output_details()[0]['shape'])
print(interpreter.get_output_details()[0]['dtype'])
[ 1 224 224 3 ]
<class 'numpy.uint8'>
[ 1 17 ]
<class 'numpy.uint8'>
takePicture() {
this.ingredients = []
this.pictureFromCamera = null
camera
.takePicture({ width: 224, height: 224, keepAspectRatio: true })
.then(imageAsset => {
new ImageSource().fromAsset(imageAsset).then(imageSource => {
this.pictureFromCamera = imageSource;
setTimeout(() => this.queryMLKit(imageSource), 500)
});
});
},
queryMLKit(imageSrc) {
this.$firebase.mlkit.custommodel
.useCustomModel({
image: imageSrc,
localModelFile: "~/assets/models/retrained_graph.tflite",
labelsFile: "~/assets/models/retrained_labels.txt",
maxResults: 5,
modelInput: [
{
shape: [1, 224, 224, 3],
type: "QUANT"
}
]
})
.then(result => {
for (var i=0; i<result.result.length; i++){
this.ingredients.push(result.result[i])
}
})
...
},
then query Firebase for matching recipes
aiweirdness.com by Janelle Shane
The AI iterates through your set of words and phrases until it finds patterns and then generates weird stuff
https://github.com/minimaxir/textgenrnn
Gauguin,2 oz Light Rum,1 oz Passion Fruit Syrup,1 oz Lemon Juice,1 oz Lime Juice,Combine ingredients with a cup of crushed ice in blender and blend at low speed. Serve in old-fashioned glass. Top with a cherry.
Fort Lauderdale,1 1/2 oz Light Rum,1/2 oz Sweet Vermouth,1/4 oz Juice of Orange,1/4 oz Juice of a Lime,Shake with ice and strain into old-fashioned glass over ice cubes. Add a slice of orange.
Apple Pie,3 oz Apple schnapps,1 oz Cinnamon schnapps, Apple slice,Pour into ice-filled old-fashioned glass. Garnish with apple and top with cinnamon.
Cuban Cocktail No. 1,1/2 oz Juice of a Lime,1/2 oz Powdered Sugar,2 oz Light Rum,Shake with ice and strain into cocktail glass.
LOOPERMAC:textgenrnn Looper$ python3
>>> from textgenrnn import textgenrnn
Using TensorFlow backend.
>>> textgen = textgenrnn()
>>> textgen.train_from_file('datasets/cocktails_simpler_text.txt',num_epochs=1)
1,971 texts collected.
Training on 184,914 character sequences.
Epoch 1/1
1444/1444 [==============================] - 282s 196ms/step - loss: 0.8350
####################
Temperature: 1.0
####################
Rumed Cftsuismenther,1 oz Light Rum,1/2 oz Citrus-Brandy,1 oz Capbain,Shake with ice and strain into chilled old-fashioned glass.
Anderry Gcal Gin,1/2 oz Orange Bitters, Lemon twist,Shake with ice and strain into cocktail glass.
parseCocktail(cocktailObject) {
let newCocktail = JSON.stringify(cocktailObject.cocktail)
this.selectedCocktail = []
let recipe = newCocktail.split(",")
for (var i = 0; i < recipe.length; i++) {
this.selectedCocktail.push(recipe[i].replace('"', ""))
}
}
enable your accelerometer and shake to mix yourself a drink!
Thank you!
@jenlooper
github.com/jlooper/mixology-mobile
🙏 gratitude to community members Igor Randjelovic, Eddy Verbruggen, and Jona Rodrigues
By Telerik DevRel
Model All The Things