I have the following PHP function to calculate the relation between to texts:

function check($terms_in_article1, $terms_in_article2) {
    $length1 = count($terms_in_article1); // number of words
    $length2 = count($terms_in_article2); // number of words
    $all_terms = array_merge($terms_in_article1, $terms_in_article2);
    $all_terms = array_unique($all_terms);
    foreach ($all_terms as $all_termsa) {
        $term_vector1[$all_termsa] = 0;
        $term_vector2[$all_termsa] = 0;
    }
    foreach ($terms_in_article1 as $terms_in_article1a) {
        $term_vector1[$terms_in_article1a]++;
    }
    foreach ($terms_in_article2 as $terms_in_article2a) {
        $term_vector2[$terms_in_article2a]++;
    }
    $score = 0;
    foreach ($all_terms as $all_termsa) {
        $score += $term_vector1[$all_termsa]*$term_vector2[$all_termsa];
    }
    $score = $score/($length1*$length2);
    $score *= 500; // for better readability
    return $score;
}

The variable $terms_in_articleX must be an array containing all single words which appear in the text.

Assuming I have a database of 20,000 texts, this function would take a very long time to run through all the connections.

How can I accelerate this process? Should I add all texts into a huge matrix instead of always comparing only two texts? It would be great if you had some approaches with code, preferably in PHP.

I hope you can help me. Thanks in advance!

link|improve this question

feedback

5 Answers

You can split the text on adding it. Simple example: preg_match_all(/\w+/, $text, $matches); Sure real splitting is not so simple... but possible, just correct the pattern :)

Create table id(int primary autoincrement), value(varchar unique) and link-table like this: word_id(int), text_id(int), word_count(int). Then fill the tables with new values after splitting text.

Finally you can do with this data anything you want, quickly operating with indexed integers(IDs) in DB.

UPDATE: Here are the tables and queries:

CREATE TABLE terms (
    id int(11) NOT NULL auto_increment, value char(255) NOT NULL,
    PRIMARY KEY  (`id`), UNIQUE KEY `value` (`value`)
);

CREATE TABLE `terms_in_articles` (
    term int(11) NOT NULL, 
    article int(11) NOT NULL, 
    cnt int(11) NOT NULL default '1',
    UNIQUE KEY `term` (`term`,`article`)
);


/* Returns all unique terms in both articles (your $all_terms) */
SELECT t.id, t.value 
FROM terms t, terms_in_articles a 
WHERE a.term = t.id AND a.article IN (1, 2);

/* Returns your $term_vector1, $term_vector2 */
SELECT article, term, cnt 
FROM terms_in_articles 
WHERE article IN (1, 2) ORDER BY article;

/* Returns article and total count of term entries in it ($length1, $length2) */
SELECT article, SUM(cnt) AS total 
FROM terms_in_articles 
WHERE article IN (1, 2) GROUP BY article;

/* Returns your $score wich you may divide by ($length1 / $length2) from previous query */
SELECT SUM(tmp.term_score) * 500 AS total_score FROM 
(
    SELECT (a1.cnt * a2.cnt) AS term_score 
    FROM terms_in_articles a1, terms_in_articles a2 
    WHERE a1.article = 1 AND a2.article = 2 AND a1.term = a2.term
    GROUP BY a2.term, a1.term
) AS tmp;

Well, now, I hope, this will help? The 2 last queries are enough to perform your task. Other queries are just in case. Sure, you can count more stats like "the most popular terms" etc...

