Class DIPLS

  • All Implemented Interfaces:
    Destroyable, GlobalInfoSupporter, LoggingLevelHandler, LoggingSupporter, OptionHandler, SizeOfHandler, TechnicalInformationHandler, Serializable, weka.core.CapabilitiesHandler, GenericPLSMatrixAccess

    public class DIPLS
    extends AbstractSingleClassPLS
    Domain Invariant Partial Least Squares (DIPLS).

    For more information see:
    Ramin Nikzad-Langerodi, Werner Zellinger, Edwin Lughofer,, Susanne Saminger-Platz. Domain-Invariant Partial-Least-Squares Regression. Analytical Chemistry. 90(11):6693-6701. URL https://pubs.acs.org/doi/10.1021/acs.analchem.8b00498

     @article{missing_id,
        author = {Ramin Nikzad-Langerodi, Werner Zellinger, Edwin Lughofer, and Susanne Saminger-Platz},
        journal = {Analytical Chemistry},
        number = {11},
        pages = {6693-6701},
        title = {Domain-Invariant Partial-Least-Squares Regression},
        volume = {90},
        URL = {https://pubs.acs.org/doi/10.1021/acs.analchem.8b00498}
     }
     


    -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel)
        The logging level for outputting errors and debugging output.
        default: WARNING
        min-user-mode: Expert
     
    -preprocessing-type <NONE|CENTER|STANDARDIZE> (property: preprocessingType)
        The type of preprocessing to perform.
        default: CENTER
     
    -replace-missing <boolean> (property: replaceMissing)
        Whether to replace missing values.
        default: false
     
    -num-components <int> (property: numComponents)
        The number of components to compute.
        default: 20
        minimum: 1
     
    -prediction-type <NONE|ALL|EXCEPT_CLASS> (property: predictionType)
        The type of prediction to perform.
        default: NONE
     
    -lambda <double> (property: lambda)
        The lambda (> 0).
        default: 1.0
        minimum: 1.0E-8
     
    Author:
    FracPete (fracpete at waikato dot ac dot nz)
    See Also:
    Serialized Form
    • Field Detail

      • m_DIPLS

        protected com.github.waikatodatamining.matrix.algorithm.pls.DIPLS m_DIPLS
        the actual algorithm.
      • m_Lambda

        protected double m_Lambda
        lambda
    • Constructor Detail

      • DIPLS

        public DIPLS()