๐ŸŒ
Keras
keras.io โ€บ examples โ€บ vision โ€บ image_classification_from_scratch
Keras documentation: Image classification from scratch
Computer Vision Image classification ... Point cloud classification OCR model for reading Captchas Handwriting recognition Convolutional autoencoder for image denoising Low-light image enhancement using MIRNet Image Super-Resolution using an Efficient Sub-Pixel CNN Enhanced Deep ...
๐ŸŒ
TensorFlow
tensorflow.org โ€บ tensorflow core โ€บ convolutional neural network (cnn)
Convolutional Neural Network (CNN) | TensorFlow Core
This tutorial demonstrates training a simple Convolutional Neural Network (CNN) to classify CIFAR images. Because this tutorial uses the Keras Sequential API, creating and training your model will take just a few lines of code.
Discussions

What are the best image classification models that have a implementation using pytorch or keras? (and generally easy to use?)
A beginner here but object detectors have image classifiers in them if I'm not wrong? First they do localization where an object is detected in and located in the frame of an image, then the object is classified with the built in classifier from pretrained classes and finally a bounding box So an OD basically does detection, localization and classification all of them For the actual question which classifier is the best, there are many classifiers which use different CNN architectures, top ones being VGG net, mobile net, inception net, etc They are available on Tensorflow hub and I'm pretty sure PyTorch has them as well More on reddit.com
๐ŸŒ r/computervision
11
16
October 30, 2022
[P] Real-time face detection and emotion/gender classification with a keras CNN model and openCV.

How fast does it work and on what hardware?

