My use case is to vectorize words in two lists like below.
ListA = [Japan, Electronics, Manufacturing, Science]
ListB = [China, Electronics, AI, Software, Science]
I understand that word2vec
and Glove
can vectorize words but they do that through corpus or bag of words i.e we have to pass sentences which gets broken down to tokens and then it is vectorized.
Is there a way to just vectorize words in a list?
PS. I am new to NLP side of things, hence pardon any obvious points stated.