-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathNotation.tex
More file actions
51 lines (44 loc) · 3.01 KB
/
Notation.tex
File metadata and controls
51 lines (44 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
\documentclass[14pt,a4paper]{article}
\usepackage{amsmath, amssymb, bbm, xifthen, vimacros}
\author{}
\title{Conventions for Slides}
\date{last modified: \today}
\begin{document}
\begin{abstract}
This document describes the notational conventions we plan to follow for the tutorial slides.
\end{abstract}
\section{Probability}
\begin{itemize}
\item Probability densities are denoted by lower case letters and probability mass functions are denoted by upper case letters. Defaults: $ P $ and $ p $ are used for model densities, $ Q $ and $ q $ for approximations to the
posterior or proposal distributions.
\item Random variables whose outcomes are data are denoted by upper case Roman letters, while outcomes are denoted by the corresponding lower case letters. Defaults: $ X $ and $ x $ for observed data, $ Z $ and $ z $
for latent data and $ Y $ and $ y $ for data labels (observed or latent).
\item The set of outcomes of a random variable $ X $ is denoted by $ \mathcal{X} $. If we take $ \Omega $
to be the event space, a random variable is thus a function $ X : \Omega \rightarrow \mathcal{X} $.
\item Random variables whose outcomes are parameters are denoted by upper case Greek letter while outcomes
are denoted by the corresponding lower case letters. Defaults: $ \Theta $ and $ \theta $ for model parameters
and $ \Lambda $ and $ \lambda $ for inference parameters.
\item Non-random hyperparameters are denoted by lower case Greek letters from the beginning of the alphabet.
Default: $ \alpha $.
\item By default, all random variables are understood to be vectors.
\item The expectation of a (function of) a random variable $ X \sim p $ is denoted $ \E[p]{f(X)} $ by default
or $ \E{f(X)} $ when it is clear which distribution is used.
\item The entropy of a random variable $ X $ is denoted by $ \Ent{X} $.
\item The relative entropy, or Kullback-Leibler divergence, from a distribution $ q $ to a distribution $ p $
is denoted as $ \KL{q}{p} $.
\item The univariate normal distribution with mean $ \mu $ and variance $ \sigma^{2} $ is denoted as
$ \NDist{\mu}{\sigma^{2}} $.
\item The multivariate normal distribution with mean $ \mu $ and covariance matrix $ \Sigma $ is denoted as
$ \NDist{\mu}{\Sigma} $.
\end{itemize}
\section{Linear Algebra}
\begin{itemize}
\item Vectors are denoted by Roman lower case letters, Matrices (and higher-order tensors) are denoted by
upper case Roman letters. To avoid the proliferation of letters, we use indeces whenever possible. For example,
two weight matrices may be distinguished as $ W_{task1} $ and $ W_{task2} $. The letter $ W $ is standardly
used to denote weight matrices in neural networks.
\item Matrix multiplication is denoted by $ \times $ or by writing
to matrices next to each other. Element-wise multiplication (Hadamard product) is denoted by $ \odot $.
\item The norm of a vector $ x $ is denoted $ \norm{x} $ and the Frobenius norm of a matrix $ W $ is similarly denoted $ \norm{W} $. Unless otherwise indicated, the norm is understood to be the Euclidean or $ L_{2} $-norm.
\end{itemize}
\end{document}