torch.nn.functional.SoftminFunctionalOptions
export interface SoftminFunctionalOptions {
/** A dimension along which Softmin will be computed (default: -1) */
dim?: number;
/** The desired data type of returned tensor. If specified, the input tensor is casted to dtype before the operation is performed. */
dtype?: DType;
}dim(number)optional- – A dimension along which Softmin will be computed (default: -1)
dtype(DType)optional- – The desired data type of returned tensor. If specified, the input tensor is casted to dtype before the operation is performed.
Options for softmin functional operation.