SlideShare a Scribd company logo
Machine Learning
1
MODULE 1 – INTRODUCTION AND CONCEPT LEARNING
Note : Highlighted questions are important in Module -1
1. Define Machine Learning. Explain with examples why machine learning is important.
2. Discuss some applications of machine learning with examples.
3. Describe the following problems with respect to Tasks, Performance and Experience:
a. A Checkers learning problem
b. A Handwritten recognition learning problem
c. A Robot driving learning problem
4. Explain the steps in designing a learning systems in detail.
5. Explain different perspective and issues in machine learning.
6. Define concept learning and discuss with example.
7. Explain the General-to-Specific Ordering of Hypotheses
8. Write FIND-S algorithm and explain with example given below
Example Sky AirTemp Humidity Wind Water Forecast EnjoySport
1 Sunny Warm Normal Strong Warm Same Yes
2 Sunny Warm High Strong Warm Same Yes
3 Rainy Cold High Strong Warm Change No
4 Sunny Warm High Strong Cool Change Yes
9. What are the key properties and complaints of FIND-S algorithm?
10. Define Consistent Hypothesis and Version Space.
11. Write LIST-THEN-ELIMINATE algorithm.
12. Write the candidate elimination algorithm and illustrate with example
13. Write the final version space for the below mentioned training examples using
candidate elimination algorithm.
Machine Learning
2
Example – 1:
Origin Manufacturer Color Decade Type Example Type
Japan Honda Blue 1980 Economy Positive
Japan Toyota Green 1970 Sports Negative
Japan Toyota Blue 1990 Economy Positive
USA Chrysler Red 1980 Economy Negative
Japan Honda White 1980 Economy Positive
Japan Toyota Green 1980 Economy Positive
Japan Honda Red 1990 Economy Negative
Example – 2:
Size Color Shape Class
Big Red Circle No
Small Red Triangle No
Small Red Circle Yes
Big Blue Circle No
Small Blue Circle Yes
14. Explain in detail the Inductive Bias of Candidate Elimination algorithm.
MODULE 2 – DECISION TREE LEARNING
Note : Highlighted questions are important in Module -2
1. What is decision tree and decision tree learning?
2. Explain representation of decision tree with example.
3. What are appropriate problems for Decision tree learning?
4. Explain the concepts of Entropy and Information gain.
5. Describe the ID3 algorithm for decision tree learning with example
6. Give Decision trees to represent the Boolean Functions:
a) A && ~ B
b) A V [B && C]
c) A XOR B
d) [A&&B] V [C&&D]
Machine Learning
3
7. Give Decision trees for the following set of training examples
Day Outlook Temperature Humidity Wind PlayTennis
D1 Sunny Hot High Weak No
D2 Sunny Hot High Strong No
D3 Overcast Hot High Weak Yes
D4 Rain Mild High Weak Yes
D5 Rain Cool Normal Weak Yes
D6 Rain Cool Normal Strong No
D7 Overcast Cool Normal Strong Yes
D8 Sunny Mild High Weak No
D9 Sunny Cool Normal Weak Yes
D10 Rain Mild Normal Weak Yes
D11 Sunny Mild Normal Strong Yes
D12 Overcast Mild High Strong Yes
D13 Overcast Hot Normal Weak Yes
D14 Rain Mild High Strong No
8. Consider the following set of training examples.
a) What is the entropy of this collectionof training example with respect to the target
function classification?
b) What is the information gain of a2 relative to these training examples?
Instance Classification a1 a2
1 + T T
2 + T T
3 - T F
4 + F F
5 - F T
6 - F T
9. Identify the entropy, information gain and draw the decision trees for the following set
of training examples
Gender
Car
ownership
Travel cost Income
Level
Transportation
(Class)
Machine Learning
4
Male 0 Cheap Low Bus
Male 1 Cheap Medium Bus
Female 1 Cheap Medium Train
Female 0 Cheap Low Bus
Male 1 Cheap Medium Bus
Male 0 Standard Medium Train
Female 1 Standard Medium Train
Female 1 Expensive High Car
Male 2 Expensive Medium Car
Female 2 Expensive High Car
10. Discuss Hypothesis Space Search in Decision tree Learning.
11. What are Restriction Biases and Preference Biases and differentiate between them.
12. What are issues in learning decision trees
MODULE 3 – ARTIFICIAL NEURAL NETWORKS
Note : Highlighted questions are important in Module -3
1.What is Artificial Neural Network?
2.Explain appropriate problem for Neural Network Learning with its characteristics.
3.Explain the concept of a Perceptronwith a neat diagram.
4.Explain the single perceptron with its learning algorithm.
5.How a single perceptron can be used to represent the Boolean functions such as AND,
OR
6.Design a two-input perceptron that implements the boolean function A Λ ¬ B. Design a
two-layer network of perceptron’s that implements A XOR B.
7.Consider two perceptrons defined by the threshold expression w0 + wlxl+ w2x2 > 0.
PerceptronA has weight values
w0 = 1, w1=2, w2=1
and perceptron B has the weight values
w0 = 0, w1=2, w2=1
True or false? PerceptronA is more-general than perceptron B.
8.Write a note on (i) Perceptron Training Rule (ii) Gradient Descent and Delta Rule
9.Write Gradient Descent algorithm for training a linear unit.
10. Derive the Gradient Descent Rule
Machine Learning
5
11. Write Stochastic Gradient Descent algorithm for training a linear unit.
12. Differentiate between Gradient Descent and Stochastic Gradient Descent
13. Write Stochastic Gradient Descent version of the Back Propagation algorithm for
feedforward networks containing two layers of sigmoid units.
14. Derive the Back Propagation Rule
15. Explain the followings w.r.t Back Propagation algorithm
 Convergence and Local Minima
 Representational Power of Feedforward Networks
 Hypothesis Space Search and Inductive Bias
 Hidden Layer Representations
 Generalization, Overfitting, and Stopping Criterion
