]> git.wh0rd.org - tt-rss.git/commitdiff
show ugly minimum word count for auto categorizing in prefs ui
authorAndrew Dolgov <noreply@fakecake.org>
Wed, 17 Jun 2015 19:13:58 +0000 (22:13 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Wed, 17 Jun 2015 19:13:58 +0000 (22:13 +0300)
plugins/af_sort_bayes/init.php

index 517d684d4b42aaf74a9426097885c0dc928d3400..f36ae9148bf3c646a646cfb61ce3efaeaf2a3886 100644 (file)
@@ -7,6 +7,7 @@ class Af_Sort_Bayes extends Plugin {
        private $dbh;
        private $score_modifier = 50;
        private $sql_prefix = "ttrss_plugin_af_sort_bayes";
+       private $auto_categorize_threshold = 10000;
 
        function about() {
                return array(1.0,
@@ -209,6 +210,8 @@ class Af_Sort_Bayes extends Plugin {
 
                print "<h3>" . __("Statistics") . "</h3>";
 
+               print "<p>".T_sprintf("Required UGLY word count for automatic matching: %d", $this->auto_categorize_threshold)."</p>";
+
                print "<table>";
                print "<tr><th>Category</th><th>Probability</th><th>Words</th><th>Articles</th></tr>";
 
@@ -288,7 +291,7 @@ class Af_Sort_Bayes extends Plugin {
 
                        $bayes_content = mb_strtolower($article["title"] . " " . strip_tags($article["content"]));
 
-                       if ($count_neutral >= 10000) {
+                       if ($count_neutral >= $this->auto_categorize_threshold) {
                                // enable automatic categorization
 
                                $result = $nb->categorize($bayes_content);