src.utils.preds.prediction_reducer
Classes
|
Exceptions
|
- exception src.utils.preds.prediction_reducer.PredictionReducerException(message='')
- Author:
Alberto M. Esmoris Pena
Class for exceptions related to the reduction of many predictions for the same point. See
VL3DException.- __init__(message='')
- class src.utils.preds.prediction_reducer.PredictionReducer(**kwargs)
- Author:
Alberto M. Esmoris Pena
Class for reduce and select-after-reduce operations on predictions.
See
PredReduceStrategyandPredSelectStrategy.- Variables:
reduce_strategy (
PredReduceStrategy) – The strategy for the reduction itself.select_strategy (
PredSelectStrategy) – The strategy for the selection after the reduction.
- __init__(**kwargs)
Initialize/instantiate a PredictionReducer.
- Parameters:
kwargs – The attributes for the PredictionReducer.
- reduce(npoints, nvals, Z, I)
- select(Z)
See
PredSelectStrategyandPredSelectStrategy.select().