MODULE 4 –BAYESIAN LEARNING
Note : Highlighted questions are important in Module -4
1. Define Bayesian theorem? What is the relevance and features of Bayesian theorem?
Explain the practical difficulties of Bayesian theorem.
2. Define is Maximum a Posteriori(MAP) Maximum Likelihood (ML) Hypothesis. Derive
the relation for hMAP and hML using Bayesian theorem.
3. Consider a medical diagnosis problem in which there are two alternative hypotheses: 1.
that the patient has a particular form of cancer (+) and 2. That the patient does not (-).
A patient takes a lab test and the result comes back positive. The test returns a correct
positive result in only 98% of the cases in which the disease is actually present, and a
correct negative result in only 97% of the cases in which the disease is not present.
Furthermore, .008 of the entire population have this cancer. Determine whether the
patient has Cancer or not using MAP hypothesis.
4. Explain Brute force Bayes Concept Learning
5. What are Consistent Learners?
6. Discuss Maximum Likelihood and Least Square Error Hypothesis
7. Describe Maximum Likelihood Hypothesis for predicting probabilities.
8. Explain the Gradient Search to Maximize Likelihood in a Neural Net
9. Describe the concept of MDL. Obtain the equation for hMDL
10. Explain Naïve Bayes Classifier with an Example
First and last are important
Machine Learning
6
11. What are Bayesian Belief nets? Where are they used?
12. Explain Bayesian belief network and conditional independence with example
13. Explain Gradient Ascent Training of Bayesian Networks
14. Explain the concept of EM Algorithm. Discuss what are Gaussian Mixtures
MODULE 5 – EVALUATING HYPOTHESIS, INSTANCE BASED
LEARNING, REINFORCEMENT LEARNING
Note : Highlighted questions are important in Module -5
1. Explain the two key difficulties that arise while estimating the Accuracy of Hypothesis.
2. Define the following terms
a. Sample error b. True error c. Random Variable
d. Expected value e. Variance f. standard Deviation
3. Explain Binomial Distribution with an example.
4. Explain Normal or Gaussian distribution with an example.
5. Suppose hypothesis h commits r = 10 errors over a sample of n = 65 independently
drawn examples.
 What is the variance and standard deviation for number of true error rate
