Identifying Objects Using Your Browser With TensorFlowJS

--

[originally posted at infinite imaginations]

You might be familiar with the TV show Silicon Valley and the “Hot Dog” episode where the cast created an app to simply (and yet hilariously) determine the object as a hot dog or not a hot dog. And it’s not science fiction anymore with applications, like Google Lens, rolled out to most modern smartphones. These days anyone can simply point their camera and get the information they need, quickly.

There are services like Google Cloud Vision API, AWS Rekognitionand Clarifai — to name a few — that are available in the market for anyone to implement and use. Though these services let you do to more with less code, it does come with a pay-as-you-go price tag. Also, it’s a generic image identifier and may have a different use case.

Enter: TensorFlowJS.

Trending AI Articles:

1. Let’s build a simple Neural Net!

2. Decision Trees in Machine Learning

3. The Balance of Passive vs. Active A.I.

4. An intuitive introduction to Machine Learning

It’s a JavaScript library released by the Google Brain Team that brings machine learning for everyone. It was originally written in Python, C++ and CUDA. Thanks to the team, they have ported it to JavaScript, where it is commonly used in the browser. Though TensorFlowJS is not exactly the same as his big brother Python version, the library is already equipped with the necessary APIs to build and train models from scratch, run TensorFlow models and retrain pre-existing models, all the convenience of your browser.

TensorFlow has been circulating around my reading feeds and with Google’s recent IO event, it inspired and pushed me to get my hands dirty in machine learning.

Road To Discovery

Warnings from different sources suggest that, TensorFlow wouldn’t be helpful if you didn’t have any machine learning background. Python keeps popping up as the language of choice for developing in machine learning and it seemed that I needed to learn the basics in order to create to proceed. This was one of many hurdles that I encountered. But I was still determined to create my own image identifier.

Warning: If you don’t have any Machine Learning background, TensorFlow is not for you

The first step is always going back to basics and read the documentations at TensorFlowJS’s website. It seemed to be pretty straightforward at first, but I was wrong. More questions surfaced and I was beginning to believe the warning signs earlier. Maybe I do need to learn about machine learning before I dive into TensorFlowJS. Even scouring YouTube for tutorials and references didn’t help much. I did manage to “create” an image classifier locally in my machine but it was running in Python. I needed it to be client-side just like the Emoji Scavenger Hunt.

Having found the repository to the Emoji Scavenger Hunt and hours of reverse engineering the codes to suit to my needs, I was able to finally create my own image classifier that works smoothly in the client-side.

Teach it as if it was like a 2-year-old

I thought that my biggest hurdle would be developing in Python. I was developing in a Windows environment initially and it was confusing and a pain to set up. But the moment I switched to a Mac environment, everything was smooth sailing. The biggest lesson that I learned was providing the system with good data. My colleagues told me in order to have results with high accuracy, you must provide good initial data.

An analogy to simply understand how machine learning works is, teaching it by showing images as if it was like a 2-year-old, where data is the set of images and the 2-year-old is the machine learning system. For example, if you want the child to learn what an apple is, you would show the child different pictures of apples only. Nothing else should be in the picture. No other fruits, no other elements. After a certain number of pictures that the child has seen, they will be able to know when they see an apple in real-life. On the other hand, if you give the child pictures with apples and oranges, apples and bananas, apples and grapes. The child will get confused when they see those fruits together.

The moral of the analogy is that the images that will be initially fed to the system for machine learning should be easy to comprehend for someone or something who doesn’t know what the subject is.

Riddle Me This PWA

Riddle me this riddle me that
Random riddles taken out from the hat
When you know the answer take a snap
If you are correct I will give you a clap

The goal was to come up with my own image identifier and put it into some good use. The Riddle Me This is a PWA that will show you random riddles of common items that can be found around your home. Your challenge is to find the answer and take a picture of it. If you are correct, you proceed with the other riddles. If you are wrong, well…keep guessing.

Have a go at the link below! Happy hunting!

https://goo.gl/1DLJgJ

Don’t forget to give us your 👏 !

--

--

Senior User Experience (UX) Developer by day, Dark Jedi by night, with a passion of tinkering things in the web, with nine years of industry experience.