Tag Archives: Convolutional Neural Network

Prediction of Aliens Vs. Predators

In this project, we will have some images of aliens and predators and by them, we will train a Convolutional Neural Network using Keras to predict if the image is an alien or predator. The Data contains the following folders:  train: 247 aliens and 247 predators validation: 100 aliens and 100 predators . Building CNN Let’s import the Keras libraries and packages. In this stage, we will initialise the CNN. Step 1: Create Convolutional Layer …

Prediction of Cats Vs Dogs

In this project, we will have some images of cats and dogs and by them, we will train a Convolutional Neural Network using Keras to predict if the image is a dog or cat. We have 10000 images in total in the dataset which divided to 8000 images for the training set and 2000 images for the test set. . Building CNN Let’s import the Keras libraries and packages. In this stage, we will initialise …