HomeSort by relevance Sort by last modified time
    Searched full:distribution (Results 126 - 150 of 46313) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
IntegerDistribution.java 17 package org.apache.commons.math.distribution;
29 * to this distribution, this method returns P(X = x). In other words, this
30 * method represents the probability mass function for the distribution.
39 * to this distribution, this method returns P(X ≤ x). In other words,
40 * this method represents the probability distribution function, or PDF
41 * for the distribution.
44 * @return PDF for this distribution.
51 * For this distribution, X, this method returns P(x0 ≤ X ≤ x1).
62 * For this distribution, X, this method returns the largest x such that
NormalDistributionImpl.java 18 package org.apache.commons.math.distribution;
30 * {@link org.apache.commons.math.distribution.NormalDistribution}.
49 /** The mean of this distribution. */
52 /** The standard deviation of this distribution. */
59 * Create a normal distribution using the given mean and standard deviation.
60 * @param mean mean for this distribution
61 * @param sd standard deviation for this distribution
68 * Create a normal distribution using the given mean, standard deviation and
69 * inverse cumulative distribution accuracy.
71 * @param mean mean for this distribution
    [all...]
  /external/python/cpython2/Lib/distutils/command/
bdist_dumb.py 4 distribution -- i.e., just an archive to be unpacked under $prefix or
21 description = 'create a "dumb" built distribution'
24 "temporary directory for creating the distribution"),
32 "creating the distribution archive"),
98 archive_basename = "%s.%s" % (self.distribution.get_fullname(),
110 if (self.distribution.has_ext_modules() and
113 ("can't make a dumb built distribution where "
125 if self.distribution.has_ext_modules():
129 self.distribution.dist_files.append(('bdist_dumb', pyversion,
  /external/python/cpython3/Lib/distutils/command/
bdist_dumb.py 4 distribution -- i.e., just an archive to be unpacked under $prefix or
17 description = "create a \"dumb\" built distribution"
20 "temporary directory for creating the distribution"),
29 "creating the distribution archive"),
93 archive_basename = "%s.%s" % (self.distribution.get_fullname(),
100 if (self.distribution.has_ext_modules() and
103 "can't make a dumb built distribution where "
115 if self.distribution.has_ext_modules():
119 self.distribution.dist_files.append(('bdist_dumb', pyversion,
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
bdist_dumb.py 4 distribution -- i.e., just an archive to be unpacked under $prefix or
21 description = 'create a "dumb" built distribution'
24 "temporary directory for creating the distribution"),
32 "creating the distribution archive"),
98 archive_basename = "%s.%s" % (self.distribution.get_fullname(),
110 if (self.distribution.has_ext_modules() and
113 ("can't make a dumb built distribution where "
125 if self.distribution.has_ext_modules():
129 self.distribution.dist_files.append(('bdist_dumb', pyversion,
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
bdist_dumb.py 4 distribution -- i.e., just an archive to be unpacked under $prefix or
21 description = 'create a "dumb" built distribution'
24 "temporary directory for creating the distribution"),
32 "creating the distribution archive"),
98 archive_basename = "%s.%s" % (self.distribution.get_fullname(),
110 if (self.distribution.has_ext_modules() and
113 ("can't make a dumb built distribution where "
125 if self.distribution.has_ext_modules():
129 self.distribution.dist_files.append(('bdist_dumb', pyversion,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_dumb.py 4 distribution -- i.e., just an archive to be unpacked under $prefix or
21 description = 'create a "dumb" built distribution'
24 "temporary directory for creating the distribution"),
32 "creating the distribution archive"),
98 archive_basename = "%s.%s" % (self.distribution.get_fullname(),
110 if (self.distribution.has_ext_modules() and
113 ("can't make a dumb built distribution where "
125 if self.distribution.has_ext_modules():
129 self.distribution.dist_files.append(('bdist_dumb', pyversion,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_dumb.py 4 distribution -- i.e., just an archive to be unpacked under $prefix or
21 description = 'create a "dumb" built distribution'
24 "temporary directory for creating the distribution"),
32 "creating the distribution archive"),
98 archive_basename = "%s.%s" % (self.distribution.get_fullname(),
110 if (self.distribution.has_ext_modules() and
113 ("can't make a dumb built distribution where "
125 if self.distribution.has_ext_modules():
129 self.distribution.dist_files.append(('bdist_dumb', pyversion,
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
relaxed_onehot_categorical.py 15 """Relaxed OneHotCategorical distribution classes."""
31 from tensorflow.python.ops.distributions import distribution
36 class ExpRelaxedOneHotCategorical(distribution.Distribution):
37 """ExpRelaxedOneHotCategorical distribution with temperature and logits.
39 An ExpRelaxedOneHotCategorical distribution is a log-transformed
40 RelaxedOneHotCategorical distribution. The RelaxedOneHotCategorical is a
41 distribution over random probability vectors, vectors of positive real
44 goes to 0 the RelaxedOneHotCategorical becomes discrete with a distribution
46 RelaxedOneHotCategorical becomes the constant distribution that is identicall
    [all...]
vector_student_t.py 15 """Vector Student's t distribution classes."""
32 """A vector version of Student's t-distribution on `R^k`.
54 The VectorStudentT distribution is a member of the [location-scale family](
66 This distribution is an Affine transformation of iid
68 https://en.wikipedia.org/wiki/Student%27s_t-distribution)
69 and should not be confused with the [Multivate Student's t-distribution](
70 https://en.wikipedia.org/wiki/Multivariate_t-distribution). The
71 traditional Multivariate Student's t-distribution is type of
72 [elliptical distribution](
82 Notice that the Multivariate Student's t-distribution uses `k` where th
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
random_op.cc 62 template <typename Device, class Distribution>
64 typedef typename Distribution::ResultElementType T;
66 T* data, int64 size, Distribution dist) {
72 template <class Distribution, bool VariableSamplesPerOutput>
75 // Specialization for distribution that takes a fixed number of samples for
77 template <class Distribution>
78 struct FillPhiloxRandomTask<Distribution, false> {
79 typedef typename Distribution::ResultElementType T;
81 int64 start_group, int64 limit_group, Distribution dist) {
82 const int kGroupSize = Distribution::kResultElementCount
    [all...]
  /external/tensorflow/tensorflow/docs_src/programmers_guide/
tensorboard_histograms.md 3 The TensorBoard Histogram Dashboard displays how the distribution of some
20 normally distributed data, where the mean of the distribution increases over
28 # Make a normal distribution, with a shifting mean
30 # Record that distribution into a histogram summary
126 distributions. Let's construct a simple bimodal distribution by concatenating
135 # Make a normal distribution, with a shifting mean
137 # Record that distribution into a histogram summary
140 # Make a normal distribution with shrinking variance
142 # Record that distribution too
147 # We add another histogram summary to record the combined distribution
    [all...]
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.4.01/
xml-apis-1.4.01.pom 37 <distribution>repo</distribution>
42 <distribution>repo</distribution>
47 <distribution>repo</distribution>
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /external/python/cpython2/Lib/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
19 from distutils.dist import Distribution
63 Distribution instance; find and parse config files; parse the command
68 The Distribution instance might be an instance of a class supplied via
70 supplied, then the Distribution class (in dist.py) is instantiated.
72 attributes of the Distribution instance.
87 driven entirely by the Distribution object (which each command object
95 # Determine the distribution class -- either caller-supplied or
96 # our Distribution (see below).
101 klass = Distribution
    [all...]
  /external/python/cpython3/Lib/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
16 from distutils.dist import Distribution
60 Distribution instance; find and parse config files; parse the command
65 The Distribution instance might be an instance of a class supplied via
67 supplied, then the Distribution class (in dist.py) is instantiated.
69 attributes of the Distribution instance.
84 driven entirely by the Distribution object (which each command object
92 # Determine the distribution class -- either caller-supplied or
93 # our Distribution (see below).
98 klass = Distribution
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
DistributionPointName.java 38 * It is used in the CRL Distribution Points Extension (OID = 2.5.29.31)
39 * and the Issuing Distribution Point Extension (OID = 2.5.29.28).
96 * Creates a distribution point name using a full name.
98 * @param fullName the name for the distribution point.
110 * Creates a distribution point name using a relative name.
112 * @param relativeName the name of the distribution point relative to
125 * Creates a distribution point name from its DER-encoded form.
151 * Returns the full name for the distribution point or null if not set.
158 * Returns the relative name for the distribution point or null if not set.
165 * Encodes the distribution point name and writes it to the DerOutputStream
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_install_lib.py 62 cmd.distribution.py_modules = [pkg_dir]
63 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
64 cmd.distribution.packages = [pkg_dir]
65 cmd.distribution.script_name = 'setup.py'
79 cmd.distribution.py_modules = [pkg_dir]
80 cmd.distribution.ext_modules = [Extension('foo', ['xxx'])]
81 cmd.distribution.packages = [pkg_dir]
82 cmd.distribution.script_name = 'setup.py'
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
makefile 3 ## added support/genmk/makefile to pccts 1.33MR1 distribution kit
4 ## (support/genmk/makefile" omitted from 1.33 distribution kit)
  /external/fio/examples/
jesd219.fio 2 # testing. It uses a specific distribution of block sizes and
3 # read/write mix, as well as a specific distribution of where on
  /external/jacoco/org.jacoco.examples/
assembly.xml 6 which accompanies this distribution, and is available at
13 <id>distribution</id>

Completed in 256 milliseconds

1 2 3 4 56 7 8 91011>>