-
Notifications
You must be signed in to change notification settings - Fork 87
NGram Generation using PHP
yooper edited this page Aug 16, 2016
·
1 revision
Generating unigrams, bigrams, trigrams and ngrams is easy with PHP Text Analysis. Use the example below to help with your implementation.
namespace Tests\TextAnalysis\NGrams;
use TextAnalysis\NGrams\NGramFactory;
/**
* Description of NGramFactoryTest
*
* @author yooper <yooper>
*/
class NGramFactoryTest extends \PHPUnit_Framework_TestCase
{
public function testBiGram()
{
$tokens = ["one","two","three"];
$expected = ["one two","two three"];
$bigrams = NGramFactory::create($tokens);
$this->assertEquals($expected, $bigrams);
}
public function testTriGram()
{
$tokens = ["one","two","three","four"];
$expected = ["one two three","two three four"];
$trigrams = NGramFactory::create($tokens, NGramFactory::TRIGRAM);
$this->assertEquals($expected, $trigrams );
}
}