Example #1
0
 private Classifier(bool isInit)
 {
     this.isInit    = isInit;
     _categories    = new SortedDictionary <string, ICategory>();
     _excludedWords = new ExcludedWords();
     _excludedWords.InitDefault();
     classifier = null;
 }
Example #2
0
 public Category(string cat, ExcludedWords excluded)
 {
     MPhrases   = new SortedDictionary <string, PhraseCount>();
     _mExcluded = excluded;
     _mName     = cat;
 }
Example #3
0
 public EnumerableCategory(string cat, ExcludedWords excluded)
     : base(cat, excluded)
 {
 }