Font size
WorksheetsKuis 1: Machine Learning for IoT- 4 TRK
Total questions: 15
Worksheet time: 8mins
What is Machine Learning? (Choose 3 Answers)
Artificial Intelligence
Machine Learning
Data Statistics
Deep Learning
Which of the following is not type of learning?
Semi-unsupervised Learning
Unsupervised Learning
Supervised Learning
Reinforcement Learning
Machine Learning has various function representation, which of the following is not function of symbolic?
Decision Trees
Rules in propotional Logic
Hidden-Markov Models (HMM)
Rules in first-order predicate logic
Machine Learning has various function representation, which of the following is not numerical functions?
Linear Regression
Support Vector Machines
Neural Network
Case-based
Decision trees are an algorithm for which machine learning task?
Clustering
Classification
Classification and Regression
Dimensionality reduction
Regression
Which of the following is true:
Deeper trees will always improve performance on the training data
Deeper trees will always improve performance when testing the model on unseen data
If a deeper tree improves performance on the training data, then it will also improve performance on new unseen data
Which system requires more entropy to be described?
Tossing a fair coin
Tossing a biased coin
What is a Decision Tree?
Flow-Chart
Structure in which internal node represents test on an attribute, each branch represents outcome of test and each leaf node represents class label
Flow-Chart & Structure in which internal node represents test on a feature, each branch represents outcome of test and each leaf node represents class label
None of the mentioned
Decision Trees can be used for regression Tasks
True
False
Usage of Random Forest
Running efficiently on large data bases.
Insert the vector down on each of the trees in the forest.
grows many classification trees
chooses the classification having the most votes over all the trees
KNeighborsClassifier class can be imported as:
from sklearn.ensemble import KNeighborsClassifier
from sklearn.neighbors import KNeighborsClassifier
from sklearn.tree import KNeighborsClassifier
from sklearn import KNeighborsClassifier
Which of the following is TRUE about Reinforcement Learning?
It uses rewards and penalty methods to train a model
It is also known as a semi - supervised learning model
Chess playing computer is a good example of reinforcement learning
All of the above
Which of the following is FALSE about Tuples in Python?
Tuples are immutable
Tuple items can be deleted using del keyword
Tuples can be declared as: x,y=1,2
None of the above
Which of the following is TRUE about Random Forest?
Random Forest aims to decrease both variance and bias
Random Forest aims to decrease variance not bias
Random Forest aims to decrease bias not variance
None of the above
'Convert to CSV' module is a part of which section?
Data Input and Output
Data Transformation
Model Training
None of the above
