torch.nn.functional.BinaryCrossEntropyFunctionalOptions
export interface BinaryCrossEntropyFunctionalOptions {
weight?: Tensor;
size_average?: boolean;
reduce?: boolean;
reduction?: 'none' | 'mean' | 'sum';
}weight(Tensor)optionalsize_average(boolean)optionalreduce(boolean)optionalreduction('none' | 'mean' | 'sum')optional
Options for binary_cross_entropy functional operation.