mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Add nodejs samples README (#5005)
This commit is contained in:
parent
4b9b5b6146
commit
d7502eff8f
2 changed files with 15 additions and 15 deletions
|
|
@ -53,21 +53,7 @@ For a list of available dockerfiles and published images to help with getting st
|
|||
|
||||
## Node.js
|
||||
|
||||
### Samples
|
||||
In each sample's implementation subdirectory, run
|
||||
```
|
||||
npm install
|
||||
node ./
|
||||
```
|
||||
* [Basic Usage](./nodejs/01_basic-usage/) - a demonstration of basic usage of ONNX Runtime Node.js binding.
|
||||
|
||||
* [Create Tensor](./nodejs/02_create-tensor/) - a demonstration of basic usage of creating tensors.
|
||||
<!--
|
||||
* [Create Tensor (Advanced)](./nodejs/03_create-tensor-advanced/) - a demonstration of advanced usage of creating tensors.
|
||||
-->
|
||||
|
||||
* [Create InferenceSession](./nodejs/04_create-inference-session/) - shows how to create `InferenceSession` in different ways.
|
||||
|
||||
* [Inference with Nodejs](./nodejs)
|
||||
|
||||
---
|
||||
|
||||
|
|
|
|||
14
samples/nodejs/README.md
Normal file
14
samples/nodejs/README.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# 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.
|
||||
Loading…
Reference in a new issue