errorD(h)?
 What is the 90% confidence interval (two-sided) for the true error rate?
 What is the 95% one-sided interval (i.e., what is the upper bound U such that
errorD(h) ≤5 U with 95% confidence)?
 What is the 90% one-sided interval?
6. What are instance based learning? Explain key features and disadvantages of these
methods.
Machine Learning
7
7. Explain the K – nearest neighbour algorithm for approximating a discrete – valued
function with pseudo code
8. Describe K-nearest Neighbour learning Algorithm for continues (real) valued target
function.
9. Discuss the major drawbacks of K-nearest Neighbour learning Algorithm and how it
can be corrected
10. Define the following terms with respect to K - Nearest Neighbour Learning :
i) Regression ii) Residual iii) Kernel Function.
11. Explain Locally Weighted Linear Regression.
12. Explain radial basis function
13. Explain CADET System using Case based reasoning.
14. What is Reinforcement Learning and explain Reinforcement learning problem with
neat diagram.
15. Write Reinforcement learning problem characteristics.
16. Explain the Q function and Q Learning Algorithm assuming deterministic rewards
and actions with example.
***************************
Important Note: Study all the 3 internal (I,II,III)
questions, Assignment questionsand Problems
from Module-1,Module-2and Module-4.

More Related Content

What's hot

Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithm
manalishipra
 
Distributed Arbitration
Distributed ArbitrationDistributed Arbitration
Distributed Arbitration
Hasan Mahadi Riaz
 
Knowledge representation In Artificial Intelligence
Knowledge representation In Artificial IntelligenceKnowledge representation In Artificial Intelligence
Knowledge representation In Artificial Intelligence
Ramla Sheikh
 
XgBoost.pptx
XgBoost.pptxXgBoost.pptx
XgBoost.pptx
sumankumar507
 
Mycin presentation
Mycin presentationMycin presentation
Mycin presentation
Abdullah Khosa
 
Firefly algorithm
Firefly algorithmFirefly algorithm
Firefly algorithm
supriya shilwant
 
Naive Bayes
Naive BayesNaive Bayes
Naive Bayes
CloudxLab
 
Introduction to Genetic Algorithms
Introduction to Genetic AlgorithmsIntroduction to Genetic Algorithms
Introduction to Genetic Algorithms
Ahmed Othman
 
Genetic Algorithms - Artificial Intelligence
Genetic Algorithms - Artificial IntelligenceGenetic Algorithms - Artificial Intelligence
Genetic Algorithms - Artificial Intelligence
Sahil Kumar
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
Md. Ariful Hoque
 
Decision tree in artificial intelligence
Decision tree in artificial intelligenceDecision tree in artificial intelligence
Decision tree in artificial intelligence
MdAlAmin187
 
Feedforward neural network
Feedforward neural networkFeedforward neural network
Feedforward neural network
Sopheaktra YONG
 
Ensemble methods in machine learning
Ensemble methods in machine learningEnsemble methods in machine learning
Ensemble methods in machine learning
SANTHOSH RAJA M G
 
Ensemble learning
Ensemble learningEnsemble learning
Ensemble learning
Haris Jamil
 
Binary Class and Multi Class Strategies for Machine Learning
Binary Class and Multi Class Strategies for Machine LearningBinary Class and Multi Class Strategies for Machine Learning
Binary Class and Multi Class Strategies for Machine Learning
Paxcel Technologies
 
Code generation
Code generationCode generation
Code generation
Aparna Nayak
 
