-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathinference-session-create.js
74 lines (59 loc) · 2.63 KB
/
inference-session-create.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
const fs = require('fs');
const util = require('util');
const ort = require('onnxruntime-node');
// following code also works for onnxruntime-web.
const InferenceSession = ort.InferenceSession;
// use an async context to call onnxruntime functions.
async function main() {
try {
// create session option object
const options = createMySessionOptions();
//
// create inference session from a ONNX model file path or URL
//
const session01 = await InferenceSession.create('./model.onnx');
const session01_B = await InferenceSession.create('./model.onnx', options); // specify options
//
// create inference session from an Node.js Buffer (Uint8Array)
//
const buffer02 = await readMyModelDataFile('./model.onnx'); // buffer is Uint8Array
const session02 = await InferenceSession.create(buffer02);
const session02_B = await InferenceSession.create(buffer02, options); // specify options
//
// create inference session from an ArrayBuffer
//
const arrayBuffer03 = buffer02.buffer;
const offset03 = buffer02.byteOffset;
const length03 = buffer02.byteLength;
const session03 = await InferenceSession.create(arrayBuffer03, offset03, length03);
const session03_B = await InferenceSession.create(arrayBuffer03, offset03, length03, options); // specify options
// example for browser
//const arrayBuffer03_C = await fetchMyModel('./model.onnx');
//const session03_C = await InferenceSession.create(arrayBuffer03_C);
} catch (e) {
console.error(`failed to create inference session: ${e}`);
}
}
main();
function createMySessionOptions() {
// session options: please refer to the other example for details usage for session options
// example of a session option object in node.js:
// specify intra operator threads number to 1 and disable CPU memory arena
return { intraOpNumThreads: 1, enableCpuMemArena: false }
// example of a session option object in browser:
// specify WebAssembly exection provider
//return { executionProviders: ['wasm'] };
}
async function readMyModelDataFile(filepathOrUri) {
// read model file content (Node.js) as Buffer (Uint8Array)
return await util.promisify(fs.readFile)(filepathOrUri);
}
async function fetchMyModel(filepathOrUri) {
// use fetch to read model file (browser) as ArrayBuffer
if (typeof fetch !== 'undefined') {
const response = await fetch(filepathOrUri);
return await response.arrayBuffer();
}
}