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:
28
node_modules/onnxruntime-web/lib/backend-onnxjs.js
generated
vendored
Normal file
28
node_modules/onnxruntime-web/lib/backend-onnxjs.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.onnxjsBackend = void 0;
|
||||
const session_1 = require("./onnxjs/session");
|
||||
const session_handler_1 = require("./onnxjs/session-handler");
|
||||
class OnnxjsBackend {
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
||||
async init() { }
|
||||
async createSessionHandler(pathOrBuffer, options) {
|
||||
// NOTE: Session.Config(from onnx.js) is not compatible with InferenceSession.SessionOptions(from
|
||||
// onnxruntime-common).
|
||||
// In future we should remove Session.Config and use InferenceSession.SessionOptions.
|
||||
// Currently we allow this to happen to make test runner work.
|
||||
const session = new session_1.Session(options);
|
||||
// typescript cannot merge method override correctly (so far in 4.2.3). need if-else to call the method.
|
||||
if (typeof pathOrBuffer === 'string') {
|
||||
await session.loadModel(pathOrBuffer);
|
||||
}
|
||||
else {
|
||||
await session.loadModel(pathOrBuffer);
|
||||
}
|
||||
return new session_handler_1.OnnxjsSessionHandler(session);
|
||||
}
|
||||
}
|
||||
exports.onnxjsBackend = new OnnxjsBackend();
|
||||
//# sourceMappingURL=backend-onnxjs.js.map
|
||||
Reference in New Issue
Block a user