You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A method for the projection of new data point using existing feature weights is added, model.project(Y). In this case, only factors will be trained, with loadings fixed.
Now, learning rate is adaptive and is decreased during if the model's loglikelihood doesn't increase.
In this version, we added a method to generate a counts reconstruction based on learned Poisson PCA: model.reconstruct_counts(). Also some minor modifications and improvements.
Here we're implementing quick optimisation for Poisson GLM-PCA in PyTorch. In contrast to R's fastglmpca package, with PyTorch computations might be done with GPU which significantly decreases computational time.