link|improve this answer
Thanks! I know how to split a text into single terms (see code in my question). The approach with the database sounds interesting and it would be really easy to do this. But which advantage would this have for the calculation of the relationship? My (unreal) wish would be that I fill all word counts into a huge matrix and an algorithm gives an array with all relationships as its output. – Marco W. May 25 '09 at 15:00
The advantage is that DB engines were built to process large datasets quickly and safely, and with correct settings I think that DB-server will do the calculations on dataset better than any PHP algoritm. Your idea about matrix is good for languages, where you can manage memory access, but you know - in PHP you can't. Just imagine the size of your matrix in memory. Every script will eat this size and you potentially risk to meet performance issues. – Jet May 26 '09 at 9:16
Thanks. It stands to reason that it is faster this way. You've convinced me. But how do I calculate the relations when I've inserted everything into the DB? Can MySQL do this? What query must I use? – Marco W. May 26 '09 at 18:43
Sure. Sorry, now have no time to write and test SQL. I'll update answer with whal SQL-s must look like. – Jet May 27 '09 at 16:33
Thanks for the work! I hope the question is still open if you post the SQL code. Otherwise I couldn't choose your answer as the best one. :) But does your approach really give the same results as my vector method? I'm asking because I also consider words appearing only in 1 text which you don't do!? – Marco W. May 27 '09 at 17:16
show 4 more comments
feedback

Here's a slightly optimized version of your original function. It produces the exact same results. (I run it on two articles from Wikipedia with 10000+ terms and like 20 runs each:

check():
test A score: 4.55712524522
test B score: 5.08138042619
--Time: 1.0707

check2():
test A score: 4.55712524522
test B score: 5.08138042619
--Time: 0.2624

Here's the code:

function check2($terms_in_article1, $terms_in_article2) {
    $length1 = count($terms_in_article1); // number of words
    $length2 = count($terms_in_article2); // number of words

    $score_table = array();
    foreach($terms_in_article1 as $term){
        if(!isset($score_table[$term])) $score_table[$term] = 0;
        $score_table[$term] += 1;
    }
    $score_table2 = array();
    foreach($terms_in_article2 as $term){
        if(isset($score_table[$term])){
            if(!isset($score_table2[$term])) $score_table2[$term] = 0;
            $score_table2[$term] += 1;
        }
    }
    $score =0;
    foreach($score_table2 as $key => $entry){
        $score += $score_table[$key] * $entry;
    }
    $score = $score / ($length1*$length2);
    $score *= 500;
    return $score;
}

(Btw. The time needed to split all the words into arrays was not included.)

link|improve this answer
It isn't slightly improved. It's extremely improved! :) Thanks man, this is exactly what I was looking for. It's four times faster! Why does it work? This is the only thing I still want to know. ;) You use 2 word arrays, I use 1 big word array. Why does it give the same results? – Marco W. May 27 '09 at 17:12
The trick is that if a term only exists in one of the arrays, it results in 0. This function skips all entries that only exists in one of the arrays, so to speak. Glad you like it :) Cheers! Good Luck! – 0scar May 27 '09 at 17:14
(Also it skips doing array_merge and array_unique and stuff like that..) – 0scar May 27 '09 at 17:14
But Wikipedia says (en.wikipedia.org/wiki/Bag_of_words_model_in_computer_vision) that you have to put everything into a big "dictionary" array at first. Why does the algorithm also work if you don't do this? You have other vectors!? – Marco W. May 27 '09 at 19:13
Thanks, nice code I think I am going to use it;but I have a question when I applied the function for these two arrays $array1 = array(1,2,3,4,4); $array2 = array(1,2,3,4,5); echo check2($array1,$array2); it gives me the output "100" why? the arrays are different!? – ahmed May 31 '09 at 7:42
show 2 more comments
feedback

EDIT: Trying to be more explicit:

  1. First, encode every term into an integer. You can use a dictionary associative array, like this:

       $count = 0;
        foreach ($doc as $term) {
          $val = $dict[$term];
          if (!defined($val)) {
            $dict[$term] = $count++;
          }
          $doc_as_int[$val] ++;
        }
    

    This way, you replace string calculations with integer calculations. For example, you can represent the word "cloud" as the number 5, and then use the index 5 of arrays to store counts of the word "cloud". Notice that we only use associative array search here, no need for CRC etc.

  2. Do store all texts as a matrix, preferably a sparse one.
  3. Use feature selection (PDF).
  4. Maybe use a native implementation in a faster language.
  5. I suggest you first use K-means with about 20 clusters, this way get a rough draft of which document is near another, and then compare only pairs inside each cluster. Assuming uniformly-sized cluster, this improves the number of comparisons to 20*200 + 20*10*9 - around 6000 comparisons instead of 19900.
