Home
last modified time | relevance | path

Searched full:distributions (Results 1 – 25 of 1259) sorted by relevance

12345678910>>...51

/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.distributions.pbtxt1 path: "tensorflow.distributions"
5 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
9 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
13 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
17 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
21 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
25 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
29 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
33 mtype: "<class \'tensorflow.python.ops.distributions.distribution.ReparameterizationType\'>"
37 mtype: "<class \'tensorflow.python.ops.distributions.distribution._DistributionMeta\'>"
[all …]
/external/tensorflow/tensorflow/python/ops/distributions/
Ddistributions.py25 from tensorflow.python.ops.distributions.bernoulli import Bernoulli
26 from tensorflow.python.ops.distributions.beta import Beta
27 from tensorflow.python.ops.distributions.categorical import Categorical
28 from tensorflow.python.ops.distributions.dirichlet import Dirichlet
29 from tensorflow.python.ops.distributions.dirichlet_multinomial import DirichletMultinomial
30 from tensorflow.python.ops.distributions.distribution import *
31 from tensorflow.python.ops.distributions.exponential import Exponential
32 from tensorflow.python.ops.distributions.gamma import Gamma
33 from tensorflow.python.ops.distributions.kullback_leibler import *
34 from tensorflow.python.ops.distributions.laplace import Laplace
[all …]
Dkullback_leibler.py57 "The TensorFlow Distributions library has moved to "
60 "should update all references to use `tfp.distributions` "
61 "instead of `tf.distributions`.",
63 @tf_export(v1=["distributions.kl_divergence"])
126 "The TensorFlow Distributions library has moved to "
129 "should update all references to use `tfp.distributions` "
130 "instead of `tf.distributions`.",
136 Denote two distributions by `P` (`ref`) and `Q` (`other`). Assuming `P, Q`
164 @tf_export(v1=["distributions.RegisterKL"])
170 @distributions.RegisterKL(distributions.Normal, distributions.Normal)
[all …]
Ddistribution.py15 """Base classes for probability distributions."""
35 from tensorflow.python.ops.distributions import kullback_leibler
36 from tensorflow.python.ops.distributions import util
215 @tf_export(v1=["distributions.ReparameterizationType"])
219 Two static instances exist in the distributions library, signifying
235 "The TensorFlow Distributions library has moved to "
238 "should update all references to use `tfp.distributions` "
239 "instead of `tf.distributions`.",
266 tf_export(v1=["distributions.FULLY_REPARAMETERIZED"]).export_constant(
274 tf_export(v1=["distributions.NOT_REPARAMETERIZED"]).export_constant(
[all …]
Duniform.py31 from tensorflow.python.ops.distributions import distribution
36 @tf_export(v1=["distributions.Uniform"])
66 high=[3.0, 4.0]) # 2 distributions [1, 3], [2, 4]
70 [3.5, 4.5]]) # 4 distributions
75 u1 = Uniform(low=3.0, high=[5.0, 6.0, 7.0]) # 3 distributions
82 "The TensorFlow Distributions library has moved to "
85 "should update all references to use `tfp.distributions` "
86 "instead of `tf.distributions`.",
94 """Initialize a batch of Uniform distributions.
Dcategorical.py29 from tensorflow.python.ops.distributions import distribution
30 from tensorflow.python.ops.distributions import kullback_leibler
31 from tensorflow.python.ops.distributions import util as distribution_util
62 @tf_export(v1=["distributions.Categorical"])
71 `Multinomial` distributions. The Categorical distribution can be intuited as
155 "The TensorFlow Distributions library has moved to "
158 "should update all references to use `tfp.distributions` "
159 "instead of `tf.distributions`.",
169 """Initialize Categorical distributions using class log-probabilities.
173 of a set of Categorical distributions. The first `N - 1` dimensions
[all …]
Dnormal.py32 from tensorflow.python.ops.distributions import distribution
33 from tensorflow.python.ops.distributions import kullback_leibler
34 from tensorflow.python.ops.distributions import special_math
45 @tf_export(v1=["distributions.Normal"])
72 Examples of initialization of one or a batch of distributions.
76 tfd = tfp.distributions
103 # Evaluate the pdf of both distributions on the same point, 3.0,
112 "The TensorFlow Distributions library has moved to "
115 "should update all references to use `tfp.distributions` "
116 "instead of `tf.distributions`.",
[all …]
DBUILD7 name = "distributions",
12 deprecation = ("TensorFlow Distributions has migrated to " +
15 "Deprecated copies remaining in tf.distributions " +
18 "`tf.distributions` to `tfp.distributions`."),
Dbernoulli.py28 from tensorflow.python.ops.distributions import distribution
29 from tensorflow.python.ops.distributions import kullback_leibler
30 from tensorflow.python.ops.distributions import util as distribution_util
35 @tf_export(v1=["distributions.Bernoulli"])
45 "The TensorFlow Distributions library has moved to "
48 "should update all references to use `tfp.distributions` "
49 "instead of `tf.distributions`.",
58 """Construct Bernoulli distributions.
Ddirichlet_multinomial.py29 from tensorflow.python.ops.distributions import distribution
30 from tensorflow.python.ops.distributions import util as distribution_util
54 @tf_export(v1=["distributions.DirichletMultinomial"])
102 distributions.
151 Creates a 2-batch of 3-class distributions.
169 "The TensorFlow Distributions library has moved to "
172 "should update all references to use `tfp.distributions` "
173 "instead of `tf.distributions`.",
181 """Initialize a batch of DirichletMultinomial distributions.
187 Dirichlet multinomial distributions. Its components should be equal to
[all …]
Dmultinomial.py30 from tensorflow.python.ops.distributions import distribution
31 from tensorflow.python.ops.distributions import util as distribution_util
55 @tf_export(v1=["distributions.Multinomial"])
139 Create a 2-batch of 3-class distributions.
154 "The TensorFlow Distributions library has moved to "
157 "should update all references to use `tfp.distributions` "
158 "instead of `tf.distributions`.",
167 """Initialize a batch of Multinomial distributions.
172 `N1 x ... x Nm` different Multinomial distributions. Its components
178 distributions. Only one of `logits` or `probs` should be passed in.
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/distributions/
DBUILD21 "//tensorflow/python/ops/distributions",
42 "//tensorflow/python/ops/distributions",
55 "//tensorflow/python/ops/distributions",
78 "//tensorflow/python/ops/distributions",
93 "//tensorflow/python/ops/distributions",
111 "//tensorflow/python/ops/distributions",
129 "//tensorflow/python/ops/distributions",
149 "//tensorflow/python/ops/distributions",
164 "//tensorflow/python/ops/distributions",
179 "//tensorflow/python/ops/distributions",
[all …]
/external/webrtc/third_party/abseil-cpp/absl/random/
DBUILD.bazel37 ":distributions",
47 name = "distributions",
57 "distributions.h",
73 "//absl/random/internal:distributions",
133 ":distributions",
152 ":distributions",
174 ":distributions",
190 ":distributions",
210 ":distributions",
224 ":distributions",
[all …]
/external/abseil-cpp/absl/random/
DBUILD.bazel37 ":distributions",
47 name = "distributions",
57 "distributions.h",
73 "//absl/random/internal:distributions",
133 ":distributions",
152 ":distributions",
174 ":distributions",
190 ":distributions",
210 ":distributions",
224 ":distributions",
[all …]
/external/python/setuptools/docs/
Dpkg_resources.txt22 introspecting, activating and using installed Python distributions. Some
27 relevant distributions.
77 A collection of distributions potentially available for importing, but not
82 A collection of distributions actually available for importing, as on
88 Eggs are pluggable distributions in one of the three formats currently
114 Finding and Activating Package Distributions
140 multiple, separately-packaged distributions. They are normally used to split
153 contained packages and modules may be spread across multiple distributions.
155 corresponding package in all distributions on ``sys.path`` that contain a
183 distributions. In general, there is only one meaningful ``WorkingSet``
[all …]
/external/libtextclassifier/abseil-cpp/absl/random/
DBUILD.bazel37 ":distributions",
47 name = "distributions",
56 "distributions.h",
132 ":distributions",
148 ":distributions",
170 ":distributions",
187 ":distributions",
209 ":distributions",
223 ":distributions",
238 ":distributions",
[all …]
/external/openscreen/third_party/abseil/src/absl/random/
DBUILD.bazel37 ":distributions",
47 name = "distributions",
56 "distributions.h",
132 ":distributions",
148 ":distributions",
170 ":distributions",
187 ":distributions",
209 ":distributions",
223 ":distributions",
238 ":distributions",
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/
DBUILD.bazel37 ":distributions",
47 name = "distributions",
56 "distributions.h",
132 ":distributions",
148 ":distributions",
170 ":distributions",
187 ":distributions",
209 ":distributions",
223 ":distributions",
238 ":distributions",
[all …]
/external/rust/crates/criterion/src/
Destimate.rs46 distributions: &Distributions, in build_estimates() argument
65 mean: to_estimate(points.mean, &distributions.mean), in build_estimates()
66 median: to_estimate(points.median, &distributions.median), in build_estimates()
67 median_abs_dev: to_estimate(points.median_abs_dev, &distributions.median_abs_dev), in build_estimates()
69 std_dev: to_estimate(points.std_dev, &distributions.std_dev), in build_estimates()
74 distributions: &ChangeDistributions, in build_change_estimates()
93 mean: to_estimate(points.mean, &distributions.mean), in build_change_estimates()
94 median: to_estimate(points.median, &distributions.median), in build_change_estimates()
129 pub struct Distributions { struct
136 impl Distributions { implementation
/external/rust/crates/criterion/src/stats/
Dtuple.rs7 /// A tuple of distributions associated with this tuple
8 type Distributions: TupledDistributions<Item = Self>; typedef
14 /// A tuple of distributions: `(Distribution<A>, Distribution<B>, ..)`
16 /// A tuple that can be pushed/inserted into the tupled distributions
17 type Item: Tuple<Distributions = Self>;
20 /// A tuple of vecs used to build distributions.
22 /// A tuple that can be pushed/inserted into the tupled distributions
34 /// Convert the tuple of vectors into a tuple of distributions
35 fn complete(self) -> <Self::Item as Tuple>::Distributions; in complete() argument
42 type Distributions = (Distribution<A>,); typedef
[all …]
/external/llvm-project/libc/benchmarks/
DMemorySizeDistributions.h10 // probability distributions observed at runtime for a set of applications.
11 // These distributions are used to benchmark and compare memory functions
26 /// distributions. The underlying data is immutable.
32 /// Returns a list of memcpy size distributions.
35 /// Returns a list of memset size distributions.
38 /// Returns a list of memcmp size distributions.
/external/python/setuptools/pkg_resources/
Dapi_tests.txt1 Pluggable Distributions of Python Software
4 Distributions
16 Distributions have a location, which can be a filename, URL, or really anything
28 Distributions have various introspectable attributes::
54 Distributions are compared (and hashed) by version first::
113 A collection of active distributions is called a Working Set. Note that a
125 distributions. By default, the working set's entries are the items on
132 But you can also create an empty working set explicitly, and add distributions
144 And you can iterate over its distributions::
155 For that matter, adding multiple distributions for the same project also does
[all …]
D__init__.py375 """Return this platform's string for platform-specific distributions
545 """A collection of active distributions on sys.path (or a similar list)"""
603 """Add a path item to ``.entries``, finding any distributions on it
605 ``find_distributions(entry, True)`` is used to find distributions
641 distributions in the working set, otherwise only ones matching
661 """Yield distributions for non-duplicate projects in the working set
709 """List all distributions needed to (recursively) meet `requirements`
713 not supplied, it defaults to all distributions available within any
743 # Mapping of requirement to set of distributions that required it;
801 """Find all activatable distributions in `plugin_env`
[all …]
/external/python/cpython3/Lib/test/test_importlib/
Dtest_main.py18 PackageNotFoundError, distributions,
158 dists = list(distributions())
174 list(distributions(context='something', name='else'))
198 Discovering distributions should succeed even if
201 importlib.metadata.distributions()
214 Discovering distributions should succeed even if
217 list(importlib.metadata.distributions())
269 list(distributions())
/external/tensorflow/tensorflow/tools/compatibility/
Drenames_v2.py289 'tf.distributions.Bernoulli':
290 'tf.compat.v1.distributions.Bernoulli',
291 'tf.distributions.Beta':
292 'tf.compat.v1.distributions.Beta',
293 'tf.distributions.Categorical':
294 'tf.compat.v1.distributions.Categorical',
295 'tf.distributions.Dirichlet':
296 'tf.compat.v1.distributions.Dirichlet',
297 'tf.distributions.DirichletMultinomial':
298 'tf.compat.v1.distributions.DirichletMultinomial',
[all …]

12345678910>>...51