Login
Remember
Register
Ask a Question
Which of the following techniques can be used for keyword normalization in NLP, the process of converting a keyword into its base form?
0
votes
asked
Sep 8, 2022
in
NLP using Python
by
Robin
Which of the following techniques can be used for keyword normalization in NLP, the process of converting a keyword into its base form?
a. Lemmatization
b. Soundex
c. Cosine Similarity
d. N-grams
nlp
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 8, 2022
by
Robin
a) Lemmatization helps to get to the base form of a word, e.g. are playing -> play, eating
-> eat, etc.Other options are meant for different purposes.
...