We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1c94d6 commit de14b66Copy full SHA for de14b66
docs/api/paddle/distribution/Exponential_cn.rst
@@ -87,7 +87,7 @@ entropy()
87
88
- Tensor: 信息熵。
89
90
-cdf(k)
+cdf(value)
91
'''''''''
92
指数分布的累积分布函数。
93
@@ -109,7 +109,7 @@ cdf(k)
109
110
- Tensor: value 对应的累积分布。
111
112
-icdf(k)
+icdf(value)
113
114
指数分布的逆累积分布函数。
115
@@ -121,7 +121,8 @@ icdf(k)
121
122
.. math::
123
124
- icdf(x; \theta) = -\frac{ 1 }{ \theta } ln(1 + x), (x \ge 0)
+ icdf(x; \theta) = -\frac{ 1 }{ \theta } ln(1 - x), (0 < x < 1)
125
+
126
127
上面的数学公式中:
128
@@ -138,7 +139,7 @@ kl_divergence(other)
138
139
140
**参数**
141
- - **other** (Geometric) - Exponential 的实例。
142
+ - **other** (Exponential) - Exponential 的实例。
143
144
**返回**
145
0 commit comments