Skip to main content

wNMFx: weighted Non-Negative matrix Factorization in jax

Project description

About

wNMFx implements a simple version of Non-Negative Matrix Factorization (NMF) that utilizes a weight matrix to weight the importance of each feature in each sample of the data matrix to be factorized.

wNMFx is easy to use, because it behaves like an sklearn.decomposition model, but also allows for multiple fitting attempts.

More information about the modified multiplicative update algorithim utilized can be found here: Blondel, Vincent & Ho, Ngoc-Diep & Van Dooren, Paul. (2007). Weighted Nonnegative Matrix Factorization and Face Feature Extraction

wNMFx specifically implements solutions for determining the decomposed matrices U and V when minimizing the Frobenius Norm or the Kullback-Leibler Divergence:

wNMF was developed by SN: https://github.com/asn32/weighted-nmf. wNMFx is a fork which speeds up the computation with jax. wNMFx follows the scikit-learn conventions. Additional features include transform().

Installation

This package is available on PyPI and can be installed with pip:

$ pip install wNMFx

Alternatively, download the source from github and install:

$ git clone https://github.com/JohannesBuchner/weighted-nmf-jax
$ cd weighted-nmf-jax
$ python3 setup.py install --user

Usage

wNMFx is a python library that can be imported:

from wNMFx import wNMF

And it can be used like an sklearn.decomposition model.

First create an instance of the wNMF model by setting the number of components.

Other parameters can be set too, such as the loss function, maximum number of iterations, and whether or not to track the decreasing error over every single run:

## Mock data, a 100x100 data matrix, reduce to 25 dimensions
n = 100
features = 100
components = 25
X = 100 * np.random.uniform(size=(features, n))
W = np.ones_like(X)

## Define the model / fit
model = wNMF(n_components=25,
            beta_loss='kullback-leibler',
            max_iter=1000,
            track_error=True)

Then, fit the model to the data using the instance methods wNMF().fit or wNMF().fit_transform:

fit = model.fit(X=X,W=W,n_run=5)

After the fit is complete, explore the fit quality by examining the decomposed matrices and / or overall error:

## Get the best solutions
lowest_error = fit.err
best_V = fit.V
best_U = fit.U

## Or look at all the solutions from the 5 runs in this example
all_Vs = fit.V_all

License

wNMFx is MIT-licensed

Disclaimer

wNMFx is provided with no guarantees.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wnmfx-0.5.3.tar.gz (16.0 kB view details)

Uploaded Source

File details

Details for the file wnmfx-0.5.3.tar.gz.

File metadata

  • Download URL: wnmfx-0.5.3.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for wnmfx-0.5.3.tar.gz
Algorithm Hash digest
SHA256 f129ba3f3a99e1b3c590cbe3cb736252ddc506609b6e2aea5a9d30c71116f96a
MD5 accef3be344e353acf20f56c9e3a0ea7
BLAKE2b-256 b7f4659d6050c9dd796beca93d65d34b97fe48b754e6d550d4e895b24894c412

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page