@tensorflow/tfjs-node
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1141276
8800
Updated@tensorflow/tfjs@~1.0.3