| /third_party/mindspore/tests/ut/python/nn/probability/distribution/ |
| D | test_exponential.py | 16 Test nn.probability.distribution.Exponential. 30 e = msd.Exponential() 32 e = msd.Exponential([0.1, 0.3, 0.5, 1.0], dtype=dtype.float32) 37 msd.Exponential([0.1], dtype=dtype.int32) 41 msd.Exponential([0.1], name=1.0) 45 msd.Exponential([0.1], seed='seed') 52 msd.Exponential([-0.1], dtype=dtype.float32) 54 msd.Exponential([0.0], dtype=dtype.float32) 58 Exponential distribution: initialize with rate. 62 self.e = msd.Exponential(0.5, dtype=dtype.float32) [all …]
|
| /third_party/mindspore/tests/st/probability/distribution/ |
| D | test_exponential.py | 15 """test cases for Exponential distribution""" 28 Test class: probability of Exponential distribution. 32 self.e = msd.Exponential([[1.0], [0.5]], dtype=dtype.float32) 51 Test class: log probability of Exponential distribution. 55 self.e = msd.Exponential([[1.0], [0.5]], dtype=dtype.float32) 74 Test class: kl_loss between Exponential distributions. 78 self.e = msd.Exponential([1.5], dtype=dtype.float32) 81 return self.e.kl_loss('Exponential', x_) 97 Test class: mean/sd/mode of Exponential distribution. 101 self.e = msd.Exponential([0.5], dtype=dtype.float32) [all …]
|
| D | test_get_dist_args.py | 67 Test class: Exponential distribution. `dist_spec_args` is `rate`. 71 self.expon = msd.Exponential(dtype=dtype.float32) 72 self.expon1 = msd.Exponential(1.0, dtype=dtype.float32) 73 self.expon2 = msd.Exponential(2.0, dtype=dtype.float32)
|
| /third_party/mindspore/mindspore/nn/probability/distribution/ |
| D | exponential.py | 15 """Exponential Distribution""" 26 class Exponential(Distribution): class 28 Example class: Exponential Distribution. 34 name (str): The name of the distribution. Default: 'Exponential'. 42 `dtype` must be a float type because Exponential distributions are continuous. 49 >>> # To initialize a Exponential distribution of the probability 0.5. 50 >>> e1 = msd.Exponential(0.5, dtype=mindspore.float32) 51 >>> # An Exponential distribution can be initialized without arguments. 53 >>> e2 = msd.Exponential(dtype=mindspore.float32) 93 >>> # dist (str): The name of the distribution. Only 'Exponential' is supported. [all …]
|
| D | __init__.py | 25 from .exponential import Exponential 41 'Exponential',
|
| /third_party/boost/libs/math/doc/distributions/ |
| D | exponential.qbk | 1 [section:exp_dist Exponential Distribution] 3 ``#include <boost/math/distributions/exponential.hpp>`` 9 typedef exponential_distribution<> exponential; 24 The [@http://en.wikipedia.org/wiki/Exponential_distribution exponential distribution] 43 [@http://en.wikipedia.org/wiki/Exponential_distribution Exponential distribution] 62 The exponential distribution is implemented in terms of the 88 * [@http://mathworld.wolfram.com/ExponentialDistribution.html Weisstein, Eric W. "Exponential Distr… 91 * [@http://en.wikipedia.org/wiki/Exponential_distribution Wikipedia Exponential distribution] 100 [endsect] [/section:exp_dist Exponential] 102 [/ exponential.qbk
|
| D | hyperexponential.qbk | 62 …obtained as a mixture of /k/ [link math_toolkit.dist_ref.dists.exp_dist Exponential Distribution]s. 63 It is also referred to as /mixed exponential distribution/ or parallel /k-phase exponential distrib… 73 # ['[*[alpha]]=(1.0)] and ['[*[lambda]]=(1.0)] (which degenerates to a simple exponential distribut… 81 … probability vector/ changes together with the PDF of the two limiting exponential distributions (… 86 # Exponential distribution with parameter ['[lambda]=0.5], 87 # Exponential distribution with parameter ['[lambda]=1.5]. 89 …roaches to /0/), the resulting hyperexponential distribution nears the exponential distribution wi… 90 …roaches to /0/), the resulting hyperexponential distribution nears the exponential distribution wi… 96 # ['[*[alpha]]=(1.0)] and ['[*[lambda]]=(2.0)] (which degenerates to a simple exponential distribut… 102 …nential distributions have a /longer/ tail with respect to the one of the exponential distribution. [all …]
|
| /third_party/boost/libs/math/doc/sf/ |
| D | expint.qbk | 1 [section:expint Exponential Integrals] 3 [section:expint_n Exponential Integral En] 34 Returns the [@http://mathworld.wolfram.com/En-Function.html exponential integral En] 89 [endsect] [/section:expint_n Exponential Integral En] 92 [section:expint_i Exponential Integral Ei] 123 Returns the [@http://mathworld.wolfram.com/ExponentialIntegral.html exponential integral] 191 Rational Chebyshev approximations for the exponential integral E[sub 1](x), 194 exponential integral Ei(x), Math. Comp. 23 (1969), 289-303.] 218 [endsect] [/section:expint_n Exponential Integral En] 220 [endsect] [/section:expint Exponential Integrals]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
| D | autoscan_exponential.c | 2 * WPA Supplicant - auto scan exponential module 59 wpa_printf(MSG_DEBUG, "autoscan exponential: base exponential is %d " in autoscan_exponential_init() 81 wpa_printf(MSG_DEBUG, "autoscan exponential: scan result " in autoscan_exponential_notify_scan() 100 .name = "exponential",
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
| D | autoscan_exponential.c | 2 * WPA Supplicant - auto scan exponential module 59 wpa_printf(MSG_DEBUG, "autoscan exponential: base exponential is %d " in autoscan_exponential_init() 81 wpa_printf(MSG_DEBUG, "autoscan exponential: scan result " in autoscan_exponential_notify_scan() 100 .name = "exponential",
|
| /third_party/mindspore/mindspore/dataset/audio/ |
| D | utils.py | 26 Possible enumeration values are: FadeShape.EXPONENTIAL, FadeShape.HALFSINE, FadeShape.LINEAR, 29 - FadeShape.EXPONENTIAL: means the fade shape is exponential mode. 36 EXPONENTIAL: str = "exponential" variable in FadeShape
|
| /third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
| D | func_exponential.hpp | 4 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 6 /// @defgroup core_func_exponential Exponential functions 31 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 41 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 53 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 63 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 74 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 84 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a> 96 …gistry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
| /third_party/boost/libs/random/test/ |
| D | test_exponential.cpp | 14 #include <boost/math/distributions/exponential.hpp> 17 #define BOOST_RANDOM_DISTRIBUTION_NAME exponential 18 #define BOOST_MATH_DISTRIBUTION boost::math::exponential
|
| /third_party/boost/libs/math/doc/html/math_toolkit/ |
| D | expint.html | 4 <title>Exponential Integrals</title> 10 <link rel="next" href="expint/expint_n.html" title="Exponential Integral En"> 27 …lkit.expint"></a><a class="link" href="expint.html" title="Exponential Integrals">Exponential Inte… 30 <dt><span class="section"><a href="expint/expint_n.html">Exponential Integral En</a></span></dt> 31 <dt><span class="section"><a href="expint/expint_i.html">Exponential Integral Ei</a></span></dt>
|
| D | exp.html | 4 <title>The Quaternionic Exponential</title> 27 …<a class="link" href="exp.html" title="The Quaternionic Exponential">The Quaternionic Exponential<… 34 … <a href="../../quaternion/TQE.pdf" target="_top">The Quaternionic Exponential (and beyond)</a> 37 <a href="../../quaternion/TQE_EA.pdf" target="_top">The Quaternionic Exponential (and
|
| /third_party/boost/libs/math/test/compile_test/ |
| D | dist_exponential_incl_test.cpp | 6 // Basic sanity check that header <boost/math/distributions/exponential.hpp> 9 #include <boost/math/distributions/exponential.hpp> 18 TEST_DIST_FUNC(exponential) in compile_and_link_test()
|
| /third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
| D | gd.txt | 28 exponential{"اس"} 44 exponential{"×۱۰^"} 60 exponential{"E"} 76 exponential{"E"} 92 exponential{"E"} 108 exponential{"E"} 124 exponential{"E"} 141 exponential{"E"} 168 exponential{"E"} 184 exponential{"E"} [all …]
|
| /third_party/icu/icu4c/source/data/locales/ |
| D | gd.txt | 30 exponential{"E"} 47 exponential{"اس"} 64 exponential{"×۱۰^"} 81 exponential{"E"} 98 exponential{"E"} 115 exponential{"E"} 132 exponential{"E"} 149 exponential{"E"} 167 exponential{"E"} 347 exponential{"E"} [all …]
|
| /third_party/skia/third_party/externals/icu/source/data/locales/ |
| D | gd.txt | 30 exponential{"E"} 47 exponential{"اس"} 64 exponential{"×۱۰^"} 81 exponential{"E"} 98 exponential{"E"} 115 exponential{"E"} 132 exponential{"E"} 149 exponential{"E"} 167 exponential{"E"} 347 exponential{"E"} [all …]
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| D | double-conversion-double-to-string.h | 120 // The exponent_character is used in exponential representations. It is 136 // max_leading_padding_zeroes before returning the number in exponential 143 // returning an exponential representation. A zero added by the 150 // The min_exponent_width is used for exponential representations. 185 // Lower case 'e' for exponential values. 195 // exponential representation. 226 // - the longest exponential representation. (A negative number with 279 // Computes a representation in exponential format with requested_digits 281 // If requested_digits equals -1, then the shortest exponential representation 315 // either in exponential or decimal format, depending on [all …]
|
| /third_party/icu/icu4c/source/i18n/ |
| D | double-conversion-double-to-string.h | 120 // The exponent_character is used in exponential representations. It is 136 // max_leading_padding_zeroes before returning the number in exponential 143 // returning an exponential representation. A zero added by the 150 // The min_exponent_width is used for exponential representations. 185 // Lower case 'e' for exponential values. 195 // exponential representation. 226 // - the longest exponential representation. (A negative number with 279 // Computes a representation in exponential format with requested_digits 281 // If requested_digits equals -1, then the shortest exponential representation 315 // either in exponential or decimal format, depending on [all …]
|
| /third_party/node/deps/icu-small/source/i18n/ |
| D | double-conversion-double-to-string.h | 120 // The exponent_character is used in exponential representations. It is 136 // max_leading_padding_zeroes before returning the number in exponential 143 // returning an exponential representation. A zero added by the 150 // The min_exponent_width is used for exponential representations. 185 // Lower case 'e' for exponential values. 195 // exponential representation. 226 // - the longest exponential representation. (A negative number with 279 // Computes a representation in exponential format with requested_digits 281 // If requested_digits equals -1, then the shortest exponential representation 315 // either in exponential or decimal format, depending on [all …]
|
| /third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
| D | double-to-string.h | 105 // The exponent_character is used in exponential representations. It is 121 // max_leading_padding_zeroes before returning the number in exponential 128 // returning an exponential representation. A zero added by the 135 // The min_exponent_width is used for exponential representations. 170 // Lower case 'e' for exponential values. 180 // exponential representation. 211 // - the longest exponential representation. (A negative number with 264 // Computes a representation in exponential format with requested_digits 266 // If requested_digits equals -1, then the shortest exponential representation 300 // either in exponential or decimal format, depending on [all …]
|
| /third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
| D | ExponentialTaper.java | 20 * Maps integer range info to a double value along an exponential scale. 64 public double exponentialToLinear(double exponential) { in exponentialToLinear() argument 65 return Math.log((exponential + offset) / a) / (b * Math.log(ROOT)); in exponentialToLinear()
|
| /third_party/boost/boost/random/ |
| D | laplace_distribution.hpp | 94 RealType exponential = exponential_distribution<RealType>()(urng); in operator ()() local 96 exponential = -exponential; in operator ()() 97 return _mean + _beta * exponential; in operator ()()
|