KEMBAR78
Machine Learning LAB - Assignment | PDF
0% found this document useful (0 votes)
8 views1 page

Machine Learning LAB - Assignment

The document outlines a series of machine learning experiments, including the implementation of a naïve Bayesian classifier, accuracy calculations, and document classification. It also covers the construction of a Bayesian network for medical diagnosis, application of the EM algorithm for clustering, and the k-Nearest Neighbour algorithm for classifying the iris dataset. Additionally, it mentions the implementation of non-parametric Locally Weighted Regression for data fitting and visualization.

Uploaded by

NAVAL MISHRA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

Machine Learning LAB - Assignment

The document outlines a series of machine learning experiments, including the implementation of a naïve Bayesian classifier, accuracy calculations, and document classification. It also covers the construction of a Bayesian network for medical diagnosis, application of the EM algorithm for clustering, and the k-Nearest Neighbour algorithm for classifying the iris dataset. Additionally, it mentions the implementation of non-parametric Locally Weighted Regression for data fitting and visualization.

Uploaded by

NAVAL MISHRA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Machine Learning LAB

Experiments
5 Write a program to implement the naïve Bayesian classifier for a sample training data
set stored as a .CSV file. Compute the accuracy of the classifier, considering few test
data sets.

6 Assuming a set of documents that need to be classified, use the naïve Bayesian
Classifier model to perform this task. Built-in Java classes/API can be used to write
the program. Calculate the accuracy, precision, and recall for your data set.

7 Write a program to construct aBayesian network considering medical data. Use this
model to demonstrate the diagnosis of heart patients using standard Heart Disease
Data Set. You can use Java/Python ML library classes/API.

8 Apply EM algorithm to cluster a set of data stored in a .CSV file. Use the same data
set for clustering using k-Means algorithm. Compare the results of these two
algorithms and comment on the quality of clustering. You can add Java/Python ML
library classes/API in theprogram.

9 Write a program to implement k-Nearest Neighbour algorithm to classify the iris data
set. Print both correct and wrong predictions. Java/Python ML library classes can be
used for this problem.

10 Implement the non-parametric Locally Weighted Regression algorithm in order to fit


data points. Select appropriate data set for your experiment and draw graphs.

You might also like