Interface ModelShape

An interface to define the shape of an ML model. This can be used to define the input and output shape of an ML model.

interface ModelShape {
    channels: number;
    height: number;
    range: number[];
    width: number;
}

Properties

channels: number
height: number
range: number[]
width: number