chore: update node_modules with new binary files and dependencies
- Add new binary files for nodemon, onnxruntime-web, and xenova/transformers - Update various JavaScript and TypeScript files in node_modules - Remove unused files and dependencies - Add new test fixtures and documentation files
This commit is contained in:
26
node_modules/onnxruntime-common/dist/lib/tensor-utils.d.ts
generated
vendored
Normal file
26
node_modules/onnxruntime-common/dist/lib/tensor-utils.d.ts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import { Tensor, TensorToImageDataOptions, TypedTensor } from './tensor';
|
||||
interface Properties {
|
||||
/**
|
||||
* Get the number of elements in the tensor.
|
||||
*/
|
||||
readonly size: number;
|
||||
}
|
||||
export interface TypedShapeUtils<T extends Tensor.Type> {
|
||||
/**
|
||||
* Create a new tensor with the same data buffer and specified dims.
|
||||
*
|
||||
* @param dims - New dimensions. Size should match the old one.
|
||||
*/
|
||||
reshape(dims: readonly number[]): TypedTensor<T>;
|
||||
}
|
||||
export interface TypedTensorUtils<T extends Tensor.Type> extends Properties, TypedShapeUtils<T> {
|
||||
/**
|
||||
* creates an ImageData instance from tensor
|
||||
*
|
||||
* @param tensorFormat - Interface describing tensor instance - Defaults: RGB, 3 channels, 0-255, NHWC
|
||||
* 0-255, NHWC
|
||||
* @returns An ImageData instance which can be used to draw on canvas
|
||||
*/
|
||||
toImageData(options?: TensorToImageDataOptions): ImageData;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user