Contents probability [5]
- E[X]
- Expectation Mean of random variable X over its distribution.
- Var(X)
- Variance Expected squared deviation from the mean, E[(X−E[X])2].
- N(μ,σ2)
- Normal distribution Gaussian with mean μ and variance σ2.
- X∼p
- Distributed as Random variable X is drawn from distribution p.
- p∝q
- Proportional to Equal up to a constant factor (e.g. unnormalized density).
linear algebra [5]
- Rn
- Real coordinate space Set of n-dimensional real-valued vectors.
- ⟨⋅,⋅⟩
- Inner product Bilinear form giving a scalar from two vectors (e.g. dot product).
- ∥⋅∥
- Norm Length/magnitude of a vector.
- ⊙
- Hadamard product Elementwise product of equal-shaped arrays.
- λ
- Eigenvalue / regularization Scalar with Av=λv (linear algebra); weight on a penalty term (ML).
calculus [5]
- ∇f
- Gradient Vector of first partial derivatives of scalar field f.
- ∂
- Partial derivative Rate of change of a function holding other variables fixed.
- ∫
- Integral Continuous accumulation / area under a function.
- ∑
- Summation Sum of a sequence of terms over an index.
- ∏
- Product Product of a sequence of terms over an index.
deep learning [6]
- θ
- Parameters Vector of model parameters to be learned.
- η
- Learning rate Step size scaling the gradient update.
- σ
- Sigmoid / standard deviation Logistic σ(x)=1/(1+e−x) (DL); square root of variance (probability).
- softmax
- Softmax Maps a vector to a probability simplex, ezi/∑jezj.
- y^
- Prediction Model's estimate of the target y.
- L
- Loss Objective function minimized during training.
information [2]
- H(X)
- Entropy Expected information content, −∑p(x)logp(x).
- DKL(p∥q)
- KL divergence Relative entropy from q to p, ∑plog(p/q).
set & logic [3]
- argmax
- Argmax Argument that maximizes a function.
- ∘
- Function composition (f∘g)(x)=f(g(x)).
- ∈
- Element of Membership: object belongs to a set.