Eran Feit Blog posts

MobileNet Image Classification in Python: Complete Keras & OpenCV Tutorial

MobileNet Image Classification

Introduction This tutorial shows how to build a complete image classification pipeline in Python with a pretrained MobileNet model.You will load the model, preprocess any input image to the required dimensions, run inference, decode the ImageNet labels, and render the predicted class directly on the image with OpenCV.By the end, you will have a single, […]

MobileNet Image Classification in Python: Complete Keras & OpenCV Tutorial Read More »

How to Classify Landmarks Using TensorFlow, TensorHub, and Python

TensorFlow Hub Landmark Classification

Understanding TensorFlow Hub (TensorHub) When building deep learning models, one of the biggest challenges is training from scratch — it’s time-consuming, requires a massive dataset, and demands significant computational power.That’s where TensorFlow Hub (often shortened to TensorHub) comes in. TensorFlow Hub is an open-source platform created by Google that allows developers and researchers to reuse,

How to Classify Landmarks Using TensorFlow, TensorHub, and Python Read More »

How to Build a CNN for Chess Piece Image Classification

Building a CNN Model

Introduction This end-to-end tutorial shows how to build a complete image classification pipeline in Python using TensorFlow Keras, focusing specifically on image classification with keras.You will prepare the dataset folders, split images into train and validation sets, build and train a convolutional neural network (CNN) with augmentation and callbacks, and finally run single-image predictions with

How to Build a CNN for Chess Piece Image Classification Read More »

How to classify weather scenes using TensorFlow, Keras, and Transfer learning – Vgg19 ?

TensorFlow Vgg19

VGG19 Transfer Learning with Keras: Weather Image Classification using Keras VGG19 transfer learning Introduction In this post, we’ll build a complete weather image classification pipeline in Python using Keras with a VGG19 backbone and explore Keras VGG19 transfer learning.You’ll see how to split raw images into train and validation sets, set up data augmentation, attach

How to classify weather scenes using TensorFlow, Keras, and Transfer learning – Vgg19 ? Read More »

How to build a Keras CNN for Weather Image Classification

tensorflow image classification

Introduction This tutorial shows a complete TensorFlow image classification pipeline using Keras CNN.You will learn how to split a weather photo dataset into train and validation sets.You will apply image data augmentation with Keras ImageDataGenerator to improve generalization.You will build and train a deep convolutional neural network for five weather classes.You will visualize accuracy and

How to build a Keras CNN for Weather Image Classification Read More »

How to build a Brain Tumor Classification using Deep learning

brain tumor classification

Brain Tumor Classification with CNN and Keras This tutorial builds a complete deep learning pipeline for brain tumor classification from brain MRI images using Python and Keras.You will organize the dataset into train, validation, and test splits to ensure reliable medical image classification results.A compact CNN architecture will be trained with image augmentation, binary cross-entropy,

How to build a Brain Tumor Classification using Deep learning Read More »

TensorFlow Image Classification Tutorial: Flower Recognition with Keras

TensorFlow Image Classification

TensorFlow Image Classification with Keras: Flower Recognition, Data Augmentation, and OpenCV Prediction In this comprehensive TensorFlow Image Classification Tutorial, we will explore how to build and deploy a robust deep learning model to recognize various flower species using Python. Image classification is a fundamental pillar of Computer Vision, and by leveraging the Keras API within

TensorFlow Image Classification Tutorial: Flower Recognition with Keras Read More »

How to classify images using MobileNet Tensorflow and ResNet50

TensorFlow Image Classification Tutorial: ResNet50 vs. MobileNet

TensorFlow MobileNetV2 vs ResNet50: Image Classification with Pretrained Models ResNet50 vs MobileNetV2 Deep learning offers a wide range of pre‑trained architectures for image classification. ResNet50 is part of the Residual Networks family introduced in 2015. It addresses the degradation problem encountered when training very deep networks by using residual blocks with skip connections, which allow information

How to classify images using MobileNet Tensorflow and ResNet50 Read More »

How To Build Sports Image Classification Model Using MobileNet

sports image classification

Why Use Convolutional Neural Networks (CNN) for Custom Sports Image Classification? In the rapidly evolving world of sports analytics, the ability to automatically identify athletic disciplines in visual data is a game-changer. This tutorial provides a comprehensive guide to build a custom sports image classifier with TensorFlow and Keras. Whether you are automating highlights or

How To Build Sports Image Classification Model Using MobileNet Read More »

TensorFlow Food Image Classification: 36 Fruits and Vegetables in Python (Keras + OpenCV)

food classification

Build a Food Classification Pipeline with Python and TensorFlow Introduction TensorFlow food image classification is a practical way to recognize what’s inside an image and turn pixels into a label your app can use.In this tutorial, you’ll build a 36-class fruits and vegetables classifier in Python using TensorFlow / Keras, while using OpenCV for consistent

TensorFlow Food Image Classification: 36 Fruits and Vegetables in Python (Keras + OpenCV) Read More »

Eran Feit