Package parsimony :: Package algorithms :: Module bases :: Class ImplicitAlgorithm
[hide private]
[frames] | no frames]

Class ImplicitAlgorithm

source code

   object --+    
            |    
BaseAlgorithm --+
                |
               ImplicitAlgorithm
Known Subclasses:

Implicit algorithms are algorithms that do not utilise a loss function.

Implicit algorithms instead minimise or maximise some underlying function
implicitly, usually from the data.

Parameters
----------
X : One or more data matrices.

Instance Methods [hide private]
 
run(X, **kwargs) source code

Inherited from BaseAlgorithm: get_params, set_params

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]

Inherited from BaseAlgorithm: check_compatibility

Class Variables [hide private]
  __metaclass__ = abc.ABCMeta
Metaclass for defining Abstract Base Classes (ABCs).
  __abstractmethods__ = frozenset(['run'])
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

run(X, **kwargs)

source code 
Decorators:
  • @abc.abstractmethod