mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
30 lines
673 B
Markdown
30 lines
673 B
Markdown
# Examples
|
|
|
|
This folder contains several examples that demonstrate how to use onnxruntime Node.js binding.
|
|
|
|
## Examples List
|
|
|
|
### [01 Basic Usage](./01_basic-usage/)
|
|
|
|
This example is a demonstration of basic usage of ONNX Runtime Node.js binding.
|
|
|
|
### [02 Create Tensor](./02_create-tensor/)
|
|
|
|
This example is a demonstration of basic usage of creating tensors.
|
|
|
|
<!--
|
|
### [03 Create Tensor (Advanced)](./03_create-tensor-advanced/README.md)
|
|
|
|
This example is a demonstration of advanced usage of creating tensors.
|
|
-->
|
|
|
|
### [04 Create InferenceSession](./04_create-inference-session/)
|
|
|
|
## Usage
|
|
|
|
In each example's implementation subdirectory, run
|
|
|
|
```
|
|
npm install
|
|
node ./
|
|
```
|