Posts

Showing posts with the label KNN

MACHINE LEARNING USING PYTHON LAB

  MACHINE LEARNING USING PYTHON LAB Course Outcomes: At the end of the course the student should be able to: 1.      Select data, model selection, model complexity and identify the trends. 2.      Understand a range of machine learning algorithms along with their strengths and weaknesses. 3.      Build predictive models from data and analyze their performance. List of Experiments WEEK 1 : a)      Write a program using scikit-learn to implement K-means Clustering b)      Program to calculate the entropy and the information gain c)      Program to implement perceptron. WEEK 2: ·        Implement and demonstrate the FIND-S algorithm for finding the most specific hypothesis based on a given set of training data samples. Read the training data from a .CSV file. WEEK 3: ·        Fo...

Unit – III Supervised Learning: Classification

Image
  Unit – III Supervised Learning: Classification 1.     What is Classification 2.     General Approach to Classification 3.     K-NearestNeighbour Algorithm 4.     Logistic Regression 5.     Decision Trees: a.      Construction b.     classification and regression trees c.      example 6.     Naive Bayesian Classifier 7.     Support Vector Machines: a.      Optimal Separation b.     Kernels c.      Algorithm 👉 UNIT-II (A) Supervised Learning Classification Notes 👉 UNIT-III (A) Supervised Learning Classification PPTs 👉 UNIT-III(A) Important Long Answer Questions 👉 UNIT-III (A) Supervised Learning: Classification Important Questions YouTube Link

Unit – IV: Instance-Based Techniques

  Unit – IV: Instance-Based Techniques Instance-based Techniques : 1.      Introduction to Instance-Based Techniques 2.      Lazy vs. Eager Generalization 3.      K-Nearest Neighbor 4.      Radial Basis Function 5.      Case Based Reasoning 6.      Remarks on Lazy vs Eager Learning

FUNDAMENTALS OF MACHINE LEARNING - Syllabus

  FUNDAMENTALS OF MACHINE LEARNING (Professional Elective - 3) Department : IT IV B.Tech I Semester Course Code Hours/Week Credits Marks A2275E9 L T P C CIE SEE Total 3 0 0 3 40 60 100   Course Outcomes: At the end of the course, the student should be able to 1.      Ability to identify machine learning problems corresponding to different applications . 2.      Ability to understand the basic concepts such as Decision trees and Neural Networks. 3.      Apply Machine Learning algorithms to solve problems of moderate complexity. 4.      Identify Machine Learning applications 5.      Understand Genetic algorithms and their applications Unit – I Introduc...

Machine Learning Programs

 Machine Learning Programs 👉 Data Preprocessing in Machine Learning 👉 Data Preprocessing in Machine learning (Handling Missing values ) 👉 Linear Regression - ML Program - Weight Prediction 👉 Naïve Bayes Classifier - ML Program 👉 LOGISTIC REGRESSION - PROGRAM 👉 KNN Machine Learning Program 👉 Support Vector Machine (SVM) - ML Program 👉 Decision Tree Classifier on Iris Dataset 👉 Classification of Iris flowers using Random Forest 👉 DBSCAN 👉 Implement and demonstrate the FIND-S algorithm for finding the most specific hypothesis based on a given set of training data samples. Read the training data from a .CSV file 👉 For a given set of training data examples stored in a .CSV file, implement and demonstrate the Candidate-Elimination algorithm to output a description of the set of all hypotheses consistent with the training examples. 👉 Write a program to demonstrate the working of the decision tree based ID3 algorithm. Use an appropriate data set for building the decision tree...

Machine Learning MCQs-3 (Logistic Regression, KNN, SVM, Decision Tree)

 Machine Learning MCQs-3  (Logistic Regression, KNN, SVM, Decision Tree) --------------------------------------------------------------------- 1. A Support Vector Machine can be used for Performing linear or nonlinear classification Performing regression For outlier detection All of the above Ans: 4 2.   The decision boundaries in a Support Vector machine is fully determined (or “supported”) by the instances located on the edge of the street?   True False Ans: 1   3.   Support Vector Machines are not sensitive to feature scaling True False Ans: 2  4.  If we strictly impose that all instances be off the street and on the right side, this is called Soft margin classification Hard margin classification Strict margin classification Loose margin classification Ans: 2 5. The main issues with hard margin classification are It only works if the data is linearly separable It is quite sensitive to outliers It is impossible to find a margin if the ...