Sentiment Analysis with an Recurrent Neural Networks (RNN) Last Updated : 27 May, 2025 Comments Improve Suggest changes Like Article Like Report Recurrent Neural Networks (RNNs) are used in sequence tasks such as sentiment analysis due to their ability to capture context from sequential data. In this article we will be apply RNNs to analyze the sentiment of customer reviews from Swiggy food delivery platform. The goal is to classify reviews as positive or negative for providing insights into customer experiences.We will conduct a Sentiment Analysis using the TensorFlow framework: 1. Importing Libraries and DatasetHere we will be importing numpy, pandas, Regular Expression (RegEx), scikit learn and tenserflow. Python import pandas as pd import numpy as np import re from sklearn.model_selection import train_test_split from tensorflow.keras.preprocessing.text import Tokenizer from tensorflow.keras.preprocessing.sequence import pad_sequences from tensorflow.keras.models import Sequential from tensorflow.keras.layers import SimpleRNN, Dense, Embedding 2. Loading DatasetWe will be using swiggy dataset of customer reviews. You can download dataset from here. pd.read_csv() : Reads the CSV file into a Pandas DataFramedata.columns : Accesses the column names of the DataFrametolist() : Converts the column names from an Index object to a regular Python list Python data = pd.read_csv('swiggy.csv') print("Columns in the dataset:") print(data.columns.tolist()) Output:Columns in the dataset: ['ID', 'Area', 'City', 'Restaurant Price', 'Avg Rating', 'Total Rating', 'Food Item', 'Food Type', 'Delivery Time', 'Review']3. Text Cleaning and Sentiment LabelingWe will clean the review text, create a sentiment label based on ratings and remove any missing values.data["Review"] = data["Review"].str.lower() : Converts all text in the "Review" column to lowercasedata["Review"] = data["Review"].replace(r'[^a-z0-9\s]', '', regex=True) : Removes all characters except letters, numbers and spaces from the "Review" columndata['sentiment'] = data['Avg Rating'].apply(lambda x: 1 if x > 3.5 else 0) : Creates a new "sentiment" column with 1 for ratings above 3.5 and 0 otherwisedata = data.dropna() : Removes rows that contain any missing values Python data["Review"] = data["Review"].str.lower() data["Review"] = data["Review"].replace(r'[^a-z0-9\s]', '', regex=True) data['sentiment'] = data['Avg Rating'].apply(lambda x: 1 if x > 3.5 else 0) data = data.dropna() 4. Tokenization and PaddingWe will prepare the text data by tokenizing and padding it and extract the target sentiment labels. Tokenizer converts words into integer sequences and padding ensures all input sequences have the same length (max_length).max_features = 5000 : Sets the maximum number of words to keep in the tokenizermax_length = 200 : Defines the fixed length for each input sequence after paddingTokenizer(num_words=max_features) : Initializes the tokenizer to keep the top 5000 words onlytokenizer.fit_on_texts(data["Review"]) : Builds the word index based on the reviews in the datasettokenizer.texts_to_sequences(data["Review"]) : Converts each review into a sequence of word indexespad_sequences(..., maxlen=max_length) : Pads or truncates each sequence to the same length (200)y = data['sentiment'].values : Extracts the sentiment labels as a NumPy array for model training Python max_features = 5000 max_length = 200 tokenizer = Tokenizer(num_words=max_features) tokenizer.fit_on_texts(data["Review"]) X = pad_sequences(tokenizer.texts_to_sequences(data["Review"]), maxlen=max_length) y = data['sentiment'].values Note: These concepts are a not a part of RNN but are done to make model prediction better. You can refer to tokenization and padding for more details.5. Splitting the DataWe will split the data into training, validation and test sets while maintaining the class distribution.train_test_split(X, y, test_size=0.2, random_state=42, stratify=y) : Splits data into 80% training and 20% test sets, preserving sentiment class balancetrain_test_split(X_train, y_train, test_size=0.1, random_state=42, stratify=y_train) : Further splits training data into 90% training and 10% validation sets, keeping class distribution consistent Python X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.2, random_state=42, stratify=y ) X_train, X_val, y_train, y_val = train_test_split( X_train, y_train, test_size=0.1, random_state=42, stratify=y_train ) 6. Building RNN ModelWe will build and compile a simple RNN model for binary sentiment classification.Sequential([...]) : Creates a sequential neural network modelEmbedding(input_dim=max_features, output_dim=16, input_length=max_length) : Maps input words to 16-dimensional vectorsSimpleRNN(64, activation='tanh', return_sequences=False) : Adds a recurrent layer with 64 units using tanh activationDense(1, activation='sigmoid') : Adds an output layer with one neuron using sigmoid activation for binary outputmodel.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy']) : Configures the model with binary crossentropy loss, Adam optimizer and accuracy metric Python model = Sequential([ Embedding(input_dim=max_features, output_dim=16, input_length=max_length), SimpleRNN(64, activation='tanh', return_sequences=False), Dense(1, activation='sigmoid') ]) model.compile( loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'] ) 7. Training and Evaluating ModelWe will train the model on training data, validate it during training, then evaluate its performance on test data.model.fit(...) : Trains the model for 5 epochs with batch size 32, validating on the validation setmodel.evaluate(X_test, y_test, verbose=0) : Evaluates the trained model on test data without extra outputprint(f"Test accuracy: {score[1]:.2f}") : Prints the test accuracy rounded to two decimal places Python history = model.fit( X_train, y_train, epochs=5, batch_size=32, validation_data=(X_val, y_val), verbose=1 ) score = model.evaluate(X_test, y_test, verbose=0) print(f"Test accuracy: {score[1]:.2f}") Output: Training and Evaluating ModelOur model achieved a accuracy of 72% which is great for a RNN model. We can further fine tune it to achieve more accuracy. 8. Predicting SentimentWe will create a function to preprocess a single review, predict its sentiment and display the result.review_text.lower() : Converts the input review text to lowercasere.sub(r'[^a-z0-9\s]', '', text) : Removes all characters except letters, numbers and spacestokenizer.texts_to_sequences([text]) : Converts the cleaned review into a sequence of word indexespad_sequences(seq, maxlen=max_length) : Pads the sequence to the fixed lengthmodel.predict(padded)[0][0] : Predicts the sentiment probability for the reviewReturns "Positive" if prediction is 0.5 or above, otherwise "Negative", including the probability score Python def predict_sentiment(review_text): text = review_text.lower() text = re.sub(r'[^a-z0-9\s]', '', text) seq = tokenizer.texts_to_sequences([text]) padded = pad_sequences(seq, maxlen=max_length) prediction = model.predict(padded)[0][0] return f"{'Positive' if prediction >= 0.5 else 'Negative'} (Probability: {prediction:.2f})" sample_review = "The food was great." print(f"Review: {sample_review}") print(f"Sentiment: {predict_sentiment(sample_review)}") Output: Predicting SentimentIn summary the model processes textual reviews through RNN to predict sentiment from raw data. This helps in actionable insights by understanding customer sentiment.You can download the source code from here. Comment More infoAdvertise with us Next Article Building an Autocorrector Using NLP in Python M mazumdarabhishek94 Follow Improve Article Tags : Python Neural Network Practice Tags : python Similar Reads 100+ Machine Learning Projects with Source Code [2025] This article provides over 100 Machine Learning projects and ideas to provide hands-on experience for both beginners and professionals. Whether you're a student enhancing your resume or a professional advancing your career these projects offer practical insights into the world of Machine Learning an 5 min read Classification ProjectsWine Quality Prediction - Machine LearningHere we will predict the quality of wine on the basis of given features. We use the wine quality dataset available on Internet for free. This dataset has the fundamental features which are responsible for affecting the quality of the wine. By the use of several Machine learning models, we will predi 5 min read Credit Card Fraud Detection - MLThe goal of this project is to develop a machine learning model that can accurately detect fraudulent credit card transactions using historical data. By analyzing transaction patterns, the model should be able to distinguish between normal and fraudulent activity, helping financial institutions flag 6 min read Disease Prediction Using Machine LearningDisease prediction using machine learning is used in healthcare to provide accurate and early diagnosis based on patient symptoms. We can build predictive models that identify diseases efficiently. In this article, we will explore the end-to-end implementation of such a system. Step 1: Import Librar 5 min read Recommendation System in PythonIndustry leaders like Netflix, Amazon and Uber Eats have transformed how individuals access products and services. They do this by using recommendation algorithms that improve the user experience. These systems offer personalized recommendations based on users interests and preferences. In this arti 6 min read Detecting Spam Emails Using Tensorflow in PythonSpam messages are unsolicited or unwanted emails/messages sent in bulk to users. Detecting spam emails automatically helps prevent unnecessary clutter in users' inboxes. In this article, we will build a spam email detection model that classifies emails as Spam or Ham (Not Spam) using TensorFlow, one 5 min read SMS Spam Detection using TensorFlow in PythonIn today's society, practically everyone has a mobile phone, and they all get communications (SMS/ email) on their phone regularly. But the essential point is that majority of the messages received will be spam, with only a few being ham or necessary communications. Scammers create fraudulent text m 7 min read Python | Classify Handwritten Digits with TensorflowClassifying handwritten digits is the basic problem of the machine learning and can be solved in many ways here we will implement them by using TensorFlowUsing a Linear Classifier Algorithm with tf.contrib.learn linear classifier achieves the classification of handwritten digits by making a choice b 4 min read Recognizing HandWritten Digits in Scikit LearnScikit learn is one of the most widely used machine learning libraries in the machine learning community the reason behind that is the ease of code and availability of approximately all functionalities which a machine learning developer will need to build a machine learning model. In this article, w 10 min read Identifying handwritten digits using Logistic Regression in PyTorchLogistic Regression is a very commonly used statistical method that allows us to predict a binary output from a set of independent variables. The various properties of logistic regression and its Python implementation have been covered in this article previously. Now, we shall find out how to implem 7 min read Customer Churn Analysis Prediction - PythonCustomer churn occurs when a customer stops using a companyâs service lead to revenue loss. Analyzing churn helps businesses understand why customers leave and how to improve retention. High churn rates can affect revenue and business growth. By analyzing churn patterns businesses can take proactive 4 min read Online Payment Fraud Detection using Machine Learning in PythonAs we are approaching modernity, the trend of paying online is increasing tremendously. It is very beneficial for the buyer to pay online as it saves time, and solves the problem of free money. Also, we do not need to carry cash with us. But we all know that Good thing are accompanied by bad things. 5 min read Flipkart Reviews Sentiment Analysis using PythonSentiment analysis is a NLP task used to determine the sentiment behind textual data. In context of product reviews it helps in understanding whether the feedback given by customers is positive, negative or neutral. It helps businesses gain valuable insights about customer experiences, product quali 3 min read Loan Approval Prediction using Machine LearningLOANS are the major requirement of the modern world. By this only, Banks get a major part of the total profit. It is beneficial for students to manage their education and living expenses, and for people to buy any kind of luxury like houses, cars, etc. But when it comes to deciding whether the appli 4 min read Loan Eligibility Prediction using Machine Learning Models in PythonHave you ever thought about the apps that can predict whether you will get your loan approved or not? In this article, we are going to develop one such model that can predict whether a person will get his/her loan approved or not by using some of the background information of the applicant like the 5 min read Stock Price Prediction using Machine Learning in PythonMachine learning proves immensely helpful in many industries in automating tasks that earlier required human labor one such application of ML is predicting whether a particular trade will be profitable or not.In this article, we will learn how to predict a signal that indicates whether buying a part 8 min read Bitcoin Price Prediction using Machine Learning in PythonMachine learning proves immensely helpful in many industries in automating tasks that earlier required human labor one such application of ML is predicting whether a particular trade will be profitable or not.In this article, we will learn how to predict a signal that indicates whether buying a part 7 min read Handwritten Digit Recognition using Neural NetworkHandwritten digit recognition is a classic problem in machine learning and computer vision. It involves recognizing handwritten digits (0-9) from images or scanned documents. This task is widely used as a benchmark for evaluating machine learning models especially neural networks due to its simplici 5 min read Parkinson Disease Prediction using Machine Learning - PythonParkinson's disease is a progressive neurological disorder that affects movement. Stiffening, tremors and slowing down of movements may be signs of Parkinson's disease. While there is no certain diagnostic test, but we can use machine learning in predicting whether a person has Parkinson's disease b 8 min read Spaceship Titanic Project using Machine Learning - PythonIf you are a machine learning enthusiast you must have done the Titanic project in which you would have predicted whether a person will survive or not. Spaceship Titanic Project using Machine Learning in PythonIn this article, we will try to solve one such problem which is a slightly modified versio 9 min read Rainfall Prediction using Machine Learning - PythonToday there are no certain methods by using which we can predict whether there will be rainfall today or not. Even the meteorological department's prediction fails sometimes. In this article, we will learn how to build a machine-learning model which can predict whether there will be rainfall today o 6 min read Autism Prediction using Machine LearningAutism is a neurological disorder that affects a person's ability to interact with others, make eye contact with others, learn and have other behavioral issue. However there is no certain way to tell whether a person has Autism or not because there are no such diagnostics methods available to diagno 8 min read Predicting Stock Price Direction using Support Vector MachinesWe are going to implement an End-to-End project using Support Vector Machines to live Trade For us. You Probably must have Heard of the term stock market which is known to have made the lives of thousands and to have destroyed the lives of millions. If you are not familiar with the stock market you 5 min read Fake News Detection Model using TensorFlow in PythonFake news is a type of misinformation that can mislead readers, influence public opinion, and even damage reputations. Detecting fake news prevents its spread and protects individuals and organizations. Media outlets often use these models to help filter and verify content, ensuring that the news sh 5 min read CIFAR-10 Image Classification in TensorFlowPrerequisites:Image ClassificationConvolution Neural Networks including basic pooling, convolution layers with normalization in neural networks, and dropout.Data Augmentation.Neural Networks.Numpy arrays.In this article, we are going to discuss how to classify images using TensorFlow. Image Classifi 8 min read Black and white image colorization with OpenCV and Deep LearningIn this article, we'll create a program to convert a black & white image i.e grayscale image to a colour image. We're going to use the Caffe colourization model for this program. And you should be familiar with basic OpenCV functions and uses like reading an image or how to load a pre-trained mo 3 min read ML | Breast Cancer Wisconsin Diagnosis using Logistic RegressionBreast Cancer Wisconsin Diagnosis dataset is commonly used in machine learning to classify breast tumors as malignant (cancerous) or benign (non-cancerous) based on features extracted from breast mass images. In this article we will apply Logistic Regression algorithm for binary classification to pr 5 min read ML | Cancer cell classification using Scikit-learnMachine learning is used in solving real-world problems including medical diagnostics. One such application is classifying cancer cells based on their features and determining whether they are 'malignant' or 'benign'. In this article, we will use Scikit-learn to build a classifier for cancer cell de 3 min read ML | Kaggle Breast Cancer Wisconsin Diagnosis using KNN and Cross ValidationDataset : It is given by Kaggle from UCI Machine Learning Repository, in one of its challenges. It is a dataset of Breast Cancer patients with Malignant and Benign tumor. K-nearest neighbour algorithm is used to predict whether is patient is having cancer (Malignant tumour) or not (Benign tumour). I 3 min read Human Scream Detection and Analysis for Controlling Crime Rate - Project IdeaProject Title: Human Scream Detection and Analysis for Controlling Crime Rate using Machine Learning and Deep Learning Crime is the biggest social problem of our society which is spreading day by day. Thousands of crimes are committed every day, and still many are occurring right now also all over t 6 min read Multiclass image classification using Transfer learningImage classification is one of the supervised machine learning problems which aims to categorize the images of a dataset into their respective categories or labels. Classification of images of various dog breeds is a classic image classification problem. So, we have to classify more than one class t 8 min read Intrusion Detection System Using Machine Learning AlgorithmsProblem Statement: The task is to build a network intrusion detector, a predictive model capable of distinguishing between bad connections, called intrusions or attacks, and good normal connections. Introduction:Intrusion Detection System is a software application to detect network intrusion using v 11 min read Heart Disease Prediction using ANNDeep Learning is a technology of which mimics a human brain in the sense that it consists of multiple neurons with multiple layers like a human brain. The network so formed consists of an input layer, an output layer, and one or more hidden layers. The network tries to learn from the data that is fe 3 min read Regression ProjectsIPL Score Prediction using Deep LearningIn todayâs world of cricket every run and decision can turn the game around. Using Deep Learning to predict IPL scores during live matches is becoming a game changer. This article shows how advanced algorithms help us to forecast scores with impressive accuracy, giving fans and analysts valuable ins 7 min read Dogecoin Price Prediction with Machine LearningDogecoin is a cryptocurrency, like Ethereum or Bitcoin â despite the fact that it's totally different than both of these famous coins. Dogecoin was initially made to some extent as a joke for crypto devotees and took its name from a previously well-known meme.In this article, we will be implementing 4 min read Zillow Home Value (Zestimate) Prediction in MLIn this article, we will try to implement a house price index calculator which revolutionized the whole real estate industry in the US. This will be a regression task in which we have been provided with logarithm differences between the actual and the predicted prices of those homes by using a bench 6 min read Calories Burnt Prediction using Machine LearningIn this article, we will learn how to develop a machine learning model using Python which can predict the number of calories a person has burnt during a workout based on some biological measures.Importing Libraries and DatasetPython libraries make it easy for us to handle the data and perform typica 5 min read Vehicle Count Prediction From Sensor DataSensors at road junctions collect vehicle count data at different times which helps transport managers make informed decisions. In this article we will predict vehicle count based on this sensor data using machine learning techniques.Implementation of Vehicle Count PredictionDataset which we will be 3 min read Analyzing Selling Price of used Cars using PythonAnalyzing the selling price of used cars is essential for making informed decisions in the automotive market. Using Python, we can efficiently process and visualize data to uncover key factors influencing car prices. This analysis not only aids buyers and sellers but also enables predictive modeling 4 min read Box Office Revenue Prediction Using Linear Regression in MLThe objective of this project is to develop a machine learning model using Linear Regression to accurately predict the box office revenue of movies based on various available features. The model will be trained on a dataset containing historical movie data and will aim to identify key factors that i 9 min read House Price Prediction using Machine Learning in PythonHouse price prediction is a problem in the real estate industry to make informed decisions. By using machine learning algorithms we can predict the price of a house based on various features such as location, size, number of bedrooms and other relevant factors. In this article we will explore how to 6 min read Linear Regression using Boston Housing Dataset - MLBoston Housing Data: This dataset was taken from the StatLib library and is maintained by Carnegie Mellon University. This dataset concerns the housing prices in the housing city of Boston. The dataset provided has 506 instances with 13 features.The Description of the dataset is taken from the below 3 min read Stock Price Prediction Project using TensorFlowStock price prediction is a challenging task in the field of finance with applications ranging from personal investment strategies to algorithmic trading. In this article we will explore how to build a stock price prediction model using TensorFlow and Long Short-Term Memory (LSTM) networks a type of 5 min read Medical Insurance Price Prediction using Machine Learning - PythonYou must have heard some advertisements regarding medical insurance that promises to help financially in case of any medical emergency. One who purchases this type of insurance has to pay premiums monthly and this premium amount varies vastly depending upon various factors. Medical Insurance Price P 7 min read Inventory Demand Forecasting using Machine Learning - PythonVendors selling everyday items need to keep their stock updated so that customers donât leave empty-handed. Maintaining the right stock levels helps avoid shortages that disappoint customers and prevents overstocking which can increase costs. In this article weâll learn how to use Machine Learning ( 6 min read Ola Bike Ride Request Forecast using MLFrom telling rickshaw-wala where to go, to tell him where to come we have grown up. Yes, we are talking about online cab and bike facility providers like OLA and Uber. If you had used this app some times then you must have paid some day less and someday more for the same journey. But have you ever t 8 min read Waiter's Tip Prediction using Machine LearningIf you have recently visited a restaurant for a family dinner or lunch and you have tipped the waiter for his generous behavior then this project might excite you. As in this article, we will try to predict what amount of tip a person will give based on his/her visit to the restaurant using some fea 7 min read Predict Fuel Efficiency Using Tensorflow in PythonPredicting fuel efficiency is a important task in automotive design and environmental sustainability. In this article we will build a fuel efficiency prediction model using TensorFlow one of the most popular deep learning libraries. We will use the Auto MPG dataset which contains features like engin 5 min read Microsoft Stock Price Prediction with Machine LearningIn this article, we will implement Microsoft Stock Price Prediction with a Machine Learning technique. We will use TensorFlow, an Open-Source Python Machine Learning Framework developed by Google. TensorFlow makes it easy to implement Time Series forecasting data. Since Stock Price Prediction is one 5 min read Share Price Forecasting Using Facebook ProphetTime series forecast can be used in a wide variety of applications such as Budget Forecasting, Stock Market Analysis, etc. But as useful it is also challenging to forecast the correct projections, Thus can't be easily automated because of the underlying assumptions and factors. The analysts who prod 6 min read Implementation of Movie Recommender System - PythonRecommender Systems provide personalized suggestions for items that are most relevant to each user by predicting preferences according to user's past choices. They are used in various areas like movies, music, news, search queries, etc. These recommendations are made in two ways: Collaborative filte 4 min read How can Tensorflow be used with abalone dataset to build a sequential model?In this article, we will learn how to build a sequential model using TensorFlow in Python to predict the age of an abalone. We may wonder what is an abalone. Answer to this question is that it is a kind of snail. Generally, the age of an Abalone is determined by the physical examination of the abalo 7 min read Computer Vision ProjectsOCR of Handwritten digits | OpenCVOCR which stands for Optical Character Recognition is a computer vision technique used to identify the different types of handwritten digits that are used in common mathematics. To perform OCR in OpenCV we will use the KNN algorithm which detects the nearest k neighbors of a particular data point an 2 min read Cartooning an Image using OpenCV - PythonInstead of sketching images by hand we can use OpenCV to convert a image into cartoon image. In this tutorial you'll learn how to turn any image into a cartoon. We will apply a series of steps like:Smoothing the image (like a painting)Detecting edges (like a sketch)Combining both to get a cartoon ef 2 min read Count number of Object using Python-OpenCVIn this article, we will use image processing to count the number of Objects using OpenCV in Python.Google Colab link: https://colab.research.google.com/drive/10lVjcFhdy5LVJxtSoz18WywM92FQAOSV?usp=sharingModule neededOpenCv: OpenCv is an open-source library that is useful for computer vision applica 2 min read Count number of Faces using Python - OpenCVPrerequisites: Face detection using dlib and openCV In this article, we will use image processing to detect and count the number of faces. We are not supposed to get all the features of the face. Instead, the objective is to obtain the bounding box through some methods i.e. coordinates of the face i 3 min read Text Detection and Extraction using OpenCV and OCROptical Character Recognition (OCR) is a technology used to extract text from images which is used in applications like document digitization, license plate recognition and automated data entry. In this article, we explore how to detect and extract text from images using OpenCV for image processing 2 min read FaceMask Detection using TensorFlow in PythonIn this article, weâll discuss our two-phase COVID-19 face mask detector, detailing how our computer vision/deep learning pipeline will be implemented. Weâll use this Python script to train a face mask detector and review the results. Given the trained COVID-19 face mask detector, weâll proceed to i 9 min read Dog Breed Classification using Transfer LearningIn this tutorial, we will demonstrate how to build a dog breed classifier using transfer learning. This method allows us to use a pre-trained deep learning model and fine-tune it to classify images of different dog breeds. Why to use Transfer Learning for Dog Breed ClassificationTransfer learning is 9 min read Flower Recognition Using Convolutional Neural NetworkConvolutional Neural Network (CNN) are a type of deep learning model specifically designed for processing structured grid data such as images. In this article we will build a CNN model to classify different types of flowers from a dataset containing images of various flowers like roses, daisies, dan 6 min read Emojify using Face Recognition with Machine LearningIn this article, we will learn how to implement a modification app that will show an emoji of expression which resembles the expression on your face. This is a fun project based on computer vision in which we use an image classification model in reality to classify different expressions of a person. 7 min read Cat & Dog Classification using Convolutional Neural Network in PythonConvolutional Neural Networks (CNNs) are a type of deep learning model specifically designed for processing images. Unlike traditional neural networks CNNs uses convolutional layers to automatically and efficiently extract features such as edges, textures and patterns from images. This makes them hi 5 min read Traffic Signs Recognition using CNN and Keras in PythonWe always come across incidents of accidents where drivers' Overspeed or lack of vision leads to major accidents. In winter, the risk of road accidents has a 40-50% increase because of the traffic signs' lack of visibility. So here in this article, we will be implementing Traffic Sign recognition us 5 min read Lung Cancer Detection using Convolutional Neural Network (CNN)Computer Vision is one of the applications of deep neural networks and one such use case is in predicting the presence of cancerous cells. In this article, we will learn how to build a classifier using Convolution Neural Network which can classify normal lung tissues from cancerous tissues.The follo 7 min read Lung Cancer Detection Using Transfer LearningComputer Vision is one of the applications of deep neural networks that enables us to automate tasks that earlier required years of expertise and one such use in predicting the presence of cancerous cells.In this article, we will learn how to build a classifier using the Transfer Learning technique 8 min read Pneumonia Detection using Deep LearningIn this article, we will discuss solving a medical problem i.e. Pneumonia which is a dangerous disease that may occur in one or both lungs usually caused by viruses, fungi or bacteria. We will detect this lung disease based on the x-rays we have. Chest X-rays dataset is taken from Kaggle which conta 7 min read Detecting Covid-19 with Chest X-rayCOVID-19 pandemic is one of the biggest challenges for the healthcare system right now. It is a respiratory disease that affects our lungs and can cause lasting damage to the lungs that led to symptoms such as difficulty in breathing and in some cases pneumonia and respiratory failure. In this artic 9 min read Skin Cancer Detection using TensorFlowIn this article, we will learn how to implement a Skin Cancer Detection model using Tensorflow. We will use a dataset that contains images for the two categories that are malignant or benign. We will use the transfer learning technique to achieve better results in less amount of training. We will us 5 min read Age Detection using Deep Learning in OpenCVThe task of age prediction might sound simple at first but it's quite challenging in real-world applications. While predicting age is typically seen as a regression problem this approach faces many uncertainties like camera quality, brightness, climate condition, background, etc. In this article we' 5 min read Face and Hand Landmarks Detection using Python - Mediapipe, OpenCVIn this article, we will use mediapipe python library to detect face and hand landmarks. We will be using a Holistic model from mediapipe solutions to detect all the face and hand landmarks. We will be also seeing how we can access different landmarks of the face and hands which can be used for diff 4 min read Detecting COVID-19 From Chest X-Ray Images using CNNA Django Based Web Application built for the purpose of detecting the presence of COVID-19 from Chest X-Ray images with multiple machine learning models trained on pre-built architectures. Three different machine learning models were used to build this project namely Xception, ResNet50, and VGG16. T 5 min read Image Segmentation Using TensorFlowImage segmentation refers to the task of annotating a single class to different groups of pixels. While the input is an image, the output is a mask that draws the region of the shape in that image. Image segmentation has wide applications in domains such as medical image analysis, self-driving cars, 7 min read License Plate Recognition with OpenCV and Tesseract OCRLicense Plate Recognition is widely used for automated identification of vehicle registration plates for security purpose and law enforcement. By combining computer vision techniques with Optical Character Recognition (OCR) we can extract license plate numbers from images enabling applications in ar 5 min read Detect and Recognize Car License Plate from a video in real timeRecognizing a Car License Plate is a very important task for a camera surveillance-based security system. We can extract the license plate from an image using some computer vision techniques and then we can use Optical Character Recognition to recognize the license number. Here I will guide you thro 11 min read Residual Networks (ResNet) - Deep LearningAfter the first CNN-based architecture (AlexNet) that win the ImageNet 2012 competition, Every subsequent winning architecture uses more layers in a deep neural network to reduce the error rate. This works for less number of layers, but when we increase the number of layers, there is a common proble 9 min read Natural Language Processing ProjectsTwitter Sentiment Analysis using PythonThis article covers the sentiment analysis of any topic by parsing the tweets fetched from Twitter using Python. What is sentiment analysis? Sentiment Analysis is the process of 'computationally' determining whether a piece of writing is positive, negative or neutral. Itâs also known as opinion mini 10 min read Facebook Sentiment Analysis using pythonThis article is a Facebook sentiment analysis using Vader, nowadays many government institutions and companies need to know their customers' feedback and comment on social media such as Facebook. What is sentiment analysis? Sentiment analysis is one of the best modern branches of machine learning, w 6 min read Next Sentence Prediction using BERTNext Sentence Prediction is a pre-training task used in BERT to help the model understand the relationship between different sentences. It is widely used for tasks like question answering, summarization and dialogue systems. The goal is to determine whether a given second sentence logically follows 4 min read Hate Speech Detection using Deep LearningThere must be times when you have come across some social media post whose main aim is to spread hate and controversies or use abusive language on social media platforms. As the post consists of textual information to filter out such Hate Speeches NLP comes in handy. This is one of the main applicat 5 min read Image Caption Generator using Deep Learning on Flickr8K datasetGenerating a caption for a given image is a challenging problem in the deep learning domain. In this article we will use different computer vision and NLP techniques to recognize the context of an image and describe them in a natural language like English. We will build a working model of the image 12 min read Movie recommendation based on emotion in PythonMovies that effectively portray and explore emotions resonate deeply with audiences because they tap into our own emotional experiences and vulnerabilities. A well-crafted emotional movie can evoke empathy, understanding, and self-reflection, allowing viewers to connect with the characters and their 4 min read Speech Recognition in Python using Google Speech APISpeech recognition means converting spoken words into text. It used in various artificial intelligence applications such as home automation, speech to text, etc. In this article, youâll learn how to do basic speech recognition in Python using the Google Speech Recognition API.Step 1: Install Require 2 min read Voice Assistant using pythonSpeech recognition is the process of turning spoken words into text. It is a key part of any voice assistant. In Python the SpeechRecognition module helps us do this by capturing audio and converting it to text. In this guide weâll create a basic voice assistant using Python.Step 1: Install Required 3 min read Human Activity Recognition - Using Deep Learning ModelHuman activity recognition using smartphone sensors like accelerometer is one of the hectic topics of research. HAR is one of the time series classification problem. In this project various machine learning and deep learning models have been worked out to get the best final result. In the same seque 6 min read Fine-tuning BERT model for Sentiment AnalysisGoogle created a transformer-based machine learning approach for natural language processing pre-training called Bidirectional Encoder Representations from Transformers. It has a huge number of parameters, hence training it on a small dataset would lead to overfitting. This is why we use a pre-train 6 min read Sentiment Classification Using BERTBERT stands for Bidirectional Representation for Transformers and was proposed by researchers at Google AI language in 2018. Although the main aim of that was to improve the understanding of the meaning of queries related to Google Search, BERT becomes one of the most important and complete architec 12 min read Sentiment Analysis with an Recurrent Neural Networks (RNN)Recurrent Neural Networks (RNNs) are used in sequence tasks such as sentiment analysis due to their ability to capture context from sequential data. In this article we will be apply RNNs to analyze the sentiment of customer reviews from Swiggy food delivery platform. The goal is to classify reviews 5 min read Building an Autocorrector Using NLP in PythonAutocorrect feature predicts and correct misspelled words, it helps to save time invested in the editing of articles, emails and reports. This feature is added many websites and social media platforms to ensure easy typing. In this tutorial we will build a Python-based autocorrection feature using N 4 min read Python | NLP analysis of Restaurant reviewsNatural language processing (NLP) is an area of computer science and artificial intelligence concerned with the interactions between computers and human (natural) languages, in particular how to program computers to process and analyze large amounts of natural language data. It is the branch of mach 7 min read Restaurant Review Analysis Using NLP and SQLiteNormally, a lot of businesses are remained as failures due to lack of profit, lack of proper improvement measures. Mostly, restaurant owners face a lot of difficulties to improve their productivity. This project really helps those who want to increase their productivity, which in turn increases thei 9 min read Twitter Sentiment Analysis using PythonThis article covers the sentiment analysis of any topic by parsing the tweets fetched from Twitter using Python. What is sentiment analysis? Sentiment Analysis is the process of 'computationally' determining whether a piece of writing is positive, negative or neutral. Itâs also known as opinion mini 10 min read Clustering ProjectsCustomer Segmentation using Unsupervised Machine Learning in PythonCustomer Segmentation involves grouping customers based on shared characteristics, behaviors and preferences. By segmenting customers, businesses can tailor their strategies and target specific groups more effectively and enhance overall market value. Today we will use Unsupervised Machine Learning 5 min read Music Recommendation System Using Machine LearningWhen did we see a video on youtube let's say it was funny then the next time you open your youtube app you get recommendations of some funny videos in your feed ever thought about how? This is nothing but an application of Machine Learning using which recommender systems are built to provide persona 4 min read K means Clustering â IntroductionK-Means Clustering is an Unsupervised Machine Learning algorithm which groups unlabeled dataset into different clusters. It is used to organize data into groups based on their similarity. Understanding K-means ClusteringFor example online store uses K-Means to group customers based on purchase frequ 4 min read Image Segmentation using K Means ClusteringImage segmentation is a technique in computer vision that divides an image into different segments. This can help identify specific objects, boundaries or patterns in the image. Image is basically a set of given pixels and in image segmentation pixels with similar intensity are grouped together. Im 2 min read Recommender System ProjectAI Driven Snake Game using Deep Q LearningContent has been removed from this Article 1 min read Like