HomeSort by relevance Sort by last modified time
    Searched full:classcounts (Results 1 - 1 of 1) sorted by null

  /frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
HistogramPredictor.java 106 HashMap<String, Integer> classCounts;
109 classCounts = new HashMap<String, Integer>();
110 mCounter.put(featureValue, classCounts);
112 classCounts = mCounter.get(featureValue);
114 int count = (classCounts.containsKey(className)) ?
115 classCounts.get(className) + 1 : 1;
116 classCounts.put(className, count);

Completed in 551 milliseconds