Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/api/paddle/distribution/Exponential_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ entropy()

- Tensor: 信息熵。

cdf(k)
cdf(value)
'''''''''
指数分布的累积分布函数。

Expand All @@ -109,7 +109,7 @@ cdf(k)

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

icdf(k)
icdf(value)
'''''''''
指数分布的逆累积分布函数。

Expand All @@ -121,7 +121,8 @@ icdf(k)

.. math::

icdf(x; \theta) = -\frac{ 1 }{ \theta } ln(1 + x), (x \ge 0)
icdf(x; \theta) = -\frac{ 1 }{ \theta } ln(1 - x), (0 < x < 1)


上面的数学公式中:

Expand All @@ -138,7 +139,7 @@ kl_divergence(other)

**参数**

- **other** (Geometric) - Exponential 的实例。
- **other** (Exponential) - Exponential 的实例。

**返回**

Expand Down