CUR-SVD Matrix Decomposition for Large-Scale Memory Constraints

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Existing methods for singular value decomposition (SVD) of large-scale low-rank matrices are computationally expensive and inefficient, particularly for matrices that exceed the memory capacity of standard computing systems.

Innovation Solution

The proposed method, CUR-SVD, employs a computer-implemented approach that constructs a CUR decomposition of a matrix A, where C and R are formed by randomly selecting columns and rows from A. This decomposition allows for the computation of an approximation matrix UkΣkVkT using partial elements of A, thereby reducing memory requirements and computational time.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Measurement precision

If classical or randomized SVD approaches are used for large data, then the optimal low-rank approximation is achieved, but the method requires reading the whole data at least once, storage of substantial temporary matrices during computation, and large matrix multiplications during projection steps

Engineering Contradiction:
Improveapproximation accuracyVSAvoidmemory storage requirement
Core Design Contradiction:
Measurement precisionVSQuantity of substance

Solution Approach 1:

The patent segments the large-scale matrix into smaller blocks that can be processed independently. Instead of loading the entire matrix into memory, the SVD computation is performed on block-wise segments, allowing the algorithm to handle matrices larger than available memory while maintaining approximation accuracy.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The patent introduces a new dimensional approach by using iterative projection methods that transform the problem from operating on the full large matrix to operating on smaller projected subspaces. This dimensional transformation enables processing of extremely large matrices by working in lower-dimensional spaces through repeated projections.

Inventive Principle:
Principle #17Another dimension (Dimensionality change)

2Measurement precision

If optimal SVD of a dense, low-rank matrix is performed, then the optimal low-rank approximation is obtained, but the computing time required is 0(mn2+m2n+n3) which is prohibitive for large-scale matrices

Engineering Contradiction:
Improveapproximation accuracyVSAvoidcomputing time
Core Design Contradiction:
Measurement precisionVSLoss of time

Solution Approach 1:

The patent applies partial action by computing only the top k singular values and vectors needed for the low-rank approximation, rather than performing complete SVD. This partial computation significantly reduces the computational complexity from O(mn²+m²n+n³) to O(mnk²), making large-scale matrix processing feasible while maintaining the essential approximation quality.

Inventive Principle:
Principle #16Partial or excessive action

Solution Approach 2:

The patent performs preliminary actions by first identifying and extracting the dominant subspace through randomized projection or iterative methods before performing the actual SVD computation. This preliminary dimensionality reduction prepares the data in a form that requires less computational effort for the subsequent precise SVD calculation.

Inventive Principle:
Principle #10Preliminary action

3Loss of time

If Lanczos methods are used with time complexity 0(mnk2), then the computing time is reduced, but the whole data matrix is still stored and the rank must be known in advance

Engineering Contradiction:
Improvecomputing timeVSAvoidmemory storage requirement
Core Design Contradiction:
Loss of timeVSQuantity of substance

Solution Approach 1:

The patent segments the matrix processing into iterative blocks, loading only necessary portions of the data matrix into memory at each iteration. This block-wise processing allows Lanczos-like methods to operate on matrices that cannot be fully stored in memory, eliminating the requirement to hold the entire data matrix in storage while maintaining the O(mnk²) time complexity advantage.

Inventive Principle:
Principle #1Segmentation

4Productivity

If existing SVD methods are applied to extremely large-scale matrices, then the decomposition can be performed, but the system resources are exceeded making it not scalable

Engineering Contradiction:
Improvematrix processing capabilityVSAvoidsystem resource requirement
Core Design Contradiction:
ProductivityVSDevice complexity

Solution Approach 1:

The patent transforms the problem from the original high-dimensional space to lower-dimensional projected spaces through iterative multiplication with random projection matrices. This dimensional change enables processing of extremely large-scale matrices on systems with limited resources by working in compressed representations that capture the essential structure without requiring proportional system resources.

Inventive Principle:
Principle #17Another dimension (Dimensionality change)

Data Source

PatentUS20250139198A1System and method for fast processing singular value decomposition (SVD) of extremely large-scale low-rank matrices
Publication Date: 2025.05.01 CENT FOR INTELLIGENT MULTIDIMENSIONAL DATA ANALYSIS LTD
  • US20250139198A1 patent drawing
  • US20250139198A1 patent drawing
  • US20250139198A1 patent drawing

AI summary

A computer-implemented method for generating an approximation image of a matrix A, the computer-implemented method including: constructing in a processing unit a C, U, R matrices decomposition of matrix A wherein C includes k column vectors and R includes k row vectors retrieved from a storage memory holding the matrix A; performing in the processing unit Singular Value Decomposition on the C, U, and R to generate the approximation matrix UkΣkVkT of the matrix A such that A≈UkΣkVkT.