HomeSort by relevance Sort by last modified time
    Searched refs:classifier (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /frameworks/testing/espresso/idling-resource-interface/
build.gradle 24 classifier = 'sources'
  /frameworks/testing/espresso/
javadoc.gradle 22 classifier = 'sources'
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/
jni_stochastic_linear_ranker.cpp 77 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
78 if (classifier && key_array_model && value_array_model && normalizer_model) {
87 classifier->LoadWeights(model);
102 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
109 classifier->SetIterationNumber((uint64) v);
114 classifier->SetNormConstraint((double) v);
119 classifier->SetRegularizationType(learning_stochastic_linear::L0);
121 classifier->SetRegularizationType(learning_stochastic_linear::L1);
123 classifier->SetRegularizationType(learning_stochastic_linear::L2);
125 classifier->SetRegularizationType(learning_stochastic_linear::L1L2)
234 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
257 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
376 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
388 StochasticLinearRanker<string>* classifier = new StochasticLinearRanker<string>(); local
395 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
408 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
446 StochasticLinearRanker<string>* classifier = (StochasticLinearRanker<string>*) paPtr; local
    [all...]
  /frameworks/ml/bordeaux/learning/multiclass_pa/jni/
jni_multiclass_pa.cpp 41 MulticlassPA* classifier = new MulticlassPA(num_classes, local
44 return ((jlong) classifier);
51 MulticlassPA* classifier = (MulticlassPA*) paPtr; local
52 delete classifier;
62 MulticlassPA* classifier = (MulticlassPA*) paPtr; local
64 if (classifier && index_array && value_array) {
75 classifier->SparseTrainOneExample(inputs, target);
95 MulticlassPA* classifier = (MulticlassPA*) paPtr; local
97 if (classifier && index_array && value_array) {
109 return classifier->SparseGetClass(inputs)
    [all...]
  /external/protobuf/
build.gradle 59 classifier "micronano"
68 classifier "nano"
77 classifier "micro"
  /external/libnl/lib/route/cls/
police.c 17 #include <netlink/route/classifier.h>
18 #include <netlink/route/classifier-modules.h>
cgroup.c 2 * lib/route/cls/cgroup.c Control Groups Classifier
14 * @defgroup cgroup Control Groups Classifier
24 #include <netlink/route/classifier.h>
25 #include <netlink/route/classifier-modules.h>
basic.c 2 * lib/route/cls/basic.c Basic Classifier
14 * @defgroup basic Basic Classifier
17 * The basic classifier is the simplest form of a classifier. It does
28 #include <netlink/route/classifier.h>
29 #include <netlink/route/classifier-modules.h>
fw.c 2 * lib/route/cls/fw.c fw classifier
16 * @defgroup fw Firewall Classifier
24 #include <netlink/route/classifier.h>
25 #include <netlink/route/classifier-modules.h>
  /external/smali/util/
build.gradle 40 classifier = 'sources'
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_classifier_unittest.cc 29 // Test all-zero vectors and let the classifier converge from its default
41 AudioClassifier classifier; local
54 classifier.Analysis(in.get(), channels * kFrameSize, channels);
55 EXPECT_EQ(is_music, classifier.is_music());
  /external/opencv/cv/src/
cvhaar.cpp 90 CvHidHaarClassifier* classifier; member in struct:CvHidHaarStageClassifier
171 /* create more efficient internal representation of haar classifier cascade */
197 CV_ERROR( !cascade ? CV_StsNullPtr : CV_StsBadArg, "Invalid classifier pointer" );
211 internal representation of the classifier cascade */
216 if( !stage_classifier->classifier ||
219 sprintf( errorstr, "header of the stage classifier #%d is invalid "
229 CvHaarClassifier* classifier = stage_classifier->classifier + j; local
231 total_nodes += classifier->count;
232 for( l = 0; l < classifier->count; l++
304 CvHaarClassifier* classifier = stage_classifier->classifier + j; local
366 CvHaarClassifier* classifier = stage_classifier->classifier + j; local
770 CvHidHaarClassifier* classifier = cascade->stage_classifier[i].classifier + j; local
1563 CvHaarClassifier* classifier = cascade->stage_classifier[i].classifier + j; local
1849 CvHaarClassifier* classifier; local
2290 CvHaarClassifier* classifier = local
    [all...]
mycvHaarDetectObjects.cpp 90 MyCvHidHaarClassifier* classifier; member in struct:MyCvHidHaarStageClassifier
153 /* create more efficient internal representation of haar classifier cascade */
179 CV_ERROR( !cascade ? CV_StsNullPtr : CV_StsBadArg, "Invalid classifier pointer" );
193 internal representation of the classifier cascade */
198 if( !stage_classifier->classifier ||
201 sprintf( errorstr, "header of the stage classifier #%d is invalid "
211 CvHaarClassifier* classifier = stage_classifier->classifier + j; local
213 total_nodes += classifier->count;
214 for( l = 0; l < classifier->count; l++
286 CvHaarClassifier* classifier = stage_classifier->classifier + j; local
560 MyCvHidHaarClassifier* classifier = cascade->stage_classifier[i].classifier + j; local
572 MyCvHidHaarClassifier* classifier = cascade->stage_classifier[i].classifier + j; local
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_classifier_delegate.h 38 // The RenderView owns us. This object takes ownership of the classifier.
39 // Note that if classifier is null, a default instance of PhishingClassifier
42 PhishingClassifier* classifier);
46 // The scorer is passed on to the classifier.
69 PhishingClassifier* classifier);
125 // The page text that will be analyzed by the phishing classifier. This is
126 // set by OnNavigate and cleared when the classifier finishes. Note that if
137 // Set to true if the classifier is currently running.
phishing_classifier_delegate.cc 89 content::RenderView* render_view, PhishingClassifier* classifier) {
92 return new PhishingClassifierDelegate(render_view, classifier);
97 PhishingClassifier* classifier)
103 if (!classifier) {
104 classifier = new PhishingClassifier(render_view,
108 classifier_.reset(classifier);
245 // last URL sent to the classifier, so that we'll properly detect
  /external/libnl/lib/route/
cls_api.c 2 * lib/route/cls_api.c Classifier Module API
14 * @defgroup cls_api Classifier Modules
23 #include <netlink/route/classifier.h>
24 #include <netlink/route/classifier-modules.h>
30 * @name Classifier Module API
35 * Register a classifier module
36 * @arg cops classifier module operations
56 * Unregister a classifier module
57 * @arg cops classifier module operations
87 * Lookup classifier operations for a classifier objec
    [all...]
qdisc_api.c 26 #include <netlink/route/classifier.h>
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
audio_classifier_test.cc 71 webrtc::AudioClassifier classifier; local
76 bool is_music = classifier.Analysis(in.get(), data_size, channels);
86 float music_prob = classifier.music_probability();
  /external/okhttp/website/static/
jquery-maven-artifact.min.js 7 */(function(e){function n(e,t){var n=e.groupId.replace(/\./g,"/"),r="http://repo1.maven.org/maven2/"+n+"/"+e.artifactId+"/"+t+"/"+e.artifactId+"-"+t;return typeof e.classifier!="undefined"&&(r+="-"+e.classifier),r+="."+e.packaging,r}function r(e){var t={groupId:"g",artifactId:"a",packaging:"p",classifier:"l"},n="";for(var r in t)t.hasOwnProperty(r)&&e.hasOwnProperty(r)&&(n!==""&&(n+="+AND+"),n+=t[r]+' (…)
  /external/libnl/include/netlink/route/cls/
ematch.h 16 #include <netlink/route/classifier.h>
  /external/libnl/src/cls/
utils.h 2 * src/cls-utils.h Classifier Helpers
15 #include <netlink/route/classifier-modules.h>
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-p2-plugin/0.20.0/
tycho-p2-plugin-0.20.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.p2.resolver.shared/0.20.0/
org.eclipse.tycho.p2.resolver.shared-0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-p2-facade/0.18.1/
tycho-p2-facade-0.18.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-artifact-3.2.1.jar 

Completed in 507 milliseconds

1 2 3 4 5