Machine Learning Techniques: Important Questions Unit-1
Machine Learning Techniques: Important Questions Unit-1
1 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
Important Questions
Unit-II
REGRESSION: Linear Regression and Logistic Regression
BAYESIAN LEARNING - Bayes theorem, Concept learning, Bayes Optimal Classifier, Naïve
II Bayes classifier, Bayesian belief networks, EM algorithm.
SUPPORT VECTOR MACHINE: Introduction, Types of support vector kernel – (Linear kernel,
polynomial kernel,and Gaussiankernel), Hyperplane – (Decision surface), Properties of SVM, and
Issues in SVM.
1. Present the ID3 algorithm and mention the issues in decision tree learning.
2. Discuss k-nearest neighbour algorithm using an example. How do you decide k here?
3. Explain the concept of EM Algorithm. Discuss what are Gaussian Mixtures.
4. Define Followings
a. Prior Probability
b. Conditional Probability
c. Posterior Probability
5. Define Bayesian theorem? What is the relevance and features of Bayesian theorem? Explain the
practical difficulties of Bayesian theorem.
6. What are Consistent Learners? Discuss Maximum Likelihood and Least Square Error Hypothesis.
7. Explain Naïve Bayes Classifier with an Example. What are Bayesian Belief nets? Where are they
used?
8. Explain Bayesian belief network and conditional independence with example.
9. Write Short Note on followings (i) Sampling Theory (ii) Bayes Theorem
10. Distinguish between classification and regression with an example.
11. Describe the significance of Kernal functions in SVM. List any two kernel functions
12. Consider the training data in the following table where Play is a class attribute. In the table, the
Humidity attribute has values “L” (for low) or “H” (for high), Sunny has values “Y” (for yes) or “N”
(for no), Wind has values “S” (for strong) or “W” (for weak), and Play has values “Yes” or “No”.
2 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
13. Given the set of values X = (3, 9, 11, 5, 2)T and Y = (1, 8, 11, 4, 3)T . Evaluate the regression
coefficients.
14. Calculate the dissimilarity between two data points x1(2,3,4) and x2(4,3,5) using (a) Euclidian
distance (b) Manhattan Distance
15. Is regression a supervised learning technique? Justify your answer. Compare regression with
classification with examples.
16. The following table shows the midterm and final exam grades obtained for students in a database
course.
a. (i) Use the method of least squares to find an equation for the prediction of a student’s
final exam grade based on the student’s midterm grade in the course.
b. Predict the final exam grade of a student who received an 86 on the midterm exam.
17. State the mathematical formulation of the SVM problem. Give an outline of the method for solving
the problem.
18. The following data set contains factors that determine whether tennis is played or not. Using Naive
Bayes classifier, find the play prediction for the day <Sunny, Cool, High, Strong>
3 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
Important Questions
Unit-III
DECISION TREE LEARNING - Decision tree learning algorithm, Inductive bias, Inductive
inference with decision trees, Entropy and information theory, Information gain, ID-3 Algorithm,
III
Issues in Decision tree learning.
INSTANCE-BASED LEARNING – k-Nearest Neighbour Learning, Locally Weighted Regression,
Radial basis function networks, Case-based learning.
12. What are issues in decision tree learning? Explain briefly How are they overcome?
4 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
13. With the following data set, generate a decision tree and predict the class label for a data
point with values <Female, 2, standard, high>.
14. Identify the first splitting attribute for decision tree by using ID3 algorithm with the following dataset.
15. State the mathematical formulation of the SVM problem. Give an outline of the method for solving
the problem
16. Explain Kernel Trick in the context of support vector machine. List any two kernel function used in
SVM.
17. Identify the first splitting attribute for decision tree by using ID3 algorithm with the
following dataset.
5 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
Important Questions
Unit-IV
ARTIFICIAL NEURAL NETWORKS – Perceptron’s, Multilayer perceptron, Gradient descent
and the Delta rule, Multilayer networks, Derivation of Backpropagation Algorithm, Generalization,
a. X OR Y
b. X AND Y
3. Explain the concept of a Perceptron with a neat diagram. Discuss the Perceptron training rule.
4. Define Delta Rule.Under what conditions the perceptron rule fails and it becomes necessary to apply
the delta rule
5. What do you mean by Gradient Descent? Derive the Gradient Descent Rule. What are the conditions
in which Gradient Descent is applied?
6. Differentiate between Gradient Descent and Stochastic Gradient Descent, and Differentiate between
Gradient Descent and Perceptron training rule.
7. Derive the Back-propagation rule considering the training rule for Output Unit weights and
Training Rule for Hidden Unit weights
6 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
15. Explain the basic problems associated with hidden markov model
16. Distinguish between overfitting and underfitting. How it can affect model generalization?
17. Calculate the output y of a three input neuron with bias. The input feature vector is (x1, x2,
x3) = (0.8,0.6,0.4) and weight values are [w1,w2,w3, b] =[0.2, 0.1, -0.3, 0.35]. Use binary
Sigmoid function as activation function.
7 University Academy
Amrapali Castle Chi-V, Greater Noida, Uttar Pradesh -201310
Email: [email protected], Website: www.universityacademy.in,
YouTube: www.youtube.com/c/UniversityAcademy
Important Questions
Unit-V
REINFORCEMENT LEARNING–Introduction to Reinforcement Learning , Learning
Task,Example of Reinforcement Learning in Practice, Learning Models for Reinforcement –
(Markov Decision process , Q Learning - Q Learning function, Q Learning Algorithm ), Application
V
of Reinforcement Learning,Introduction to Deep Q Learning.
GENETIC ALGORITHMS: Introduction, Components, GA cycle of reproduction, Crossover,
Mutation, Genetic Programming, Models of Evolution and Learning, Applications.
1. Discuss the principle of gradient descent algorithm in detail. Highlight the importance of learning
rate in it?
2. Present the genetic algorithm cycle of reproduction. Use diagram appropriately.
3. What is Reinforcement Learning? Explain the Q function and Q Learning Algorithm.
4. Explain Q learning algorithm assuming deterministic rewards and actions?
5. Outline the similarities and differences between Genetic Algorithms and Evolutionary Strategies.
6. What is a fitness function and its need in GA? Explain the crossover and mutation in the context of
GA.
7. Why crossover is important in Genetics Algorithm? Present some real-life examples where you can
see the application of Genetic Algorithm (GA).
8 University Academy