Ask HN: Information extraction software?
I'm looking for information extraction software that I can feed in historical legal agreements and it will report:
1. Changes in the text between the documents
2. Changes in other attributes of the documents (e.g., word count)
3. % change over time in the text and attributes (e.g., text in the 1986 version of the doc is 56% different than the text in the 1985 version of the doc)
Can anyone please point me to software that might fit this particular need?
Thanks in advance! Michael
4 comments
[ 3.6 ms ] story [ 26.4 ms ] threadThen for:
1. diff/diff viewers like xxdiff(the name may have changed somewhat recently)/git
2. wc
3. diff with some scripts to automatically process the documents, count the number of words in the documents, and write to a csv file
Those are not ready-made software products, though but rather frameworks that allow you to implement IE algorithms. While not exactly trivial, implementing something like what you're suggesting is definitely possible with GATE.