nnmf_nalgebra

Crates.ionnmf_nalgebra
lib.rsnnmf_nalgebra
version0.1.0
sourcesrc
created_at2023-02-21 19:15:15.658815
updated_at2023-02-21 19:15:15.658815
descriptionNon-negative matrix factorization using nalgebra
homepage
repositoryhttps://github.com/zyansheep/nnmf_nalgebra
max_upload_size
id791010
size13,953
Zyansheep (zyansheep)

documentation

README

Non-negative Matrix Factorization (with nalgebra)

docs.rs crates.io

Takes a matrix V of size R*C, splits it into two smaller matricies W (R*K) and H (K*C) such that W * V approximates V.

  • Uses multiplicative update rule
  • Generic over allocation strategy, matrix size, and scalar type.
  • Doesn't do allocation in the loop :)
  • 195 lines of code!
  • PRs welcome!
Commit count: 9

cargo fmt