OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:weight_trim_rate
(Results
1 - 10
of
10
) sorted by null
/external/opencv/ml/src/
mlboost.cpp
58
weight_trim_rate
= 0.95;
70
weight_trim_rate
= _weight_trim_rate;
884
params.
weight_trim_rate
= MAX( params.
weight_trim_rate
, 0. );
885
params.
weight_trim_rate
= MIN( params.
weight_trim_rate
, 1. );
886
if( params.
weight_trim_rate
< FLT_EPSILON )
887
params.
weight_trim_rate
= 1.f;
[
all
...]
/external/opencv3/modules/ml/test/
test_mltests2.cpp
393
float
WEIGHT_TRIM_RATE
;
399
modelParamsNode["
weight_trim_rate
"] >>
WEIGHT_TRIM_RATE
;
406
m->setWeightTrimRate(
WEIGHT_TRIM_RATE
);
/external/opencv3/apps/traincascade/
old_ml_boost.cpp
58
weight_trim_rate
= 0.95;
70
weight_trim_rate
= _weight_trim_rate;
997
params.
weight_trim_rate
= MAX( params.
weight_trim_rate
, 0. );
998
params.
weight_trim_rate
= MIN( params.
weight_trim_rate
, 1. );
999
if( params.
weight_trim_rate
< FLT_EPSILON )
1000
params.
weight_trim_rate
= 1.f;
[
all
...]
boost.cpp
247
fs << CC_TRIM_RATE <<
weight_trim_rate
;
local
265
node[CC_TRIM_RATE] >>
weight_trim_rate
;
local
270
weight_trim_rate
<= 0 ||
weight_trim_rate
> 1 ||
285
cout << " [-weightTrimRate <
weight_trim_rate
= " <<
weight_trim_rate
<< ">]" << endl;
300
cout << "weightTrimRate: " <<
weight_trim_rate
<< endl;
328
weight_trim_rate
= (float) atof( val.c_str() );
[
all
...]
old_ml.hpp
1050
CV_PROP_RW double
weight_trim_rate
;
member in struct:CvBoostParams
[
all
...]
/external/opencv3/doc/tutorials/introduction/transition_guide/
transition_guide.markdown
133
0.95, //
weight_trim_rate
/external/opencv3/doc/tutorials/objdetect/
traincascade.markdown
298
- -weightTrimRate \<
weight_trim_rate
\>
/external/opencv/ml/include/
ml.h
1023
double
weight_trim_rate
;
member in struct:CvBoostParams
[
all
...]
/external/opencv3/modules/ml/doc/
ml_intro.markdown
233
induced classifier. This process is controlled with the
weight_trim_rate
parameter. Only examples
234
with the summary fraction
weight_trim_rate
of the total weight mass are used in the weak classifier
/external/opencv3/modules/ml/include/opencv2/
ml.hpp
[
all
...]
Completed in 945 milliseconds