Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.42 KB

GLOSSARY.md

File metadata and controls

39 lines (27 loc) · 1.42 KB

Glossary

GPflow does not always follow standard Python naming conventions, and instead tries to apply the notation in the relevant GP papers.
The following is the convention we aim to use in the code.


GPR
Gaussian process regression
SVGP
stochastic variational inference for Gaussian process models
Shape constructions [..., A, B]
the way of describing tensor shapes in docstrings and comments. Example: [..., N, D, D], this is a tensor with an arbitrary number of leading dimensions indicated using the ellipsis sign, and the last two dimensions are equal
X
(and variations like Xnew) refers to input points; always of rank 2, e.g. shape [N, D], even when D=1
Y
(and variations like Ynew) refers to observed output values, potentially with multiple output dimensions; always of rank 2, e.g. shape [N, P], even when P=1
Z
refers to inducing points
M
stands for the number of inducing features (e.g. length of Z)
N
stands for the number of data or minibatch size in docstrings and shape constructions
P
stands for the number of output dimensions in docstrings and shape constructions
D
stands for the number of input dimensions in docstrings and shape constructions