OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:test_samples
(Results
1 - 3
of
3
) sorted by null
/external/chromium-trace/catapult/experimental/statistical_analysis/
results_stats_unittest.py
140
test_samples
= [self.CreateRandomNormalDistribution(0),
145
for sample, expected_output in zip(
test_samples
, expected_outputs):
157
test_samples
= [3 * [0, 0, 2, 4, 4], 3 * [5, 5, 7, 9, 9]]
159
results_stats.AreSamplesDifferent(
test_samples
[0],
test_samples
[1],
162
results_stats.AreSamplesDifferent(
test_samples
[0],
test_samples
[1],
175
test_samples
= [self.CreateRandomNormalDistribution(0),
184
output = results_stats.AreSamplesDifferent(
test_samples
[0],
185
test_samples
[1]
[
all
...]
/external/opencv3/modules/ml/src/
knearest.cpp
324
Mat
test_samples
= _samples.getMat();
local
325
CV_Assert(
test_samples
.type() == CV_32F &&
test_samples
.cols == samples.cols );
326
int testcount =
test_samples
.rows;
353
findKNearestInvoker invoker(this, k,
test_samples
, pres, pnr, pd, &result);
380
Mat
test_samples
= _samples.getMat();
local
381
CV_Assert(
test_samples
.type() == CV_32F &&
test_samples
.cols == samples.cols );
382
int testcount =
test_samples
.rows;
409
for (int i=0; i<
test_samples
.rows; ++i
[
all
...]
/external/opencv3/samples/python2/
digits_adjust.py
46
test_samples
, test_labels = samples[test_idx], labels[test_idx]
48
resp = model.predict(
test_samples
)
Completed in 276 milliseconds