Helper functions that construct S7 Smoothing objects used by
search_strategy() to control how relative identification potential (rIP)
is smoothed before scoring.
All helpers are pure configuration; they do not perform any computation
by themselves. Backend methods for detect_duplicates() and
search_candidates() interpret the resulting Smoothing object.
Usage
smooth_rip_identity()
smooth_rip_log()
smooth_rip_offset(alpha = 0.5)
smooth_rip_softmax(temperature = 1)Value
An object inheriting from Smoothing that can be passed to
the smoothing argument of search_strategy().
Functions
smooth_rip_identity(): Identity rIP smoothing (no transformation beyond standard per record normalization). This is the default.smooth_rip_log(): Logarithmic rIP smoothing. Backends typically applylog1p(rIP)and then renormalize within each record and column.smooth_rip_offset(): Offset based rIP smoothing with a constant offsetalphathat is added to all rIP values before renormalization.smooth_rip_softmax(): Softmax style rIP smoothing with a temperature parameter that controls how sharp or flat the transformed distribution is.
