-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blueprint: add Hellinger alpha, and more
- Loading branch information
1 parent
73350a3
commit bb77d9d
Showing
6 changed files
with
87 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
\chapter{Convex functions of Radon-Nikodym derivatives} | ||
|
||
Let $f : \mathbb{R} \to \mathbb{R}$ be convex on $[0, +\infty)$. Remark that $f(0)$ is finite. | ||
|
||
\begin{definition} | ||
\label{def:derivAtTop} | ||
\lean{ProbabilityTheory.derivAtTop} | ||
\leanok | ||
%\uses{} | ||
We define $f'(\infty) := \limsup_{x \to + \infty} f(x)/x$. This can be equal to $+\infty$ (but not $-\infty$). | ||
\end{definition} | ||
|
||
\begin{lemma} | ||
\label{lem:integrable_f_rnDeriv_of_derivAtTop_ne_top} | ||
\lean{ProbabilityTheory.integrable_f_rnDeriv_of_derivAtTop_ne_top} | ||
\leanok | ||
\uses{def:derivAtTop} | ||
If $\mu$ and $\nu$ are two finite measures and $f'(\infty) < \infty$, then $x \mapsto f\left(\frac{d\mu}{d\nu}(x)\right)$ is $\nu$-integrable. | ||
\end{lemma} | ||
|
||
\begin{proof} \leanok | ||
By convexity and $f(0) < \infty$, $f'(\infty)<\infty$, we can sandwich $f$ between two affine functions of $\frac{d\mu}{d\nu}$. | ||
Those functions are integrable since the measures are finite. | ||
\end{proof} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
\chapter{Hellinger alpha-divergences} | ||
|
||
\begin{definition}[Hellinger $\alpha$-divergence] | ||
\label{def:hellingerAlpha} | ||
%\lean{} | ||
%\leanok | ||
\uses{def:KL, def:fDiv} | ||
Let $\mu, \nu$ be two measures on $\mathcal X$. The Hellinger divergence of order $\alpha \in (0,+\infty)$ between $\mu$ and $\nu$ is | ||
\begin{align*} | ||
\He_\alpha(\mu, \nu) = \left\{ | ||
\begin{array}{ll} | ||
\KL(\mu, \nu) & \text{for } \alpha = 1 | ||
\\ | ||
D_f(\mu, \nu) & \text{for } \alpha \in (0,+\infty) \backslash \{1\} | ||
\end{array}\right. | ||
\end{align*} | ||
with $f : x \mapsto \frac{x^{\alpha} - 1}{\alpha - 1}$. | ||
\end{definition} | ||
|
||
\begin{lemma} | ||
\label{lem:hellingerAlpha_symm} | ||
%\lean{} | ||
%\leanok | ||
\uses{def:hellingerAlpha} | ||
For $\alpha \in (0, 1)$, $(1 - \alpha) \He_\alpha(\mu, \nu) = \alpha \He_{1 - \alpha}(\nu, \mu)$. | ||
\end{lemma} | ||
|
||
\begin{proof} | ||
Unfold the definitions. | ||
\end{proof} | ||
|
||
|
||
\begin{definition}[Conditional Hellinger $\alpha$-divergence] | ||
\label{def:condHellingerAlpha} | ||
%\lean{} | ||
%\leanok | ||
\uses{def:condFDiv} | ||
Let $\mu$ be a measure on $\mathcal X$ and $\kappa, \eta : \mathcal X \rightsquigarrow \mathcal Y$ be two Markov kernels. The conditional Hellinger divergence of order $\alpha \in (0,+\infty) \backslash \{1\}$ between $\kappa$ and $\eta$ conditionally to $\mu$ is | ||
\begin{align*} | ||
\He_\alpha(\kappa, \eta \mid \mu) = D_f(\kappa, \eta \mid \mu) \: , | ||
\end{align*} | ||
for $f : x \mapsto \frac{x^{\alpha} - 1}{\alpha - 1}$. | ||
\end{definition} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters