regressio 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/dist/index.cjs +376 -317
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +295 -305
- package/dist/regressio_wasm_bg-zc1d7yka.wasm +0 -0
- package/dist/shared/{chunk-0ebx6ns2.js → chunk-b83k8bdn.js} +79 -13
- package/dist/shared/chunk-xv8z2kms.js +4 -0
- package/package.json +4 -3
- package/dist/regressio_wasm_bg-vab4kvnm.wasm +0 -0
- package/dist/shared/chunk-0sb1tn3y.js +0 -42
package/README.md
CHANGED
|
@@ -303,9 +303,11 @@ regressio ships with a pre-compiled Rust/WASM engine that activates automaticall
|
|
|
303
303
|
|
|
304
304
|
**Accelerated operations:**
|
|
305
305
|
- Matrix: multiply, transpose, add, subtract, scale, dot product, norm, determinant
|
|
306
|
-
- Decompositions: QR, Cholesky, SVD, eigenvalues
|
|
306
|
+
- Decompositions: QR, Cholesky, SVD, eigenvalues (tridiagonal QL)
|
|
307
307
|
- Solvers: forward/back substitution
|
|
308
|
-
- Models: Lasso/Elastic Net coordinate descent, softmax, KNN distance matrices
|
|
308
|
+
- Models: Lasso/Elastic Net coordinate descent, logistic regression IRLS, softmax, KNN distance matrices
|
|
309
|
+
- Diagnostics: correlation matrix, VIF (via correlation matrix inverse)
|
|
310
|
+
- Predictions: bootstrap OLS (1000+ resamples in a single WASM call)
|
|
309
311
|
|
|
310
312
|
If WASM is unavailable (e.g. unsupported runtime), all operations fall back silently to pure TypeScript.
|
|
311
313
|
|