Source code for straxen.plugins.peaks.peak_positions_mlp

import strax
import straxen
from straxen.plugins.peaks._peak_positions_base import PeakPositionsBaseNT


export, __all__ = strax.exporter()


[docs]@export class PeakPositionsMLP(PeakPositionsBaseNT): """Multilayer Perceptron (MLP) neural net for position reconstruction.""" provides = "peak_positions_mlp" algorithm = "mlp" tf_model_mlp = straxen.URLConfig( default=( "tf://" "resource://" f"cmt://{algorithm}_model" "?version=ONLINE" "&run_id=plugin.run_id" "&fmt=abs_path" ), help=( 'MLP model. Should be opened using the "tf" descriptor. ' 'Set to "None" to skip computation' ), cache=3, )