Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tensorflow/tfjs-node

Package Overview
Dependencies
Maintainers
11
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tensorflow/tfjs-node - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

dist/nodejs_kernel_backend.d.ts

@@ -130,2 +130,5 @@ /**

sign<T extends Tensor>(x: T): T;
isNaN<T extends Tensor>(x: T): T;
isInf<T extends Tensor>(x: T): T;
isFinite<T extends Tensor>(x: T): T;
rsqrt<T extends Tensor>(x: T): T;

@@ -194,3 +197,2 @@ reciprocal<T extends Tensor>(x: T): T;

time(f: () => void): Promise<BackendTimingInfo>;
isNaN<T extends Tensor>(x: T): T;
}

@@ -44,3 +44,3 @@ /**

* Example:
* ```javascript
* ```js
* const tf = require('@tensorflow/tfjs-node');

@@ -47,0 +47,0 @@ *

@@ -65,3 +65,3 @@ "use strict";

* Example:
* ```javascript
* ```js
* const tf = require('@tensorflow/tfjs-node');

@@ -68,0 +68,0 @@ *

/** @license See the LICENSE file. */
declare const version = "1.0.2";
declare const version = "1.0.3";
export { version };

@@ -5,3 +5,3 @@ "use strict";

// This code is auto-generated, do not modify this file!
var version = '1.0.2';
var version = '1.0.3';
exports.version = version;
{
"name": "@tensorflow/tfjs-node",
"version": "1.0.2",
"version": "1.0.3",
"main": "dist/index.js",

@@ -45,3 +45,3 @@ "types": "dist/index.d.ts",

"dependencies": {
"@tensorflow/tfjs": "~1.0.2",
"@tensorflow/tfjs": "~1.0.3",
"adm-zip": "^0.4.11",

@@ -48,0 +48,0 @@ "bindings": "~1.3.0",

@@ -723,2 +723,11 @@ /**

}
isNaN<T extends Tensor>(x: T): T {
return this.executeSingleInput('IsNan', x) as T;
}
isInf<T extends Tensor>(x: T): T {
return this.executeSingleInput('IsInf', x) as T;
}
isFinite<T extends Tensor>(x: T): T {
return this.executeSingleInput('IsFinite', x) as T;
}
rsqrt<T extends Tensor>(x: T): T {

@@ -1656,6 +1665,2 @@ return this.executeSingleInput('Rsqrt', x) as T;

}
isNaN<T extends Tensor>(x: T): T {
return this.executeSingleInput('IsNan', x) as T;
}
}

@@ -72,3 +72,3 @@

* Example:
* ```javascript
* ```js
* const tf = require('@tensorflow/tfjs-node');

@@ -75,0 +75,0 @@ *

/** @license See the LICENSE file. */
// This code is auto-generated, do not modify this file!
const version = '1.0.2';
const version = '1.0.3';
export {version};

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc