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 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