-
How can I make an Exact GP Regression on Classification Labels with Dataloader ? I have tried mimiching dataloader used in "Stochastic Variational GP Regression" but i get an erro saying " You must train on the training inputs!" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I am unsure what you are trying to achieve. A fundamental drawback of exact GPs is the requirement to train on the whole dataset in every step, as you need to compute the solve of the full covariance matrix with the expected output. If you want mini-batches, you have to use a variational method. However, there are ways to scale exact GPs to very large datasets. For this, have a look at the docs. |
Beta Was this translation helpful? Give feedback.
I am unsure what you are trying to achieve. A fundamental drawback of exact GPs is the requirement to train on the whole dataset in every step, as you need to compute the solve of the full covariance matrix with the expected output. If you want mini-batches, you have to use a variational method. However, there are ways to scale exact GPs to very large datasets. For this, have a look at the docs.