@tensorflow/tfjs-converter
Advanced tools
Comparing version 3.4.0 to 3.5.0
@@ -44,3 +44,3 @@ /** | ||
'matrices', 'normalization', 'reduction', 'slice_join', 'spectral', | ||
'transformation' | ||
'transformation', 'sparse' | ||
] | ||
@@ -57,4 +57,3 @@ }, | ||
{ 'type': 'number' }, { 'type': 'array', 'items': { 'type': 'number' } }, | ||
{ 'type': 'boolean' }, | ||
{ 'type': 'array', 'items': { 'type': 'boolean' } } | ||
{ 'type': 'boolean' }, { 'type': 'array', 'items': { 'type': 'boolean' } } | ||
] | ||
@@ -85,4 +84,3 @@ }, | ||
{ 'type': 'number' }, { 'type': 'array', 'items': { 'type': 'number' } }, | ||
{ 'type': 'boolean' }, | ||
{ 'type': 'array', 'items': { 'type': 'boolean' } } | ||
{ 'type': 'boolean' }, { 'type': 'array', 'items': { 'type': 'boolean' } } | ||
] | ||
@@ -89,0 +87,0 @@ }, |
@@ -35,2 +35,3 @@ /** | ||
import * as sliceJoin from './executors/slice_join_executor'; | ||
import * as sparse from './executors/sparse_executor'; | ||
import * as spectral from './executors/spectral_executor'; | ||
@@ -76,2 +77,4 @@ import * as transformation from './executors/transformation_executor'; | ||
return tfc.tidy(() => sliceJoin.executeOp(node, tensorMap, context)); | ||
case 'sparse': | ||
return tfc.tidy(() => sparse.executeOp(node, tensorMap, context)); | ||
case 'spectral': | ||
@@ -78,0 +81,0 @@ return tfc.tidy(() => spectral.executeOp(node, tensorMap, context)); |
@@ -23,3 +23,3 @@ /** | ||
export declare type ParamType = 'number' | 'string' | 'string[]' | 'number[]' | 'bool' | 'bool[]' | 'shape' | 'shape[]' | 'tensor' | 'tensors' | 'dtype' | 'dtype[]' | 'func'; | ||
export declare type Category = 'arithmetic' | 'basic_math' | 'control' | 'convolution' | 'custom' | 'dynamic' | 'evaluation' | 'image' | 'creation' | 'graph' | 'logical' | 'matrices' | 'normalization' | 'reduction' | 'slice_join' | 'spectral' | 'transformation' | 'hash_table'; | ||
export declare type Category = 'arithmetic' | 'basic_math' | 'control' | 'convolution' | 'custom' | 'dynamic' | 'evaluation' | 'image' | 'creation' | 'graph' | 'logical' | 'matrices' | 'normalization' | 'reduction' | 'slice_join' | 'spectral' | 'transformation' | 'hash_table' | 'sparse'; | ||
export declare interface ParamMapper { | ||
@@ -26,0 +26,0 @@ name: string; |
/** @license See the LICENSE file. */ | ||
declare const version = "3.4.0"; | ||
declare const version = "3.5.0"; | ||
export { version }; |
/** @license See the LICENSE file. */ | ||
// This code is auto-generated, do not modify this file! | ||
const version = '3.4.0'; | ||
const version = '3.5.0'; | ||
export { version }; | ||
//# sourceMappingURL=version.js.map |
@@ -458,2 +458,5 @@ { | ||
], | ||
"SparseReshape": [ | ||
"sparse.sparseReshape" | ||
], | ||
"SparseToDense": [ | ||
@@ -460,0 +463,0 @@ "sparseToDense", |
{ | ||
"name": "@tensorflow/tfjs-converter", | ||
"version": "3.4.0", | ||
"version": "3.5.0", | ||
"description": "Tensorflow model converter for javascript", | ||
@@ -18,3 +18,3 @@ "main": "dist/tf-converter.node.js", | ||
"peerDependencies": { | ||
"@tensorflow/tfjs-core": "3.4.0" | ||
"@tensorflow/tfjs-core": "3.5.0" | ||
}, | ||
@@ -26,4 +26,4 @@ "devDependencies": { | ||
"@rollup/plugin-typescript": "^3.0.0", | ||
"@tensorflow/tfjs-backend-cpu": "3.4.0", | ||
"@tensorflow/tfjs-core": "3.4.0", | ||
"@tensorflow/tfjs-backend-cpu": "3.5.0", | ||
"@tensorflow/tfjs-core": "3.5.0", | ||
"@types/argparse": "^1.0.38", | ||
@@ -30,0 +30,0 @@ "@types/deep-equal": "^1.0.1", |
@@ -45,3 +45,3 @@ /** | ||
'matrices', 'normalization', 'reduction', 'slice_join', 'spectral', | ||
'transformation' | ||
'transformation', 'sparse' | ||
] | ||
@@ -58,4 +58,3 @@ }, | ||
{'type': 'number'}, {'type': 'array', 'items': {'type': 'number'}}, | ||
{'type': 'boolean'}, | ||
{'type': 'array', 'items': {'type': 'boolean'}} | ||
{'type': 'boolean'}, {'type': 'array', 'items': {'type': 'boolean'}} | ||
] | ||
@@ -86,4 +85,3 @@ }, | ||
{'type': 'number'}, {'type': 'array', 'items': {'type': 'number'}}, | ||
{'type': 'boolean'}, | ||
{'type': 'array', 'items': {'type': 'boolean'}} | ||
{'type': 'boolean'}, {'type': 'array', 'items': {'type': 'boolean'}} | ||
] | ||
@@ -90,0 +88,0 @@ }, |
@@ -41,2 +41,3 @@ /** | ||
import * as sliceJoin from './executors/slice_join_executor'; | ||
import * as sparse from './executors/sparse_executor'; | ||
import * as spectral from './executors/spectral_executor'; | ||
@@ -94,2 +95,4 @@ import * as transformation from './executors/transformation_executor'; | ||
() => sliceJoin.executeOp(node, tensorMap, context)); | ||
case 'sparse': | ||
return tfc.tidy(() => sparse.executeOp(node, tensorMap, context)); | ||
case 'spectral': | ||
@@ -96,0 +99,0 @@ return tfc.tidy(() => spectral.executeOp(node, tensorMap, context)); |
@@ -29,3 +29,3 @@ /** | ||
'matrices'|'normalization'|'reduction'|'slice_join'|'spectral'| | ||
'transformation'|'hash_table'; | ||
'transformation'|'hash_table'|'sparse'; | ||
@@ -32,0 +32,0 @@ // For mapping input or attributes of NodeDef into TensorFlow.js op param. |
/** @license See the LICENSE file. */ | ||
// This code is auto-generated, do not modify this file! | ||
const version = '3.4.0'; | ||
const version = '3.5.0'; | ||
export {version}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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 too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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 too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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 too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 13 instances in 1 package
14026801
298
55237
13
60