torch.HistcOptions
export interface HistcOptions {
/** Number of histogram bins (default: 100) */
bins?: number;
/** Left edge of leftmost bin (default: minimum value in input) */
min?: number;
/** Right edge of rightmost bin (default: maximum value in input) */
max?: number;
}bins(number)optional- – Number of histogram bins (default: 100)
min(number)optional- – Left edge of leftmost bin (default: minimum value in input)
max(number)optional- – Right edge of rightmost bin (default: maximum value in input)
Options for histc operations