Searched defs:logistic (Results 1 - 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/contrib/distributions/python/ops/
H A Drelaxed_bernoulli.py21 from tensorflow.contrib.distributions.python.ops import logistic namespace
176 distribution=logistic.Logistic(
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
H A Dlogistic_test.py23 from tensorflow.contrib.distributions.python.ops import logistic namespace
37 dist = logistic.Logistic(loc, scale)
48 dist = logistic.Logistic(loc, scale)
49 expected_log_prob = stats.logistic.logpdf(x, np_loc, scale)
66 dist = logistic.Logistic(loc, scale)
69 expected_cdf = stats.logistic.cdf(x, np_loc, scale)
81 dist = logistic.Logistic(loc, scale)
84 expected_logcdf = stats.logistic.logcdf(x, np_loc, scale)
96 dist = logistic.Logistic(loc, scale)
99 expected_survival_function = stats.logistic
[all...]

Completed in 157 milliseconds