PHP code example of vench / php-lsa
1. Go to this page and download the library: Download vench/php-lsa library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vench / php-lsa example snippets
composer
$documents = [
"The quick brown fox jumped over the lazy dog",
"hey diddle diddle, the cat and the fiddle",
"the cow jumped over the moon",
"the little dog laughed to see such fun",
"and the dish ran away with the spoon",
];
$lsa = new LSA(4);
$trans = $lsa->fitTransform($documents);
$query = "the brown fox ran around the dog";
$index = $lsa->query($query, $trans);
echo $documents[$index], PHP_EOL;