Uncertainty in AI
Uncertainty in AIUncertainty in AI
Uncertainty in AI
Amruth Veerabhadraiah
 
Machine Learning With Logistic Regression
Machine Learning  With Logistic RegressionMachine Learning  With Logistic Regression
Machine Learning With Logistic Regression
Knoldus Inc.
 
Support vector machines (svm)
Support vector machines (svm)Support vector machines (svm)
Support vector machines (svm)
Sharayu Patil
 

What's hot (20)

Genetic algorithm
Genetic algorithmGenetic algorithm
Genetic algorithm
 
Distributed Arbitration
Distributed ArbitrationDistributed Arbitration
Distributed Arbitration
 
Knowledge representation In Artificial Intelligence
Knowledge representation In Artificial IntelligenceKnowledge representation In Artificial Intelligence
Knowledge representation In Artificial Intelligence
 
XgBoost.pptx
XgBoost.pptxXgBoost.pptx
XgBoost.pptx
 
Mycin presentation
Mycin presentationMycin presentation
Mycin presentation
 
Firefly algorithm
Firefly algorithmFirefly algorithm
Firefly algorithm
 
Naive Bayes
Naive BayesNaive Bayes
Naive Bayes
 
Introduction to Genetic Algorithms
Introduction to Genetic AlgorithmsIntroduction to Genetic Algorithms
Introduction to Genetic Algorithms
 
Concept learning
Concept learningConcept learning
Concept learning
 
Genetic Algorithms - Artificial Intelligence
Genetic Algorithms - Artificial IntelligenceGenetic Algorithms - Artificial Intelligence
Genetic Algorithms - Artificial Intelligence
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
 
Decision tree in artificial intelligence
Decision tree in artificial intelligenceDecision tree in artificial intelligence
Decision tree in artificial intelligence
 
Feedforward neural network
Feedforward neural networkFeedforward neural network
Feedforward neural network
 
Ensemble methods in machine learning
Ensemble methods in machine learningEnsemble methods in machine learning
Ensemble methods in machine learning
 
Ensemble learning
Ensemble learningEnsemble learning
Ensemble learning
 
Binary Class and Multi Class Strategies for Machine Learning
Binary Class and Multi Class Strategies for Machine LearningBinary Class and Multi Class Strategies for Machine Learning
Binary Class and Multi Class Strategies for Machine Learning
 
Code generation
Code generationCode generation
Code generation
 
Uncertainty in AI
Uncertainty in AIUncertainty in AI
Uncertainty in AI
 
Machine Learning With Logistic Regression
Machine Learning  With Logistic RegressionMachine Learning  With Logistic Regression
Machine Learning With Logistic Regression
 
Support vector machines (svm)
Support vector machines (svm)Support vector machines (svm)
Support vector machines (svm)
 

Similar to Machine learning important questions

Mb0048 operations research (1)
Mb0048 operations research (1)Mb0048 operations research (1)
Mb0048 operations research (1)
smumbahelp
 
Mb0048 operations research (1)
Mb0048 operations research (1)Mb0048 operations research (1)
Mb0048 operations research (1)
smumbahelp
 
Mb0048 operations research (1)
Mb0048 operations research (1)Mb0048 operations research (1)
Mb0048 operations research (1)
smumbahelp
 
1 P a g e ME 350 Project 2 Posted February 26.docx
1  P a g e   ME 350 Project 2  Posted February 26.docx1  P a g e   ME 350 Project 2  Posted February 26.docx
1 P a g e ME 350 Project 2 Posted February 26.docx
oswald1horne84988
 
Automatic Differentiation and SciML in Reality: What can go wrong, and what t...
Automatic Differentiation and SciML in Reality: What can go wrong, and what t...Automatic Differentiation and SciML in Reality: What can go wrong, and what t...
Automatic Differentiation and SciML in Reality: What can go wrong, and what t...
Chris Rackauckas
 
