InterviewSolution
Saved Bookmarks
| 1. |
What is the significance of converting the text into a common case? |
|
Answer» In Text Normalization, we undergo several steps to normalize the text to a lower level. After the removal of stop words, we convert the whole text into a similar case, preferably lower case. This ensures that the case-sensitivity of the machine does not consider same words as different just because of different cases. |
|