100% found this document useful (1 vote)
742 views4 pages

Machine Learning Exam Questions R22

The document contains a list of questions related to Machine Learning for B.Tech students at JNTU Hyderabad, organized by units. Each unit includes both short and long questions covering various topics such as supervised learning, algorithms, decision trees, and reinforcement learning. It serves as a study guide for students preparing for exams in the subject.

Uploaded by

mbsailajanawin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
742 views4 pages

Machine Learning Exam Questions R22

The document contains a list of questions related to Machine Learning for B.Tech students at JNTU Hyderabad, organized by units. Each unit includes both short and long questions covering various topics such as supervised learning, algorithms, decision trees, and reinforcement learning. It serves as a study guide for students preparing for exams in the subject.

Uploaded by

mbsailajanawin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

lOMoARcPSD|51655226

Machine Learning IMP Jntuh R22

R18 [Link]. Cse (Computer Networks) Iii & Iv Year Jntu Hyderabad (Jawaharlal Nehru
Technological University, Hyderabad)

Scan to open on Studocu

Studocu is not sponsored or endorsed by any college or university


Downloaded by MB Sailaja (mbsailajanawin@[Link])
lOMoARcPSD|51655226

QUESTIONS FROM MACHINE LEARNING(ML) R22

UNIT-1
(SHORT Q):
1)What is machine learning?
2)What is supervised learning?
3)What is perceptron?
4)What is specific hypothesis?
5)What is a neuron?
6)What is classification?
7)What is regression?

(LONG Q ):
1) Explain about the types of machine learning models?
2) Illustrate the Perspectives and Issues in MachineLearning?
3) Illustrate the Candidate-Elimination algorithm?
4) Explain the Find-S:Finding a Maximally Specific Hypothesis in detail
?
5) List the problems that can be solved using machine learning?
6) Explain the uses off eatures in machine learning?
7) Explain about the linear regression algorithm clearly?
8) Explain about the process of designing a learning system?

Downloaded by MB Sailaja (mbsailajanawin@[Link])


lOMoARcPSD|51655226

UNIT–2
(SHORT Q ):
1) What is the use of MLP?
2) Why do we need to back propagate in the network?
3) What is spline?
4) What is SVM ?
(LONG Q):
1) Explain about the support vector machine algorithm ?
2) Present the Back propagation algorithm for feed forward
networks and explain each step in it ?
3) Present the Back propagation algorithm for backward networks
and explain each step in it ?
4) Explain about the Radial Basis Function(RBF)Network?
5) Illustrate the following:
a. Cubic Spline
b. Smoothing Splines
6) Explain about the MLP? With it’s algorithm ?
7)Explain the problem of interpolation in RBF network?how to solve
them using basis functions ?
Unit–3:

(SHORT Q):
1) What is decision tree?
2) What is unsupervised learning?
3) What is clustering technique?
4) What is bagging?
5) What is boosting?

LONG Q:

1) Discuss about decision tree representation,indetail?


2) Explain about the k-means clustering algorithm using an example?
3) Explain about the KNN classifier with an example?
4) How to construct the classification decision tree,explain each step in
Downloaded by MB Sailaja (mbsailajanawin@[Link])
lOMoARcPSD|51655226

detail ?
5) Explain about unsupervised learning?
6) Illustrate The Expectation-Maximisation(EM)Algorithm?
7) Explain about the using of Nearest Neighbor Smoothing method
and it’s purpose ?
8) Illustrate the following briefly:
a. Boosting
b. Bagging
Unit–4:

(LONG Q):
1) Explain about the LINEAR DISCRIMINANT ANALYSIS(LDA)briefly?
2) Explain about the principal components analysis?
3) What is Multi-Dimensional Scaling(MDS) in ISOMAP?
4) Explain about the least square problem,how to reduce that using
least square optimization ?
5) Demonstrate the genetic algorithm(GA) and its limitations?
6) Explain the all genetic operators briefly?
7) Explain the map coloring using genetic algorithm?

Unit– 5
(LONG Q):
1) Explain about the reinforcement learning briefly?
2) Explain about the Bayesian networks clearly?
3) Explain about the Markov decision process?
4) Briefly explain the Q-Learningalgorithm?
5) Explain about SARSA algorithm?
6) Differentiate the Q-learning and SARSA algorithms?
7) Explain the HIDDEN MARKOV MODELS (HMMS) graphical
model ?
8) Explain the all tracking methods?

