am b479a56f: Merge "Add confidence."

* commit 'b479a56f281d7b20abbb05369a5d6d0a6ce9dc67':
  Add confidence.
main
Jean Chalard 2014-11-25 06:25:17 +00:00 committed by Android Git Automerger
commit 5af54d904a
1 changed files with 21 additions and 11 deletions

View File

@ -138,6 +138,10 @@ public class DictionaryFacilitator {
public final Locale mLocale; public final Locale mLocale;
private Dictionary mMainDict; private Dictionary mMainDict;
// Confidence that the most probable language is actually the language the user is
// typing in. For now, this is simply the number of times a word from this language
// has been committed in a row.
private int mConfidence = 0;
public float mWeightForTypingInLocale = WEIGHT_FOR_MOST_PROBABLE_LANGUAGE; public float mWeightForTypingInLocale = WEIGHT_FOR_MOST_PROBABLE_LANGUAGE;
public float mWeightForGesturingInLocale = WEIGHT_FOR_MOST_PROBABLE_LANGUAGE; public float mWeightForGesturingInLocale = WEIGHT_FOR_MOST_PROBABLE_LANGUAGE;
public final ConcurrentHashMap<String, ExpandableBinaryDictionary> mSubDictMap = public final ConcurrentHashMap<String, ExpandableBinaryDictionary> mSubDictMap =
@ -260,8 +264,9 @@ public class DictionaryFacilitator {
public void switchMostProbableLanguage(final Locale locale) { public void switchMostProbableLanguage(final Locale locale) {
if (null == locale) { if (null == locale) {
// In many cases, there is no locale to a committed word. For example, a typed word // In many cases, there is no locale to a committed word. For example, a typed word
// that does not auto-correct has no locale. In this case we simply do not change // that is in none of the currently active dictionaries but still does not
// the most probable language. // auto-correct to anything has no locale. In this case we simply do not change
// the most probable language and do not touch confidence.
return; return;
} }
final DictionaryGroup newMostProbableDictionaryGroup = final DictionaryGroup newMostProbableDictionaryGroup =
@ -272,15 +277,20 @@ public class DictionaryFacilitator {
// facilitator any more. In this case, just not changing things is fine. // facilitator any more. In this case, just not changing things is fine.
return; return;
} }
mMostProbableDictionaryGroup.mWeightForTypingInLocale = if (newMostProbableDictionaryGroup == mMostProbableDictionaryGroup) {
DictionaryGroup.WEIGHT_FOR_TYPING_IN_NOT_MOST_PROBABLE_LANGUAGE; ++newMostProbableDictionaryGroup.mConfidence;
mMostProbableDictionaryGroup.mWeightForGesturingInLocale = } else {
DictionaryGroup.WEIGHT_FOR_GESTURING_IN_NOT_MOST_PROBABLE_LANGUAGE; mMostProbableDictionaryGroup.mWeightForTypingInLocale =
newMostProbableDictionaryGroup.mWeightForTypingInLocale = DictionaryGroup.WEIGHT_FOR_TYPING_IN_NOT_MOST_PROBABLE_LANGUAGE;
DictionaryGroup.WEIGHT_FOR_MOST_PROBABLE_LANGUAGE; mMostProbableDictionaryGroup.mWeightForGesturingInLocale =
newMostProbableDictionaryGroup.mWeightForGesturingInLocale = DictionaryGroup.WEIGHT_FOR_GESTURING_IN_NOT_MOST_PROBABLE_LANGUAGE;
DictionaryGroup.WEIGHT_FOR_MOST_PROBABLE_LANGUAGE; mMostProbableDictionaryGroup.mConfidence = 0;
mMostProbableDictionaryGroup = newMostProbableDictionaryGroup; newMostProbableDictionaryGroup.mWeightForTypingInLocale =
DictionaryGroup.WEIGHT_FOR_MOST_PROBABLE_LANGUAGE;
newMostProbableDictionaryGroup.mWeightForGesturingInLocale =
DictionaryGroup.WEIGHT_FOR_MOST_PROBABLE_LANGUAGE;
mMostProbableDictionaryGroup = newMostProbableDictionaryGroup;
}
} }
@Nullable @Nullable