src.utils.tuning.tuner

Classes

Tuner(**kwargs)

Exceptions

TunerException([message])

exception src.utils.tuning.tuner.TunerException(message='')
Author:

Alberto M. Esmoris Pena

Class for exceptions related to tuning components. See VL3DException

__init__(message='')
class src.utils.tuning.tuner.Tuner(**kwargs)
Author:

Alberto M. Esmoris Pena

Class for model tuning operations.

__init__(**kwargs)

Initialize/instantiate a Tuner.

Parameters:

kwargs – The attributes for the Tuner.

abstractmethod tune(model, pcloud=None)

Tune the given model on givel point cloud (if any).

Parameters:
  • model – The model to be tuned. See Model

  • pcloud – The point cloud involved in the tuning. See PointCloud

Returns:

The tuned model.

Return type:

Model