link|improve this answer
Thank you. Unfortunately, I don't really understand how this should work. Would this really speed up my calculations? In your linked document, I can't find anything useful for my case. There's a lot concerning k-means etc. but I need the relationship values for ALL the documents among each other. So for 200 texts, there would be 200! relationship, right? – Marco W. May 25 '09 at 15:06
1  
It will speed up your calculations. Unless your programming language compares strings faster than it does integers, encoding them as integers will improve performance. Ditto for sparse matrices. If you need to compare 200 texts to each other, the actual number is 200^2, which is much less than 200!. I still believe you could use feature selection to make this task tractable. – Yuval F May 25 '09 at 18:56
Thanks for the additional information. Comparing each article to each to each other, you won't have 200^2=40,000 comparisons but 19,900 - which is still alot. Assuming that PHP compares integers faster than strings: How do I transform a string into a number? I don't know any hash algorithm which does this. My only idea is using a base-36 alphabet: paste.bradleygill.com/index.php?paste_id=9604 But then the numbers get huge very quickly. Faster, though? And it would be great if you could explain the comparison process with a sparse matrix more detailed. Sorry, I didn't understand it. – Marco W. May 25 '09 at 19:54
I've tried to transform strings into integers: It doesn't speed up my calculations. The hashing takes some time and the very small advantage of integer comparisons (if there is one) can't balance this. I hashed the strings with crc32(). It took more than 4 times longer than with string comparisons. – Marco W. May 26 '09 at 18:41
feedback

Another approach to take would be Latent Semantic Analysis, which leverages a large corpus of data to find similarities between documents.

The way it works is by taking the co-occurance matrix of the text and comparing it to the Corpus, essentially providing you with an abstract location of your document in a 'semantic space'. This will speed up your text comparison, as you can compare documents using Euclidian distance in the LSA Semantic space. It's pretty fun semantic indexing. Thus, adding new articles will not take much longer.

I can't give a specific use case of this approach, having only learned it in school but it appears that KnowledgeSearch is an open source implementation of the algorithm.

