I was going through this plagiarism detector and trying to write a program in Haskell which will read a file and replace some of its words with synonyms. Is there any dictionary available for this purpose in Haskell?

Also, if you have any input regarding algorithm or any other input relevant for this problem, like how to avoid changing the context of a statement by replacing a word by its synonyms, then please post it.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

is there any dictionary available for this purpose in Haskell?

I would imagine that what you are looking for is a plain text file, something like this:

word1: word1synonym1, word1synonym2, ...
word2: word2synonym1, ...
...

In which case it wouldn't really be Haskell-specific. I'm unaware of any free text-file thesauruses like this, though I imagine if you dig around LibreOffice you would probably find one.

how to avoid changing the context of a statement by replacing a word by its synonyms

This is very hard for a computer to do, afaik. I would suggest not expending much effort working on this aspect of it.

any input regarding algorithm

You may find the concept of edit distance useful for this problem. See Approximate string matching and Wagner-Fischer algorithm.

link|improve this answer
2  
Actually, there is a library for exactly this: wordnet.princeton.edu – Vlad the Impala Oct 3 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.