OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:chi2
(Results
1 - 8
of
8
) sorted by null
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
chi2_test.py
23
from tensorflow.contrib.distributions.python.ops import
chi2
as chi2_lib
37
chi2
= chi2_lib.
Chi2
(df=df)
38
expected_log_pdf = stats.
chi2
.logpdf(x, df_v)
40
log_pdf =
chi2
.log_prob(x)
44
pdf =
chi2
.prob(x)
55
chi2
= chi2_lib.
Chi2
(df=df)
56
expected_cdf = stats.
chi2
.cdf(x, df_v)
58
cdf =
chi2
.cdf(x
[
all
...]
/external/tensorflow/tensorflow/core/lib/random/
distribution_sampler_test.cc
47
float
chi2
= 0.0;
local
51
chi2
+= (err * err) / weights[i];
53
return
chi2
;
67
EXPECT_TRUE(false) << "
Chi2
is " << var << " in " << n * 100000
/external/skia/tests/
RandomTest.cpp
40
double
chi2
= 0.0;
local
43
chi2
+= delta*delta/e;
46
return (kChiSqMin256 <
chi2
&&
chi2
< kChiSqMax256);
/external/skqp/tests/
RandomTest.cpp
40
double
chi2
= 0.0;
local
43
chi2
+= delta*delta/e;
46
return (kChiSqMin256 <
chi2
&&
chi2
< kChiSqMax256);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
4-1.c
143
void
chi2
(void)
function
242
ret = pthread_atfork(pre2, par2,
chi2
);
/external/tensorflow/tensorflow/compiler/tests/
categorical_op_test.py
42
"""Returns
Chi2
GOF statistic."""
46
chi2
= np.sum(diff * diff / expected)
47
return
chi2
138
chi2
= self._chi2(probs, freqs)
139
self.assertLess(
chi2
, 1e-3)
/external/tensorflow/tensorflow/python/kernel_tests/random/
multinomial_op_test.py
129
for
chi2
in chi2s:
130
self.assertLess(
chi2
, 1e-3)
184
chi2
= np.sum(diff * diff / expected, axis=0)
185
return
chi2
/external/tensorflow/tensorflow/contrib/distributions/
__init__.py
29
from tensorflow.contrib.distributions.python.ops.
chi2
import *
104
'
Chi2
',
Completed in 1710 milliseconds