we may want a way to support sequences of operations. for example, could we come up with an elegant way of supporting something like:
- reduce data to n1 dimensions using algorithm 1
- align data using hyperalignment
- reduce the aligned data to n2 dimensions using algorithm 2
- align the result using SRM
- project the (twice-)aligned data onto 3d using algorithm 3
if we add a preprocess function, we may want to apply multiple preprocessing steps in sequence (e.g. normalize, than binarize, etc.).
we may want a way to support sequences of operations. for example, could we come up with an elegant way of supporting something like:
if we add a
preprocessfunction, we may want to apply multiple preprocessing steps in sequence (e.g. normalize, than binarize, etc.).