| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640 |
- /* jshint esversion: 6 */
- var onnx = onnx || {};
- var protobuf = protobuf || require('./protobuf');
- var flatbuffers = flatbuffers || require('./flatbuffers');
- onnx.ModelFactory = class {
- match(context) {
- return this._format(context).length > 0;
- }
- open(context) {
- const open = (model, format) => {
- return onnx.Metadata.open(context).then((metadata) => {
- return new onnx.Model(metadata, model, format);
- });
- };
- switch (this._format(context)) {
- case 'onnx.pbtxt.ModelProto':
- return context.require('./onnx-proto').then(() => {
- try {
- onnx.proto = protobuf.get('onnx').onnx;
- const stream = context.stream;
- const reader = protobuf.TextReader.open(stream);
- const model = onnx.proto.ModelProto.decodeText(reader);
- const format = 'ONNX' + (model.ir_version ? ' v' + model.ir_version.toString() : '');
- return open(model, format);
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new onnx.Error('File text format is not onnx.ModelProto (' + message.replace(/\.$/, '') + ').');
- }
- });
- case 'onnx.pb.TensorProto':
- return context.require('./onnx-proto').then(() => {
- // TensorProto
- // input_0.pb, output_0.pb
- try {
- onnx.proto = protobuf.get('onnx').onnx;
- const stream = context.stream;
- const reader = protobuf.BinaryReader.open(stream);
- const tensor = onnx.proto.TensorProto.decode(reader);
- tensor.name = tensor.name || context.identifier;
- const model = new onnx.proto.ModelProto();
- model.graph = new onnx.proto.GraphProto();
- model.graph.initializer = [ tensor ];
- model.graph.value_info = [ new onnx.proto.ValueInfoProto() ];
- model.graph.value_info[0].name = tensor.name;
- model.graph.node = [ new onnx.proto.NodeProto() ];
- model.graph.node[0].op_type = 'Constant';
- model.graph.node[0].attribute = [ new onnx.proto.AttributeProto() ];
- model.graph.node[0].attribute[0].name = 'value';
- model.graph.node[0].attribute[0].t = tensor;
- const format = 'ONNX Tensor';
- return open(model, format);
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new onnx.Error('File format is not onnx.TensorProto (' + message.replace(/\.$/, '') + ').');
- }
- });
- case 'onnx.pb.GraphProto':
- return context.require('./onnx-proto').then(() => {
- // GraphProto
- try {
- onnx.proto = protobuf.get('onnx').onnx;
- const stream = context.stream;
- const reader = protobuf.BinaryReader.open(stream);
- const model = new onnx.proto.ModelProto();
- model.graph = onnx.proto.GraphProto.decode(reader);
- const format = 'ONNX';
- return open(model, format);
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new onnx.Error('File format is not onnx.GraphProto (' + message.replace(/\.$/, '') + ').');
- }
- });
- case 'onnx.pb.ModelProto':
- return context.require('./onnx-proto').then(() => {
- // ModelProto
- try {
- onnx.proto = protobuf.get('onnx').onnx;
- const stream = context.stream;
- const reader = protobuf.BinaryReader.open(stream);
- const model = onnx.proto.ModelProto.decode(reader);
- const format = 'ONNX' + (model.ir_version ? ' v' + model.ir_version.toString() : '');
- return open(model, format);
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new onnx.Error('File format is not onnx.ModelProto (' + message.replace(/\.$/, '') + ').');
- }
- });
- case 'onnx.flatbuffers': {
- return context.require('./ort-schema').then((/* schema */) => {
- try {
- onnx.schema = flatbuffers.get('ort').onnxruntime.experimental.fbs;
- const stream = context.stream;
- const reader = flatbuffers.BinaryReader.open(stream);
- const session = onnx.schema.InferenceSession.create(reader);
- const model = session.model;
- const graph = model.graph;
- graph.node = graph.nodes;
- graph.doc_string = model.graph_doc_string;
- graph.value_info = graph.node_args;
- graph.input = graph.inputs.map((input) => {
- return { name: input };
- });
- graph.output = graph.outputs.map((output) => {
- return { name: output };
- });
- graph.initializer = graph.initializers.map((tensor) => {
- tensor.data_location = onnx.DataLocation.DEFAULT;
- return tensor;
- });
- graph.sparse_initializer = graph.sparse_initializers.map((tensor) => {
- tensor.values.data_location = onnx.DataLocation.DEFAULT;
- tensor.indices.data_location = onnx.DataLocation.DEFAULT;
- return tensor;
- });
- delete graph.nodes;
- delete graph.node_args;
- delete graph.inputs;
- delete graph.outputs;
- delete graph.initializers;
- delete graph.sparse_initializers;
- delete model.graph_doc_string;
- for (const node of graph.node) {
- node.input = node.inputs;
- node.output = node.outputs;
- node.attribute = node.attributes;
- delete node.inputs;
- delete node.outputs;
- delete node.attributes;
- }
- const format = 'ONNX Runtime' + (model.ir_version ? ' v' + model.ir_version.toString() : '');
- return open(model, format);
- }
- catch (error) {
- const message = error && error.message ? error.message : error.toString();
- throw new onnx.Error('File format is not ort.Model (' + message.replace(/\.$/, '') + ').');
- }
- });
- }
- default: {
- throw new onnx.Error("Unknown ONNX format '" + this._format(context) + "'.");
- }
- }
- }
- _format(context) {
- const identifier = context.identifier;
- const extension = identifier.split('.').pop().toLowerCase();
- if (identifier.endsWith('saved_model.pb') || identifier.endsWith('predict_net.pb') || identifier.endsWith('init_net.pb')) {
- return '';
- }
- if (identifier.endsWith('predict_net.pbtxt') || identifier.endsWith('predict_net.prototxt') ||
- identifier.endsWith('init_net.pbtxt') || identifier.endsWith('init_net.prototxt')) {
- return '';
- }
- let tags = context.tags('pb');
- if (tags.size > 0) {
- if (tags.size === 1 && tags.get(1) === 2) {
- const tags = context.tags('pb+');
- const match = (tags, schema) => {
- for (const pair of schema) {
- const key = pair[0];
- const inner = pair[1];
- if (!tags.has(key)) {
- continue;
- }
- else if (inner === false) {
- return false;
- }
- if (Array.isArray(inner)) {
- const value = tags.get(key);
- if (!(value instanceof Map) || !match(value, inner)) {
- return false;
- }
- }
- else if (inner !== tags.get(key)) {
- return false;
- }
- }
- return true;
- };
- // mediapipe.BoxDetectorIndex
- if (match(tags, [[1,[[1,[[1,[[1,5],[2,5],[3,5],[4,5],[6,0],[7,5],[8,5],[10,5],[11,0],[12,0]]],[2,5],[3,[]]]],[2,false],[3,false],[4,false],[5,false]]],[2,false],[3,false]] )) {
- return '';
- }
- // third_party.tensorflow.python.keras.protobuf.SavedMetadata
- if (match(tags, [[1,[[1,[[1,0],[2,0]]],[2,0],[3,2],[4,2],[5,2]]]])) {
- return '';
- }
- }
- if (Array.from(tags.keys()).every((tag) => tag <= 100) &&
- Array.from(tags.values()).every((type) => type < 5)) {
- // TensorProto
- if (tags.get(1) === 0 && tags.get(2) === 0 && tags.get(9) === 2) {
- const schema = [[1,0],[2,0],[4,2],[5,2],[7,2],[8,2],[9,2]];
- if (schema.every((pair) => !tags.has(pair[0]) || tags.get(pair[0]) === pair[1])) {
- return 'onnx.pb.TensorProto';
- }
- }
- // GraphProto
- if (tags.get(1) === 2) {
- const schema = [[1,2],[2,2],[3,2],[4,2],[5,2],[6,0],[7,0],[8,2],[9,2],[10,2],[11,2],[12,2],[13,2],[14,2]];
- if (schema.every((pair) => !tags.has(pair[0]) || tags.get(pair[0]) === pair[1])) {
- const decode = (buffer, value) => {
- const reader = protobuf.BinaryReader.open(buffer);
- const length = reader.length;
- while (reader.position < length) {
- const tag = reader.uint32();
- const number = tag >>> 3;
- const type = tag & 7;
- if (value === number) {
- return type === 2 ? reader.bytes() : null;
- }
- else {
- reader.skipType(type);
- }
- }
- return null;
- };
- const stream = context.stream;
- const buffer = stream.peek();
- const nodeBuffer = decode(buffer, 1);
- if (nodeBuffer) {
- const nameBuffer = decode(nodeBuffer, 4);
- if (nameBuffer && nameBuffer.every((c) => c > 0x20 && c < 0x7f)) {
- return 'onnx.pb.GraphProto';
- }
- }
- }
- }
- // ModelProto
- if (tags.get(7) === 2) {
- const schema = [[1,0],[2,2],[3,2],[4,2][5,0],[6,2],[7,2],[8,2],[14,2],[20,2]];
- if (schema.every((pair) => !tags.has(pair[0]) || tags.get(pair[0]) === pair[1])) {
- return 'onnx.pb.ModelProto';
- }
- }
- }
- }
- const stream = context.stream;
- if (stream.length > 5) {
- const buffer = stream.peek(Math.min(stream.length, 32));
- if (buffer[0] === 0x08 && buffer[1] < 0x0A && buffer[2] === 0x12) {
- const producers = [
- 'backend-test', 'BrainwaveCompiler',
- 'CNTK',
- 'keras2onnx', 'Kneron', 'kneron_formatter', 'kneron_kl530_test_case',
- 'darknet to ONNX example',
- 'htshinichi',
- 'MATLAB Deep Learning Toolbox Converter for ONNX Model Format', 'ML.NET', 'MVTec Software',
- 'onnx-caffe2', 'onnx-example', 'onnx.quantize', 'onnx.utils.extract_model', 'OnnxMLTools', 'onnx_test', 'onnxruntime-tools', 'onnxruntime.transformers',
- 'PaddlePaddle', 'pytorch',
- 'skl2onnx',
- 'Tencent YouTu', 'tf2onnx', 'tflite2onnx',
- 'WinMLTools'
- ];
- if (producers.some((producer) => Array.from(producer).every((ch, index) => index + 4 < buffer.length && ch.charCodeAt(0) === buffer[index + 4]))) {
- return 'onnx.pb.ModelProto';
- }
- }
- }
- tags = context.tags('pbtxt');
- if (tags.has('ir_version')) {
- return 'onnx.pbtxt.ModelProto';
- }
- if (tags.has('graph') && extension !== 'model') {
- return 'onnx.pbtxt.ModelProto';
- }
- if (context.tags('flatbuffers').get('file_identifier') === 'ORTM') {
- return 'onnx.flatbuffers';
- }
- return '';
- }
- };
- onnx.Model = class {
- constructor(metadata, model, format) {
- this._graphs = [];
- this._format = format;
- this._producerName = model.producer_name;
- this._producerVersion = model.producer_version;
- this._domain = model.domain;
- this._modelVersion = model.model_version;
- this._description = model.doc_string;
- this._metadata = [];
- this._imports = null;
- const imports = new Map();
- if (model.opset_import && model.opset_import.length > 0) {
- for (const opset_import of model.opset_import) {
- const domain = opset_import.domain || 'ai.onnx';
- const version = opset_import.version ? opset_import.version.toNumber() : 0;
- if (!imports.has(domain) || imports.get(domain) > version) {
- imports.set(domain, version);
- }
- }
- this._imports = Array.from(imports).map((pair) => pair[0] + ' v' + pair[1].toString());
- }
- if (imports.size == 0) {
- imports.set('ai.onnx', 1);
- imports.set('ai.onnx.ml', 1);
- }
- let imageFormat = '';
- if (model.metadata_props) {
- const imageMetadata = {};
- for (const metadata_prop of model.metadata_props) {
- switch (metadata_prop.key) {
- case 'author':
- this._author = metadata_prop.value;
- break;
- case 'company':
- this._company = metadata_prop.value;
- break;
- case 'converted_from':
- this._converted_from = metadata_prop.value;
- break;
- case 'license':
- this._license = metadata_prop.value;
- break;
- case 'license_url':
- this._licenseUrl = metadata_prop.value;
- break;
- case 'Image.BitmapPixelFormat':
- case 'Image.ColorSpaceGamma':
- case 'Image.NominalPixelRange':
- imageMetadata[metadata_prop.key] = metadata_prop.value;
- break;
- default:
- this._metadata.push({ name: metadata_prop.key, value: metadata_prop.value});
- break;
- }
- }
- imageFormat = [ imageMetadata['Image.BitmapPixelFormat'], imageMetadata['Image.ColorSpaceGamma'], imageMetadata['Image.NominalPixelRange'] ].filter((item) => item);
- }
- this._graphs = [];
- if (model && model.graph) {
- let key = 1000;
- const context = {};
- context.metadata = new onnx.GraphMetadata(metadata, imports);
- context.imageFormat = imageFormat;
- for (const func of model.functions || []) {
- context.metadata.add(new onnx.Function(context, func));
- }
- context.graphs = new Map();
- context.graph = function(graph) {
- graph.key = graph.key || (key++).toString();
- if (!this.graphs.has(graph.key)) {
- this.graphs.set(graph.key, new onnx.Graph(this, graph));
- }
- return this.graphs.get(graph.key);
- };
- const graphs = [ model.graph ];
- while (graphs.length > 0) {
- const graph = graphs.shift();
- this._graphs.push(context.graph(graph));
- for (const node of graph.node || []) {
- for (const attribute of node.attribute || []) {
- if (attribute.g) {
- graphs.push(attribute.g);
- }
- else if (attribute.graphs && attribute.graphs.length > 0) {
- graphs.push(...attribute.graphs);
- }
- }
- }
- }
- }
- }
- get format() {
- return this._format;
- }
- get imports() {
- return this._imports;
- }
- get producer() {
- const producer = [];
- if (this._producerName) {
- producer.push(this._producerName);
- }
- if (this._producerVersion && this._producerVersion.length > 0) {
- producer.push(this._producerVersion);
- }
- if (producer.length > 0) {
- return producer.join(' ');
- }
- return null;
- }
- get domain() {
- return this._domain || null;
- }
- get description() {
- return this._description || null;
- }
- get author() {
- return this._author || null;
- }
- get company() {
- return this._company || null;
- }
- get source() {
- return this._converted_from || null;
- }
- get license() {
- const license = [];
- if (this._license && this._license.length > 0) {
- license.push(this._license);
- }
- if (this._licenseUrl && this._licenseUrl.length > 0) {
- license.push('<a href=\'' + this._licenseUrl + '\'>' + this._licenseUrl + '</a>');
- }
- if (license.length > 0) {
- return license;
- }
- return null;
- }
- get metadata() {
- return this._metadata;
- }
- get graphs() {
- return this._graphs;
- }
- };
- onnx.Graph = class {
- constructor(context, graph) {
- this._node = '';
- this._description = '';
- this._nodes = [];
- this._inputs = [];
- this._outputs = [];
- this._name = graph.name || null;
- this._description = graph.doc_string || '';
- const tensors = onnx.Utility.createTensors(graph.node);
- for (const initializer of graph.initializer) {
- const tensor = tensors.map(initializer.name);
- tensor.initializer = new onnx.Tensor(initializer, 'Initializer');
- }
- for (const sparse_initializer of graph.sparse_initializer) {
- const tensor = tensors.map(sparse_initializer.values.name);
- tensor.initializer = new onnx.Tensor(sparse_initializer, 'Sparse Initializer');
- }
- for (const tensor_annotation of graph.quantization_annotation || []) {
- const tensor = tensors.map(tensor_annotation.tensor_name);
- const annotation = {};
- for (const pair of tensor_annotation.quant_parameter_tensor_names) {
- annotation[pair.key] = pair.value;
- }
- tensor.annotation = annotation;
- }
- for (const valueInfo of graph.value_info) {
- const tensor = tensors.map(valueInfo.name);
- tensor.type = onnx.Utility.formatType(valueInfo.type, context.imageFormat);
- tensor.description = valueInfo.doc_string;
- }
- graph.input = graph.input.map((valueInfo) => {
- const tensor = tensors.map(valueInfo.name);
- tensor.type = onnx.Utility.formatType(valueInfo.type, context.imageFormat);
- tensor.description = valueInfo.doc_string;
- return tensor;
- });
- graph.output = graph.output.map((valueInfo) => {
- const tensor = tensors.map(valueInfo.name);
- tensor.type = onnx.Utility.formatType(valueInfo.type, context.imageFormat);
- tensor.description = valueInfo.doc_string;
- return tensor;
- });
- new onnx.Inference(graph.node, graph.output);
- const args = new Map();
- args.map = function(name) {
- if (!this.has(name)) {
- const tensor = tensors.map(name);
- const type = tensor.initializer ? tensor.initializer.type : tensor.type || null;
- this.set(name, new onnx.Argument(name, type, tensor.initializer, tensor.annotation, tensor.description));
- }
- return this.get(name);
- };
- this._nodes = onnx.Utility.createNodes(context, graph.node, graph.input, graph.output, tensors, args);
- for (const input of graph.input) {
- const argument = args.map(input.name);
- if (!argument.initializer) {
- this._inputs.push(new onnx.Parameter(input.name, [ argument ]));
- }
- }
- for (const output of graph.output) {
- const argument = args.map(output.name);
- if (!argument.initializer) {
- this._outputs.push(new onnx.Parameter(output.name, [ argument ]));
- }
- }
- }
- get name() {
- return this._name;
- }
- get description() {
- return this._description;
- }
- get groups() {
- return false;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- get nodes() {
- return this._nodes;
- }
- toString() {
- return 'graph(' + this.name + ')';
- }
- };
- onnx.Parameter = class {
- constructor(name, args) {
- this._name = name;
- this._arguments = args;
- }
- get name() {
- return this._name;
- }
- get visible() {
- return true;
- }
- get arguments() {
- return this._arguments;
- }
- };
- onnx.Argument = class {
- constructor(name, type, initializer, annotation, description) {
- if (typeof name !== 'string') {
- throw new onnx.Error("Invalid argument identifier '" + JSON.stringify(name) + "'.");
- }
- this._name = name;
- this._type = type || null;
- this._initializer = initializer || null;
- this._annotation = annotation;
- this._description = description || '';
- }
- get name() {
- return this._name;
- }
- get type() {
- return this._type;
- }
- get description() {
- return this._description;
- }
- get quantization() {
- if (this._annotation) {
- return Object.keys(this._annotation).map((key) => key + ': ' + this._annotation[key]).join(', ');
- }
- return null;
- }
- get initializer() {
- return this._initializer;
- }
- };
- onnx.Node = class {
- constructor(context, op_type, domain, name, description, attributes, inputs, outputs) {
- this._type = context.metadata.type(op_type, domain) || { name: op_type, module: domain };
- if (this.type.module !== domain && !(this._type instanceof onnx.Function)) {
- this._type = Object.assign({}, this.type);
- this._type.name = op_type;
- this._type.module = domain;
- }
- this._name = name || '';
- this._description = description || '';
- this._inputs = inputs;
- this._outputs = outputs;
- this._attributes = (attributes || []).map((attribute) => new onnx.Attribute(context, op_type, domain, attribute));
- }
- get type() {
- return this._type;
- }
- get name() {
- return this._name;
- }
- get description() {
- return this._description;
- }
- get group() {
- return null;
- }
- get attributes() {
- return this._attributes;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- };
- onnx.Attribute = class {
- constructor(context, op_type, domain, attribute) {
- this._name = attribute.name;
- this._description = attribute.doc_string || '';
- this._type = null;
- this._value = null;
- switch (attribute.type) {
- case onnx.AttributeType.FLOAT:
- this._value = attribute.f;
- this._type = 'float32';
- break;
- case onnx.AttributeType.INT:
- this._value = attribute.i;
- this._type = 'int64';
- break;
- case onnx.AttributeType.STRING:
- switch (op_type) {
- case 'Int8GivenTensorFill':
- this._value = Array.from(attribute.s);
- break;
- default:
- this._value = onnx.Utility.decodeText(attribute.s);
- break;
- }
- this._type = 'string';
- break;
- case onnx.AttributeType.TENSOR:
- this._value = new onnx.Tensor(attribute.t);
- this._type = 'tensor';
- break;
- case onnx.AttributeType.GRAPH:
- this._value = context.graph(attribute.g);
- this._type = 'graph';
- break;
- case onnx.AttributeType.FLOATS:
- this._value = attribute.floats;
- this._type = 'float32[]';
- break;
- case onnx.AttributeType.INTS:
- this._value = attribute.ints;
- this._type = 'int64[]';
- break;
- case onnx.AttributeType.STRINGS:
- this._value = attribute.strings.map((s) => onnx.Utility.decodeText(s));
- this._type = 'string[]';
- break;
- case onnx.AttributeType.TENSORS:
- this._value = attribute.tensors.map((tensor) => new onnx.Tensor(tensor));
- this._type = 'tensor[]';
- break;
- case onnx.AttributeType.GRAPHS:
- this._value = attribute.graphs.map((graph) => context.graph(graph));
- this._type = 'graph[]';
- break;
- case onnx.AttributeType.SPARSE_TENSOR:
- this._value = new onnx.Tensor(attribute.sparse_tensor);
- this._type = 'tensor';
- break;
- case onnx.AttributeType.SPARSE_TENSORS:
- this._value = attribute.sparse_tensors.map((tensor) => new onnx.Tensor(tensor));
- this._type = 'tensor[]';
- break;
- case onnx.AttributeType.TYPE_PROTO:
- this._value = onnx.Utility.formatType(attribute.tp, context.imageFormat);
- this._type = 'type';
- break;
- case onnx.AttributeType.TYPE_PROTOS:
- this._value = attribute.type_protos.map((type) => onnx.Utility.formatType(type, context.imageFormat));
- this._type = 'type[]';
- break;
- default:
- throw new onnx.Error("Unknown attribute type '" + attribute.type + "'.");
- }
- const metadata = context.metadata.attribute(op_type, domain, attribute.name);
- if (metadata && Object.prototype.hasOwnProperty.call(metadata, 'default') && this._value == metadata.default) {
- this._visible = false;
- }
- }
- get name() {
- return this._name;
- }
- get type() {
- return this._type;
- }
- get value() {
- return this._value;
- }
- get description() {
- return this._description;
- }
- get visible() {
- return this._visible == false ? false : true;
- }
- };
- onnx.Tensor = class {
- constructor(tensor, kind) {
- this._kind = kind || null;
- const data = (tensor) => {
- let data = undefined;
- if (tensor.data_location === onnx.DataLocation.DEFAULT) {
- switch (tensor.data_type) {
- case onnx.DataType.FLOAT16:
- if (tensor.int32_data && tensor.int32_data.length > 0) {
- const buffer = new Uint8Array(tensor.int32_data.length << 1);
- const view = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength);
- const array = tensor.int32_data;
- for (let i = 0; i < array.length; i++) {
- view.setUint16(i << 1, array[i], true);
- }
- data = {
- type: tensor.data_type,
- buffer: buffer
- };
- }
- break;
- case onnx.DataType.FLOAT:
- data = new Float32Array(tensor.float_data);
- break;
- case onnx.DataType.DOUBLE:
- data = new Float64Array(tensor.double_data);
- break;
- case onnx.DataType.BOOL:
- data = new Array(tensor.int32_data.size);
- for (let i = 0; i < data.length; i++) {
- data[i] = data[i] === 0 ? false : true;
- }
- break;
- case onnx.DataType.INT8:
- data = new Int8Array(tensor.int32_data);
- break;
- case onnx.DataType.UINT8:
- data = new Uint8Array(tensor.int32_data);
- break;
- case onnx.DataType.INT16:
- data = new Int32Array(tensor.int32_data);
- break;
- case onnx.DataType.UINT16:
- data = new Int32Array(tensor.int32_data);
- break;
- case onnx.DataType.INT32:
- data = new Int32Array(tensor.int32_data);
- break;
- case onnx.DataType.UINT32:
- case onnx.DataType.UINT64:
- data = tensor.uint64_data;
- break;
- case onnx.DataType.INT64:
- data = tensor.int64_data;
- break;
- }
- if (data && (Array.isArray(data) || ArrayBuffer.isView(data)) && data.length === 0) {
- data = undefined;
- }
- if (!data && tensor.raw_data && tensor.raw_data.length > 0) {
- data = {
- type: tensor.data_type,
- buffer: tensor.raw_data
- };
- }
- }
- return data;
- };
- const location = (tensor) => {
- return onnx.Utility.formatLocation(tensor.data_location);
- };
- if ((onnx.proto && tensor instanceof onnx.proto.SparseTensorProto) ||
- (onnx.schema && tensor instanceof onnx.schema.SparseTensor)) {
- this._name = tensor.values.name || '';
- this._type = new onnx.TensorType(tensor.values.data_type, new onnx.TensorShape(tensor.dims.map((dim) => dim)), null);
- this._location = Array.from(new Set([ location(tensor.values), location(tensor.indices) ])).join(':');
- this._values = data(tensor.values);
- this._indices = data(tensor.indices);
- }
- else {
- this._name = tensor.name || '';
- this._type = new onnx.TensorType(tensor.data_type, new onnx.TensorShape(tensor.dims.map((dim) => dim)), null);
- this._location = location(tensor);
- this._values = data(tensor);
- }
- }
- get name() {
- return this._name;
- }
- get kind() {
- return this._kind;
- }
- get type() {
- return this._type;
- }
- get state() {
- return this._context().state || null;
- }
- 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 onnx.Tensor._stringify(value, '', ' ');
- }
- _context() {
- const context = {};
- context.state = null;
- if (this._sparse) {
- context.state = 'Sparse data not implemented.';
- return context;
- }
- if (this._location !== 'default') {
- context.state = "Data '" + this._location + "' location not implemented.";
- return context;
- }
- const decode = (data) => {
- if (!data || Array.isArray(data) || ArrayBuffer.isView(data)) {
- return data;
- }
- const buffer = data.buffer;
- const view = new DataView(buffer.buffer, buffer.byteOffset, buffer.byteLength);
- const type = data.type;
- data = undefined;
- switch (type) {
- case onnx.DataType.BOOL:
- data = new Array(buffer.length);
- for (let i = 0; i < buffer.length; i++) {
- data[i] = view.getUint8(i) === 0 ? false : true;
- }
- break;
- case onnx.DataType.FLOAT16:
- data = new Float32Array(buffer.length >> 1);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getFloat16(i << 1, true);
- }
- break;
- case onnx.DataType.FLOAT:
- data = new Float32Array(buffer.length >> 2);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getFloat32(i << 2, true);
- }
- break;
- case onnx.DataType.DOUBLE:
- data = new Float64Array(buffer.length >> 3);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getFloat64(i << 3, true);
- }
- break;
- case onnx.DataType.INT8:
- data = new Int8Array(buffer.length);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getInt8(i, true);
- }
- break;
- case onnx.DataType.UINT8:
- data = new Uint8Array(buffer.length);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getUint8(i, true);
- }
- break;
- case onnx.DataType.INT16:
- data = new Int16Array(buffer.length >> 1);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getInt16(i << 1, true);
- }
- break;
- case onnx.DataType.UINT16:
- data = new Uint16Array(buffer.length >> 1);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getUint16(i << 1, true);
- }
- break;
- case onnx.DataType.INT32:
- data = new Int32Array(buffer.length >> 2);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getInt32(i << 2, true);
- }
- break;
- case onnx.DataType.UINT32:
- data = new Uint32Array(buffer.length >> 2);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getUint32(i << 2, true);
- }
- break;
- case onnx.DataType.INT64:
- data = new Array(buffer.length >> 3);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getInt64(i << 3, true);
- }
- break;
- case onnx.DataType.UINT64:
- data = new Array(buffer.length >> 3);
- for (let i = 0; i < data.length; i++) {
- data[i] = view.getUint64(i << 3, true);
- }
- break;
- }
- return data;
- };
- this._values = decode(this._values);
- if (!this._values) {
- context.state = 'Tensor data is empty.';
- return context;
- }
- this._indices = decode(this._indices);
- context.values = this._values;
- context.indices = this._indices;
- context.index = 0;
- context.dataType = this.type.dataType;
- context.shape = this.type.shape.dimensions;
- context.data = function() {
- if (!this._data) {
- if (this.indices && this.values && this.indices.length === this.values.length) {
- const size = context.shape.reduce((a, b) => a * b, 1);
- const indices = this.indices;
- const values = this.values;
- const array = new values.constructor(size);
- switch (this.dataType) {
- case 'boolean':
- array.fill(false);
- break;
- case 'int64':
- case 'uint64':
- break;
- }
- if (indices.length > 0) {
- if (Object.prototype.hasOwnProperty.call(indices[0], 'low')) {
- for (let i = 0; i < indices.length; i++) {
- const index = indices[i];
- array[index.high === 0 ? index.low : index.toNumber()] = values[i];
- }
- }
- else {
- for (let i = 0; i < indices.length; i++) {
- array[indices[i]] = values[i];
- }
- }
- }
- this._data = array;
- }
- else {
- this._data = this.values;
- }
- }
- return this._data;
- };
- return context;
- }
- _decode(context, dimension) {
- const shape = context.shape.length !== 0 ? context.shape : [ 1 ];
- const results = [];
- const size = shape[dimension];
- const data = context.data();
- if (dimension == shape.length - 1) {
- for (let i = 0; i < size; i++) {
- if (context.index > context.limit) {
- results.push('...');
- return results;
- }
- results.push(data[context.index++]);
- }
- }
- else {
- for (let j = 0; j < size; j++) {
- if (context.index > context.limit) {
- results.push('...');
- return results;
- }
- results.push(this._decode(context, dimension + 1));
- }
- }
- if (context.shape.length == 0) {
- return results[0];
- }
- return results;
- }
- static _stringify(value, indentation, indent) {
- if (Array.isArray(value)) {
- const result = [];
- result.push(indentation + '[');
- const items = value.map((item) => onnx.Tensor._stringify(item, indentation + indent, indent));
- if (items.length > 0) {
- result.push(items.join(',\n'));
- }
- result.push(indentation + ']');
- return result.join('\n');
- }
- if (typeof value == 'string') {
- return indentation + value;
- }
- if (value == Infinity) {
- return indentation + 'Infinity';
- }
- if (value == -Infinity) {
- return indentation + '-Infinity';
- }
- if (isNaN(value)) {
- return indentation + 'NaN';
- }
- return indentation + value.toString();
- }
- };
- onnx.TensorType = class {
- constructor(dataType, shape, denotation) {
- this._dataType = onnx.Utility.formatElementType(dataType);
- this._shape = shape;
- this._denotation = denotation || null;
- }
- get dataType() {
- return this._dataType;
- }
- get shape() {
- return this._shape;
- }
- get denotation() {
- return this._denotation;
- }
- toString() {
- return this.dataType + this._shape.toString();
- }
- };
- onnx.TensorShape = class {
- constructor(dimensions) {
- this._dimensions = dimensions;
- }
- get dimensions() {
- return this._dimensions;
- }
- toString() {
- if (!this._dimensions || this._dimensions.length == 0) {
- return '';
- }
- return '[' + this._dimensions.join(',') + ']';
- }
- };
- onnx.SequenceType = class {
- constructor(elementType, denotation) {
- this._elementType = elementType;
- this._denotation = denotation;
- }
- get elementType() {
- return this._elementType;
- }
- get dennotation() {
- return this._dennotation;
- }
- toString() {
- return 'sequence<' + this._elementType.toString() + '>';
- }
- };
- onnx.MapType = class {
- constructor(keyType, valueType, denotation) {
- this._keyType = onnx.Utility.formatElementType(keyType);
- this._valueType = valueType;
- this._denotation = denotation;
- }
- get keyType() {
- return this._keyType;
- }
- get valueType() {
- return this._valueType;
- }
- get denotation() {
- return this._denotation;
- }
- toString() {
- return 'map<' + this._keyType + ',' + this._valueType.toString() + '>';
- }
- };
- onnx.OpaqueType = class {
- constructor(domain, name) {
- this._domain = domain;
- this._name = name;
- }
- toString() {
- const name = (this._domain ? (this._domain + '.') : '') + this._name;
- return 'opaque<' + name + '>';
- }
- };
- onnx.Function = class {
- constructor(context, func) {
- this._name = func.name;
- this._domain = func.domain;
- this._description = func.doc_string;
- this._inputs = [];
- this._outputs = [];
- this._attributes = func.attribute.map((attribtue) => { return { name: attribtue }; });
- const tensors = onnx.Utility.createTensors(func.node);
- func.input = func.input.map((input) => tensors.map(input));
- func.output = func.output.map((output) => tensors.map(output));
- const args = new Map();
- args.map = function(name) {
- if (!this.has(name)) {
- const tensor = tensors.map(name);
- const type = tensor.initializer ? tensor.initializer.type : tensor.type || null;
- this.set(name, new onnx.Argument(name, type, tensor.initializer, tensor.annotation, tensor.description));
- }
- return this.get(name);
- };
- this._nodes = onnx.Utility.createNodes(context, func.node, func.input, func.output, tensors, args);
- for (const input of func.input) {
- const argument = args.map(input.name);
- if (!argument.initializer) {
- this._inputs.push(new onnx.Parameter(input.name, [ argument ]));
- }
- }
- for (const output of func.output) {
- const argument = args.map(output.name);
- if (!argument.initializer) {
- this._outputs.push(new onnx.Parameter(output.name, [ argument ]));
- }
- }
- }
- get name() {
- return this._name;
- }
- get module() {
- return this._domain;
- }
- get description() {
- return this._description;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return this._outputs;
- }
- get attributes() {
- return this._attributes;
- }
- get nodes() {
- return this._nodes;
- }
- };
- onnx.GraphMetadata = class {
- constructor(metadata, imports) {
- this._metadata = metadata;
- this._imports = imports;
- this._cache = new Map();
- this._attributeCache = new Map();
- this._functions = new Map();
- }
- add(func) {
- if (!this._functions.has(func.module)) {
- this._functions.set(func.module, new Map());
- }
- const map = this._functions.get(func.module);
- if (map.has(func.name)) {
- throw new onnx.Error("Duplicate function identifier '" + func.module + '.' + func.name + "'.");
- }
- map.set(func.name, func);
- }
- type(name, domain) {
- domain = domain || 'ai.onnx';
- const key = domain + ':' + name;
- if (!this._cache.has(key)) {
- let value = this._metadata.type(name, domain, this._imports);
- if (!value) {
- if (this._functions.has(domain)) {
- const map = this._functions.get(domain);
- if (map.has(name)) {
- value = map.get(name);
- }
- }
- }
- this._cache.set(key, value);
- }
- return this._cache.get(key);
- }
- attribute(type, domain, name) {
- const key = domain + ':' + type + ':' + name;
- if (!this._attributeCache.has(key)) {
- const schema = this.type(type, domain);
- if (schema && schema.attributes && schema.attributes.length > 0) {
- for (const attribute of schema.attributes) {
- this._attributeCache.set(type + ':' + attribute.name, attribute);
- }
- }
- if (!this._attributeCache.has(key)) {
- this._attributeCache.set(key, null);
- }
- }
- return this._attributeCache.get(key);
- }
- };
- onnx.Metadata = class {
- static open(context) {
- if (onnx.Metadata._metadata) {
- return Promise.resolve(onnx.Metadata._metadata);
- }
- return context.request('onnx-metadata.json', 'utf-8', null).then((data) => {
- onnx.Metadata._metadata = new onnx.Metadata(data);
- return onnx.Metadata._metadata;
- }).catch(() => {
- onnx.Metadata._metadata = new onnx.Metadata(null);
- return onnx.Metadata._metadata;
- });
- }
- constructor(data) {
- this._map = new Map();
- if (data) {
- const metadata = JSON.parse(data);
- for (const item of metadata) {
- if (!this._map.has(item.module)) {
- this._map.set(item.module, new Map());
- }
- const map = this._map.get(item.module);
- if (!map.has(item.name)) {
- map.set(item.name, []);
- }
- map.get(item.name).push(item);
- }
- }
- }
- type(name, domain, imports) {
- domain = domain || 'ai.onnx';
- let current = null;
- if (this._map.has(domain)) {
- const map = this._map.get(domain);
- if (map.has(name)) {
- for (const metadata of map.get(name)) {
- const matchVersion = current ? current.version : -1;
- const importVersion = imports.get(metadata.module) || 0;
- if (importVersion >= metadata.version && matchVersion < metadata.version) {
- current = metadata;
- }
- }
- }
- }
- return current;
- }
- };
- onnx.Inference = class {
- constructor(nodes, outputs) {
- this._outputs = new Map();
- for (const node of nodes) {
- for (const output of node.output) {
- this._outputs.set(output.name, node);
- }
- }
- for (const output of outputs) {
- this._infer(output.name);
- }
- }
- _infer(output) {
- if (this._outputs.has(output)) {
- let hasInputShapes = true;
- const node = this._outputs.get(output);
- for (const input of node.input) {
- if (!input.type) {
- this._infer(input);
- if (!input.type) {
- hasInputShapes = false;
- break;
- }
- }
- }
- if (hasInputShapes) {
- // continue
- }
- }
- }
- };
- onnx.DataLocation = {
- DEFAULT: 0,
- EXTERNAL: 1
- };
- onnx.DataType = {
- UNDEFINED: 0,
- FLOAT: 1,
- UINT8: 2,
- INT8: 3,
- UINT16: 4,
- INT16: 5,
- INT32: 6,
- INT64: 7,
- STRING: 8,
- BOOL: 9,
- FLOAT16: 10,
- DOUBLE: 11,
- UINT32: 12,
- UINT64: 13,
- COMPLEX64: 14,
- COMPLEX128: 15,
- BFLOAT16: 16
- };
- onnx.AttributeType = {
- UNDEFINED: 0,
- FLOAT: 1,
- INT: 2,
- STRING: 3,
- TENSOR: 4,
- GRAPH: 5,
- FLOATS: 6,
- INTS: 7,
- STRINGS: 8,
- TENSORS: 9,
- GRAPHS: 10,
- SPARSE_TENSOR: 11,
- SPARSE_TENSORS: 12,
- TYPE_PROTO: 13,
- TYPE_PROTOS: 14
- };
- onnx.Utility = class {
- static decodeText(value) {
- if (typeof value === 'string') {
- return value;
- }
- onnx.Utility._utf8Decoder = onnx.Utility._utf8Decoder || new TextDecoder('utf-8');
- return onnx.Utility._utf8Decoder.decode(value);
- }
- static formatElementType(elementType) {
- if (!onnx.Utility._elementTypeMap) {
- const map = {};
- map[onnx.DataType.UNDEFINED] = 'UNDEFINED';
- map[onnx.DataType.FLOAT] = 'float32';
- map[onnx.DataType.UINT8] = 'uint8';
- map[onnx.DataType.INT8] = 'int8';
- map[onnx.DataType.UINT16] = 'uint16';
- map[onnx.DataType.INT16] = 'int16';
- map[onnx.DataType.INT32] = 'int32';
- map[onnx.DataType.INT64] = 'int64';
- map[onnx.DataType.STRING] = 'string';
- map[onnx.DataType.BOOL] = 'boolean';
- map[onnx.DataType.FLOAT16] = 'float16';
- map[onnx.DataType.DOUBLE] = 'float64';
- map[onnx.DataType.UINT32] = 'uint32';
- map[onnx.DataType.UINT64] = 'uint64';
- map[onnx.DataType.COMPLEX64] = 'complex64';
- map[onnx.DataType.COMPLEX128] = 'complex128';
- map[onnx.DataType.BFLOAT16] = 'bfloat16';
- onnx.Utility._elementTypeMap = map;
- }
- const name = onnx.Utility._elementTypeMap[elementType];
- if (name) {
- return name;
- }
- return onnx.Utility._elementTypeMap[onnx.DataType.UNDEFINED];
- }
- static formatType(type, imageFormat) {
- if (!type) {
- return null;
- }
- let denotation = '';
- switch (type.denotation) {
- case 'TENSOR':
- denotation = 'Tensor';
- break;
- case 'IMAGE':
- denotation = 'Image' + (imageFormat ? '(' + imageFormat.join(',') + ')' : '');
- break;
- case 'AUDIO':
- denotation = 'Audio';
- break;
- case 'TEXT':
- denotation = 'Text';
- break;
- }
- switch (type.value) {
- case 'tensor_type': {
- {
- const tensor_type = type.tensor_type;
- let shape = [];
- if (tensor_type.shape && tensor_type.shape.dim) {
- shape = tensor_type.shape.dim.map((dim) => dim.dim_param ? dim.dim_param : dim.dim_value);
- }
- return new onnx.TensorType(tensor_type.elem_type, new onnx.TensorShape(shape), denotation);
- }
- }
- case 'sparse_tensor_type': {
- const tensor_type = type.sparse_tensor_type;
- let shape = [];
- if (tensor_type.shape && tensor_type.shape.dim) {
- shape = tensor_type.shape.dim.map((dim) => dim.dim_param ? dim.dim_param : dim.dim_value);
- }
- return new onnx.TensorType(tensor_type.elem_type, new onnx.TensorShape(shape), denotation);
- }
- case 'map_type': {
- return new onnx.MapType(type.map_type.key_type, onnx.Utility.formatType(type.map_type.value_type, imageFormat), denotation);
- }
- case 'sequence_type': {
- return new onnx.SequenceType(onnx.Utility.formatType(type.sequence_type.elem_type, imageFormat), denotation);
- }
- case 'opaque_type': {
- return new onnx.OpaqueType(type.opaque_type.domain, type.opaque_type.name);
- }
- }
- return null;
- }
- static formatLocation(location) {
- if (!onnx.Utility._dataLocations) {
- onnx.Utility._dataLocations = new Map(Object.keys(onnx.DataLocation).map((key) => [ onnx.DataLocation[key], key.toLowerCase() ]));
- }
- return onnx.Utility._dataLocations.get(location);
- }
- static attributeType(attribute) {
- if (attribute.type) {
- return attribute.type;
- }
- if (attribute.ints && attribute.ints.length > 0) {
- return onnx.AttributeType.INTS;
- }
- else if (attribute.floats && attribute.floats.length > 0) {
- return onnx.AttributeType.FLOATS;
- }
- else if (attribute.strings && attribute.strings.length > 0) {
- return onnx.AttributeType.STRINGS;
- }
- else if (attribute.graphs && attribute.graphs.length > 0) {
- return onnx.AttributeType.GRAPHS;
- }
- else if (attribute.s && attribute.s.length > 0) {
- return onnx.AttributeType.STRING;
- }
- else if (Object.prototype.hasOwnProperty.call(attribute, 'f')) {
- return onnx.AttributeType.FLOAT;
- }
- else if (Object.prototype.hasOwnProperty.call(attribute, 'i')) {
- return onnx.AttributeType.INT;
- }
- else if (Object.prototype.hasOwnProperty.call(attribute, 't')) {
- return onnx.AttributeType.TENSOR;
- }
- else if (Object.prototype.hasOwnProperty.call(attribute, 'g')) {
- return onnx.AttributeType.GRAPH;
- }
- else if (Object.prototype.hasOwnProperty.call(attribute, 'sparse_tensor')) {
- return onnx.AttributeType.SPARSE_TENSOR;
- }
- return onnx.AttributeType.UNDEFINED;
- }
- static createTensors(nodes) {
- const tensors = new Map();
- tensors.map = function(name) {
- if (!this.has(name)) {
- this.set(name, { name: name });
- }
- return this.get(name);
- };
- for (const node of nodes) {
- node.input = node.input.map((name) => tensors.map(name));
- node.output = node.output.map((name) => tensors.map(name));
- node.param = {};
- for (const attribute of node.attribute) {
- attribute.type = onnx.Utility.attributeType(attribute);
- }
- }
- return tensors;
- }
- static createNodes(context, nodes, inputs, outputs, tensors, args) {
- const inputMap = new Map();
- const outputMap = new Map();
- for (const node of nodes) {
- node.input.every((input) => inputMap.set(input.name, (inputMap.get(input) || 0) + 1));
- node.output.every((output) => outputMap.set(output.name, (outputMap.get(output) || 0) + 1));
- }
- inputs.every((input) => inputMap.delete(input.name));
- outputs.every((output) => outputMap.delete(output.name));
- nodes = nodes.filter((node) => {
- const constant = node &&
- node.op_type === 'Constant' &&
- node.attribute.length === 1 && node.attribute[0] &&
- node.input.length === 0 &&
- node.output.length === 1 && node.output[0] && inputMap.get(node.output[0].name) === 1 && outputMap.get(node.output[0].name) === 1;
- const attribute = constant ? node.attribute[0] : null;
- if (attribute && attribute.name === 'value' && attribute.type === onnx.AttributeType.TENSOR && attribute.t) {
- const tensor = tensors.map(node.output[0].name);
- tensor.initializer = new onnx.Tensor(attribute.t, 'Constant');
- return false;
- }
- else if (attribute && attribute.name === 'sparse_value' && attribute.type === onnx.AttributeType.SPARSE_TENSOR && attribute.sparse_tensor) {
- const tensor = tensors.map(node.output[0].name);
- tensor.initializer = new onnx.Tensor(attribute.sparse_tensor, 'Sparse Constant');
- return false;
- }
- return true;
- });
- return nodes.map((node) => {
- const schema = context.metadata.type(node.op_type, node.domain);
- const inputs = [];
- node.input = node.input || [];
- for (let i = 0; i < node.input.length; ) {
- const input = schema && schema.inputs && i < schema.inputs.length ? schema.inputs[i] : { name: i.toString() };
- const count = input.list ? node.input.length - i : 1;
- const list = node.input.slice(i, i + count).map((input) => args.map(input.name));
- inputs.push(new onnx.Parameter(input.name, list));
- i += count;
- }
- const outputs = [];
- node.output = node.output || [];
- for (let i = 0; i < node.output.length; ) {
- const output = schema && schema.outputs && i < schema.outputs.length ? schema.outputs[i] : { name: i.toString() };
- const count = output.list ? node.output.length - i : 1;
- const list = node.output.slice(i, i + count).map((output) => args.map(output.name));
- outputs.push(new onnx.Parameter(output.name, list));
- i += count;
- }
- return new onnx.Node(context, node.op_type, node.domain, node.name, node.doc_string, node.attribute, inputs, outputs);
- });
- }
- };
- onnx.Error = class extends Error {
- constructor(message) {
- super(message);
- this.name = 'Error loading ONNX model.';
- }
- };
- if (typeof module !== 'undefined' && typeof module.exports === 'object') {
- module.exports.ModelFactory = onnx.ModelFactory;
- }
|