@ai-on-browser/data-analysis-models
Version:
Data analysis model package without any dependencies
13 lines (12 loc) • 384 B
TypeScript
export { default as onnx } from "./onnx_pb.js";
/**
* ONNX importer
*/
export default class ONNXImporter {
/**
* Load onnx model.
* @param {Uint8Array | ArrayBuffer | Blob} buffer File
* @returns {import("../graph").LayerObject[]} Objects represented the graph
*/
static load(buffer: Uint8Array | ArrayBuffer | Blob): import("../graph").LayerObject[];
}