OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:logodds
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/renderer/safe_browsing/
scorer.cc
79
double
logodds
= 0.0;
local
81
logodds
+= ComputeRuleScore(model_.rule(i), features);
83
return LogOdds2Prob(
logodds
);
scorer_unittest.cc
107
// The expected
logodds
is 0.5 (empty rule) => p = exp(0.5) / (exp(0.5) + 1)
114
// Feature 1 matches which means that the
logodds
will be:
120
// Now, both feature 1 and feature 2 match. Expected
logodds
:
/external/chromium_org/chrome/common/safe_browsing/
client_model.proto
32
// by summing up all the rule scores. This overall score is a
logodds
and can
34
// p = exp(
logodds
) / (exp(
logodds
) + 1).
Completed in 64 milliseconds