Replies: 1 comment 1 reply
-
Can you share the code you're using? Note that in |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I'm new to Gpytorch switching from other packages because of its seamless integration with pytorch.
I'm trying to work on a Multioutput problem (using MultitaskGP, Exact Inference).
My data's input and output shape is (N,D), where N is the number of different samples with D being flattened pixels.
After successfully training my model when I want to make predictions or print the shape of either covariance or variance matrix
it throws out of memory error, and the memory requirement is way too high, to be specific, 100+ GB on GPU.
Instead of evaluating the full covariance matrix, is there any option to evaluate the (N,D) shaped matrix, instead of (N,D,N,D) which will be computationally less expensive?
Beta Was this translation helpful? Give feedback.
All reactions