Om0010 operations management docx
Om0010 operations management docxOm0010 operations management docx
Om0010 operations management docx
smumbahelp
 
Dummy variables
Dummy variablesDummy variables
Dummy variables
Irfan Hussain
 
Mb0048 operations research
Mb0048  operations researchMb0048  operations research
Mb0048 operations research
smumbahelp
 
Mb0048 operations research
Mb0048  operations researchMb0048  operations research
Mb0048 operations research
smumbahelp
 
Mba205 & operations research
Mba205 & operations researchMba205 & operations research
Mba205 & operations research
smumbahelp
 
Mb0048 operations research winter 2014
Mb0048 operations research winter 2014Mb0048 operations research winter 2014
Mb0048 operations research winter 2014
Mba Assignments
 
Mb0050 research methodology
Mb0050   research methodologyMb0050   research methodology
Mb0050 research methodologysmumbahelp
 
352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc
Firas Husseini
 
352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc
BookStoreLib
 
Query Linguistic Intent Detection
Query Linguistic Intent DetectionQuery Linguistic Intent Detection
Query Linguistic Intent Detectionbutest
 
Mb0048 operations research
Mb0048  operations researchMb0048  operations research
Mb0048 operations research
smumbahelp
 
Presentation on Machine Learning and Data Mining
Presentation on Machine Learning and Data MiningPresentation on Machine Learning and Data Mining
Presentation on Machine Learning and Data Miningbutest
 
MachineLearning.ppt
MachineLearning.pptMachineLearning.ppt
MachineLearning.pptbutest
 
MachineLearning.ppt
MachineLearning.pptMachineLearning.ppt
MachineLearning.pptbutest
 
MachineLearning.ppt
MachineLearning.pptMachineLearning.ppt
MachineLearning.pptbutest
 

Similar to Machine learning important questions (20)

Mb0048 operations research (1)
Mb0048 operations research (1)Mb0048 operations research (1)
Mb0048 operations research (1)
 
Mb0048 operations research (1)
Mb0048 operations research (1)Mb0048 operations research (1)
Mb0048 operations research (1)
 
Mb0048 operations research (1)
Mb0048 operations research (1)Mb0048 operations research (1)
Mb0048 operations research (1)
 
1 P a g e ME 350 Project 2 Posted February 26.docx
1  P a g e   ME 350 Project 2  Posted February 26.docx1  P a g e   ME 350 Project 2  Posted February 26.docx
1 P a g e ME 350 Project 2 Posted February 26.docx
 
Automatic Differentiation and SciML in Reality: What can go wrong, and what t...
Automatic Differentiation and SciML in Reality: What can go wrong, and what t...Automatic Differentiation and SciML in Reality: What can go wrong, and what t...
Automatic Differentiation and SciML in Reality: What can go wrong, and what t...
 
Om0010 operations management docx
Om0010 operations management docxOm0010 operations management docx
Om0010 operations management docx
 
Dummy variables
Dummy variablesDummy variables
Dummy variables
 
Mb0048 operations research
Mb0048  operations researchMb0048  operations research
Mb0048 operations research
 
Mb0048 operations research
Mb0048  operations researchMb0048  operations research
Mb0048 operations research
 
Mba205 & operations research
Mba205 & operations researchMba205 & operations research
Mba205 & operations research
 
Mb0048 operations research winter 2014
Mb0048 operations research winter 2014Mb0048 operations research winter 2014
Mb0048 operations research winter 2014
 
Mb0050 research methodology
Mb0050   research methodologyMb0050   research methodology
Mb0050 research methodology
 
352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc
 
352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc352735347 rsh-qam11-tif-14-doc
352735347 rsh-qam11-tif-14-doc
 
Query Linguistic Intent Detection
Query Linguistic Intent DetectionQuery Linguistic Intent Detection
Query Linguistic Intent Detection
 
Mb0048 operations research
Mb0048  operations researchMb0048  operations research
Mb0048 operations research
 
