

ReadonlydataGet the buffer data of the tensor.
If the data is not on CPU (eg. it's in the form of WebGL texture or WebGPU buffer), throw error.
ReadonlydimsGet the dimensions of the tensor.
ReadonlygpuGet the WebGPU buffer that holds the tensor data.
If the data is not on GPU as WebGPU buffer, throw error.
ReadonlylocationGet the location of the data.
ReadonlymlGet the WebNN MLTensor that holds the tensor data.
If the data is not in a WebNN MLTensor, throw error.
ReadonlysizeGet the number of elements in the tensor.
ReadonlytextureGet the WebGL texture that holds the tensor data.
If the data is not on GPU as WebGL texture, throw error.
ReadonlytypeGet the data type of the tensor.
Dispose the tensor data.
If the data is on CPU, remove its internal reference to the underlying data. If the data is on GPU, release the data on GPU.
After calling this function, the tensor is considered no longer valid. Its location will be set to 'none'.
Get the buffer data of the tensor.
If the data is on CPU, returns the data immediately. If the data is on GPU, downloads the data and returns the promise.
OptionalreleaseData: booleanwhether release the data on GPU. Ignore if data is already on CPU.
Create a new tensor with the same data buffer and specified dims.
New dimensions. Size should match the old one.
creates a DataURL instance from tensor
Optionaloptions: TensorToDataUrlOptionsAn optional object representing options for creating a DataURL instance from the tensor.
The following default settings will be applied:
format: 'RGB'tensorLayout: 'NCHW'a DataURL string representing the image converted from tensor data
creates an ImageData instance from tensor
Optionaloptions: TensorToImageDataOptionsAn optional object representing options for creating an ImageData instance from the tensor.
The following default settings will be applied:
format: 'RGB'tensorLayout: 'NCHW'an ImageData instance representing the image converted from tensor data
Represent multi-dimensional arrays to feed to or fetch from model inferencing.