i wish to get synonyms for small sentences.. How can i do that?
My python code using wordnet is like this:
from nltk.corpus import wordnet as wn
print(wn.synsets('work'))
Then i will get some synonyms returned like this:
employment, work, exercise etc...
But can i get the synonyms for some small sentences like "not working", "not feeling well"
Example i am expecting synonym for "not working" as-- faulty, not functioning etc.. Is there any libraries available to do that? I have tried SimpleNLG. However its not supporting my case.