What are the algorithms which could be sued to match sentences?

613 Views Asked by At

Let's say we have a list of 50 sentences and we have an input sentence. How can i choose the closest sentence to the input sentence from the list?

I have tried many methods/algorithms such as averaging word2vec vector representations of each token of the sentence and then cosine similarity of result vectors.

For example I want the algorithm to give a high similarity score between "what is the definition of book?" and "please define book".

I am looking for a method (probably a combinations of methods) which 1. looks for semantics 2. looks for syntax 3. gives different weights for different tokens with different role (e.g. in the first example 'what' and 'is' should get lower weights)

I know this might be a bit general but any suggestion is appreciated.

Thanks,

Amir

2

There are 2 best solutions below

0
On

before counting a distance between sentences, you need to clean them,

For that:

  1. A Lemmatization of your words is needed to get the root of each word, so your sentence "what is the definition of book" woul be "what be the definition of bood"

  2. You need to delete all preposition, verb to be and all Word without meaning, like : "what be the definition of bood" would be "definintion book"

  3. And then you transform you sentences into vectors of number by using tf-idf method or wordToVec.

  4. Finnaly you can count the distance between your sentences by using cosine between the vectors, so if the cosine is small so the your two sentences are similar.

Hop that will help

0
On

Your sentences are too sparse to compare the two documents directly. Aggressive morphological transformations (such as stemming, lemmatization, etc) might help some, but will probably fall short given your examples.

What you could do is compare the 'search results' of the 2 sentences in a large document collection with a number of methods. According to the distributional hypothesis similar sentences should occur in similar context (see Distributional hypothesis, but also Rocchio's algorithm, co-occurrence and word2vec). Those context (when gathered in a smart way) could be large enough to do some comparison (such as cosine similarity).