AbstractPhil commited on
Commit
1c1e266
·
verified ·
1 Parent(s): 5933483

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -7,7 +7,8 @@ license: apache-2.0
7
 
8
  from geolip_core import svd_transformer
9
 
10
- # S = S^N calculations of differentiation for utilization, default is 16 which is S^15
 
11
  # V = the the calculated embedding differentiation utilization size of the SVD, used for embedding and memory recall
12
  # D = the decomposition of the SVD, the size of the square matrix to decompose, this is the most computationally expensive part and should be kept as small as possible for large batch sizes, but it is also the most important for performance so it should not be too small. The sweet spot is usually around 16 or 32, but it can be smaller or larger depending on the use case and hardware.
13
  # Smaller D is specifically good for the triton kernels.
 
7
 
8
  from geolip_core import svd_transformer
9
 
10
+ # S = S^N squarewise calculations of differentiation for utilization, default is 16 which is S^15
11
+ # Future versions will support rectangular after experimentation permits.
12
  # V = the the calculated embedding differentiation utilization size of the SVD, used for embedding and memory recall
13
  # D = the decomposition of the SVD, the size of the square matrix to decompose, this is the most computationally expensive part and should be kept as small as possible for large batch sizes, but it is also the most important for performance so it should not be too small. The sweet spot is usually around 16 or 32, but it can be smaller or larger depending on the use case and hardware.
14
  # Smaller D is specifically good for the triton kernels.