mlens.parallel.estimation module¶
ML-ENSEMBLE
| author: | Sebastian Flennerhag |
|---|---|
| copyright: | 2017 |
| licence: | MIT |
Base class for estimation.
-
class
mlens.parallel.estimation.BaseEstimator(layer)[source]¶ Bases:
objectBase class for estimating a layer in parallel.
Estimation class to be used as based for a layer estimation engined that is callable by the
ParallelProcessjob manager.- A subclass must implement a constructor that accepts the following args:
job: theJobinstance containing relevant datalayer: theLayerinstance to estimaten: the position in theLayerContainerstack of the layer
as well as a
runmethod that accepts aParallelinstance.Parameters: layer ( Layer) – layer to be estimated.