mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
15 lines
420 B
Markdown
15 lines
420 B
Markdown
|
|
# ONNX Runtime nodejs samples
|
||
|
|
|
||
|
|
In each sample's implementation subdirectory, run
|
||
|
|
|
||
|
|
```bash
|
||
|
|
npm install
|
||
|
|
node ./
|
||
|
|
```
|
||
|
|
|
||
|
|
* [Basic Usage](01_basic-usage) - a demonstration of basic usage of ONNX Runtime Node.js binding.
|
||
|
|
|
||
|
|
* [Create Tensor](02_create-tensor) - a demonstration of basic usage of creating tensors.
|
||
|
|
|
||
|
|
* [Create InferenceSession](04_create-inference-session) - shows how to create InferenceSession in different ways.
|