(Sorry, its my first post, so can't post links, just look it up)

link|improve this answer
feedback

If you can use simple text instead of arrays for comparing, and if i understood right where your goal is, you can use the levenshtein php function (that is usually used for give the google-like 'Did you meaning ...?' function in php search engines).

It works in the opposite way youre using: return the difference between two strings.

Example:

<?php
function check($a, $b) {
    return levenshtein($a, $b);
}

$a = 'this is just a test';
$b = 'this is not test';
$c = 'this is just a test';

echo check($a, $b) . '<br />';
//return 5
echo check($a, $c) . '<br />';
//return 0, the strings are identical
?>

But i dont know exactly if this will improve the speed of execution.. but maybe yes, you take-out many foreach loops and the array_merge function.

EDIT:

A simply test for the speed (is a 30-second-wroted-script, its not 100% accurated eh):

function check($terms_in_article1, $terms_in_article2) {
    $length1 = count($terms_in_article1); // number of words
    $length2 = count($terms_in_article2); // number of words
    $all_terms = array_merge($terms_in_article1, $terms_in_article2);
    $all_terms = array_unique($all_terms);
    foreach ($all_terms as $all_termsa) {
        $term_vector1[$all_termsa] = 0;
        $term_vector2[$all_termsa] = 0;
    }
    foreach ($terms_in_article1 as $terms_in_article1a) {
        $term_vector1[$terms_in_article1a]++;
    }
    foreach ($terms_in_article2 as $terms_in_article2a) {
        $term_vector2[$terms_in_article2a]++;
    }
    $score = 0;
    foreach ($all_terms as $all_termsa) {
        $score += $term_vector1[$all_termsa]*$term_vector2[$all_termsa];
    }
    $score = $score/($length1*$length2);
    $score *= 500; // for better readability
    return $score;
}


$a = array('this', 'is', 'just', 'a', 'test');
$b = array('this', 'is', 'not', 'test');

$timenow = microtime();
list($m_i, $t_i) = explode(' ', $timenow);

for($i = 0; $i != 10000; $i++){
    check($a, $b);
}
$last = microtime();
list($m_f, $t_f) = explode(' ', $last);
$fine = $m_f+$t_f;
$inizio = $m_i+$t_i;
$quindi = $fine - $inizio;
$quindi = substr($quindi, 0, 7);
echo 'end in ' . $quindi . ' seconds';

print: end in 0.36765 seconds

Second test:

<?php
function check($a, $b) {
    return levenshtein($a, $b);
}

$a = 'this is just a test';
$b = 'this is not test';

$timenow = microtime();
list($m_i, $t_i) = explode(' ', $timenow);
for($i = 0; $i != 10000; $i++){
    check($a, $b);
}
$last = microtime();
list($m_f, $t_f) = explode(' ', $last);
$fine = $m_f+$t_f;
$inizio = $m_i+$t_i;
$quindi = $fine - $inizio;
$quindi = substr($quindi, 0, 7);
echo 'end in ' . $quindi . ' seconds';
?>

print: end in 0.05023 seconds

So, yes, seem faster. Would be nice to try with many array items (and many words for levenshtein)

2°EDIT:

With similar text the speed seem to be equal to the levenshtein method:

<?php
function check($a, $b) {
    return similar_text($a, $b);
}

$a = 'this is just a test ';
$b = 'this is not test';

$timenow = microtime();
list($m_i, $t_i) = explode(' ', $timenow);
for($i = 0; $i != 10000; $i++){
    check($a, $b);
}
$last = microtime();
list($m_f, $t_f) = explode(' ', $last);
$fine = $m_f+$t_f;
$inizio = $m_i+$t_i;
$quindi = $fine - $inizio;
$quindi = substr($quindi, 0, 7);
echo 'end in ' . $quindi . ' seconds';
?>

print: end in 0.05988 seconds

But it can take more than 255 char:

Note also that the complexity of this algorithm is O(N**3) where N is the length of the longest string.

and, it can even return the similary value in percentage:

function check($a, $b) {
    similar_text($a, $b, $p);
    return $p;
}

Yet another edit

What about create a database function, to make the compare directly in the sql query, instead of retrieving all the data and loop them?

If youre running Mysql, give a look at this one (hand-made levenshtein function, still 255 char limit) Else, if youre on Postgresql, this other one (many functions that should be evalutate)

link|improve this answer
Thank you very much, I didn't think of this function yet. This would really be an alternative. But I don't know what gives better results: The vector-based method (see code in my question) or the Levenshtein algorithm. Does somebody know? – Marco W. May 26 '09 at 14:38
Just edited with a simple test – Strae May 26 '09 at 15:12
Your idea to compare the execution times is very good! Thanks! I've tried this test again with much more data. I did it with 100 documents with 200 words each. And here's the result: My own check() function = 8.56277768 seconds on average Levenshtein = Error: Argument string(s) too long. So Levenshtein is not adequate for this problem since the algorithm I'm looking for should also handle long strings. – Marco W. May 26 '09 at 18:39
Sorry, i didnt know that limit, reading the documentation it is 255 char. Well, there are other 2 function in php like levenshtein: similar_text() and soundex(), the first one shouldnt have that limit: it2.php.net/manual/en/function.similar-text.php and it2.php.net/manual/en/function.soundex.php Maybe tomorrow morning i'll have time to repeat my simple test with those two – Strae May 26 '09 at 18:44
SoundEx() won't work at all I think. I guess similar_text() will work much faster than my complex matrix calculations. But probably the results of similar_text() will be worse. – Marco W. May 26 '09 at 20:04
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

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