More on reddit.com
๐ŸŒ r/MachineLearning
33
163
May 20, 2017
๐ŸŒ
Medium
rohan09.medium.com โ€บ building-and-using-a-convolutional-neural-network-cnn-for-image-classification-with-keras-and-7abf571f0abb
Building and Using a Convolutional Neural Network (CNN) for Image Classification with Keras and TensorFlow | by Rohan Kumar | Medium
March 19, 2024 - It simplifies the process of loading and preprocessing image data for training and validation. Weโ€™ll start by initializing a Sequential model, which allows us to add layers sequentially. ... We create a sequential model using Sequential class from Keras. This establishes the linear stacking of layers in the CNN. classifier.add(Conv2D(32, (3, 3), input_shape=(64, 64, 3), activation='relu')) classifier.add(MaxPooling2D(pool_size=(2, 2))) # Add another convolutional layer classifier.add(Conv2D(32, (3, 3), activation='relu')) classifier.add(MaxPooling2D(pool_size=(2, 2)))
๐ŸŒ
Analytics Vidhya
analyticsvidhya.com โ€บ home โ€บ image classification using cnn
Image Classification Using CNN
May 1, 2025 - Letโ€™s build a basic CNN model for our Imagenette dataset (for the purpose of image classification): from keras.models import Sequential from keras.layers import Conv2D, MaxPool2D, Flatten, Dense, InputLayer, BatchNormalization, Dropout # build a sequential model model = Sequential() model.add(InputLayer(input_shape=(224, 224, 3))) # 1st conv block model.add(Conv2D(25, (5, 5), activation='relu', strides=(1, 1), padding='same')) model.add(MaxPool2D(pool_size=(2, 2), padding='same')) # 2nd conv block model.add(Conv2D(50, (5, 5), activation='relu', strides=(2, 2), padding='same')) model.add(MaxP
๐ŸŒ
Kaggle
kaggle.com โ€บ code โ€บ kasana โ€บ image-classification-using-keras-cnn
Image Classification using Keras (CNN)- | Kaggle
May 18, 2020 - Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources
๐ŸŒ
Analytics Vidhya
analyticsvidhya.com โ€บ home โ€บ image classification using cnn with keras & cifar-10
Image Classification Using CNN with Keras and CIFAR-10
May 2, 2025 - Explore our step-by-step tutorial on image classification using CNN and master the process of accurately classifying images with CNN.
๐ŸŒ
PyImageSearch
pyimagesearch.com โ€บ home โ€บ blog โ€บ image classification with keras and deep learning
Image classification with Keras and deep learning - PyImageSearch
December 29, 2022 - As I explain in my book, Deep Learning for Computer Vision with Python, we train/classify images in batches with CNNs.
๐ŸŒ
LearnDataSci
learndatasci.com โ€บ tutorials โ€บ convolutional-neural-networks-image-classification
Convolutional Neural Networks โ€” Image Classification w. Keras
This algorithm attempts| to learn the visual features contained in the training images associated with each label, and classify unlabelled images accordingly. It is a very popular task that we will be exploring today using the Keras Open-Source ...
Find elsewhere
๐ŸŒ
Medium
medium.com โ€บ @manasnarkar โ€บ image-classification-with-convolution-neural-networks-cnn-with-keras-dbd71c05ed2a
Image classification with Convolution Neural Networks (CNN)with Keras | by Manas Narkar | Medium
November 26, 2019 - Image classification is one of the use-case which can be solved by CNN. In this hands-on tutorial, we will leverage Keras, a python based deep learning framework to build the Convnet model to classify the hand written images from mnist dataset.
๐ŸŒ
GitHub
github.com โ€บ IBM โ€บ image-classification-using-cnn-and-keras
GitHub - IBM/image-classification-using-cnn-and-keras: Classify images, specifically document images like ID cards, application forms, and cheque leafs, using CNN and the Keras libraries.
November 10, 2023 - Classify images, specifically document images like ID cards, application forms, and cheque leafs, using CNN and the Keras libraries. - IBM/image-classification-using-cnn-and-keras
Starred by 110 users
Forked by 68 users
Languages ย  Jupyter Notebook 100.0% | Jupyter Notebook 100.0%
๐ŸŒ
MachineLearningMastery
machinelearningmastery.com โ€บ home โ€บ blog โ€บ object classification with cnns using the keras deep learning library
Object Classification with CNNs Using the Keras Deep Learning Library - MachineLearningMastery.com
August 6, 2022 - Normally CNN for image classification will result in a vector contented probabilities of possible class. Is there a function in this library to extract the vector? Thank you! ... You can use a softmax activation function on the output layer to get probabilities for multiple classes or sigmoid activation for binary class probabilities. ... Hello, is there is a way to apply the keras.predict function in a vectorized manner so that it can handle more than one input(image) simultaneously?
๐ŸŒ
Medium
medium.com โ€บ nybles โ€บ create-your-first-image-recognition-classifier-using-cnn-keras-and-tensorflow-backend-6eaab98d14dd
Create your first Image Recognition Classifier using CNN, Keras and Tensorflow backend | by Yash Agarwal | Nybles | Medium
June 12, 2020 - Activate Tensorflow env and install keras using โ€˜pip install kerasโ€™. CNN โ€” Convolution Neural network , a class of deep, feed-forward artificial neural networks, most commonly applied to analyzing visual imagery.
๐ŸŒ
Clemsonciti
clemsonciti.github.io โ€บ rcde_workshops โ€บ python_deep_learning โ€บ 07-Convolution-Neural-Network.html
Convolution Neural Network for image classification โ€” Research Computing and Data Workshop
It is good database for pattern recognition and image classification task (the entire data is clean and ready for use). The dataset was divided into 50,000 images for training and 10,000 images for testing ยท The 10 classes are airplane, automobile, bird, cat, deer, dog, frog, horse, ship, truck ... import keras ...
๐ŸŒ
Analytics Vidhya
analyticsvidhya.com โ€บ home โ€บ create your own image classification model using python and keras
Create Your Own Image Classification Model Using Python and Keras
January 22, 2025 - We learned a great deal in this article, from learning to find image data to create a simple CNN model that was able to achieve reasonable performance. We also learned the application of transfer learning to further improve our performance. That is not the end, we saw that our models were misclassifying a lot of images which means that is still room for improvement. We could begin with finding more data or even implementing better and latest architectures that might be better at identifying the features. Q1. What is image classification?
๐ŸŒ
Kaggle
kaggle.com โ€บ code โ€บ garginirmal โ€บ cnn-keras-image-classification
CNN Keras Image Classification
July 7, 2022 - Checking your browser before accessing www.kaggle.com ยท Click here if you are not automatically redirected after 5 seconds
๐ŸŒ
Medium
medium.com โ€บ @golnaz.hosseini โ€บ step-by-step-tutorial-image-classification-with-keras-7dc423f79a6b
Step-by-Step Tutorial: Image Classification with Keras | Medium
June 6, 2023 - In this blog post, we present a comprehensive guide to performing image classification using the Keras library.
๐ŸŒ
ProjectPro
projectpro.io โ€บ blog โ€บ deep learning for image classification in python with cnn
Deep Learning for Image Classification in Python with CNN
October 28, 2024 - Image Classification Python-Learn to build a CNN model for detection of pneumonia in x-rays from scratch using Keras with Tensorflow as backend.
๐ŸŒ
Medium
lopezyse.medium.com โ€บ computer-vision-image-classification-using-python-913cf7156812
Computer Vision | Image Classification using Convolutional Neural Networks (CNNs) | by Diego Lopez Yse | Medium
November 5, 2024 - In this article, weโ€™ll implement a Convolutional Neural Network (CNN) for image classification using Python and the Keras Deep Learning library. Weโ€™ll work with the CIFAR-10 dataset, which contains 10 classes of common objects like airplanes, cars, and birds.
๐ŸŒ
Visual Studio Magazine
visualstudiomagazine.com โ€บ articles โ€บ 2018 โ€บ 12 โ€บ 01 โ€บ image-classification-keras.aspx
Image Classification Using Keras -- Visual Studio Magazine
And note that Python uses the "\" character for line continuation. I used Notepad to edit my program. Most of my colleagues prefer a more sophisticated editor, but I like the elegant simplicity of Notepad. Listing 1: The Image Classification Demo Program Structure ยท # mnist_cnn.py # uses built-in keras.datasets data import numpy as np import keras as K import tensorflow as tf import os os.environ['TF_CPP_MIN_LOG_LEVEL']='2' import matplotlib.pyplot as plt def main(): # 0.