Q. Suppose you are building a SVM model on data X. The data X can be error prone which means that you should not trust any specific data point too much. Now think that you want to build a SVM model which has quadratic kernel function of polynomial degree 2 that uses Slack variable C as one of it’s hyper parameter.What would happen when you use very large value of C(C->infinity)?

  • (A) We can still classify data correctly for given setting of hyper parameter C
  • (B) We can not classify data correctly for given setting of hyper parameter C
  • (C) Can’t Say
  • (D) None of these
πŸ’¬ Discuss
βœ… Correct Answer: (A) We can still classify data correctly for given setting of hyper parameter C

Q. ______is the most drastic one and should be considered only when the dataset is quite large, the number of missing features is high, and any prediction could be risky.

  • (A) Removing the whole line
  • (B) Creating sub-model to predict those features
  • (C) Using an automatic strategy to input them according to the other known values
  • (D) All above
πŸ’¬ Discuss
βœ… Correct Answer: (A) Removing the whole line

Q. It's possible to specify if the scaling process must include both mean and standard deviation using the parameters________.

  • (A) with_mean=True/False
  • (B) with_std=True/False
  • (C) Both A & B
  • (D) None of the Mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (C) Both A & B

Q. Function used for linear regression in R is __________

  • (A) lm(formula, data)
  • (B) lr(formula, data)
  • (C) lrm(formula, data)
  • (D) regression.linear(formula, data)
πŸ’¬ Discuss
βœ… Correct Answer: (A) lm(formula, data)

Q. In the mathematical Equation of Linear Regression Y = β1 + β2X + Ο΅, (β1, β2) refers to __________

  • (A) (X-intercept, Slope)
  • (B) (Slope, X-Intercept)
  • (C) (Y-Intercept, Slope)
  • (D) (slope, Y-Intercept)
πŸ’¬ Discuss
βœ… Correct Answer: (C) (Y-Intercept, Slope)

Q. ______can be adopted when it's necessary to categorize a large amount of data with a few complete examples or when there's the need to impose some constraints to a clustering algorithm.

  • (A) Supervised
  • (B) Semi-supervised
  • (C) Reinforcement
  • (D) Clusters
πŸ’¬ Discuss
βœ… Correct Answer: (B) Semi-supervised

Q. In the last decade, many researchers started training bigger and bigger models, built with several different layers that's why this approach is called_____.

  • (A) Deep learning
  • (B) Machine learning
  • (C) Reinforcement learning
  • (D) Unsupervised learning
πŸ’¬ Discuss
βœ… Correct Answer: (A) Deep learning

Q. there's a growing interest in pattern recognition and associative memories whose structure and functioning are similar to what happens in the neocortex. Such an approach also allows simpler algorithms called _____

  • (A) Regression
  • (B) Accuracy
  • (C) Modelfree
  • (D) Scalable
πŸ’¬ Discuss
βœ… Correct Answer: (C) Modelfree

Q. It's possible to specify if the scaling process must include both mean and standard deviation using the parameters________.

  • (A) with_mean=True/False
  • (B) with_std=True/False
  • (C) Both A & B
  • (D) None of the Mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (C) Both A & B

Q. Which of the following scale data by removing elements that don't belong to a given range or by considering a maximum absolute value.

  • (A) MinMaxScaler
  • (B) MaxAbsScaler
  • (C) Both A & B
  • (D) None of the Mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (C) Both A & B

Jump to