Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a reference in README #54

Merged
merged 1 commit into from
Nov 21, 2019
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ The following table lists mathematical operations for a bijector and the corresp
| Operation | Method | Automatic |
|:------------------------------------:|:-----------------:|:-----------:|
| `b ↦ b⁻¹` | `inv(b)` | ✓ |
| `(b₁, b₂) ↦ (b₁ ∘ b₂)` | `b1b2` | ✓ |
| `(b₁, b₂) ↦ [b₁, b₂]` | `stack(b1, b2)` | ✓ |
| `(b₁, b₂) ↦ (b₁ ∘ b₂)` | `b₁b₂` | ✓ |
| `(b₁, b₂) ↦ [b₁, b₂]` | `stack(b₁, b₂)` | ✓ |
| `x ↦ b(x)` | `b(x)` | × |
| `y ↦ b⁻¹(y)` | `inv(b)(y)` | × |
| `x ↦ log|det J(b, x)|` | `logabsdetjac(b, x)` | AD |
Expand All @@ -31,7 +31,7 @@ The following table lists mathematical operations for a bijector and the corresp
| `p ↦ b` such that `support(b_* p) = ℝᵈ` | `bijector(p)` | ✓ |
| `(x ∼ p, b(x), log|det J(b, x)|, log q(y))` | `forward(q)` | ✓ |

In this table, `b` denotes a `Bijector`, `J(b, x)` denotes the jacobian of `b` evaluated at `x`, `b_*` denotes the (https://www.wikiwand.com/en/Pushforward_measure)[push-forward] of `p` by `b`, and `x ∼ p` denotes `x` sampled from the distribution with density `p`.
In this table, `b` denotes a `Bijector`, `J(b, x)` denotes the jacobian of `b` evaluated at `x`, `b_*` denotes the [push-forward](https://www.wikiwand.com/en/Pushforward_measure) of `p` by `b`, and `x ∼ p` denotes `x` sampled from the distribution with density `p`.

The "Automatic" column in the table refers to whether or not you are required to implement the feature for a custom `Bijector`. "AD" refers to the fact that it can be implemented "automatically" using automatic differentiation, i.e. `ADBijector`.

Expand Down