Recent Articles
CNN model on Iris images
Convolutional Neural Networks, like neural networks, are made up of neurons with learnable weights and biases. Each neuron receives several inputs, takes a weighted sum over them, passes it through an activation function and responds with an output. ...
Deploy Nodejs Application on AWS EC2 Instance
Below are the steps in order to deploy nodejs application on AWS Ec2 Instance- Launch an EC2 instance SSH into your instance Install Node.js Install Git and clone repository from GitHub Start the node.js app Keep App running using Pm2 (sudo pm2 start ...
MEANStack application for Student Records
Kindly refer below MEANStack application which is working end to end. Technology Stack- Angular as Frontend , Nodejs & Expressjs as Backend and MongoDB as database. Please refer the source code of this application- ...
Heirarchical Clustering
Clustering is a data mining technique to group a set of objects in a way such that objects in the same cluster are more similar to each other than to those in other clusters. In hierarchical clustering, we assign each object (data point) to a ...
Data Manipulation Case Study -2 (Modified Correct code)
#Domain – HR #focus – Insights from data import pandas as pd # Set the option on how to display float # To See the impact of this command comment it out and check outputs pd.set_option('display.float_format', lambda x: '%.3f' % x) # Read ...