Return the shape of these inducing variables. Shape should be some variation of ``[M, D, P]``, where: * ``M`` is the number of inducing variables. * ``D`` is the number of input dimensions. * ``P`` is the number of output dimensions (1 if this is not a mult
(self)
| 48 | @property |
| 49 | @abc.abstractmethod |
| 50 | def shape(self) -> Shape: |
| 51 | """ |
| 52 | Return the shape of these inducing variables. |
| 53 | |
| 54 | Shape should be some variation of ``[M, D, P]``, where: |
| 55 | |
| 56 | * ``M`` is the number of inducing variables. |
| 57 | * ``D`` is the number of input dimensions. |
| 58 | * ``P`` is the number of output dimensions (1 if this is not a multi-output inducing |
| 59 | variable). |
| 60 | """ |
| 61 | |
| 62 | |
| 63 | class InducingPointsBase(InducingVariables): |
no outgoing calls
no test coverage detected