NAG FL Interface
f01sbf (real_​nmf_​rcomm)

1 Purpose

f01sbf computes a non-negative matrix factorization for a real non-negative m by n matrix A. It uses reverse communication for evaluating matrix products, so that the matrix A is not accessed explicitly.

2 Specification

Fortran Interface
Subroutine f01sbf ( irevcm, m, n, k, w, ldw, h, ldh, ht, ldht, seed, errtol, comm, icomm, ifail)
Integer, Intent (In) :: m, n, k, ldw, ldh, ldht, seed
Integer, Intent (Inout) :: irevcm, icomm(9), ifail
Real (Kind=nag_wp), Intent (In) :: errtol
Real (Kind=nag_wp), Intent (Inout) :: w(ldw,*), h(ldh,*), ht(ldht,*), comm((2*m+n)*k+3)
C Header Interface
#include <nag.h>
void  f01sbf_ (Integer *irevcm, const Integer *m, const Integer *n, const Integer *k, double w[], const Integer *ldw, double h[], const Integer *ldh, double ht[], const Integer *ldht, const Integer *seed, const double *errtol, double comm[], Integer icomm[], Integer *ifail)
The routine may be called by the names f01sbf or nagf_matop_real_nmf_rcomm.

3 Description

The matrix A is factorized into the product of an m by k matrix W and a k by n matrix H, both with non-negative elements. The factorization is approximate, AWH, with W and H chosen to minimize the functional
fW,H = A-WH F 2 .  
You are free to choose any value for k, provided k<minm,n. The product WH will then be a low-rank approximation to A, with rank at most k.
f01sbf finds W and H using an iterative method known as the Hierarchical Alternating Least Squares algorithm. You may specify initial values for W and H, or you may provide a seed value for f01sbf to generate the initial values using a random number generator.
f01sbf does not explicitly need to access the elements of A; it only requires the result of matrix multiplications of the form AX or ATY. A reverse communication interface is used, in which control is returned to the calling program whenever a matrix product is required.

4 References

Cichocki A and Phan A–H (2009) Fast local algorithms for large scale nonnegative matrix and tensor factorizations IEICE Transactions on Fundamentals of Electronics, Communications and Computer Sciences E92–A 708–721
Cichocki A, Zdunek R and Amari S–I (2007) Hierarchical ALS algorithms for nonnegative matrix and 3D tensor factorization Lecture Notes in Computer Science 4666 Springer 169–176
Ho N–D (2008) Nonnegative matrix factorization algorithms and applications PhD Thesis Univ. Catholique de Louvain

5 Arguments

Note: this routine uses reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the argument irevcm. Between intermediate exits and re-entries, all arguments other than w and ht must remain unchanged.
1: irevcm Integer Input/Output
On initial entry: must be set to 0.
On intermediate exit: specifies what action you must take before re-entering f01sbf with irevcm unchanged. The value of irevcm should be interpreted as follows:
irevcm=1
Indicates the start of a new iteration. No action is required by you, but w and h are available for printing, and a limit on the number of iterations can be applied.
irevcm=2
Indicates that before re-entry to f01sbf, the product ATW must be computed and stored in ht.
irevcm=3
Indicates that before re-entry to f01sbf, the product AHT must be computed and stored in w.
Note: any values you return to f01sbf as part of the reverse communication procedure should not include floating-point NaN (Not a Number) or infinity values, since these are not handled by f01sbf. If your code does inadvertently return any NaNs or infinities, f01sbf is likely to produce unexpected results.
2: m Integer Input
On entry: m, the number of rows of the matrix A. Also the number of rows of the matrix W.
Constraint: m2.
3: n Integer Input
On entry: n, the number of columns of the matrix A. Also the number of columns of the matrix H.
Constraint: n2.
4: k Integer Input
On entry: k, the number of columns of the matrix W. Also, the number of rows of the matrix H. See Section 9.2 for further details.
Constraint: 1k<minm,n.
5: wldw* Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array w must be at least k.
On initial entry:
  • if seed0, w should be set to an initial iterate for the non-negative matrix factor, W.
  • If seed1, w need not be set. f01sbf will generate a random initial iterate.
On intermediate exit: if irevcm=1 or 2, w contains the current iterate of the m×k non-negative matrix W.
On intermediate re-entry:
  • if irevcm=3, w must contain AHT, where HT is stored in ht.
  • If irevcm=0, 1 or 2, w must not be changed.
On final exit: w contains the m×k non-negative matrix W.
6: ldw Integer Input
On entry: the first dimension of the array w as declared in the (sub)program from which f01sbf is called.
Constraint: ldwm.
7: hldh* Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array h must be at least n.
On initial entry:
  • if seed0, h should be set to an initial iterate for the non-negative matrix factor, H.
  • If seed1, h need not be set. f01sbf will generate a random initial iterate.
On intermediate exit: if irevcm=1, h contains the current iterate of the k×n non-negative matrix H.
On intermediate re-entry: h must not be changed.
On final exit: h contains the k×n non-negative matrix H.
8: ldh Integer Input
On entry: the first dimension of the array h as declared in the (sub)program from which f01sbf is called.
Constraint: ldhk.
9: htldht* Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array ht must be at least k.
On initial entry: ht need not be set.
On intermediate exit: if irevcm=3, ht contains the n×k non-negative matrix HT, which is required in order to from AHT.
On intermediate re-entry: if irevcm=2, ht must contain ATW.
If irevcm=0, 1 or 3, ht must not be changed.
On final exit: ht is undefined.
10: ldht Integer Input
On entry: the first dimension of the array ht as declared in the (sub)program from which f01sbf is called.
Constraint: ldhtn.
11: seed Integer Input
On initial entry:
  • if seed0, the supplied values of W and H are used for the initial iterate.
  • If seed1, the value of seed is used to seed a random number generator for the initial iterates W and H. See Section 9.3 for further details.
