Simple image recognition app using TensorFlow and Shiny
My weekend was full of deep learning and AI programming so as a milestone I made a simple image recognition app that:
-
Takes an image input uploaded to Shiny UI
-
Performs image recognition using TensorFlow
-
Plots detected objects and scores in wordcloud
This app is to demonstrate powerful image recognition functionality using TensorFlow following the first half of this tutorial.In the backend a pretrained classify_image.py is running, with the model being pretrained by tensorflow.org.This Python file takes a jpg/jpeg file as an input and performs image classifications.
I will then use R to handle the classification results and produce wordcloud based on detected objects and their scores.
The app is based on R (shiny and wordcloud packages), Python 2.7 (tensorflow, six and numpy packages) and TensorFlow (Tensorflow itself and this python file).Please make sure that you have all the above packages installed. For help installing TensorFlow this link should be helpful.
Just like a usual Shiny app, you only need two components; server.R
and ui.R
in it.This is optional but you can change number of objects in the image recognition output by changing the line 63 of classify_image.py
1 |
|
server.R
I put comments on almost every line in server.R so you can follow the logic more easily.
1 |
|
ui.R
The ui.R
file is rather simple:
1 |
|
Shiny App
That’s it!Here is a checklist to run the app without an error.
-
Make sure you have all the requirements installed
-
You have
server.R
andui.R
in the same folder -
You corrently set
PYTHONPATH
andCLASSIFYIMAGEPATH
-
Optionally,
change num_top_predictions
inclassify_image.py
-
Upload images should be in jpg/jpeg format
I was personally impressed with what machine finds in abstract paintings or modern art 😉
The full codes are available on github.