Presentation on Machine Learning and Data Mining
Presentation on Machine Learning and Data MiningPresentation on Machine Learning and Data Mining
Presentation on Machine Learning and Data Mining
 
MachineLearning.ppt
MachineLearning.pptMachineLearning.ppt
MachineLearning.ppt
 
MachineLearning.ppt
MachineLearning.pptMachineLearning.ppt
MachineLearning.ppt
 
MachineLearning.ppt
MachineLearning.pptMachineLearning.ppt
MachineLearning.ppt
 

Recently uploaded

06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
Timothy Spann
 
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
2023240532
 
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Subhajit Sahu
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
ewymefz
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
rwarrenll
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
javier ramirez
 
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
NABLAS株式会社
 
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
Timothy Spann
 
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
AbhimanyuSinha9
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
u86oixdj
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
ewymefz
 
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
axoqas
 
Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
Subhajit Sahu
 
Machine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptxMachine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptx
balafet
 
Everything you wanted to know about LIHTC
Everything you wanted to know about LIHTCEverything you wanted to know about LIHTC
Everything you wanted to know about LIHTC
Roger Valdez
 
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
dwreak4tg
 
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptxData_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
AnirbanRoy608946
 
Adjusting OpenMP PageRank : SHORT REPORT / NOTES
Adjusting OpenMP PageRank : SHORT REPORT / NOTESAdjusting OpenMP PageRank : SHORT REPORT / NOTES
Adjusting OpenMP PageRank : SHORT REPORT / NOTES
Subhajit Sahu
 
The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...
jerlynmaetalle
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
oz8q3jxlp
 

Recently uploaded (20)

06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
 
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
Quantitative Data AnalysisReliability Analysis (Cronbach Alpha) Common Method...
 
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
 
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
 
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
 
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
 
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
 
Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
 
Machine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptxMachine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptx
 
Everything you wanted to know about LIHTC
Everything you wanted to know about LIHTCEverything you wanted to know about LIHTC
Everything you wanted to know about LIHTC
 
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
 
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptxData_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
Data_and_Analytics_Essentials_Architect_an_Analytics_Platform.pptx
 
Adjusting OpenMP PageRank : SHORT REPORT / NOTES
Adjusting OpenMP PageRank : SHORT REPORT / NOTESAdjusting OpenMP PageRank : SHORT REPORT / NOTES
Adjusting OpenMP PageRank : SHORT REPORT / NOTES
 
The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
 

