I would like to ask about a way to create a dictionary or classify (both solutions are good for me) similar words into the same word.
For giving you a example, let's say we have in a list the following values:
['table','tabla', 'tablon','tablera','tablet']
The words tabla, tablon and tablera are just table but in other languages, so I would like to automatically create a dictionary that would classify this words to the english word 'table', of course tablet shoud be excluded (i write it down in the list since it was too similar to the words I was analyzing)
I was thinking about a NLP word embbeding approachment, but my knowledge in the field is too shallow, I don´t know if there are better ways to do this.
Any solutions is welcomed!!
Thanks a lot in advance