Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rewriting sentences while retaining semantic meaning

Is it possible to use WordNet to rewrite a sentence so that the semantic meaning of the sentence still ways the same (or mostly the same)?

Let's say I have this sentence:

Obama met with Putin last week.
  1. Is it possible to use WordNet to rephrase the sentence into alternatives like:

    Obama and Putin met the previous week.
    Obama and Putin met each other a week ago.
    
  2. If changing the sentence structure is not possible, can WordNet be used to replace only the relevant synonyms?

    For example:

    Obama met Putin the previous week.
    
like image 487
user3188544 Avatar asked Apr 06 '14 17:04

user3188544


People also ask

What is rewriting sentence?

Rewriting sentences is the process of improving a sentence by making it clearer, more concise, or more effective.

How do you change the text words keeping the meaning same?

Paraphrase is one of three ways of using another writer's work in your own writing, the other two being quotation and summary. The aim of paraphrasing is to change the words in the original text, while keeping the same meaning.

How do you reword a sentence?

To reword a sentence, replace words with synonyms, change the sentence structure, or expand one sentence into two. You can condense phrases and ideas to make longer sentences shorter.


1 Answers

If the question is the possibility to use WordNet to do sentence paraphrases. It is possible with much grammatical/syntax components. You would need system that:

  • First get the individual semantics of the tokens and parse the sentence for its syntax.
  • Then understand the overall semantics of the composite sentence (especially if it's metaphorical)
  • Then rehash the sentence with some grammatical generator.

Up till now I only know of ACE parser/generator that can do something like that but it takes a LOT of hacking the system to make it work as a paraphrase generator. http://sweaglesw.org/linguistics/ace/

So to answer your questions,

Is it possible to use WordNet to rephrase the sentence into alternatives? Sadly, WordNet isn't a silverbullet. You will need more than semantics for a paraphrase task.

If changing the sentence structure is not possible, can WordNet be used to replace only the relevant synonyms? Yes this is possible. BUT to figure out which synonym is replace-able is hard... And you would also need some morphology/syntax component.

First you will run into a problem of multiple senses per word:

from nltk.corpus import wordnet as wn
sent = "Obama met Putin the previous week"

for i in sent.split():
    possible_senses = wn.synsets(i)
    print i, len(possible_senses), possible_senses

[out]:

Obama 0 []
met 13 [Synset('meet.v.01'), Synset('meet.v.02'), Synset('converge.v.01'), Synset('meet.v.04'), Synset('meet.v.05'), Synset('meet.v.06'), Synset('meet.v.07'), Synset('meet.v.08'), Synset('meet.v.09'), Synset('meet.v.10'), Synset('meet.v.11'), Synset('suffer.v.10'), Synset('touch.v.05')]
Putin 1 [Synset('putin.n.01')]
the 0 []
previous 3 [Synset('previous.s.01'), Synset('former.s.03'), Synset('previous.s.03')]
week 3 [Synset('week.n.01'), Synset('workweek.n.01'), Synset('week.n.03')]

Then even if you know the sense (let's say the first sense), you get multiple words per sense and not every word can be replaced in the sentence. Moreover, they are in the lemma form not a surface form (e.g. verbs are in their base form (simple present tense) and nouns are in singular):

from nltk.corpus import wordnet as wn
sent = "Obama met Putin the previous week"

for i in sent.split():
    possible_senses = wn.synsets(i)
    if possible_senses:
        print i, possible_senses[0].lemma_names
    else:
        print i

[out]:

Obama
met ['meet', 'run_into', 'encounter', 'run_across', 'come_across', 'see']
Putin ['Putin', 'Vladimir_Putin', 'Vladimir_Vladimirovich_Putin']
the
previous ['previous', 'old']
week ['week', 'hebdomad']
like image 188
alvas Avatar answered Nov 05 '22 08:11

alvas