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 Spam Messages

In this project, we aim to predict whether the message is spam or ham. we implemented Natural Language Processing, TF-IDF and SVM on Python. The data contains the following columns: Message: text message Category: Spam or Ham . let’s get our environment ready with the libraries we’ll need and then import the data! Check out the Data . Exploratory Data Analysis Let’s use describe by Category, this way we can begin to think about the …

Prediction of Mobile Price

In this project, we used the sales data of mobile phones in various companies. The aim of this project is to find out the relation between features of a mobile phone(eg:- RAM, Internal Memory, etc) and selling price. In addition, predict the price range of the mobile. We are going to use Kernel Support Vector Machine, K-Fold Cross Validation and Grid Search to solve this problem. The data contains the following columns: battery_power: Total energy …

Prediction of Online Shopper’s Intention

In this project, we aim to predict the intention of online shoppers. We implemented the Logistic Regression to create our model and Linear Discriminant Analysis to create dimensionality reduction in the dataset using Python. The data contains the following columns: Administrative: Administrative Value Administrative_Duration: Duration in Administrative Page Informational: Informational Value Informational_Duration: Duration in Informational Page ProductRelated: Product Related Value ProductRelated_Duration: Duration in Product Related Page BounceRates: Bounce Rates of a web page ExitRates: Exit rate …

Prediction of Movie Opinions

In this project, we are going to make a Recurrent Neural Network for understanding the reviews of the users and extract the meaningful information behind them to figure out whether the user liked the movie or not. In the other words, the aim of this project is to classify the user movie reviews into positive and negative reviews. we are going to use Recurrent Neural Network using Keras to solve this problem . let’s get …

Credit Card Clustering

In this project, we are going to implement customer segmentation based on credit card usage behavior with two different approaches (K-means and Hierarchical Clustering) The data contains the following columns: CUST_ID : Identification of credit card holder (Categorical)  BALANCE : Balance amount left in their account to make purchases BALANCE_FREQUENCY : How frequently the Balance is updated, score between 0 and 1 (1 = frequently updated, 0 = not frequently updated)  PURCHASES : Amount of purchases made from account  ONEOFF_PURCHASES : Maximum …

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 …

Prediction of Churn For Bank Customers

In this project, we aim to predict whether the customers will leave the bank or not?. We implemented the Artificial Neural Network (ANN) on Python. The data contains the following columns: RowNumber: The number of row CustomerId: Identity number Surname: Last Name CreditScore: The score of credit by bank Geography: Country or region Gender: Male or female Age: Customer age Tenure: Year in bank Balance: Amount in account NumOfProducts: How many accounts, bank account affiliated products …