Using Machine translation, can I obtain a very compressed version of a sentence, eg. I would really like to have a delicious tasty cup of coffee would be translated to I want coffee Does any of the NLP engines provide such a functionality?

I got a few research papers that does paraphase generation and sentence compression. But is there any library which has already implemented this?

link|improve this question

73% accept rate
2  
I don't know of a tool that does this, but parsing followed by removal of adverbs in adjectival phrases and some other constructs might give you a decent baseline. – larsmans Oct 22 '11 at 14:59
1  
You can remove adjectives/adverbs, but what you indicate in the above example is compressing verb forms, ie 'would really like to have' -> 'want'. Also, 'tasty cup of coffee' to 'coffee'? There are lots of situations where you want to get the root noun, say 'car dealership of the town'. I don't know of a tool to do this. – nflacco Oct 23 '11 at 6:12
I would post on metaoptimize.com/qa/ , too. You can try to contact James Clarke at jamesclarke.net . – cyborg Oct 23 '11 at 8:12
I can't help thinking of the Suntory ad in Lost in Translation: "Turn to the camera...with intensity." youtube.com/watch?v=FiQnH450hPM – Iterator Feb 14 at 4:04
feedback

1 Answer

If your intention is to make your sentences brief without losing important idea from that sentences then you can do that by just extracting triplet subject-predicate-object.

Talking about tools/engine, I recommend you to use Stanford NLP. Its dependency parser output already provides subject and object(if any). But you still need to do some tuning to get desired result.

You can download Stanford NLP and learn sample usage here

I found paper related to your question. Have a look at Text Simplification using Typed Dependencies: A Comparison of the Robustness of Different Generation Strategie

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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