Day 6 of 100 Data Science Interview Questions Series!!
Day 6 of 100 Data Science Interview Questions Series!!
Please view this article which has explained this concept better than I
ever could!
https://medium.com/fintechexplained/what-are-eigenvalues-and-eigenvecto
rs-a-must-know-concept-for-machine-learning-80d0fd330e47
Q 27.) What is lemmatization and Stemming, Which one should I use in Sentimental
Analysis, and which one should I use in QnA bot?
They are used as Text Normalization techniques in NLP for
preprocessing text.
Stemming is the process of reducing inflection in words to their root
forms such as mapping a group of words to the same stem even if the
stem itself is not a valid word in the Language."
Q 28.) What are some common Recommendation System Types, where can I use them?
Normally, as you increase the complexity of your model, you will see a
reduction in error due to lower bias in the model. However, this only
happens till a particular point. As you continue to make your model
more complex, you end up over-fitting your model and hence your model
will start suffering from high variance. Increasing the bias will
decrease the variance. Increasing the variance will decrease the bias.
This is Bias-Variance Trade-Off.
- Alaap Dhall