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