-
https://github.com/rapidsai/cuml
>Truncated Singular Value Decomposition (tSVD) | Multi-GPU version available (CUDA 10 only)
-
Hi,
I'm trying to use this package in my course project, but I can't find corresponding value of "subspace" in the final output to its counterpart in the paper.
What is the subspace in the final out…
-
Was trying to run movieGNN.py. Got the error below:
```
Device selected: cpu
Loading data for split 1... OK
Setting up the graph... OK
Model initialization...
Initializing SelGNNdegG00... OK
…
-
The flag which specifies whether or not to return singular/eigenvectors alongside the singular/eigenvalues is extremely inconsistently named.
* [`scipy.linalg.eig`](https://docs.scipy.org/doc/scipy…
-
```julia
using Zygote
using LinearAlgebra
r = rand(8,8); Σ = r' * r
foo(X) = tr(svd(X).U)
_orthogonal(X) = svd(X).U * svd(X).V'
Zygote.gradient(foo, Σ) # Works
Zygote.gradient(foo, 1.0 * Ma…
-
Dear Apex author,
I have encountered a issue in using LMM for Apex Cis/Trans
For the cis analysis, with the following commands:
```
apex cis --vcf /mnt/mfs/statgen/neuro-apex/ROSMAP-vcf/ROSMAP…
-
**Describe the bug**
The use of [SciPy shifted invert mode](https://docs.scipy.org/doc/scipy/tutorial/arpack.html#shift-invert-mode) ([code](https://github.com/cvxpy/cvxpy/blob/3310da69e9dd1c10af65d6…
-
Hi,
Great work. Thanks for building this library. I am working on a life-long learning problem that tends to have a large number of data points, and thus a large kernel matrix.
It appears tha…
-
Most of the factorisations that PyTorch has (LU, Cholesky, SVD, eigendecomposition...) have differentiability problems on some matrices. Those that are spectral decompositions (SVD, eig, eigh) have pr…
-
Firstly, thank you for the code. It has been very useful for me since I try to avoid large libraries.
I was wondering if it's possible to extend this algorithm to complex hermitian matrices.