Skip to content
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

Factorized receptive field in time and space #79

Open
BalzaniEdoardo opened this issue Jan 12, 2024 · 0 comments
Open

Factorized receptive field in time and space #79

BalzaniEdoardo opened this issue Jan 12, 2024 · 0 comments

Comments

@BalzaniEdoardo
Copy link
Collaborator

BalzaniEdoardo commented Jan 12, 2024

In order to fit a spatio-temporal receptive field of a neuron (for example in response to a visual input) we may need to assume that the temporal and the spatial contribution to avoid over-parametrization.

The problem of non-factorized receptive fileds is the input would be a tensor of shape $(T, M, N)$, with T the time points, M,N samples or number of basis. this can be very high dimensional and prone to over-fitting.

If we assume spatial and temporal factorization, we reduce to $T + MN$, which is more manageble, however the log-rate will look something like:

$$\log(\mu) = \mathbf{\alpha}^\top M \beta + \text{other predictors}$$

This is a quadratic form in $\alpha \in \mathbb{R}^T$ and $\beta \in \mathbb{R}^{MN}$, i.e. is non-linear model and the parameters interacts. One way to fit this is by alternating gradient descent (alternating between $\alpha$ and $\beta$); each sub-problem is linear and convex.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant