| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808 |
- /* jshint esversion: 6 */
- var tflite = tflite || {};
- var flatbuffers = flatbuffers || require('./flatbuffers');
- tflite.ModelFactory = class {
- match(context) {
- const extension = context.identifier.split('.').pop().toLowerCase();
- if (['tflite', 'lite', 'tfl', 'bin', 'pb', 'model', 'tmfile', 'h5' ].indexOf(extension) !== -1) {
- const buffer = context.buffer;
- const signature = 'TFL3';
- if (buffer && buffer.length > 8 && buffer.subarray(4, 8).every((x, i) => x === signature.charCodeAt(i))) {
- return true;
- }
- }
- if (extension === 'json') {
- const tags = context.tags('json');
- if (tags.has('subgraphs') && tags.has('operator_codes')) {
- return true;
- }
- }
- return false;
- }
- open(context, host) {
- return host.require('./tflite-schema').then(() => {
- tflite.schema = flatbuffers.get('tflite').tflite;
- return tflite.Metadata.open(host).then((metadata) => {
- const identifier = context.identifier;
- try {
- const extension = identifier.split('.').pop().toLowerCase();
- switch (extension) {
- default: {
- const reader = new flatbuffers.Reader(context.buffer);
- if (!tflite.schema.Model.identifier(reader)) {
- throw new tflite.Error("File format is not tflite.Model.");
- }
- const model = tflite.schema.Model.create(reader);
- return new tflite.Model(metadata, model);
- }
- case 'json': {
- const reader = new flatbuffers.TextReader(context.buffer);
- const model = tflite.schema.Model.createText(reader);
- return new tflite.Model(metadata, model);
- }
- }
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new tflite.Error(message.replace(/\.$/, '') + " in '" + identifier + "'.");
- }
- });
- });
- }
- };
- tflite.Model = class {
- constructor(metadata, model) {
- this._graphs = [];
- this._format = 'TensorFlow Lite';
- this._format = this._format + ' v' + model.version.toString();
- this._description = model.description || '';
- const operatorList = [];
- const builtinOperatorMap = {};
- for (const key of Object.keys(tflite.schema.BuiltinOperator)) {
- const index = tflite.schema.BuiltinOperator[key];
- builtinOperatorMap[index] = tflite.Utility.type(key);
- }
- for (let i = 0; i < model.operator_codes.length; i++) {
- const operatorCode = model.operator_codes[i];
- const code = operatorCode.builtin_code;
- const version = operatorCode.version;
- const custom = code === tflite.schema.BuiltinOperator.CUSTOM;
- const name = custom ? operatorCode.custom_code : builtinOperatorMap[code];
- if (!name) {
- throw new tflite.Error("Invalid built-in code '" + code.toString() + "' at '" + i.toString() + "'.");
- }
- operatorList.push(custom ? { name: name, version: version, custom: true } : { name: name, version: version });
- }
- let modelMetadata = null;
- for (const metadata of model.metadata) {
- switch (metadata.name) {
- case 'min_runtime_version': {
- const data = model.buffers[metadata.buffer].data;
- this._runtime = data ? new TextDecoder().decode(data) : undefined;
- break;
- }
- case 'TFLITE_METADATA': {
- const data = model.buffers[metadata.buffer].data || new Uint8Array(0);
- const reader = new flatbuffers.Reader(data);
- if (tflite.schema.ModelMetadata.identifier(reader)) {
- modelMetadata = tflite.schema.ModelMetadata.create(reader);
- this._name = modelMetadata.name || '';
- this._version = modelMetadata.version || '';
- this._description = modelMetadata.description ? [ this.description, modelMetadata.description].join(' ') : this._description;
- this._author = modelMetadata.author || '';
- this._license = modelMetadata.license || '';
- }
- break;
- }
- }
- }
- const subgraphs = model.subgraphs;
- const subgraphsMetadata = modelMetadata ? modelMetadata.subgraph_metadata : null;
- for (let i = 0; i < subgraphs.length; i++) {
- const subgraph = subgraphs[i];
- const name = subgraphs.length > 1 ? i.toString() : '';
- const subgraphMetadata = subgraphsMetadata && i < subgraphsMetadata.length ? subgraphsMetadata[i] : null;
- this._graphs.push(new tflite.Graph(metadata, subgraph, subgraphMetadata, name, operatorList, model));
- }
- }
- get format() {
- return this._format;
- }
- get runtime() {
- return this._runtime;
- }
- get name() {
- return this._name;
- }
- get version() {
- return this._version;
- }
- get description() {
- return this._description;
- }
- get author() {
- return this._author;
- }
- get license() {
- return this._license;
- }
- get graphs() {
- return this._graphs;
- }
- };
- tflite.Graph = class {
- constructor(metadata, subgraph, subgraphMetadata, name, operatorList, model) {
- this._nodes = [];
- this._inputs = [];
- this._outputs = [];
- this._name = subgraph.name || name;
- const args = [];
- const tensorNames = [];
- for (let i = 0; i < subgraph.tensors.length; i++) {
- const tensor = subgraph.tensors[i];
- const buffer = model.buffers[tensor.buffer];
- const is_variable = tensor.is_variable;
- const data = buffer.data;
- const initializer = (data && data.length > 0) || is_variable ? new tflite.Tensor(i, tensor, buffer, is_variable) : null;
- args.push(new tflite.Argument(i, tensor, initializer));
- tensorNames.push(tensor.name);
- }
- const operators = subgraph.operators;
- for (let i = 0; i < subgraph.operators.length; i++) {
- const node = operators[i];
- const index = node.opcode_index;
- const operator = index < operatorList.length ? operatorList[index] : { name: '(' + index.toString() + ')' };
- this._nodes.push(new tflite.Node(metadata, node, operator, i.toString(), args));
- }
- const applyTensorMetadata = (argument, tensorMetadata) => {
- if (tensorMetadata) {
- const description = tensorMetadata.description;
- if (description) {
- argument.description = description;
- }
- const content = tensorMetadata.content;
- if (argument.type && content) {
- let denotation = null;
- const contentProperties = content.content_properties;
- if (contentProperties instanceof tflite.schema.FeatureProperties) {
- denotation = 'Feature';
- }
- else if (contentProperties instanceof tflite.schema.ImageProperties) {
- denotation = 'Image';
- switch(contentProperties.color_space) {
- case 1: denotation += '(RGB)'; break;
- case 2: denotation += '(Grayscale)'; break;
- }
- }
- else if (contentProperties instanceof tflite.schema.BoundingBoxProperties) {
- denotation = 'BoundingBox';
- }
- if (denotation) {
- argument.type.denotation = denotation;
- }
- }
- }
- };
- const inputs = subgraph.inputs;
- for (let i = 0; i < inputs.length; i++) {
- const input = inputs[i];
- const argument = args[input];
- if (subgraphMetadata && i < subgraphMetadata.input_tensor_metadata.length) {
- applyTensorMetadata(argument, subgraphMetadata.input_tensor_metadata[i]);
- }
- this._inputs.push(new tflite.Parameter(tensorNames[input], true, [ argument ]));
- }
- const outputs = subgraph.outputs;
- for (let i = 0; i < outputs.length; i++) {
- const output = outputs[i];
- const argument = args[output];
- if (subgraphMetadata && i < subgraphMetadata.output_tensor_metadata.length) {
- applyTensorMetadata(argument, subgraphMetadata.output_tensor_metadata[i]);
- }
- this._outputs.push(new tflite.Parameter(tensorNames[output], true, [ argument ]));
- }
- }
- get name() {
- return this._name;
- }
- get groups() {
- return false;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- get nodes() {
- return this._nodes;
- }
- };
- tflite.Node = class {
- constructor(metadata, node, type, location, args) {
- this._metadata = metadata;
- this._location = location;
- this._type = type;
- this._inputs = [];
- this._outputs = [];
- this._attributes = [];
- if (node) {
- let inputs = [];
- let outputs = [];
- inputs = Array.from(node.inputs || new Int32Array(0));
- outputs = Array.from(node.outputs || new Int32Array(0));
- const schema = this._metadata.type(this.type);
- let inputIndex = 0;
- while (inputIndex < inputs.length) {
- let count = 1;
- let inputName = null;
- let inputVisible = true;
- const inputArguments = [];
- if (schema && schema.inputs && inputIndex < schema.inputs.length) {
- const input = schema.inputs[inputIndex];
- inputName = input.name;
- if (input.option == 'variadic') {
- count = inputs.length - inputIndex;
- }
- if (Object.prototype.hasOwnProperty.call(input, 'visible') && !input.visible) {
- inputVisible = false;
- }
- }
- const inputArray = inputs.slice(inputIndex, inputIndex + count);
- for (let j = 0; j < inputArray.length; j++) {
- if (inputArray[j] != -1) {
- inputArguments.push(args[inputArray[j]]);
- }
- }
- inputIndex += count;
- inputName = inputName ? inputName : inputIndex.toString();
- this._inputs.push(new tflite.Parameter(inputName, inputVisible, inputArguments));
- }
- for (let k = 0; k < outputs.length; k++) {
- const outputIndex = outputs[k];
- const argument = args[outputIndex];
- let outputName = k.toString();
- if (schema && schema.outputs && k < schema.outputs.length) {
- const output = schema.outputs[k];
- if (output && (!output.option || output.opcodeIndex != 'variadic') && output.name) {
- outputName = output.name;
- }
- }
- this._outputs.push(new tflite.Parameter(outputName, true, [ argument ]));
- }
- if (type.custom && node.custom_options.length > 0) {
- const schema = metadata.attribute(this.type, 'custom');
- this._attributes.push(new tflite.Attribute(schema, 'custom', Array.from(node.custom_options)));
- }
- const options = node.builtin_options;
- if (options) {
- for (const name of Object.keys(options)) {
- const value = options[name];
- if (name === 'fused_activation_function' && value !== 0) {
- const activationFunctionMap = { 1: 'Relu', 2: 'ReluN1To1', 3: 'Relu6', 4: 'Tanh', 5: 'SignBit' };
- if (!activationFunctionMap[value]) {
- throw new tflite.Error("Unknown activation funtion index '" + JSON.stringify(value) + "'.");
- }
- const type = activationFunctionMap[value];
- this._chain = [ new tflite.Node(metadata, null, { name: type }, null, []) ];
- }
- const schema = metadata.attribute(this.type, name);
- this._attributes.push(new tflite.Attribute(schema, name, value));
- }
- }
- }
- }
- get type() {
- return this._type.name;
- }
- get name() {
- return '';
- }
- get location() {
- return this._location;
- }
- get domain() {
- return null;
- }
- get metadata() {
- if (this._type.custom) {
- return { name: this.type, category: 'custom' };
- }
- return this._metadata.type(this.type);
- }
- get group() {
- return null;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- get chain() {
- return this._chain;
- }
- get attributes() {
- return this._attributes;
- }
- };
- tflite.Attribute = class {
- constructor(schema, name, value) {
- this._type = null;
- this._name = name;
- this._value = value;
- if (this._name == 'fused_activation_function') {
- this._visible = false;
- }
- if (schema) {
- if (schema.type) {
- this._type = schema.type;
- }
- if (this._type) {
- switch (this._type) {
- case 'shape':
- this._value = new tflite.TensorShape(value);
- break;
- case 'TensorType':
- this._value = tflite.Utility.dataType(this._value);
- break;
- default:
- this._value = tflite.Utility.enum(this._type, this._value);
- break;
- }
- }
- if (Object.prototype.hasOwnProperty.call(schema, 'visible') && !schema.visible) {
- this._visible = false;
- }
- else if (Object.prototype.hasOwnProperty.call(schema, 'default')) {
- value = this._value;
- if (typeof value == 'function') {
- value = value();
- }
- if (value == schema.default) {
- this._visible = false;
- }
- }
- }
- }
- get name() {
- return this._name;
- }
- get type() {
- return this._type;
- }
- get value() {
- return this._value;
- }
- get visible() {
- return this._visible == false ? false : true;
- }
- };
- tflite.Parameter = class {
- constructor(name, visible, args) {
- this._name = name;
- this._visible = visible;
- this._arguments = args;
- }
- get name() {
- return this._name;
- }
- get visible() {
- return this._visible;
- }
- get arguments() {
- return this._arguments;
- }
- };
- tflite.Argument = class {
- constructor(index, tensor, initializer) {
- this._location = index.toString();
- this._type = new tflite.TensorType(tensor);
- this._initializer = initializer;
- this._name = tensor.name;
- const quantization = tensor.quantization;
- if (quantization) {
- let value = 'q';
- const scale = (quantization.scale.length == 1) ? quantization.scale[0] : 0;
- const zeroPoint = (quantization.zero_point.length == 1) ? quantization.zero_point[0] : 0;
- if (scale != 0 || zeroPoint != 0) {
- value = scale.toString() + ' * ' + (zeroPoint == 0 ? 'q' : ('(q - ' + zeroPoint.toString() + ')'));
- }
- if (quantization.min.length == 1) {
- value = quantization.min[0].toString() + ' \u2264 ' + value;
- }
- if (quantization.max.length == 1) {
- value = value + ' \u2264 ' + quantization.max[0].toString();
- }
- if (value != 'q') {
- this._quantization = value;
- }
- }
- }
- get name() {
- return this._name;
- }
- get location() {
- return this._location;
- }
- get type() {
- return this._type;
- }
- get quantization() {
- return this._quantization;
- }
- set description(value) {
- this._description = value;
- }
- get description() {
- return this._description;
- }
- get initializer() {
- return this._initializer;
- }
- };
- tflite.Tensor = class {
- constructor(index, tensor, buffer, is_variable) {
- this._location = index.toString();
- this._type = new tflite.TensorType(tensor);
- this._is_variable = is_variable;
- this._name = tensor.name;
- this._data = buffer.data.slice(0);
- }
- get kind() {
- return this._is_variable ? 'Variable' : '';
- }
- get name() {
- return this._name;
- }
- get location() {
- return this._location;
- }
- get type() {
- return this._type;
- }
- get state() {
- return this._context().state;
- }
- get value() {
- const context = this._context();
- if (context.state) {
- return null;
- }
- context.limit = Number.MAX_SAFE_INTEGER;
- return this._decode(context, 0);
- }
- toString() {
- const context = this._context();
- if (context.state) {
- return '';
- }
- context.limit = 10000;
- const value = this._decode(context, 0);
- return JSON.stringify(value, null, 4);
- }
- _context() {
- const context = {};
- context.state = null;
- context.index = 0;
- context.count = 0;
- if (this._data == null || this._data.length === 0) {
- context.state = 'Tensor data is empty.';
- return context;
- }
- context.dataType = this._type.dataType;
- context.shape = this._type.shape.dimensions;
- context.data = new DataView(this._data.buffer, this._data.byteOffset, this._data.byteLength);
- if (this._type.dataType == 'string') {
- let offset = 0;
- const count = context.data.getInt32(0, true);
- offset += 4;
- const offsetTable = [];
- for (let j = 0; j < count; j++) {
- offsetTable.push(context.data.getInt32(offset, true));
- offset += 4;
- }
- offsetTable.push(this._data.length);
- const stringTable = [];
- const utf8Decoder = new TextDecoder('utf-8');
- for (let k = 0; k < count; k++) {
- const textArray = this._data.subarray(offsetTable[k], offsetTable[k + 1]);
- stringTable.push(utf8Decoder.decode(textArray));
- }
- context.data = stringTable;
- }
- return context;
- }
- _decode(context, dimension) {
- const shape = (context.shape.length == 0) ? [ 1 ] : context.shape;
- const size = shape[dimension];
- const results = [];
- if (dimension == shape.length - 1) {
- for (let i = 0; i < size; i++) {
- if (context.count > context.limit) {
- results.push('...');
- return results;
- }
- switch (context.dataType) {
- case 'uint8':
- results.push(context.data.getUint8(context.index));
- context.index += 1;
- context.count++;
- break;
- case 'int8':
- results.push(context.data.getInt8(context.index));
- context.index += 1;
- context.count++;
- break;
- case 'int16':
- results.push(context.data.getInt16(context.index));
- context.index += 2;
- context.count++;
- break;
- case 'int32':
- results.push(context.data.getInt32(context.index, true));
- context.index += 4;
- context.count++;
- break;
- case 'int64':
- results.push(context.data.getInt64(context.index, true));
- context.index += 8;
- context.count++;
- break;
- case 'float16':
- results.push(context.data.getFloat16(context.index, true));
- context.index += 2;
- context.count++;
- break;
- case 'float32':
- results.push(context.data.getFloat32(context.index, true));
- context.index += 4;
- context.count++;
- break;
- case 'float64':
- results.push(context.data.getFloat64(context.index, true));
- context.index += 8;
- context.count++;
- break;
- case 'string':
- results.push(context.data[context.index++]);
- context.count++;
- break;
- default:
- break;
- }
- }
- }
- else {
- for (let j = 0; j < size; j++) {
- if (context.count > context.limit) {
- results.push('...');
- return results;
- }
- results.push(this._decode(context, dimension + 1));
- }
- }
- if (context.shape.length == 0) {
- return results[0];
- }
- return results;
- }
- };
- tflite.TensorType = class {
- constructor(tensor) {
- this._dataType = tflite.Utility.dataType(tensor.type);
- this._shape = new tflite.TensorShape(Array.from(tensor.shape || []));
- }
- get dataType() {
- return this._dataType;
- }
- get shape() {
- return this._shape;
- }
- set denotation(value) {
- this._denotation = value;
- }
- get denotation() {
- return this._denotation;
- }
- toString() {
- return this.dataType + this._shape.toString();
- }
- };
- tflite.TensorShape = class {
- constructor(dimensions) {
- this._dimensions = dimensions;
- }
- get dimensions() {
- return this._dimensions;
- }
- toString() {
- if (!this._dimensions || this._dimensions.length == 0) {
- return '';
- }
- return '[' + this._dimensions.map((dimension) => dimension.toString()).join(',') + ']';
- }
- };
- tflite.Metadata = class {
- static open(host) {
- if (tflite.Metadata._metadata) {
- return Promise.resolve(tflite.Metadata._metadata);
- }
- return host.request(null, 'tflite-metadata.json', 'utf-8').then((data) => {
- tflite.Metadata._metadata = new tflite.Metadata(data);
- return tflite.Metadata._metadata;
- }).catch(() => {
- tflite.Metadata._metadata = new tflite.Metadata(null);
- return tflite.Metadata._metadata;
- });
- }
- constructor(data) {
- this._map = new Map();
- if (data) {
- const items = JSON.parse(data);
- if (items) {
- for (const item of items) {
- item.schema.name = item.name;
- this._map.set(item.name, item.schema);
- }
- }
- }
- }
- type(name) {
- return this._map.has(name) ? this._map.get(name) : null;
- }
- attribute(type, name) {
- const schema = this.type(type);
- if (schema) {
- let attributeMap = schema.attributeMap;
- if (!attributeMap) {
- attributeMap = {};
- if (schema.attributes) {
- for (const attribute of schema.attributes) {
- attributeMap[attribute.name] = attribute;
- }
- }
- schema.attributeMap = attributeMap;
- }
- const attributeSchema = attributeMap[name];
- if (attributeSchema) {
- return attributeSchema;
- }
- }
- return null;
- }
- };
- tflite.Utility = class {
- static dataType(type) {
- if (!tflite.Utility._tensorTypeMap) {
- tflite.Utility._tensorTypeMap = new Map();
- for (const name of Object.keys(tflite.schema.TensorType)) {
- tflite.Utility._tensorTypeMap.set(tflite.schema.TensorType[name], name.toLowerCase());
- }
- tflite.Utility._tensorTypeMap.set(6, 'boolean');
- }
- return tflite.Utility._tensorTypeMap.has(type) ? tflite.Utility._tensorTypeMap.get(type) : '?';
- }
- static enum(name, value) {
- const type = name && tflite.schema ? tflite.schema[name] : undefined;
- if (type) {
- tflite.Utility._enumKeyMap = tflite.Utility._enumKeyMap || new Map();
- if (!tflite.Utility._enumKeyMap.has(name)) {
- const map = new Map();
- for (const key of Object.keys(type)) {
- map.set(type[key], key);
- }
- tflite.Utility._enumKeyMap.set(name, map);
- }
- const map = tflite.Utility._enumKeyMap.get(name);
- if (map.has(value)) {
- return map.get(value);
- }
- }
- return value;
- }
- static type(name) {
- const upperCase = new Set([ '2D', 'LSH', 'SVDF', 'RNN', 'L2', 'LSTM' ]);
- name === 'BATCH_MATMUL' ? 'BATCH_MAT_MUL' : name;
- return name.split('_').map((s) => (s.length < 1 || upperCase.has(s)) ? s : s[0] + s.substring(1).toLowerCase()).join('');
- }
- };
- tflite.Error = class extends Error {
- constructor(message) {
- super(message);
- this.name = 'Error loading TensorFlow Lite model.';
- }
- };
- if (typeof module !== 'undefined' && typeof module.exports === 'object') {
- module.exports.ModelFactory = tflite.ModelFactory;
- }
|