-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kronecker-factored matrices #6
Labels
Comments
Kronecker.jl is a thing |
This is a large body of research using Kronecker factorizations in GP/kernel ridge regression, e.g. GPatt and Kronecker ridge regression. Would love to discuss this or contribute! |
Would be great to both discuss and collaborate :) Are you around for the hackathon tomorrow? |
Yes! I am here the whole Hackathon. Would like to get involved 🙂
…On Thu, 25 Jul 2019, 16:48 willtebbutt, ***@***.***> wrote:
Would be great to both discuss and collaborate :) Are you around for the
hackathon tomorrow?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABN5PI5BN66TCIGXVLFMFB3QBIGQXANCNFSM4E5OIFTA>
.
|
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider a kernel of the form
where
k.ks
is a collection of kernels which can be applied to single-dimensions, and the dimensionality ofx
andx′
, and the length ofk.ks
isD
.If we wish to evaluate the covariance matrix associated with a matrix of inputs which can be represented as a Cartesian product:
where each
xd
is a vector, thencov(k, X)
can be represented as the Kronecker product of a set ofD
matrices, thed
th of which iscov(k.ks[d], xd)
. If this structure is present then the asymptotic complexity of inference is greatly reduced.To achieve efficient inference here, it will be necessary to implement a Kronecker-factorised matrix type which has appropriate efficient representations.
[1] - Saatçi, Yunus. Scalable inference for structured Gaussian process models. Diss. University of Cambridge, 2012.
[2] - Evans, Trefor W., and Prasanth B. Nair. "Scalable Gaussian Processes with Grid-Structured Eigenfunctions (GP-GRIEF)."
The text was updated successfully, but these errors were encountered: