The post Get Started With Image Recognition Using TensorFlow and Raspberry Pi appeared first on BardTech . TensorFlow is Google’s Neural Network library. Given that machine learning is the hottest thing around currently, it is no surprise that Google are among the leaders in this new technology. In this article, you will learn how to install TensorFlow on the Raspberry Pi, and run simple image classification on a pre-trained neural network. Getting Started To get started with image recognition, you will need a Raspberry Pi (any model will work) and an SD card with the Raspbian Stretch (9.0+) operating system (if you’re new to the Raspberry Pi, use our installation guide ). Boot up the Pi and open a terminal window. Make sure your Pi is up to date, and check your Python version. sudo apt-get update python --version python3 --version You can use both Python 2.7 or Python 3.4+ for this tutorial. This example is for Python 3. For Python 2.7, replace Python3 with Python , and p...