Downloaded by MB Sailaja (mbsailajanawin@[Link])

Common questions

Powered by AI

The primary types of machine learning models include supervised learning, unsupervised learning, and reinforcement learning. Supervised learning involves training a model on labeled data, which means that each training example is paired with an output label. This type is useful for tasks like classification and regression . Unsupervised learning, on the other hand, deals with unlabeled data and is used to identify hidden patterns or intrinsic structures in input data, commonly used in clustering and association . Reinforcement learning is a type of learning where an agent interacts with an environment, taking actions to maximize cumulative reward; it is widely used in scenarios where decision making is sequential .

Support Vector Machines (SVM) are powerful classification tools that function by finding the optimal hyperplane which best separates the data classes in high-dimensional space. They work by maximizing the margin between different classes, with the support vectors being the data points that are closest to the decision boundary. This method is effective in linearly separable cases, and can be extended to non-linear data distributions using kernel tricks to transform the data into higher dimensions .

Bayesian networks are a type of probabilistic graphical model that use directed acyclic graphs to represent a set of variables and their conditional dependencies. The components of Bayesian networks include nodes representing the variables and edges capturing the probabilistic dependencies. Their significance lies in their ability to model complex distributions and perform efficient probabilistic inference, making them valuable in tasks like prediction, diagnostics, and decision making under uncertainty .

Backpropagation is critical in training feedforward networks as it provides a method for updating the weights of the network to reduce the error in predictions. It involves calculating the gradient of the loss function with respect to each weight by the chain rule, iteratively adjusting weights to minimize the loss. This effectively propagates errors back through the layers of the network, allowing for network optimization by gradient descent .

The Candidate-Elimination algorithm helps identify hypotheses by maintaining a boundary or a set of hypotheses which are consistent with the observed training examples. It uses two sets, G and S, which represent the most general and the most specific hypotheses respectively. As new training examples are presented, the algorithm refines these sets, eliminating hypotheses that do not match the data, until it finds the specific target concept that fits the observed examples .

The Expectation-Maximization (EM) algorithm is important in clustering because it provides a robust framework for finding the maximum likelihood estimates of parameters in probabilistic models with latent variables. It consists of two main steps: the Expectation step, which computes the expected value of the latent variables given the current estimates of the parameters, and the Maximization step, which updates the parameters to maximize the expected log-likelihood found in the Expectation step. This algorithm is iterative and converges to local maxima, making it useful for model optimization in contexts like Gaussian mixture models .

The key difference between Q-learning and SARSA algorithms in reinforcement learning lies in their approach to updating policies. Q-learning is an off-policy algorithm, where the action selection and value learning are based on different policies, potentially leading to more greedily optimized solutions. In contrast, SARSA is an on-policy learning algorithm and updates its Q-values using the actions derived from its current policy, often resulting in more stable learning but potentially slower convergence. Both techniques are popular for tasks requiring sequential decision-making .

Unsupervised learning differs from supervised learning in that it deals with unlabeled datasets, aiming to identify structure or patterns in the data without predefined labels, while supervised learning is conducted on labeled datasets. Common techniques for unsupervised learning include clustering methods like k-means and hierarchical clustering, and dimensionality reduction techniques like PCA. In contrast, supervised learning techniques include regression analysis, decision trees, and support vector machines .

Linear Discriminant Analysis (LDA) facilitates dimensionality reduction by finding the linear combinations of features that best separate the classes. It maximizes the ratio of the difference between classes (between-class variance) to the variance within each class (within-class variance). Applications of LDA include face recognition and text classification, where reducing dimensionality improves computational efficiency without compromising significant discriminative information .

Radial Basis Function (RBF) Networks address interpolation problems by using neurons with radial basis functions as activation functions, which are capable of capturing the local topological structure of the data. The basis functions commonly used are Gaussian functions, which enable the network to smoothly interpolate the data between points. This allows for effectively solving interpolation by adjusting the width and centers of these Gaussian functions to minimize error while fitting the dataset .

You might also like