Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History

add

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Node-Add Example

This example shows:

  • How to create an InferenceSession using Node
  • Load a simple ONNX model which has one Operator: Add
  • Create two random Tensors of given shape
  • Run the inference using the inputs
  • Get output Tensor back
  • Access raw data in the Tensor
  • Match the results against the exptected values

How to run

  1. Download model file add.onnx from examples/models and put it in the current folder.

  2. Inside the folder, run npm install.

  3. run node index.js

Files in folder

  • index.js

    The main .js file that holds all ONNX.js logic to load and execute the model.

  • package.json

    A package file that specifies ONNX.js dependency.

  • add.onnx

    A simple ONNX model file that contains only one Add operator.