I'd want to find synonyms for short sentences. I'm not sure how I'm going to accomplish it.
My wordnet python code looks 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 using SimpleNLG but its not helping my case.