def predict()

in clearbox/models/base.py [0:0]


  def predict(self, x: npt.NDArray[float]) -> npt.NDArray[float]:
    """Predict the target for features `x`.

    Args:
      x: Array of input features. Shape: (N, F).
    Returns:
      Array of target predictions as floats. Shape: (N,).
    """
    raise NotImplementedError()