Reputation: 161
I have a large corpus of text (about 3 GB of plain text).
I want to build a search function.
When the user enters a keyword, I want to display a list of other keywords that are closely related.
For this, I don't want to use any generic synonym dictionary. Instead, I want a function to...
Any ideas for approaches, libraries or examples here? I'm also open for suggestions for a better way of doing this.
Upvotes: 2
Views: 1577
Reputation: 11424
You can use for example Gensim library to do it in Python.
Upvotes: 1