AndreaBraschi
AndreaBraschi
Hi, I am working on developing a Bayesian GP-LVM that can reproduce human motion trajectories. I have already posted a question ( #1867), however I am also working on a...
Hi all, I’ve been trying to implement a variational GP dynamical system (GPDS) using GPyTorch. At this very first stage of my project, I haven't changed much from the GPLVM...
Hi all, I've written a function to concatenate 2 square `LinearOperator` objects with different shapes: ``` from linear_operator.operators import ZeroLinearOperator, CatLinearOperator, KroneckerProductLinearOperator def cat_LinearOperators(*linear_operators): oper_A = linear_operators[0] oper_B = linear_operators[1]...