Question 1 explained in jupiter book below question 2 Difference between MSE and MAE The mean absolute error (MAE) measures how close the predictions are to the outcomes. It is considered as an average of the all absolute errors. The mean squared error measures the average of the squares of the errors, which means…
Kaushik Rajasekhar Comandur
updated on 27 May 2022
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Kaushik Rajasekhar Comandur (12)
Project 4
Solution is given below
29 Sep 2022 04:36 PM IST
Project 1
Q1) Question Data cleaning on Automobile 1985 dataset and performing descriptive analytics ans ) solution is available below in jupiter notebook
23 Aug 2022 07:07 AM IST
Unsupervised Learning - Kmeans Week 11 Challenge
Q1) How does the similarity is calculated if data is categorical in nature and) If data is categorical in nature the simplest way to find similarity between two categorical attributes is to assign a similarity of 1 if the values are identical and a similarity of 0 if the values are not identical. q2) solution…
01 Aug 2022 05:19 AM IST
Supervised Learning - Classification Week 9 Challenge
Q1) What is Neural Network? Neural networks, also known as artificial neural networks (ANNs) or simulated neural networks (SNNs), are a subset of machine learning and are at the heart of deep learning algorithms. Their name and structure are inspired by the human brain, mimicking the way that biological neurons signal…
30 Jul 2022 07:08 PM IST
Supervised Learning - Classification Week 8 Challenge
q1) Pros and Cons of KNN 1. No Training Period: KNN is called Lazy Learner (Instance based learning). It does not learn anything in the training period. It does not derive any discriminative function from the training data. In other words, there is no training period for it. It stores the training dataset…
30 Jul 2022 06:49 PM IST
Supervised Learning - Classification Week 7 Challenge
question 1¶ Pros and Cons of SVM Pros: It works really well with a clear margin of separation. It is effective in high dimensional spaces. Cons: It doesn't perform well when we have large data set because the required training time is higher. question 2 in jupiter notebook
14 Jul 2022 06:41 PM IST
Supervised Learning - Prediction Week 3 Challenge
Question 1 explained in jupiter book below question 2 Difference between MSE and MAE The mean absolute error (MAE) measures how close the predictions are to the outcomes. It is considered as an average of the all absolute errors. The mean squared error measures the average of the squares of the errors, which means…
27 May 2022 06:30 AM IST
Project 2
# libraries import cv2 import numpy as np # gaussian filter def gaussian_filter(image,filter_size,sigma): # used direct library of gaussian from open cv filtered_image = cv2.GaussianBlur(image,(filter_size,filter_size), sigma) # given the values sigma has to be decided to define SD. return filtered_image def save_image(image_name,…
24 Apr 2022 02:16 PM IST
Basics of ML & AL Week 2 Challenge
The first question solution is in the excel file attached below. 2) Expected value : It is termed as the average value or mean that is expected to obtained when multipled by the values of the x with their probablity measures. This value is expected to be obtained when we conduct an experiment whose value are represented…
30 Jan 2022 07:06 AM IST
Basics of Probability and Statistics Week 1 Challenge
1) Why there is a difference in the formula of variance for population and sample ? The difference between the formula of variance in population and sampling is because : The variance is calculated in five steps First, mean is calculated Then deviations from the mean deviations are squared Squared deviations are…
11 Jan 2022 04:16 PM IST
Project 1
import cv2 # importing the important libraries import numpy as np # importing numpy libraries as np # creating helper functions for further use # a read image function def read_image(image_path): image = cv2.imread(image_path) # Cv2 reads in BGR format return image # a display image function def display_image(window_name,…
06 Jan 2022 06:23 PM IST
Project 1 English Dictionary App
import json # to print the words from the app def output(): f = open('words.txt', 'r+') # opening the file in read mode print('file opened') lines = f.readlines() # reading all the lines of the file in list called lines for line in lines: print(line, end = ' ')# iterate through the listone item at a time #print(len(line))…
29 Nov 2021 03:09 PM IST