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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -16,9 +16,11 @@ from geolip_core import svd_transformer
16
  # There is a large amount of problems with D and the focus of the Triton kernels is to allow for larger D with good performance on many types of hardwares, but the sweet spot for most use cases is still around 16 or 32 for pure encoding accuracy and decoding accuracy, and the default is set to 16 for this reason.
17
 
18
  former = svd_transformer(
19
- x, # tensor
20
- y=None, # tensor or None
21
- z=None, # tensor or None
 
 
22
  svd=None, # the SVD sizes.
23
  # None = x.shape batch omitted.
24
  # [S, V, D]
 
16
  # There is a large amount of problems with D and the focus of the Triton kernels is to allow for larger D with good performance on many types of hardwares, but the sweet spot for most use cases is still around 16 or 32 for pure encoding accuracy and decoding accuracy, and the default is set to 16 for this reason.
17
 
18
  former = svd_transformer(
19
+ x, # primary learning tensor used for valid shape. Will be used for SVD.
20
+ y=None, # tensor or None; tensor masks, specifically meant to handle QKV or SUVt/SUV tokenizations.
21
+ z=None, # tensor or None; [patchworks, embeddings, encodings, encapsulants, structural invariants, etc]
22
+ # There is a series of points that can be hooked or overridden for experimentation, they will all be fully transparent.
23
+ # Z is used for experimentation tooling, the primary systems will not touch this by default.
24
  svd=None, # the SVD sizes.
25
  # None = x.shape batch omitted.
26
  # [S, V, D]