12: errtol Real (Kind=nag_wp) Input
On entry: the convergence tolerance for when the Hierarchical Alternating Least Squares iteration has reached a stationary point. If errtol0.0, maxm,n×machine precision is used.
13: comm2×m+n×k+3 Real (Kind=nag_wp) array Communication Array
14: icomm9 Integer array Communication Array
15: ifail Integer Input/Output
On initial entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 4 in the Introduction to the NAG Library FL Interface for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1 or 1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if ifail0 on exit, the recommended value is -1. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On final exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On initial entry, irevcm=value.
Constraint: irevcm=0.
On intermediate re-entry, irevcm=value.
Constraint: irevcm=1, 2 or 3.
ifail=2
On entry, m=value.
Constraint: m2.
ifail=3
On entry, n=value.
Constraint: n2.
ifail=4
On entry, k=value, m=value and n=value.
Constraint: 1k<minm,n.
ifail=5
On entry, ldw=value and m=value.
Constraint: ldwm.
ifail=6
On entry, ldh=value and k=value.
Constraint: ldhk.
ifail=7
On entry, ldht=value and n=value.
Constraint: ldhtn.
ifail=8
An internal error occurred when generating initial values for w and h. Please contact NAG.
ifail=9
On entry, one of more of the elements of w or h were negative.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The Hierarchical Alternating Least Squares algorithm used by f01sbf is locally convergent; it is guaranteed to converge to a stationary point of fW,H, but this may not be the global minimum. The iteration is deemed to have converged if the gradient of fW,H is less than errtol times the gradient at the initial values of W and H.
Due to the local convergence property, you may wish to run f01sbf multiple times with different starting iterates. This can be done by explicitly providing the starting values of W and H each time, or by choosing a different random seed each time.
Note that even if f01sbf exits with ifail=7, the factorization given by W and H may still be a good enough approximation to be useful.

8 Parallelism and Performance

f01sbf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f01sbf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

f01sbf is designed to be used when A is large and sparse. Whenever a matrix multiplication is required, the routine will return control to the calling program so that the multiplication can be done in the most efficient way possible. Note that W and H will not, in general, be sparse even if A is sparse.
If A is small and dense, then f01saf can be used to compute W and H without the use of a reverse communication interface.

9.1 Uniqueness

Note that non-negative matrix factorization is not unique. For a factorization given by the matrices W and H, an equally good solution is given by WD and D-1H, where D is any real non-negative k×k matrix whose inverse is also non-negative. In f01sbf, W and H are normalized so that the columns of W have unit length.

9.2 Choice of k

The most appropriate choice of the factorization rank, k, is often problem dependent. Details of your particular application may help in guiding your choice of k, for example, it may be known a priori that the data in A naturally falls into a certain number of categories.
Alternatively, trial and error can be used. Compute non-negative matrix factorizations for several different values of k (typically with kminm,n) and select the one that performs the best.
Finally, it is also possible to use a singular value decomposition of A to guide your choice of k, by looking for an abrupt decay in the size of the singular values of A. The singular value decomposition can be computed using f12fbf.

9.3 Generating Random Initial Iterates

If seed1 on entry, then f01sbf uses the routines g05kff and g05saf, with the NAG basic generator, to populate w and h. For further information on this random number generator see Section 2.1.1 in the G05 Chapter Introduction.
Note that this generator gives a repeatable sequence of random numbers, so if the value of seed is not changed between routine calls, then the same initial iterates will be generated.

9.4 Use in Conjunction with NAG Library Routines

To compute the non-negative matrix factorization, the following skeleton code can normally be used:
revcm: Do 
  Call f01sbf(irevcm,m,n,k,w,ldw,h,ldh,ht,ldht, &
              seed,errtol,comm,icomm,ifail)
  If (irevcm == 0) Then 
      Exit revcm 
  Else If (irevcm == 1) Then
      .. Print W and H if required and check number of iterations ..
  Else If (irevcm == 2) Then
      .. Compute A^TW and store in ht..
  Else If (irevcm == 3) Then
      .. Compute AH^T and store in w ..
  End If
End Do revcm
The code used to compute the matrix products will vary depending on the way A is stored. If all the elements of A are stored explicitly, then f06yaf) can be used. If A is triangular, then f06yff should be used. If A is symmetric, then f06ycf should be used. For sparse A stored in coordinate storage format f11xaf and f11xef can be used. Alternatively, if A is stored in compressed column format f11mkf can be used.

10 Example

This example finds a non-negative matrix factorization for the matrix
A= 0 1 4 0 0 2 6 0 0 2 0 0 0 7 2 0 6 1 3 0 2 1 7 1 6 2 0 2 3 0 3 0 6 1 0 3 0 2 3 0 1 0 .  

10.1 Program Text

Program Text (f01sbfe.f90)

10.2 Program Data

Program Data (f01sbfe.d)

10.3 Program Results

Program Results (f01sbfe.r)