Skip to content

Commit de14b66

Browse files
authored
修复Exponential文档 issue#7475 (#7477)
1 parent f1c94d6 commit de14b66

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/api/paddle/distribution/Exponential_cn.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ entropy()
8787

8888
- Tensor: 信息熵。
8989

90-
cdf(k)
90+
cdf(value)
9191
'''''''''
9292
指数分布的累积分布函数。
9393

@@ -109,7 +109,7 @@ cdf(k)
109109

110110
- Tensor: value 对应的累积分布。
111111

112-
icdf(k)
112+
icdf(value)
113113
'''''''''
114114
指数分布的逆累积分布函数。
115115

@@ -121,7 +121,8 @@ icdf(k)
121121

122122
.. math::
123123
124-
icdf(x; \theta) = -\frac{ 1 }{ \theta } ln(1 + x), (x \ge 0)
124+
icdf(x; \theta) = -\frac{ 1 }{ \theta } ln(1 - x), (0 < x < 1)
125+
125126
126127
上面的数学公式中:
127128

@@ -138,7 +139,7 @@ kl_divergence(other)
138139

139140
**参数**
140141

141-
- **other** (Geometric) - Exponential 的实例。
142+
- **other** (Exponential) - Exponential 的实例。
142143

143144
**返回**
144145

0 commit comments

Comments
 (0)