torch.special.SpecialLogitOptions
export interface SpecialLogitOptions<OutShape extends Shape = Shape> {
/** Small value to clamp input. Default: None (no clamping). */
eps?: number;
/** Pre-allocated output tensor. */
out?: Tensor<OutShape>;
}OutShapeextends Shapeeps(number)optional- – Small value to clamp input. Default: None (no clamping).
out(Tensor<OutShape>)optional- – Pre-allocated output tensor.
Options for logit operation