top of page

Python Simple Computer Vision Guided Project TensorFlow - Pneumonia Prediction, Level 2, 21 min

Updated: Aug 21, 2023


free, free academic, instruct, instructional, instructional education,free python learn, seaborn, python, project, data analysis project, pandas, analyze, Tensorflow, architecture, neural network, deep learning
Binary Classification Computer Vision with TensorFlow Sequential Model

In this simple TensorFlow Computer Vision Guided Project in Python we a convolution neural network or deep learning model to predict a binary classification problem and predict with an X-ray image containing a chest X-ray image with or without pneumonia.


Medical Image classification is a common and important type of computer vision problem In future projects we will explore the many various types of image preprocessing available on our images to enhance our predictions.


In this TensorFlow Computer Vision Project, we will build a neural network with a Conv2D layer and a MaxPooling2D layer right after. This is then followed by a drop-out layer to help prevent overfitting. The final part of our TensorFlow deep learning computer vision model is a block of dense and dropout layers to allow for the extraction of higher-level features from the convolution.



As our output layers we use Categorical Crossentropy will means we will be treating our binary classification the same way we set up a multi-classification problem and will have a neuron for each class. In this case, we use 2 neurons on the output layers with a softmax activation. This is in contrast to the other binary classification for a TensorFlow Neural Network, we could have chosen to use only a 1 neuron with sigmoid activation. Either choice for our binary classification will result in the same final score of the model.


In our TensorFlow Deep Learning project using the Sequential model we will also go through how to connect our model to the file with the images using a Data Image Augmentor the will generate slightly alternated images and allows us to further increase our test accuracy.









Follow Data Science Teacher Brandyn





dataGroups:










free, free academic, instruct, instructional, instructional education,free python learn, seaborn, python, project, data analysis project, pandas, analyze, Tensorflow, architecture, neural network, deep learning, binary classification computer vision

We will use the Python library os to set of the file paths for our image data augmentation.



free, free academic, instruct, instructional, instructional education,free python learn, seaborn, python, project, data analysis project, pandas, analyze, Tensorflow, architecture, neural network, deep learning, binary classification computer vision
TensorFlow Image Data Generator

Tensorflow Image Data Generator to generate and augment images of each epoch allowing us to simulate many many more pictures to train from normally increasing the accuracy of our test predictions.

free, free academic, instruct, instructional, instructional education,free python learn, seaborn, python, project, data analysis project, pandas, analyze, Tensorflow, architecture, neural network, deep learning, binary classification computer vision
Computer Vision Architecture Sequential Model TensorFlow

TensorFlow ComputerVison deep learning binary classification model with the Sequential Model in TensorFlow.

free, free academic, instruct, instructional, instructional education,free python learn, seaborn, python, project, data analysis project, pandas, analyze, Tensorflow, architecture, neural network, deep learning, binary classification computer vision
train Sequential TensorFlow Computer Vision Model


free, free academic, instruct, instructional, instructional education,free python learn, seaborn, python, project, data analysis project, pandas, analyze, Tensorflow, architecture, neural network, deep learning, binary classification computer vision
plot training history with Pandas plot

Plot your Sequential Models training history with Pandas plotting.


1,042 views0 comments
bottom of page