Machine learning important questions

  • 1. Machine Learning 1 MODULE 1 – INTRODUCTION AND CONCEPT LEARNING Note : Highlighted questions are important in Module -1 1. Define Machine Learning. Explain with examples why machine learning is important. 2. Discuss some applications of machine learning with examples. 3. Describe the following problems with respect to Tasks, Performance and Experience: a. A Checkers learning problem b. A Handwritten recognition learning problem c. A Robot driving learning problem 4. Explain the steps in designing a learning systems in detail. 5. Explain different perspective and issues in machine learning. 6. Define concept learning and discuss with example. 7. Explain the General-to-Specific Ordering of Hypotheses 8. Write FIND-S algorithm and explain with example given below Example Sky AirTemp Humidity Wind Water Forecast EnjoySport 1 Sunny Warm Normal Strong Warm Same Yes 2 Sunny Warm High Strong Warm Same Yes 3 Rainy Cold High Strong Warm Change No 4 Sunny Warm High Strong Cool Change Yes 9. What are the key properties and complaints of FIND-S algorithm? 10. Define Consistent Hypothesis and Version Space. 11. Write LIST-THEN-ELIMINATE algorithm. 12. Write the candidate elimination algorithm and illustrate with example 13. Write the final version space for the below mentioned training examples using candidate elimination algorithm.
  • 2. Machine Learning 2 Example – 1: Origin Manufacturer Color Decade Type Example Type Japan Honda Blue 1980 Economy Positive Japan Toyota Green 1970 Sports Negative Japan Toyota Blue 1990 Economy Positive USA Chrysler Red 1980 Economy Negative Japan Honda White 1980 Economy Positive Japan Toyota Green 1980 Economy Positive Japan Honda Red 1990 Economy Negative Example – 2: Size Color Shape Class Big Red Circle No Small Red Triangle No Small Red Circle Yes Big Blue Circle No Small Blue Circle Yes 14. Explain in detail the Inductive Bias of Candidate Elimination algorithm. MODULE 2 – DECISION TREE LEARNING Note : Highlighted questions are important in Module -2 1. What is decision tree and decision tree learning? 2. Explain representation of decision tree with example. 3. What are appropriate problems for Decision tree learning? 4. Explain the concepts of Entropy and Information gain. 5. Describe the ID3 algorithm for decision tree learning with example 6. Give Decision trees to represent the Boolean Functions: a) A && ~ B b) A V [B && C] c) A XOR B d) [A&&B] V [C&&D]
  • 3. Machine Learning 3 7. Give Decision trees for the following set of training examples Day Outlook Temperature Humidity Wind PlayTennis D1 Sunny Hot High Weak No D2 Sunny Hot High Strong No D3 Overcast Hot High Weak Yes D4 Rain Mild High Weak Yes D5 Rain Cool Normal Weak Yes D6 Rain Cool Normal Strong No D7 Overcast Cool Normal Strong Yes D8 Sunny Mild High Weak No D9 Sunny Cool Normal Weak Yes D10 Rain Mild Normal Weak Yes D11 Sunny Mild Normal Strong Yes D12 Overcast Mild High Strong Yes D13 Overcast Hot Normal Weak Yes D14 Rain Mild High Strong No 8. Consider the following set of training examples. a) What is the entropy of this collectionof training example with respect to the target function classification? b) What is the information gain of a2 relative to these training examples? Instance Classification a1 a2 1 + T T 2 + T T 3 - T F 4 + F F 5 - F T 6 - F T 9. Identify the entropy, information gain and draw the decision trees for the following set of training examples Gender Car ownership Travel cost Income Level Transportation (Class)
  • 4. Machine Learning 4 Male 0 Cheap Low Bus Male 1 Cheap Medium Bus Female 1 Cheap Medium Train Female 0 Cheap Low Bus Male 1 Cheap Medium Bus Male 0 Standard Medium Train Female 1 Standard Medium Train Female 1 Expensive High Car Male 2 Expensive Medium Car Female 2 Expensive High Car 10. Discuss Hypothesis Space Search in Decision tree Learning. 11. What are Restriction Biases and Preference Biases and differentiate between them. 12. What are issues in learning decision trees MODULE 3 – ARTIFICIAL NEURAL NETWORKS Note : Highlighted questions are important in Module -3 1.What is Artificial Neural Network? 2.Explain appropriate problem for Neural Network Learning with its characteristics. 3.Explain the concept of a Perceptronwith a neat diagram. 4.Explain the single perceptron with its learning algorithm. 5.How a single perceptron can be used to represent the Boolean functions such as AND, OR 6.Design a two-input perceptron that implements the boolean function A Λ ¬ B. Design a two-layer network of perceptron’s that implements A XOR B. 7.Consider two perceptrons defined by the threshold expression w0 + wlxl+ w2x2 > 0. PerceptronA has weight values w0 = 1, w1=2, w2=1 and perceptron B has the weight values w0 = 0, w1=2, w2=1 True or false? PerceptronA is more-general than perceptron B. 8.Write a note on (i) Perceptron Training Rule (ii) Gradient Descent and Delta Rule 9.Write Gradient Descent algorithm for training a linear unit. 10. Derive the Gradient Descent Rule
  • 5. Machine Learning 5 11. Write Stochastic Gradient Descent algorithm for training a linear unit. 12. Differentiate between Gradient Descent and Stochastic Gradient Descent 13. Write Stochastic Gradient Descent version of the Back Propagation algorithm for feedforward networks containing two layers of sigmoid units. 14. Derive the Back Propagation Rule 15. Explain the followings w.r.t Back Propagation algorithm  Convergence and Local Minima  Representational Power of Feedforward Networks  Hypothesis Space Search and Inductive Bias  Hidden Layer Representations  Generalization, Overfitting, and Stopping Criterion MODULE 4 –BAYESIAN LEARNING Note : Highlighted questions are important in Module -4 1. Define Bayesian theorem? What is the relevance and features of Bayesian theorem? Explain the practical difficulties of Bayesian theorem. 2. Define is Maximum a Posteriori(MAP) Maximum Likelihood (ML) Hypothesis. Derive the relation for hMAP and hML using Bayesian theorem. 3. Consider a medical diagnosis problem in which there are two alternative hypotheses: 1. that the patient has a particular form of cancer (+) and 2. That the patient does not (-). A patient takes a lab test and the result comes back positive. The test returns a correct positive result in only 98% of the cases in which the disease is actually present, and a correct negative result in only 97% of the cases in which the disease is not present. Furthermore, .008 of the entire population have this cancer. Determine whether the patient has Cancer or not using MAP hypothesis. 4. Explain Brute force Bayes Concept Learning 5. What are Consistent Learners? 6. Discuss Maximum Likelihood and Least Square Error Hypothesis 7. Describe Maximum Likelihood Hypothesis for predicting probabilities. 8. Explain the Gradient Search to Maximize Likelihood in a Neural Net 9. Describe the concept of MDL. Obtain the equation for hMDL 10. Explain Naïve Bayes Classifier with an Example First and last are important
  • 6. Machine Learning 6 11. What are Bayesian Belief nets? Where are they used? 12. Explain Bayesian belief network and conditional independence with example 13. Explain Gradient Ascent Training of Bayesian Networks 14. Explain the concept of EM Algorithm. Discuss what are Gaussian Mixtures MODULE 5 – EVALUATING HYPOTHESIS, INSTANCE BASED LEARNING, REINFORCEMENT LEARNING Note : Highlighted questions are important in Module -5 1. Explain the two key difficulties that arise while estimating the Accuracy of Hypothesis. 2. Define the following terms a. Sample error b. True error c. Random Variable d. Expected value e. Variance f. standard Deviation 3. Explain Binomial Distribution with an example. 4. Explain Normal or Gaussian distribution with an example. 5. Suppose hypothesis h commits r = 10 errors over a sample of n = 65 independently drawn examples.  What is the variance and standard deviation for number of true error rate errorD(h)?  What is the 90% confidence interval (two-sided) for the true error rate?  What is the 95% one-sided interval (i.e., what is the upper bound U such that errorD(h) ≤5 U with 95% confidence)?  What is the 90% one-sided interval? 6. What are instance based learning? Explain key features and disadvantages of these methods.
  • 7. Machine Learning 7 7. Explain the K – nearest neighbour algorithm for approximating a discrete – valued function with pseudo code 8. Describe K-nearest Neighbour learning Algorithm for continues (real) valued target function. 9. Discuss the major drawbacks of K-nearest Neighbour learning Algorithm and how it can be corrected 10. Define the following terms with respect to K - Nearest Neighbour Learning : i) Regression ii) Residual iii) Kernel Function. 11. Explain Locally Weighted Linear Regression. 12. Explain radial basis function 13. Explain CADET System using Case based reasoning. 14. What is Reinforcement Learning and explain Reinforcement learning problem with neat diagram. 15. Write Reinforcement learning problem characteristics. 16. Explain the Q function and Q Learning Algorithm assuming deterministic rewards and actions with example. *************************** Important Note: Study all the 3 internal (I,II,III) questions, Assignment questionsand Problems from Module-1,Module-2and Module-4.