Assignments KCS-055
Assignments KCS-055
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?
1
Oj I
1 e j
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