REVIEW 4 major objections 7 minor 138 references
Quasi-SVD: Learning a Lie-constrained matrix factorisation for real-time imaging
T0 review · 4 major / 7 minor · reviewed 2026-08-01 · deepseek-v4-flash
Pith's one-line read Quasi-SVD claims that a fully parallel, differentiable factorisation with one exactly-orthogonal Lie-parameterised factor can replace sequential SVD, achieving SSIM 0.89–0.94, 3–20× speedups, and real-time throughput above 25 FPS in clinica
desk verdict Genuinely novel idea and real medical benchmarks, but the 'exact orthogonality' claim doesn't hold under the default Taylor implementation, and the ULM decomposition numbers are worse than the abstract implies — worth refereeing with revisions. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is the exponential map from skew-symmetric matrices to the special orthogonal group, exp: so(m) → SO(m). Because exp(S)^T exp(S) = I, the learned left factor X is exactly orthogonal by construction — no soft penalty, no drift. Only X carries this hard constraint: the singular values come from the orthogonal similarity transform d = diag^{-1}(√|X^T A A^T X|), and Y = A^T X D^{-1} is guided toward orthogonality by a soft loss. Lemma 1 ('asymmetric orthogonality suffices') is the load-bearing result: sign-flipping one column pair of a classical SVD yields a left factor in SO(m), so one hard constraint is a theorem, not a heuristic. The LieNN variant predicts the skew-symme
What would settle it
Take the published NPP-trained per-pixel LieNN+RNN model and apply it to polarimetric data from a third, unseen optical instrument (different magnification, illumination, and spectral response), comparing per-pixel azimuth to the reference solver: if SSIM falls well below the 0.83 observed on the MUC transfer test (Table 3), the cross-instrument robustness claim fails. In parallel, feed the ULM model a rank-deficient Casorati matrix (e.g., from saturated or empty frames), which the paper's Supp. D.1 synthetic setup explicitly excludes, and check whether reconstruction SSIM and the 3.28 ms runt
Extended reading notes
Core claim
Quasi-SVD factorises A as A = X D Y^T with X ∈ SO(m) exactly orthogonal by construction: a network or closed-form rule predicts a skew-symmetric matrix S, and X = exp(S). The singular values are extracted via spectral invariance, d = diag^{-1}(√|X^T A A^T X|), and Y = A^T X D^{-1} completes the factorisation. Lemma 1 justifies the one-sided design: flipping one column sign in U and the matching column in V puts any SVD's left factor in SO(m), so a Lie-parameterised left factor always exists and the right factor needs only a soft orthogonality penalty. The paper claims this design is provably sufficient, fully parallel (span O(log m) versus O(n log n) for classical sequential solvers), and em
Load-bearing premise
The load-bearing premise, acknowledged in the paper itself, is transfer: per-pixel polarimetric models drop in absolute accuracy on a second instrument (Table 3), the ULM model is trained on 20 of 25 sequences and tested on only 5 (Section 4.1), and the synthetic evaluation assumes full-rank inputs (Supp. D.1) — if any of these transfer conditions fails in a new clinical setting, the real-time deployment claim gives way.
Editorial extensions
If this is right
- Ultrasound localisation microscopy clutter filtering, previously offline or throttled to roughly 4 FPS, becomes a live step: the LieNN+RNN variant reconstructs filtered frames at SSIM 0.89 in 3.28 ms per 500×500 matrix, more than 20× faster than the reference solver.
- Per-pixel Mueller matrix polarimetry for neurosurgical tissue characterisation runs above 25 FPS at 3×3 scale, with SSIM up to 0.94 on the brain-tissue test set, enabling intraoperative polarimetric feedback.
- Enforcing exact orthogonality on one factor via the Lie exponential eliminates the numerical drift that soft-constrained learned decompositions accumulate, while remaining fully differentiable and trainable in a few GPU-hours per modality.
- The per-pixel formulation transfers across polarimetric instruments without retraining: models trained on one optical setup applied to a second setup keep SSIM 0.83 with the RNN variant, supporting instrument-agnostic deployment.
- The work–span analysis indicates the runtime gap over classical solvers widens as matrix size and batch size grow, so the advantage is largest exactly in the high-throughput regimes clinical pipelines need.
Reading between the lines
- Editorial inference: the same recipe — one hard Lie-constrained factor plus soft recovery of the rest — is portable to any SVD-heavy, latency-sensitive pipeline (e.g., MRI coil compression, video background subtraction, or large-scale batched low-rank factorisation) whose downstream task consumes reconstruction quality rather than exact spectral components; the paper demonstrates the trade but doe
- Editorial inference: because only the left factor is exactly orthogonal, downstream tasks that consume the right factor directly would inherit its error. The paper's own ULM table shows right-factor orthogonality error near 20.8 (versus 0 for the reference) despite SSIM 0.89 — so in that regime the output is a good reconstruction but a poor SVD, a distinction the headline fidelity metric can mask.
- Editorial inference: the reported cross-instrument transfer is plausibly a consequence of the strictly per-pixel, context-free formulation. Adding spatial or temporal context — which the paper names as future work — would likely raise in-distribution accuracy but could erode exactly the instrument-agnostic generalisation it highlights; this tension is directly testable.
- Editorial inference: the real-time claim is benchmarked at two matrix extremes, so a natural stress test is a third regime — for instance, rank-deficient inputs, which the paper's own synthetic evaluation (Supp. D.1) explicitly excludes. If a clinically encountered rank-deficient Casorati or Mueller matrix breaks the learned mapping, the deployment envelope is narrower than the headline throughput
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Quasi-SVD, a learned, GPU-parallel approximation of the singular value decomposition. The central idea is to enforce exact orthogonality on one factor, X, by parameterizing it as the matrix exponential of a skew-symmetric matrix over the Lie algebra so(m), while recovering the singular values D and the right factor Y through closed-form estimates and soft losses. The framework is instantiated in several variants (analytic, unconstrained neural net, Lie-constrained neural net, end-to-end) with optional RNN refinement, and evaluated on two medical imaging tasks: Mueller matrix polarimetry (3x3 per-pixel matrices) and ultrasound localization microscopy (500x500 Casorati matrices). The reported results show SSIM 0.89–0.94 for the best LieNN+RNN variants, speedups relative to cuSOLVER and randomised SVD, and cross-instrument transfer to the MUC dataset. The authors argue that the asymmetric hard-orthogonality constraint is sufficient for a valid factorization and is key to eliminating numerical drift found in soft-constrained methods.
Significance. If the advertised property — exact orthogonality of one learned factor via the Lie exponential — were actually delivered at the tested scales, this would be a useful contribution: it combines a principled geometric constraint with a fully parallel, differentiable computation graph, and it is validated on realistic clinical workloads with a comparison against strong baselines. The paper also contains useful elements: a clear work–span analysis, an ablation over model variants, a domain-shift experiment, and a planned code release. However, the central theoretical claim is not supported by the implementation described in the manuscript. The default 9-term Taylor approximation of exp(S) is not exactly orthogonal for finite k, yet the paper claims 'exact orthogonality' and reports ||X||_ort = 0.00 at m=500. This inconsistency affects the core contribution, and the factorization accuracy numbers in the ULM table are very weak. The empirical reconstruction SSIM and speed results may still stand, but the paper's framing as a hard-guarantee method needs major revision.
major comments (4)
- [Section 3.6 / Eq. (3) / Table 4] The paper's central claim is that the Lie parameterization 'guarantees exact orthogonality' for the left factor. However, Section 3.6 states that for general matrices the default implementation uses a 9-term Taylor expansion of exp(S). For a skew-symmetric S and finite truncation order k, exp_k(S)^T exp_k(S) ≠ I. This is not a minor numerical detail: Eqs. (5)–(6) reconstruct A as X D Y^T = X X^T A, so the reconstruction identity depends on X being exactly orthogonal. Table 4 nevertheless reports ||X||_ort = 0.00 for LieNN+RNN at m=n=500. This is inconsistent with the stated 9-term Taylor implementation unless the values are rounded below the reported precision or a different exponentiation routine (e.g., exact exp, Padé, or Cayley) was used. The manuscript must state the actual routine. If the 0.00 is a rounding artifact, the 'exact orthogonality' guarantee is vacuous at the precision re
- [Table 4, ULM row (LieNN+RNN)] The ULM results for the best Lie-constrained model show ||D||_rel = 0.97 and ||Y||_ort = 20.80. Since n=500, ||I||_F = sqrt(500) ≈ 22.36, so ||Y Y^T − I||_F ≈ 465; this means the predicted right factor is far from orthogonal. A relative singular-value error of 0.97 means the recovered spectrum is essentially uncorrelated with the ground truth. These numbers are not consistent with the statement in Section 4.6 that LieNN+RNN 'closely approximates the GT while preserving orthogonality and low relative errors across factors.' The high SSIM (0.89) may reflect reconstruction-level fidelity, but the factorization itself is not accurate. The paper's contribution includes 'decomposition accuracy' as a stated goal; this table undermines that claim and should be addressed explicitly, either by reporting the actual factor errors, by discussing why downstream reconstruction tolerates them, or by tem
- [Lemma 1 / Eqs. (5)–(6) / Supp. A.4] Lemma 1 shows that for any A there exists an SO(m) left factor in some SVD-like decomposition. This is a parameterization fact, not a guarantee that the learned X is the true left singular-vector matrix. Eq. (5) computes diag(X^T A A^T X); this equals the squared singular values only when X equals the true left singular matrix. For an approximate X, this quantity is not the spectrum of A, and the Gershgorin bound in Supp. A.4.1 does not bound the error introduced by a learned X. The paper's phrase 'provably sufficient for valid factorisation' is therefore overstated: what is proven is the existence of a parameterization, not that the network's output yields a valid SVD. The authors should clarify this distinction and either provide a bound on the actual approximation error or remove the implication that the learned decomposition inherits the exactness of the Lie parameterization.
- [Abstract / Section 4.6] The abstract claims 'accelerates computation by 3–20× relative to cuSOLVER and randomised SVD.' The ULM table shows a ~23× speedup over cuSOLVER, which supports the upper end, but the MMP table (Table 2) shows LieNN+RNN at 14.19 ms vs. GT at 36.98 ms, a speedup of about 2.6×, below the stated lower bound of 3×. The text in Section 4.6 also says the method 'halves SVD runtime for MMP,' which is inconsistent with the reported numbers (the ratio is closer to one-third). Please reconcile the speedup claims with the tables, or state that the 3–20× range refers only to selected configurations.
minor comments (7)
- [Section 6] Typos: 'clincial' should be 'clinical', 'proposd' should be 'proposed'.
- [Section 4.5] The source code link is given as '*placeholder*'. For reproducibility, a real URL or a statement about availability upon acceptance is needed.
- [Table 2 / Figure 2] The caption mentions 'shaded second-best' but no shading is visible in the provided table; please clarify or remove.
- [Section 3.1, Eq. (4)] The Rodrigues formula is written as expr(S) but should be exp_r(S) or a similarly defined notation; the current expression is easy to confuse with a typo.
- [Table 4] The rSVD row reports NaN for ||D||_rel and ||Y||_ort. The caption says 'NaN for numerical instability,' but this should be explained in the text so readers know whether these are missing values or actual infinities.
- [Section 4.6 / Figure 4 caption] The caption of Figure 4 repeats the 'plots use logarithmic axes' note already present in the main text. This duplication is unnecessary.
- [Supp. D.1] The supplementary states that the error growth 'likely stems from the approximation of the matrix exponential.' This is an important limitation and should be mentioned in the main paper's discussion, as it directly qualifies the 'guaranteed' orthogonality claim.
Circularity Check
No significant circularity; the central derivation is self-contained and empirically anchored to external baselines.
full rationale
Quasi-SVD's derivation chain is not circular. The analytic construction X=exp(S), D=diag(sqrt(diag(X^T A A^T X))), Y=A^T X D^{-1} is an algebraic identity: for an exactly orthogonal X, X D Y^T = X X^T A = A, so D and Y are residuals of the chosen X rather than independently predicted quantities; their fidelity is then honestly evaluated against cuSOLVER ground truth. The learned variants are trained with supervised losses (L_sigma, L_end) against cuSOLVER outputs on training splits and tested on held-out sequences and a separate MUC instrument, so the reported SSIM, domain-transfer, and speed results are not fit-to-the-same-data predictions. Lemma 1 is a genuine existence proof (a sign flip yields det=1, hence SO(m)), not a uniqueness theorem imported from the authors. Self-citations (Hahne et al.) supply datasets, augmentation, and clinical context but are not load-bearing for the factorization mathematics. The one substantive weakness—Section 3.6 states that a 9-term Taylor expansion is the default for general matrices, and a truncated Taylor series of a skew-symmetric matrix is not exactly orthogonal, conflicting with the abstract's 'exact orthogonality' guarantee—is an internal-consistency/correctness issue, not a circularity: it does not make the claimed result equivalent to its inputs by construction.
Assumptions & free parameters
free parameters (3)
- Neural network weights θ (MLP and 3-step RNN) =
per-dataset checkpoints, not shipped
- Loss weighting constants (λ1, λ2, λ3) =
unspecified
- Taylor expansion order k=9 (default) =
9
assumptions (6)
- standard math Matrix exponential of a skew-symmetric matrix is orthogonal (exp(S)^T exp(S) = I).
- standard math Any SVD can be rewritten with its left factor in SO(m) by flipping one column sign in U and V.
- standard math Gershgorin circle theorem and Cauchy–Schwarz bounds on matrix coherence.
- domain assumption cuSOLVER SVD is treated as ground truth for training labels and evaluation.
- domain assumption Models trained on NPP and on the first 20 ULM sequences generalise to the MUC instrument and the last 5 ULM sequences.
- ad hoc to paper The 9-term Taylor truncation behaves as an orthogonal matrix for practical purposes.
Cite this review
Pith. "Pith review of Quasi-SVD: Learning a Lie-constrained matrix factorisation for real-time imaging." pith.science (2026). https://pith.science/paper/I2PFX233
@misc{pith2026260725967,
author = {Pith},
title = {Pith review of: Quasi-SVD: Learning a Lie-constrained matrix factorisation for real-time imaging},
year = {2026},
howpublished = {\url{https://pith.science/paper/I2PFX233}},
note = {Machine review of arXiv:2607.25967}
}
read the original abstract
Singular Value Decomposition (SVD) underlies matrix factorisation tasks across computational imaging, with medical applications increasingly demanding real-time processing. Yet SVD algorithms are inherently sequential, constraining real-time GPU throughput and limit online deployment in clinical pipelines. This study introduces Quasi-SVD, a differentiable, fully parallelized matrix factorization framework for GPUs. Rather than enforcing orthogonality on both factors, it guarantees exact orthogonality for a single Lie-parameterized factor while recovering the remaining components through soft constraints, enabling efficient parallel decomposition without iterative singular-vector optimization. This asymmetric design, provably sufficient for valid factorisation, achieves reconstruction fidelity of SSIM = 0.89-0.94 and accelerates computation by 3-20x relative to cuSOLVER and randomised SVD, enabling throughput above 25 FPS. Performance is evaluated on two medical imaging tasks spanning complementary computational regimes: (1) spatio-temporal background subtraction for ultrasound localisation microscopy, requiring high-dimensional matrix separation, and (2) Mueller matrix polarimetry for neurosurgical tissue characterisation, requiring massive batch processing of small matrices. Across both regimes and multiple imaging instruments, the proposed framework demonstrates robust domain transfer and throughput exceeding 25 FPS at clinical matrix scales, a rate sufficient for live image-guided workflows that classical solvers cannot currently support in these settings. By prioritising downstream reconstruction fidelity over exact spectral recovery, Quasi-SVD makes structured matrix factorisation practical for real-time imaging.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Handbook for Automatic Computation: Linear Algebra , pages=
Singular value decomposition and least squares solutions , author=. Handbook for Automatic Computation: Linear Algebra , pages=. 1971 , publisher=
1971
-
[3]
2013 , publisher=
Matrix computations , author=. 2013 , publisher=
2013
-
[4]
SIAM journal on matrix analysis and applications , volume=
Jacobi’s method is more accurate than QR , author=. SIAM journal on matrix analysis and applications , volume=. 1992 , publisher=
1992
-
[5]
SIAM journal on scientific computing , volume=
A hierarchically blocked Jacobi SVD algorithm for single and multiple graphics processing units , author=. SIAM journal on scientific computing , volume=. 2015 , publisher=
2015
-
[6]
2026 , url =
cuSOLVER: Dense Linear Algebra on GPUs , version =. 2026 , url =
2026
-
[7]
ACM Transactions on Knowledge Discovery from Data (TKDD) , volume=
Fast algorithms for approximating the singular value decomposition , author=. ACM Transactions on Knowledge Discovery from Data (TKDD) , volume=. 2011 , publisher=
2011
-
[8]
Proceedings of the 2003 SIAM international conference on data mining , pages=
Fast online svd revisions for lightweight recommender systems , author=. Proceedings of the 2003 SIAM international conference on data mining , pages=. 2003 , organization=
2003
-
[10]
BIT Numerical Mathematics , volume=
The truncated SVD as a method for regularization , author=. BIT Numerical Mathematics , volume=. 1987 , publisher=
1987
Show all 138 references
-
[11]
SIAM Journal on Scientific and Statistical Computing , volume=
Truncated singular value decomposition solutions to discrete ill-posed problems with ill-determined numerical rank , author=. SIAM Journal on Scientific and Statistical Computing , volume=. 1990 , publisher=
1990
-
[13]
SIAM review , volume=
Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions , author=. SIAM review , volume=. 2011 , publisher=
2011
-
[14]
Linear Algebra and its Applications , volume=
Rank revealing QR factorizations , author=. Linear Algebra and its Applications , volume=. 1987 , publisher=
1987
-
[15]
SIAM Journal on Scientific Computing , volume=
Efficient algorithms for computing a strong rank-revealing QR factorization , author=. SIAM Journal on Scientific Computing , volume=. 1996 , publisher=
1996
-
[16]
SIAM Journal on Computing , volume=
Fast Monte Carlo Algorithms for Matrices II: Computing a Low-Rank Approximation to a Matrix , author=. SIAM Journal on Computing , volume=. 2006 , publisher=
2006
-
[17]
The random
Musco, Cameron and Musco, Christopher , journal=. The random. 2017 , publisher=
2017
-
[18]
JOSA A , volume=
Interpretation of Mueller matrices based on polar decomposition , author=. JOSA A , volume=. 1996 , publisher=
1996
-
[19]
Introduction and application , author=
Principal component analysis: a beginner's guide—I. Introduction and application , author=. Weather , volume=. 1990 , publisher=
1990
-
[20]
2009 IEEE international symposium on parallel & distributed processing , pages=
Singular value decomposition on GPU using CUDA , author=. 2009 IEEE international symposium on parallel & distributed processing , pages=. 2009 , organization=
2009
-
[21]
IEEE Transactions on Information Theory , volume=
Tensor SVD: Statistical and computational limits , author=. IEEE Transactions on Information Theory , volume=. 2018 , publisher=
2018
-
[22]
The flexible tensor singular value decomposition and its applications in multisensor signal fusion processing , journal =
Jinfeng Huang and Feibin Zhang and Babak Safaei and Zhaoye Qin and Fulei Chu , keywords =. The flexible tensor singular value decomposition and its applications in multisensor signal fusion processing , journal =. 2024 , issn =. doi:https://doi.org/10.1016/j.ymssp.2024.111662 , url =
2024
-
[23]
Tensor SVD: Statistical and Computational Limits , year=
Zhang, Anru and Xia, Dong , journal=. Tensor SVD: Statistical and Computational Limits , year=
-
[24]
International Conference on Machine Learning , pages=
A stochastic PCA and SVD algorithm with an exponential convergence rate , author=. International Conference on Machine Learning , pages=. 2015 , organization=
2015
-
[25]
International Conference on Machine Learning , pages=
Fast stochastic algorithms for SVD and PCA: Convergence properties and convexity , author=. International Conference on Machine Learning , pages=. 2016 , organization=
2016
-
[26]
Advances in neural information processing systems , volume=
Randomized block krylov methods for stronger and faster approximate singular value decomposition , author=. Advances in neural information processing systems , volume=
-
[28]
LazySVD: Even Faster SVD Decomposition Yet Without Agonizing Pain , url =
Allen-Zhu, Zeyuan and Li, Yuanzhi , booktitle =. LazySVD: Even Faster SVD Decomposition Yet Without Agonizing Pain , url =
-
[29]
IEEE Transactions on signal processing , volume=
K-SVD: An algorithm for designing overcomplete dictionaries for sparse representation , author=. IEEE Transactions on signal processing , volume=. 2006 , publisher=
2006
-
[30]
2022 IEEE International Conference on Data Mining Workshops (ICDMW) , pages=
SV-Learn: Learning Matrix Singular Values with Neural Networks , author=. 2022 IEEE International Conference on Data Mining Workshops (ICDMW) , pages=. 2022 , organization=
2022
-
[32]
7th International Conference on Learning Representations , year=
Spectral Inference Networks: Unifying Deep and Spectral Learning , author=. 7th International Conference on Learning Representations , year=
-
[33]
2022 , editor =
Deng, Zhijie and Shi, Jiaxin and Zhu, Jun , booktitle =. 2022 , editor =
2022
-
[34]
Proceedings of the 31st ACM international conference on information & knowledge management , pages=
SVD-GCN: A simplified graph convolution paradigm for recommendation , author=. Proceedings of the 31st ACM international conference on information & knowledge management , pages=
-
[35]
ACM Transactions on Intelligent Systems and Technology , volume=
Privacy-preserving point-of-interest recommendation based on simplified graph convolutional network for geological traveling , author=. ACM Transactions on Intelligent Systems and Technology , volume=. 2024 , publisher=
2024
-
[36]
PRICAI 2014: Trends in Artificial Intelligence: 13th Pacific Rim International Conference on Artificial Intelligence, Gold Coast, QLD, Australia, December 1-5, 2014
Fast learning of deep neural networks via singular value decomposition , author=. PRICAI 2014: Trends in Artificial Intelligence: 13th Pacific Rim International Conference on Artificial Intelligence, Gold Coast, QLD, Australia, December 1-5, 2014. Proceedings 13 , pages=. 2014...
2014
-
[37]
Singular Value Decomposition and Neural Networks
Bermeitinger, Bernhard and Hrycej, Tomas and Handschuh, Siegfried. Singular Value Decomposition and Neural Networks. Artificial Neural Networks and Machine Learning -- ICANN 2019: Deep Learning. 2019
2019
-
[38]
2022 , isbn =
Wu, Zhebin and Shu, Lin and Xu, Ziyue and Chang, Yaomin and Chen, Chuan and Zheng, Zibin , title =. 2022 , isbn =. doi:10.1145/3534678.3539436 , booktitle =
2022
-
[39]
Spatiotemporal Clutter Filtering of Ultrafast Ultrasound Data Highly Increases Doppler and fUltrasound Sensitivity , year=
Demené, Charlie and Deffieux, Thomas and Pernot, Mathieu and Osmanski, Bruno-Félix and Biran, Valérie and Gennisson, Jean-Luc and Sieu, Lim-Anna and Bergel, Antoine and Franqui, Stéphanie and Correas, Jean-Michel and Cohen, Ivan and Baud, Olivier and Tanter, Mickael , journal=...
-
[40]
IEEE transactions on medical imaging , volume=
Adaptive spatiotemporal SVD clutter filtering for ultrafast Doppler imaging using similarity of spatial singular vectors , author=. IEEE transactions on medical imaging , volume=. 2018 , publisher=
2018
-
[41]
Nature Biomedical Engineering , volume=
Performance benchmarking of microbubble-localization algorithms for ultrasound localization microscopy , author=. Nature Biomedical Engineering , volume=. 2022 , publisher=
2022
-
[42]
doi:10.5281/zenodo.4343435 , url =
Chavignon Arthur and Baptiste Heiles and Hingot Vincent and Lopez Pauline and Eliott Teston and Couture Olivier , title =. doi:10.5281/zenodo.4343435 , url =
-
[43]
2020 , note =
Chavignon, Arthur and Heiles, Baptiste and Hingot, Vincent and Lopez, Pauline and Teston, Eliott and Couture, Olivier , title =. 2020 , note =
2020
-
[44]
Nature , volume=
Ultrafast ultrasound localization microscopy for deep super-resolution vascular imaging , author=. Nature , volume=. 2015 , publisher=
2015
-
[45]
RF-ULM: Ultrasound Localization Microscopy Learned From Radio-Frequency Wavefronts , year=
Hahne, Christopher and Chabouh, Georges and Chavignon, Arthur and Couture, Olivier and Sznitman, Raphael , journal=. RF-ULM: Ultrasound Localization Microscopy Learned From Radio-Frequency Wavefronts , year=
-
[46]
Magnetic resonance in medicine , volume=
Low-rank plus sparse matrix decomposition for accelerated dynamic MRI with separation of background and dynamic components , author=. Magnetic resonance in medicine , volume=. 2015 , publisher=
2015
-
[47]
Sampaio, Paulo and Lopez-Antu. M. Sci. Rep. , volume=. 2023 , publisher=
2023
-
[48]
International journal of computer assisted radiology and surgery , pages=
Near-real-time Mueller polarimetric image processing for neurosurgical intervention , author=. International journal of computer assisted radiology and surgery , pages=. 2024 , publisher=
2024
-
[49]
Polarimetric feature analysis of Mueller matrices for brain tumor image segmentation , volume =
Christopher Hahne and Ivan Diaz and Omar Rodriguez-Nunez and Elea Gros and Muriel Blatter and Theotim Lucas and David Hasler and Tatiana Novikova and Theoni Maragkou and Philippe Schucht and Richard McKinley , journal =. Polarimetric feature analysis of Mueller matrices for br...
2025
-
[50]
Physically Consistent Image Augmentation for Deep Learning in Mueller Matrix Polarimetry , year=
Hahne, Christopher and Rodriguez-Nunez, Omar and Gros, Elea and Lucas, Théotim and Hewer, Ekkehard and Novikova, Tatiana and Maragkou, Theoni and Schucht, Philippe and McKinley, Richard , journal=. Physically Consistent Image Augmentation for Deep Learning in Mueller Matrix Po...
-
[51]
IEEE Photonics Journal , year=
Efficient Polarization Demosaicking Via Low-Cost Edge-Aware and Inter-Channel Correlation , author=. IEEE Photonics Journal , year=
-
[52]
Artificial Intelligence Review , volume=
Incremental methods in face recognition: a survey , author=. Artificial Intelligence Review , volume=. 2021 , publisher=
2021
-
[53]
IEEE Transactions on Image Processing , volume=
Deep k-svd denoising , author=. IEEE Transactions on Image Processing , volume=. 2021 , publisher=
2021
-
[54]
Evaluation of the robustness of learned MR image reconstruction to systematic deviations between training and test data for the models from the fastMRI challenge , author=. Machine Learning for Medical Image Reconstruction: 4th International Workshop, MLMIR 2021, Held in Conju...
2021
-
[55]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Learned compression of high dimensional image datasets , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[56]
Proceedings of the Computer Vision and Pattern Recognition Conference , pages=
FLAR-SVD: Fast and Latency-Aware Singular Value Decomposition for Model Compression , author=. Proceedings of the Computer Vision and Pattern Recognition Conference , pages=
-
[57]
Robotics: science and systems , volume=
ElasticFusion: Dense SLAM without a pose graph , author=. Robotics: science and systems , volume=
-
[58]
2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages=
Nerf-slam: Real-time dense monocular slam with neural radiance fields , author=. 2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages=. 2023 , organization=
2023
-
[59]
International journal of computer assisted radiology and surgery , volume=
Learning how to robustly estimate camera pose in endoscopic videos , author=. International journal of computer assisted radiology and surgery , volume=. 2023 , publisher=
2023
-
[60]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Gaussian splatting slam , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[61]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
Tangent Space Backpropagation for 3D Transformation Groups , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
-
[62]
ONNX: Open Neural Network Exchange Format for Machine Learning Models , year =
-
[63]
2023 , url =
NVIDIA TensorRT: Programmable Inference Accelerator , author =. 2023 , url =
2023
-
[64]
SIAM review , volume=
Nineteen dubious ways to compute the exponential of a matrix, twenty-five years later , author=. SIAM review , volume=. 2003 , publisher=
2003
-
[65]
SIAM Review , volume=
Orthogonal matrices and the matrix exponential , author=. SIAM Review , volume=. 1990 , publisher=
1990
-
[66]
Dai , keywords =
Jian S. Dai , keywords =. Euler–Rodrigues formula variations, quaternion conjugation and intrinsic connections , journal =. 2015 , issn =. doi:https://doi.org/10.1016/j.mechmachtheory.2015.03.004 , url =
2015 doi
-
[68]
Scientific Data , volume=
FastMRI Prostate: A public, biparametric MRI dataset to advance machine learning for prostate cancer imaging , author=. Scientific Data , volume=. 2024 , publisher=
2024
-
[69]
Radiology: Artificial Intelligence , volume=
fastMRI Breast: A publicly available radial k-space dataset of breast dynamic contrast-enhanced MRI , author=. Radiology: Artificial Intelligence , volume=. 2025 , publisher=
2025
-
[70]
Acm Sigkdd Explorations Newsletter , volume=
Lessons from the Netflix prize challenge , author=. Acm Sigkdd Explorations Newsletter , volume=. 2007 , publisher=
2007
-
[71]
Proceedings of KDD Cup 2011 , pages=
The yahoo! music dataset and kdd-cup’11 , author=. Proceedings of KDD Cup 2011 , pages=. 2012 , organization=
2011
-
[72]
http://yann
The MNIST database of handwritten digits , author=. http://yann. lecun. com/exdb/mnist/ , year=
-
[73]
Nucleic acids research , volume=
The international Genome sample resource (IGSR): A worldwide collection of genome variation incorporating the 1000 Genomes Project data , author=. Nucleic acids research , volume=. 2017 , publisher=
2017
-
[74]
2010 IEEE International conference on data mining , pages=
Factorization machines , author=. 2010 IEEE International conference on data mining , pages=. 2010 , organization=
2010
-
[75]
Proceedings of the 40th International ACM SIGIR conference on Research and Development in Information Retrieval , pages=
Neural factorization machines for sparse predictive analytics , author=. Proceedings of the 40th International ACM SIGIR conference on Research and Development in Information Retrieval , pages=
-
[76]
Advances in neural information processing systems , volume=
Attention is all you need , author=. Advances in neural information processing systems , volume=
-
[77]
Advances in Applied Clifford Algebras , volume=
On SVD and Polar Decomposition in Real and Complexified Clifford Algebras , author=. Advances in Applied Clifford Algebras , volume=. 2024 , publisher=
2024
-
[78]
Proceedings of the 36th International Conference on Machine Learning , pages =
Cheap Orthogonal Constraints in Neural Networks: A Simple Parametrization of the Orthogonal and Unitary Group , author =. Proceedings of the 36th International Conference on Machine Learning , pages =. 2019 , editor =
2019
-
[79]
International Conference on Machine Learning , pages=
Cheap orthogonal constraints in neural networks: A simple parametrization of the orthogonal and unitary group , author=. International Conference on Machine Learning , pages=. 2019 , organization=
2019
-
[81]
2023 , urldate =
NVIDIA Developer Forum Discussion , title =. 2023 , urldate =
2023
-
[82]
2021 , urldate =
Issue: Fix the non-converging issue of SVD on GPU for large matrices , howpublished =. 2021 , urldate =
2021
-
[84]
2024 , urldate =
Pogudin, Gleb , title =. 2024 , urldate =
2024
-
[87]
Communications of the ACM , volume=
Programming parallel algorithms , author=. Communications of the ACM , volume=. 1996 , publisher=
1996
-
[88]
Journal of the ACM (JACM) , volume=
The parallel evaluation of general arithmetic expressions , author=. Journal of the ACM (JACM) , volume=. 1974 , publisher=
1974
-
[89]
Mathematics , volume=
Computing the matrix exponential with an optimized Taylor polynomial approximation , author=. Mathematics , volume=. 2019 , publisher=
2019
-
[90]
SIAM Journal on Scientific Computing , volume =
Low-Rank Matrix Approximation Using the Lanczos Bidiagonalization Process , author =. SIAM Journal on Scientific Computing , volume =. 2000 , publisher =
2000
-
[91]
European Conference on Computer Vision , pages=
Pisr: Polarimetric neural implicit surface reconstruction for textureless and specular objects , author=. European Conference on Computer Vision , pages=. 2024 , organization=
2024
-
[92]
Biomedical engineering online , volume=
Clutter suppression in ultrasound: performance evaluation and review of low-rank and sparse matrix decomposition methods , author=. Biomedical engineering online , volume=. 2020 , publisher=
2020
-
[93]
arXiv preprint arXiv:2411.14141 , year=
Differentiable SVD based on Moore-Penrose Pseudoinverse for Inverse Imaging Problems , author=. arXiv preprint arXiv:2411.14141 , year=
-
[94]
Proceedings of the IEEE international conference on computer vision , pages=
Matrix backpropagation for deep networks with structured layers , author=. Proceedings of the IEEE international conference on computer vision , pages=
-
[95]
Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
Iterative normalization: Beyond standardization towards efficient whitening , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
-
[96]
Proceedings of the IEEE international conference on computer vision workshops , pages=
Factorized convolutional neural networks , author=. Proceedings of the IEEE international conference on computer vision workshops , pages=
-
[97]
Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
Deep spectral clustering using dual autoencoder network , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
-
[98]
Proceedings of the Computer Vision and Pattern Recognition Conference , pages=
Ditask: Multi-task fine-tuning with diffeomorphic transformations , author=. Proceedings of the Computer Vision and Pattern Recognition Conference , pages=
-
[99]
K-svd: An algorithm for designing overcomplete dictionaries for sparse representation
Michal Aharon, Michael Elad, and Alfred Bruckstein. K-svd: An algorithm for designing overcomplete dictionaries for sparse representation. IEEE Transactions on signal processing, 54 0 (11): 0 4311--4322, 2006
2006
-
[100]
Adaptive spatiotemporal svd clutter filtering for ultrafast doppler imaging using similarity of spatial singular vectors
J \'e r \^o me Baranger, Bastien Arnal, Fabienne Perren, Olivier Baud, Mickael Tanter, and Charlie Demen \'e . Adaptive spatiotemporal svd clutter filtering for ultrafast doppler imaging using similarity of spatial singular vectors. IEEE transactions on medical imaging, 37 0 (...
2018
-
[101]
Programming parallel algorithms
Guy E Blelloch. Programming parallel algorithms. Communications of the ACM, 39 0 (3): 0 85--97, 1996
1996
-
[102]
Fast low-rank modifications of the thin singular value decomposition
Matthew Brand. Fast low-rank modifications of the thin singular value decomposition. Linear Algebra and its Applications, 415 0 (1): 0 20--30, 2006. ISSN 0024-3795. doi:https://doi.org/10.1016/j.laa.2005.07.021. URL https://www.sciencedirect.com/science/article/pii/S0024379505...
2006 doi
-
[103]
The parallel evaluation of general arithmetic expressions
Richard P Brent. The parallel evaluation of general arithmetic expressions. Journal of the ACM (JACM), 21 0 (2): 0 201--206, 1974
1974
-
[104]
Rank revealing qr factorizations
Tony F Chan. Rank revealing qr factorizations. Linear Algebra and its Applications, 88: 0 67--82, 1987
1987
-
[105]
Learned compression of high dimensional image datasets
Elizabeth Cole, Qingxi Meng, John Pauly, and Shreyas Vasanawala. Learned compression of high dimensional image datasets. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 1748--1752, 2022
2022
-
[106]
Spatiotemporal clutter filtering of ultrafast ultrasound data highly increases doppler and fultrasound sensitivity
Charlie Demené, Thomas Deffieux, Mathieu Pernot, Bruno-Félix Osmanski, Valérie Biran, Jean-Luc Gennisson, Lim-Anna Sieu, Antoine Bergel, Stéphanie Franqui, Jean-Michel Correas, Ivan Cohen, Olivier Baud, and Mickael Tanter. Spatiotemporal clutter filtering of ultrafast ultrasou...
2015
-
[107]
Jacobi’s method is more accurate than qr
James Demmel and Kre s imir Veseli \'c . Jacobi’s method is more accurate than qr. SIAM journal on matrix analysis and applications, 13 0 (4): 0 1204--1245, 1992
1992
-
[108]
Fast monte carlo algorithms for matrices ii: Computing a low-rank approximation to a matrix
Petros Drineas, Ravi Kannan, and Michael W Mahoney. Fast monte carlo algorithms for matrices ii: Computing a low-rank approximation to a matrix. SIAM Journal on Computing, 36 0 (1): 0 158--183, 2006
2006
-
[109]
Ultrafast ultrasound localization microscopy for deep super-resolution vascular imaging
Claudia Errico, Juliette Pierre, Sophie Pezet, Yann Desailly, Zsolt Lenkei, Olivier Couture, and Mickael Tanter. Ultrafast ultrasound localization microscopy for deep super-resolution vascular imaging. Nature, 527 0 (7579): 0 499--502, 2015
2015
-
[110]
Gated recurrence enables simple and accurate sequence prediction in stochastic, changing, and structured environments
Cédric Foucault and Florent Meyniel. Gated recurrence enables simple and accurate sequence prediction in stochastic, changing, and structured environments. eLife, 10: 0 e71801, dec 2021. ISSN 2050-084X. doi:10.7554/eLife.71801. URL https://doi.org/10.7554/eLife.71801
2021 doi
-
[111]
G. H. Golub and C. Reinsch. Singular value decomposition and least squares solutions. Numerische Mathematik, 14 0 (5): 0 403--420, 1970. ISSN 0945-3245. doi:10.1007/BF02163027. URL https://doi.org/10.1007/BF02163027
1970 doi
-
[112]
Matrix computations
Gene H Golub and Charles F Van Loan. Matrix computations. JHU press, 2013
2013
-
[113]
Efficient algorithms for computing a strong rank-revealing qr factorization
Ming Gu and Stanley C Eisenstat. Efficient algorithms for computing a strong rank-revealing qr factorization. SIAM Journal on Scientific Computing, 17 0 (4): 0 848--869, 1996
1996
-
[114]
Rf-ulm: Ultrasound localization microscopy learned from radio-frequency wavefronts
Christopher Hahne, Georges Chabouh, Arthur Chavignon, Olivier Couture, and Raphael Sznitman. Rf-ulm: Ultrasound localization microscopy learned from radio-frequency wavefronts. IEEE Transactions on Medical Imaging, 43 0 (9): 0 3253--3262, 2024. doi:10.1109/TMI.2024.3391297
2024
-
[115]
Polarimetric feature analysis of mueller matrices for brain tumor image segmentation
Christopher Hahne, Ivan Diaz, Omar Rodriguez-Nunez, Elea Gros, Muriel Blatter, Theotim Lucas, David Hasler, Tatiana Novikova, Theoni Maragkou, Philippe Schucht, and Richard McKinley. Polarimetric feature analysis of mueller matrices for brain tumor image segmentation. Opt. Exp...
2025 doi
-
[116]
Physically consistent image augmentation for deep learning in mueller matrix polarimetry
Christopher Hahne, Omar Rodriguez-Nunez, Elea Gros, Théotim Lucas, Ekkehard Hewer, Tatiana Novikova, Theoni Maragkou, Philippe Schucht, and Richard McKinley. Physically consistent image augmentation for deep learning in mueller matrix polarimetry. IEEE Transactions on Image Pr...
2025
-
[117]
Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions
Nathan Halko, Per-Gunnar Martinsson, and Joel A Tropp. Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions. SIAM review, 53 0 (2): 0 217--288, 2011
2011
-
[118]
The truncated svd as a method for regularization
Per Christian Hansen. The truncated svd as a method for regularization. BIT Numerical Mathematics, 27: 0 534--553, 1987
1987
-
[119]
Truncated singular value decomposition solutions to discrete ill-posed problems with ill-determined numerical rank
Per Christian Hansen. Truncated singular value decomposition solutions to discrete ill-posed problems with ill-determined numerical rank. SIAM Journal on Scientific and Statistical Computing, 11 0 (3): 0 503--518, 1990
1990
-
[120]
Hassaan, Mohammed H
Zeinab A. Hassaan, Mohammed H. Yacoub, and Lobna A. Said. Gated recurrent unit accelerators for financial time series prediction on field-programmable gate array. Engineering Applications of Artificial Intelligence, 162: 0 112534, 2025. ISSN 0952-1976. doi:https://doi.org/10.1...
2025
-
[121]
Learning how to robustly estimate camera pose in endoscopic videos
Michel Hayoz, Christopher Hahne, Mathias Gallardo, Daniel Candinas, Thomas Kurmann, Maximilian Allan, and Raphael Sznitman. Learning how to robustly estimate camera pose in endoscopic videos. International journal of computer assisted radiology and surgery, 18 0 (7): 0 1185--1...
2023
-
[122]
Performance benchmarking of microbubble-localization algorithms for ultrasound localization microscopy
Baptiste Heiles, Arthur Chavignon, Vincent Hingot, Pauline Lopez, Eliott Teston, and Olivier Couture. Performance benchmarking of microbubble-localization algorithms for ultrasound localization microscopy. Nature Biomedical Engineering, 6 0 (5): 0 605--616, 2022
2022
-
[123]
Evaluation of the robustness of learned mr image reconstruction to systematic deviations between training and test data for the models from the fastmri challenge
Patricia M Johnson, Geunu Jeong, Kerstin Hammernik, Jo Schlemper, Chen Qin, Jinming Duan, Daniel Rueckert, Jingu Lee, Nicola Pezzotti, Elwin De Weerdt, et al. Evaluation of the robustness of learned mr image reconstruction to systematic deviations between training and test dat...
2021
-
[124]
Singular value decomposition on gpu using cuda
Sheetal Lahabar and PJ Narayanan. Singular value decomposition on gpu using cuda. In 2009 IEEE international symposium on parallel & distributed processing, pages 1--10. IEEE, 2009
2009
-
[125]
Cheap orthogonal constraints in neural networks: A simple parametrization of the orthogonal and unitary group
Mario Lezcano-Casado and David Mart nez-Rubio. Cheap orthogonal constraints in neural networks: A simple parametrization of the orthogonal and unitary group. In International Conference on Machine Learning, pages 3794--3803. PMLR, 2019
2019
-
[126]
Efficient riemannian optimization on the stiefel manifold via the cayley transform
Jun Li, Li Fuxin, and Sinisa Todorovic. Efficient riemannian optimization on the stiefel manifold via the cayley transform. arXiv preprint arXiv:2002.01113, 2020
2002 arXiv
-
[127]
Interpretation of mueller matrices based on polar decomposition
Shih-Yau Lu and Russell A Chipman. Interpretation of mueller matrices based on polar decomposition. JOSA A, 13 0 (5): 0 1106--1113, 1996
1996
-
[128]
Ditask: Multi-task fine-tuning with diffeomorphic transformations
Krishna Sri Ipsit Mantri, Carola-Bibiane Sch \"o nlieb, Bruno Ribeiro, Chaim Baskin, and Moshe Eliasof. Ditask: Multi-task fine-tuning with diffeomorphic transformations. In Proceedings of the Computer Vision and Pattern Recognition Conference, pages 25218--25229, 2025
2025
-
[129]
Gaussian splatting slam
Hidenobu Matsuki, Riku Murai, Paul HJ Kelly, and Andrew J Davison. Gaussian splatting slam. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 18039--18048, 2024
2024
-
[130]
Near-real-time mueller polarimetric image processing for neurosurgical intervention
Stefano Moriconi, Omar Rodr \' guez-N \'u \ n ez, Romain Gros, Leonard A Felger, Theoni Maragkou, Ekkehard Hewer, Angelo Pierangelo, Tatiana Novikova, Philippe Schucht, and Richard McKinley. Near-real-time mueller polarimetric image processing for neurosurgical intervention. I...
2024
-
[131]
Randomized block krylov methods for stronger and faster approximate singular value decomposition
Cameron Musco and Christopher Musco. Randomized block krylov methods for stronger and faster approximate singular value decomposition. Advances in neural information processing systems, 28, 2015
2015
-
[132]
The random N ystr \"o m method
Cameron Musco and Christopher Musco. The random N ystr \"o m method. Foundations and Trends in Machine Learning, 10 0 (6): 0 453--566, 2017
2017
-
[133]
A hierarchically blocked jacobi svd algorithm for single and multiple graphics processing units
Vedran Novakovic. A hierarchically blocked jacobi svd algorithm for single and multiple graphics processing units. SIAM journal on scientific computing, 37 0 (1): 0 C1--C30, 2015
2015
-
[134]
Time-efficient filtering of imaging polarimetric data by checking physical realizability of experimental mueller matrices
Tatiana Novikova, Alexey Ovchinnikov, Gleb Pogudin, and Jessica C Ramella-Roman. Time-efficient filtering of imaging polarimetric data by checking physical realizability of experimental mueller matrices. Bioinformatics, 40 0 (7): 0 btae348, 06 2024. ISSN 1367-4811. doi:10.1093...
2024 doi
-
[135]
cuSOLVER Library , 2026
NVIDIA Corporation . cuSOLVER Library , 2026. URL https://docs.nvidia.com/cuda/cusolver/. Version 13.1
2026
-
[136]
Low-rank plus sparse matrix decomposition for accelerated dynamic mri with separation of background and dynamic components
Ricardo Otazo, Emmanuel Candes, and Daniel K Sodickson. Low-rank plus sparse matrix decomposition for accelerated dynamic mri with separation of background and dynamic components. Magnetic resonance in medicine, 73 0 (3): 0 1125--1136, 2015
2015
-
[137]
Github repository
Gleb Pogudin. Github repository. https://github.com/pogudingleb/mueller_matrices, 2024
2024
-
[138]
Operator svd with neural networks via nested low-rank approximation
J Jon Ryu, Xiangxiang Xu, HS Erol, Yuheng Bu, Lizhong Zheng, and Gregory W Wornell. Operator svd with neural networks via nested low-rank approximation. arXiv preprint arXiv:2402.03655, 2024
2024 arXiv
-
[139]
o keland, Martin Wartenberg, Pablo M \'a rquez-Neila, Daniel Candinas, Brice-Olivier Demory, Aurel Perren, et al. M \
Paulo Sampaio, Maria Lopez-Antu \ n a, Federico Storni, Jonatan Wicht, Greta S \"o keland, Martin Wartenberg, Pablo M \'a rquez-Neila, Daniel Candinas, Brice-Olivier Demory, Aurel Perren, et al. M \"u ller matrix polarimetry for pancreatic tissue characterization. Sci. Rep., 1...
2023
-
[140]
Deep k-svd denoising
Meyer Scetbon, Michael Elad, and Peyman Milanfar. Deep k-svd denoising. IEEE Transactions on Image Processing, 30: 0 5944--5955, 2021
2021
-
[141]
A krylov–schur approach to the truncated svd
Martin Stoll. A krylov–schur approach to the truncated svd. Linear Algebra and its Applications, 436 0 (8): 0 2795--2806, 2012. ISSN 0024-3795. doi:https://doi.org/10.1016/j.laa.2011.07.022. URL https://www.sciencedirect.com/science/article/pii/S0024379511005349. Special Issue...
2012 doi
-
[142]
Tangent space backpropagation for 3d transformation groups
Zachary Teed and Jia Deng. Tangent space backpropagation for 3d transformation groups. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 10338--10347, 2021
2021
-
[143]
Elasticfusion: Dense slam without a pose graph
Thomas Whelan, Stefan Leutenegger, Renato Salas-Moreno, Ben Glocker, and Andrew Davison. Elasticfusion: Dense slam without a pose graph. In Robotics: science and systems, volume 11, 2015
2015
-
[144]
Sv-learn: Learning matrix singular values with neural networks
Derek Xu, William Shiao, Jia Chen, and Evangelos E Papalexakis. Sv-learn: Learning matrix singular values with neural networks. In 2022 IEEE International Conference on Data Mining Workshops (ICDMW), pages 232--237. IEEE, 2022
2022
-
[145]
Deep spectral clustering using dual autoencoder network
Xu Yang, Cheng Deng, Feng Zheng, Junchi Yan, and Wei Liu. Deep spectral clustering using dual autoencoder network. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 4066--4075, 2019
2019
-
[146]
fastmri: An open dataset and benchmarks for accelerated mri
Jure Zbontar, Florian Knoll, Anuroop Sriram, Tullie Murrell, Zhengnan Huang, Matthew J Muckley, Aaron Defazio, Ruben Stern, Patricia Johnson, Mary Bruno, et al. fastmri: An open dataset and benchmarks for accelerated mri. arXiv preprint arXiv:1811.08839, 2018
2018 arXiv
-
[147]
Tensor svd: Statistical and computational limits
Anru Zhang and Dong Xia. Tensor svd: Statistical and computational limits. IEEE Transactions on Information Theory, 64 0 (11): 0 7311--7338, 2018
2018
-
[148]
Efficient gpu implementation of randomized svd and its applications
Łukasz Struski, Paweł Morkisz, Przemysław Spurek, Samuel Rodriguez Bernabeu, and Tomasz Trzciński. Efficient gpu implementation of randomized svd and its applications. Expert Systems with Applications, 248: 0 123462, 2024. ISSN 0957-4174. doi:https://doi.org/10.1016/j.eswa.202...
2024
Reviewed August 1, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.