0% found this document useful (0 votes)
8 views

Machine Leanring Lab (1)

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 views

Machine Leanring Lab (1)

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/ 8

 To develop effective

INDEX

Machine Learning Programs


S. No Name of the Program Page No
Implementation of Python Basic Libraries such as Statistics, Math, Numpy and
1. Scipy
a) Usage of methods such as floor(), ceil(), sqrt(), isqrt(), gcd() etc.
b) Usage of attributes of array such as ndim, shape, size, methods such as
sum(), mean(), sort(), sin() etc.
c) Usage of methods such as det(), eig() etc.
d) Consider a list datatype(1D) then reshape it into2D, 3D matrix using
numpy
e) Generater and ommatrices using numpy
f) Find the determinant of a matrix using scipy
g) Find eigen value and eigen vector of a matrix using scipy

Implementation of Python Libraries for ML application such as Pandas and


2.
Matplotlib.
a) Create a Series using pandas and display
b) Access the index and the values of our Series
c) Compare an array using Numpy with a series using pandas
d) Define Series objects with individual indices
e) Access single value of a series
f) Load datasets in a Data frame variable using pandas
g) Usage of different methods in Matplotlib.
a) Creation and Loading different types of datasets in Python using
3.
the required libraries.
i. Creation using pandas
ii. Loading CSV dataset files using Pandas
iii. Loading datasets using sklearn

b) Write a python program to compute Mean, Median, Mode, Variance,


Standard Deviation using Datasets
c) Demonstrate various data pre-processing techniques for a given dataset.
Write a python program to compute
i. Reshaping the data,
ii. Filtering the data,
iii. Merging the data
iv. Handling the missing values in datasets
v. Feature Normalization: Min-max normalization
Implement Dimensionality reduction using Principle component Analysis method on
4 a dataset iris
Write a program to demonstrate the working of the decision tree based ID3
5 algorithm by considering a dataset.
6.
Consider a dataset, use Random Forest to predict the output class. Vary the
number of trees as follows and compare the results:
i. 20
ii. 50
iii. 100
Machine Learning Lab Manual MRCET
iv. 200
v. 100

Write a Python program to implement Simple Linear Regression and plot the
7.
graph.
Write a Python program to implement Simple Linear Regression for iris using
8
sklearn and plot the confusion matrix.
9
Build KNN Classification model for a given dataset. Vary the number of k
values as follows and compare the results:
i. 1
ii. 3
iii. 5
iv. 7
v. 11

10
Implement Support Vector Machine for a dataset and compare the accuracy
by applying the following kernel functions:
i. Linear
ii. Polynomial
iii. RBF

11
Write a python program to implement K-Means clustering Algorithm. Vary
the number of k values as follows and compare the results:
i. 1
ii. 3
iii. 5

Machine Learning Lab Manual MRCET


Machine Learning Lab Manual MRCET

You might also like