mirror of https://github.com/M66B/FairEmail.git
Classifier consider
This commit is contained in:
parent
f7a58d9281
commit
7cf2b6aaec
|
@ -212,7 +212,7 @@ public class MessageClassifier {
|
|||
if (!added)
|
||||
return null;
|
||||
|
||||
if (state.maxMatchedWords == 0)
|
||||
if (state.maxMatchedWords < MIN_MATCHED_WORDS)
|
||||
return null;
|
||||
|
||||
DB db = DB.getInstance(context);
|
||||
|
@ -231,15 +231,12 @@ public class MessageClassifier {
|
|||
}
|
||||
|
||||
Stat stat = state.classStats.get(clazz);
|
||||
boolean consider = (stat.matchedWords >= MIN_MATCHED_WORDS);
|
||||
double chance = stat.totalFrequency / messages / state.maxMatchedWords;
|
||||
Chance c = new Chance(clazz, chance);
|
||||
EntityLog.log(context, "Classifier " + c +
|
||||
" frequency=" + stat.totalFrequency + "/" + messages +
|
||||
" matched=" + stat.matchedWords + "/" + state.maxMatchedWords +
|
||||
" consider=" + consider +
|
||||
" words=" + TextUtils.join(", ", stat.words));
|
||||
if (consider)
|
||||
chances.add(c);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue