mlpack_radical(1) | User Commands | mlpack_radical(1) |
mlpack_radical - radical
mlpack_radical -i string [-a int] [-n double] [-O bool] [-r int] [-s int] [-S int] [-V bool] [-o string] [-u string] [-h -v]
An implementation of RADICAL, a method for independent component analysis (ICA). Assuming that we have an input matrix X, the goal is to find a square unmixing matrix W such that Y = W * X and the dimensions of Y are independent components. If the algorithm is running particularly slowly, try reducing the number of replicates.
The input matrix to perform ICA on should be specified with the '--input_file (-i)' parameter. The output matrix Y may be saved with the '--output_ic_file (-o)' output parameter, and the output unmixing matrix W may be saved with the ’--output_unmixing_file (-u)' output parameter.
For example, to perform ICA on the matrix 'X.csv' with 40 replicates, saving the independent components to 'ic.csv', the following command may be used:
$ mlpack_radical --input_file X.csv --replicates 40 --output_ic_file ic.csv
For further information, including relevant papers, citations, and theory, consult the documentation found at http://www.mlpack.org or included with your distribution of mlpack.
12 December 2020 | mlpack-3.4.2 |