1...........Pros and cons of SVM ----------------------------------------------------- Pros and Cons associated with SVM Pros: It works really well with a clear margin of separation It is effective in high dimensional spaces. It is effective in cases where the number of dimensions is greater than the number of samples.…
Yamini Chillari
updated on 21 Aug 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 Yamini Chillari (17)
Project 2 - Gender Bias in Science and Technical field
Project2 Tableau
08 Oct 2022 09:37 AM IST
Project 1 - Analyzing the Education trends in Tamilnadu
project1 tableau
07 Oct 2022 08:19 AM IST
SQL Project 2
Once a student is passed out from a Institute or College, he/she is known as Alumni of the Institute. Alumni’s career growth plays important role in Institute’s ranking and other networking activities. In this project, career choices of alumni of two Universities will be analyzed with respect to their passing…
01 Sep 2022 09:36 AM IST
Project 2
Implement Clustering and then predict the class of car from “Car dataset”.
26 Aug 2022 08:07 AM IST
Project 1
project1
24 Aug 2022 12:09 PM IST
Supervised Learning - Classification Week 9 Challenge
1..........What is a Neural Network? ----------------------------------------------- A neural network is a method in artificial intelligence that teaches computers to process data in a way that is inspired by the human brain. It is a type of machine learning process, called deep learning, that uses interconnected…
22 Aug 2022 11:28 AM IST
Unsupervised Learning - Kmeans Week 11 Challenge
1..........How does similarity is calculated 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…
21 Aug 2022 08:32 AM IST
Supervised Learning - Classification Week 7 Challenge
1...........Pros and cons of SVM ----------------------------------------------------- Pros and Cons associated with SVM Pros: It works really well with a clear margin of separation It is effective in high dimensional spaces. It is effective in cases where the number of dimensions is greater than the number of samples.…
21 Aug 2022 06:18 AM IST
Supervised Learning - Classification Week 8 Challenge
2......What are the pros and cons of knn ----------------------------------------------------------------- K- Nearest Neighbors or also known as K-NN belong to the family of supervised machine learning algorithms which means we use labeled (Target Variable) dataset to predict the class of new data point. The K-NN…
21 Aug 2022 06:11 AM IST
Supervised Learning - Prediction Week 3 Challenge
.2............Difference between L1 & L2 Gradient descent method L1 regularization penalizes the sum of absolute values of the weights, whereas L2 regularization penalizes the sum of squares of the weights. …
14 Aug 2022 03:20 AM IST
Project 2
project2
11 Aug 2022 10:44 AM IST
Basics of ML & AL Week 2 Challenge
1)Calculate all 4 business moments using pen and paper for the below data set? 2)What is the significance of expected value when simple mean (Sum of all observations/number of observations) is already in place Expected value is used when we want to calculate the mean of a probability…
11 Aug 2022 06:41 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 Population variance refers to the value of variance that is calculated from population data, and sample variance is the variance calculated from sample data. Due to this value of denominator in the formula for variance in case of sample…
10 Aug 2022 05:57 PM IST
Project 1
Project1
05 Aug 2022 11:47 AM IST
SQL PROJECT1
project1 Business model Customer to Customer (C2C) allows customers to do business with each other. This model is growing fast with e-commerce platforms where sellers may be required to pay some amount and buyer can buy it without paying anything. E-Commerce website brings the seller and buyer to the same platform. …
04 Jul 2022 07:24 AM IST
Project 2 - EDA on Vehicle Insurance Customer Data
project 2: EDA on Vehicle Insurance Customer Data # Step1 Reading dataimport pandas as pdfirst_table=pd.read_csv('.pandascustomer_details.csv')import pandas as pdsecond_table=pd.read_csv('.pandascustomer_policy_details.csv')print(first_table.head())print(second_table.head()) # giving column names…
14 May 2022 11:55 AM IST
Project 1 - English Dictionary App & Library Book Management System
Project 1A: English Dictionary App import jsonfilename='word.txt'dict1={}def add(): w=input('enter word : ') m=input('enter mean : ') dict1[w]=m with open(filename,'w') as f: json.dump(dict1,f) print('word is added : ') main() def find(): w=input('enter word : ') with…
14 May 2022 11:54 AM IST