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

Assignments KCS-055

The document outlines assignments for a Machine Learning Techniques course at Moradabad Institute of Technology, covering topics such as KNN, Kohonen Self-Organizing Maps, Markov Decision Process, SVM, and Confusion Matrix. It includes tasks like predicting class labels, explaining algorithms, and solving problems related to decision trees and reinforcement learning. The assignments are structured into five parts, each addressing different machine learning concepts and applications.

Uploaded by

Anurag Chaudhary
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Assignments KCS-055

The document outlines assignments for a Machine Learning Techniques course at Moradabad Institute of Technology, covering topics such as KNN, Kohonen Self-Organizing Maps, Markov Decision Process, SVM, and Confusion Matrix. It includes tasks like predicting class labels, explaining algorithms, and solving problems related to decision trees and reinforcement learning. The assignments are structured into five parts, each addressing different machine learning concepts and applications.

Uploaded by

Anurag Chaudhary
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Moradabad Institute of Technology, Moradabad

Department of Computer Science & Engineering


Subject: Machine Learning Techniques (KCS-055)
Submission Date: 17-12-2022

Assignment-1
1. Apply KNN for following dataset and predict class of test example
(A1=3, A2=7).Assume K=3
2. Describe the Kohonen Self-Organizing Maps and its algorithm.
3. Describe Markov Decision Process in reinforcement learning.
4. Discuss the applications, properties, issues, and disadvantages of SVM.
5. Explain the Confusion Matrix with respect to Machine Learning Algorithms.

Assignment-2
1. What is the difference between machine learning and deep learning?
2. Why SVM is an example of a large margin classifier? Discuss the different
kernels functions used in SVM.
3. Explain the relevance of CBR. How CADET tool employs CBR?
4. Given below is an input matrix named I, kernel matrix, calculate the Convoluted
matrix C using stride =1 also apply max pooling on C.

Input Matrix
1 0 0 1 1 0 1 Kernel Matrix
0 0 1 1 1 0 1
1 1 1 0 1 0 1 1 0 0
1 1 0 1 0 0 0 0 1 1
1 0 1 0 1 1 0 1 1 0
0 1 1 0 0 1 1
0 1 1 1 0 1 1

5. Explain the role of genetic algorithm? Discuss the various phases considered in
genetic algorithm.
Assignment-3
1. What is knowledge? Why is it important in terms of business analysis? Explain KDD process to
extract knowledge from data bases in brief.
2. A patient is given a drip feed containing a particular chemical and its concentration in his blood
is measured, in suitable units, at one hour intervals. Is there any linear relationship will exist
between the variables? If yes then construct the model using data set.

Time, x (hours) 2 4 6 8 10 12
Concentration, y 2.4 4.3 5.0 6.9 9.1 11.4
Also estimate the value of y when x = 16.
3. What will be root node of the decision tree for the following data set if Student will be
considering as class label attribute?

s.no. Age Income student credit_rating buys_computer


1 Youth High No Fair No
2 Youth High No Excellent No
3 mid age High no Fair yes
4 Senior Medium no Fair Yes
5 Senior Low yes Fair Yes
6 Senior Low yes Excellent No
7 mid age Low yes Excellent Yes
8 Youth Medium no Fair No
9 Youth Low yes Fair Yes
10 Senior Medium yes Fair Yes
11 Youth Medium yes Excellent Yes
12 mid age Medium no Excellent Yes
13 mid age High yes Fair Yes

14 Senior Medium no Excellent No

4. Solve the XOR problem for any two cases.

w13 w14 w23 w24 w35 w45 Θ3 Θ4 Θ5 l


0.21 -0.4 0.15 0.1 -0.2 0.3 -0.4 0.25 -0.4 0.4

1
Oj  I
1 e j

5. What is Reinforcement Learning? How does it compare with other ML techniques?


Assignment-4
1. Explain the Confusion Matrix with respect to Machine Learning Algorithms
2. “SVM is a classification algorithm which uses hyperplane to separate the data points”. If the
statement is correct then what does hyperplane indicates here? Also explain the concept of kernel
Function in SVM.
3. Suppose you have following data points as given in table below. X and Y are input while CLASS
ATR is dependent variable. Suppose, you want to predict the class of new data point x=1 and
y=1 using Euclidian distance in 3-NN. In which class the new data point will belong?

X Y Class Label

-1 1 -

0 1 +

0 2 -

1 -1 -

1 0 +

1 2 +

2 2 -

2 3 +

4. What will be the output of convolution operation on a given image when hyper parameter are
Filter Size=3 and Stride=1?

5. Explain the different phases in a genetic life cycle with suitable example.

Assignment-5

1. Compare regression, classification and clustering in machine learning along with suitable real
life applications?
2. Why naive Bayesian classification is called “naive"? Briefly outline the major ideas of naive
Bayesian classification
3. What is instance based learning? How Locally Weighted Regression is different from Radial
basis function networks?
4. What will be the output of max pooling operation on a given convoluted image2 when hyper
parameter are Filter Size=2 and Stride=2?

5. Explain the Q function and Q Learning Algorithm assuming deterministic rewards and actions
with example

You might also like