You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

menoh

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

menoh - npm Package Compare versions

Comparing version

to
1.1.1

build/binding.Makefile

2

package.json
{
"name": "menoh",
"version": "1.1.0",
"version": "1.1.1",
"description": "NodeJS binding for Menoh DNN inference library.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -129,2 +129,3 @@ # menoh

Add an input profile for the given name.
> Data type is implicitly set to `float32`.

@@ -134,2 +135,3 @@ #### builder.addOutput(output_var_name{string}) => {void}

> It currently takes no argument other than the name.
> Data type is implicitly set to `float32`.

@@ -146,6 +148,6 @@ #### builder.buildModel(config{object}) => {Model}

#### model.getProfile(var_name{string}) => {object}
Returns an object for the given name.
The object has following properties:
* dims {array}: Output buffer dimensions. (e.g. [1, 3, 244, 244])
* buf {Buffer}: Output buffer attached to the variable.
Returns a profile information for the given name.
The returned object has following properties:
* dims {array}: Dimensions of the attached buffer. (e.g. [1, 3, 244, 244])
* buf {Buffer}: Reference to the buffer attached to the variable.
* dtype {string}: Data type.

@@ -152,0 +154,0 @@