3 Marks Questions
3 Marks Questions
3. Imagine you are working with analytics vidya and you want to develop
a machine learning algorithm which predict no. of views on the article.
Your analysis is based on teachers name, author name, no. of articles
written by same author on the analytics vidya platform in past etc.
Which of the following evalution matrix would you choose in that case ?
Answer : Min square error
4. Lets say that you are using action funX in hidden layer of neural
network at a particular neuron for given input you get the output -0.001.
Which of the following activation function should X represent.
Answer : fun 8
5. Which of the following are one of the important step to preprocess the
text in NLP based project.
A. scemming
B. topward removal
C. object standardization
D. All of these
10. When you find noise in data, which of the following option will you
considered in KNN ?
Answer : I will increase the value of k.
11. Suppose you want to predict the class of the data point, x=1 and y=1
using eucleadian distance in 3NN in which class these data points
belongs to ?
Answer : positive (+) class
12. Which of the following will be eucleadian distance between the two
data points A(1,3) and (2,3)
Answer : 1
13. Suppose you are working on a binary classification problems with
three input features and you choose to apply a bagging algorithm X. On
this data, you choose max_features = 2 and the n_estimators = 3, assume
that each estimation has 70% accuracy. Note that algorithm X is
aggregating the result of individual estimates based on maximum voting.
What will be the maximum accuracy you can get ?
Answer : 100%
15. Which of the following is true about training and testing error in the
case described below. Suppose you want to apply Adaboost algorithm on
data D which has 'T' observation. You have set half of the data for
training and half for testing initially. Now you want to increase the no. of
data points for training. T1, T2, ------- Tn where T1 > T2 < T3 < ---- < Tn
Answer : the difference between training error and testing error decreases
as the no. of observation increases.