Warning: session_start(): open(/var/lib/php/sessions/sess_gl7i6gsusni1t2pcvlfucm44js, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
svoid test_AutoClassifier1() {
int n = 2; // number of examples to learn for pos/neg
AutoClassifier1 c = new(S);
c.noQ = true;
c.start();
pnl("feature", assertNempty("features", c.getAllFeatures("hello")));
assertEmpty(c.confidentlyPredictedLabelsForObject("hello"));
c.learn(takeFirst(n, ll("hello", "abcde", "xxxxx")), "5 chars");
c.learn(takeFirst(n, ll("bla", "abcd", "aa")), "not 5 chars");
//c.checkAllTheories();
assertEqualsICVerbose("5 chars", joinWithComma(c.confidentlyPredictedLabelsForObject("world")));
assertEqualsICVerbose("not 5 chars", joinWithComma(c.confidentlyPredictedLabelsForObject("......")));
}