| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- /* jshint esversion: 6 */
- // Experimental
- var npz = npz || {};
- var python = python || require('./python');
- npz.ModelFactory = class {
- match(context) {
- const entries = context.entries('zip');
- if (entries.length > 0 && entries.every((entry) => entry.name.endsWith('.npy'))) {
- return true;
- }
- const tags = context.tags('pkl');
- if (tags.size === 1 && tags.keys().next().value === '') {
- if (npz.Utility.weights(tags.values().next().value)) {
- return true;
- }
- }
- return false;
- }
- open(context) {
- return context.require('./numpy').then((numpy) => {
- const tags = context.tags('pkl');
- const groups = new Map();
- let format = '';
- if (tags.size === 1) {
- format = 'NumPy Weights';
- const weights = npz.Utility.weights(tags.values().next().value);
- let separator = '_';
- if (Array.from(weights.keys()).every((key) => key.indexOf('.') !== -1) &&
- !Array.from(weights.keys()).every((key) => key.indexOf('_') !== -1)) {
- separator = '.';
- }
- for (const pair of weights) {
- const name = pair[0];
- const value = pair[1];
- const parts = name.split(separator);
- const parameterName = parts.length > 1 ? parts.pop() : '?';
- const groupName = parts.join(separator);
- if (!groups.has(groupName)) {
- groups.set(groupName, { name: groupName, parameters: [] });
- }
- const group = groups.get(groupName);
- group.parameters.push({
- name: parameterName,
- tensor: {
- name: name,
- byteOrder: value.dtype.byteorder,
- dataType: value.dtype.name,
- shape: value.shape,
- data: value.data
- }
- });
- }
- }
- else {
- format = 'NumPy Zip';
- const dataTypeMap = new Map([
- [ 'i1', 'int8'], [ 'i2', 'int16' ], [ 'i4', 'int32'], [ 'i8', 'int64' ],
- [ 'u1', 'uint8'], [ 'u2', 'uint16' ], [ 'u4', 'uint32'], [ 'u8', 'uint64' ],
- [ 'f2', 'float16'], [ 'f4', 'float32' ], [ 'f8', 'float64']
- ]);
- const execution = new python.Execution(null);
- for (const entry of context.entries('zip')) {
- if (!entry.name.endsWith('.npy')) {
- throw new npz.Error("Invalid file name '" + entry.name + "'.");
- }
- const name = entry.name.replace(/\.npy$/, '');
- const parts = name.split('/');
- const parameterName = parts.pop();
- const groupName = parts.join('/');
- if (!groups.has(groupName)) {
- groups.set(groupName, { name: groupName, parameters: [] });
- }
- const group = groups.get(groupName);
- const data = entry.data;
- let array = new numpy.Array(data);
- if (array.byteOrder === '|') {
- if (array.dataType !== 'O') {
- throw new npz.Error("Invalid data type '" + array.dataType + "'.");
- }
- const unpickler = new python.Unpickler(array.data);
- const root = unpickler.load((name, args) => execution.invoke(name, args));
- array = { dataType: root.dtype.name, shape: null, data: null, byteOrder: '|' };
- }
- group.parameters.push({
- name: parameterName,
- tensor: {
- name: name,
- byteOrder: array.byteOrder,
- dataType: dataTypeMap.has(array.dataType) ? dataTypeMap.get(array.dataType) : array.dataType,
- shape: array.shape,
- data: array.data,
- }
- });
- }
- }
- return new npz.Model(format, groups.values());
- });
- }
- };
- npz.Model = class {
- constructor(format, groups) {
- this._format = format;
- this._graphs = [];
- this._graphs.push(new npz.Graph(groups));
- }
- get format() {
- return this._format;
- }
- get graphs() {
- return this._graphs;
- }
- };
- npz.Graph = class {
- constructor(groups) {
- this._nodes = [];
- for (const group of groups) {
- this._nodes.push(new npz.Node(group));
- }
- }
- get inputs() {
- return [];
- }
- get outputs() {
- return [];
- }
- get nodes() {
- return this._nodes;
- }
- };
- npz.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;
- }
- };
- npz.Argument = class {
- constructor(name, initializer) {
- if (typeof name !== 'string') {
- throw new npz.Error("Invalid argument identifier '" + JSON.stringify(name) + "'.");
- }
- this._name = name;
- this._initializer = initializer || null;
- }
- get name() {
- return this._name;
- }
- get type() {
- return this._initializer.type;
- }
- get initializer() {
- return this._initializer;
- }
- };
- npz.Node = class {
- constructor(group) {
- this._name = group.name;
- this._inputs = [];
- for (const parameter of group.parameters) {
- const name = this._name ? [ this._name, parameter.name ].join('/') : parameter.name;
- const tensor = parameter.tensor;
- const initializer = new npz.Tensor(name, tensor.dataType, tensor.shape, tensor.data, tensor.byteOrder);
- this._inputs.push(new npz.Parameter(parameter.name, [
- new npz.Argument(tensor.name || '', initializer)
- ]));
- }
- }
- get type() {
- return 'Module';
- }
- get name() {
- return this._name;
- }
- get metadata() {
- return null;
- }
- get inputs() {
- return this._inputs;
- }
- get outputs() {
- return [];
- }
- get attributes() {
- return [];
- }
- };
- npz.Tensor = class {
- constructor(name, dataType, shape, data, byteOrder) {
- this._name = name;
- this._type = new npz.TensorType(dataType, new npz.TensorShape(shape));
- this._shape = shape;
- this._data = data;
- this._byteOrder = byteOrder;
- }
- get kind() {
- return 'NumPy Array';
- }
- get name() {
- return this._name;
- }
- 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 npz.Tensor._stringify(value, '', ' ');
- }
- _context() {
- const context = {};
- context.index = 0;
- context.count = 0;
- context.state = null;
- if (this._byteOrder !== '<' && this._byteOrder !== '>') {
- context.state = 'Tensor byte order is not supported.';
- return context;
- }
- if (this._reference) {
- context.state = 'Tensor reference not implemented.';
- return context;
- }
- if (!this._data || this._data.length == 0) {
- context.state = 'Tensor data is empty.';
- return context;
- }
- switch (this._type.dataType) {
- case 'float16':
- context.itemSize = 2;
- break;
- case 'float32':
- context.itemSize = 4;
- break;
- case 'float64':
- context.itemSize = 8;
- break;
- case 'int8':
- context.itemSize = 1;
- break;
- case 'int16':
- context.itemSize = 2;
- break;
- case 'int32':
- context.itemSize = 4;
- break;
- case 'int64':
- context.itemSize = 8;
- break;
- case 'uint8':
- context.itemSize = 1;
- break;
- case 'uint16':
- context.itemSize = 2;
- break;
- case 'uint32':
- context.itemSize = 4;
- break;
- default:
- context.state = 'Tensor data type is not supported.';
- return context;
- }
- context.dimensions = this._type.shape.dimensions;
- context.dataType = this._type.dataType;
- context.littleEndian = this._byteOrder == '<';
- context.data = this._data;
- context.rawData = new DataView(this._data.buffer, this._data.byteOffset, this._data.byteLength);
- return context;
- }
- _decode(context, dimension) {
- const littleEndian = context.littleEndian;
- const shape = context.dimensions.length == 0 ? [ 1 ] : context.dimensions;
- const results = [];
- const size = shape[dimension];
- if (dimension == shape.length - 1) {
- for (let i = 0; i < size; i++) {
- if (context.count > context.limit) {
- results.push('...');
- return results;
- }
- if (context.rawData) {
- switch (context.dataType) {
- case 'float16':
- results.push(context.rawData.getFloat16(context.index, littleEndian));
- break;
- case 'float32':
- results.push(context.rawData.getFloat32(context.index, littleEndian));
- break;
- case 'float64':
- results.push(context.rawData.getFloat64(context.index, littleEndian));
- break;
- case 'int8':
- results.push(context.rawData.getInt8(context.index, littleEndian));
- break;
- case 'int16':
- results.push(context.rawData.getInt16(context.index, littleEndian));
- break;
- case 'int32':
- results.push(context.rawData.getInt32(context.index, littleEndian));
- break;
- case 'int64':
- results.push(context.rawData.getInt64(context.index, littleEndian));
- break;
- case 'uint8':
- results.push(context.rawData.getUint8(context.index, littleEndian));
- break;
- case 'uint16':
- results.push(context.rawData.getUint16(context.index, littleEndian));
- break;
- case 'uint32':
- results.push(context.rawData.getUint32(context.index, littleEndian));
- break;
- }
- context.index += context.itemSize;
- context.count++;
- }
- }
- }
- 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.dimensions.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) => npz.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();
- }
- };
- npz.TensorType = class {
- constructor(dataType, shape) {
- this._dataType = dataType;
- this._shape = shape;
- }
- get dataType() {
- return this._dataType || '?';
- }
- get shape() {
- return this._shape;
- }
- toString() {
- return this.dataType + this._shape.toString();
- }
- };
- npz.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(',') + ']';
- }
- };
- npz.Utility = class {
- static isTensor(obj) {
- return obj && obj.__module__ === 'numpy' && obj.__name__ === 'ndarray';
- }
- static weights(obj) {
- const keys = [ '', 'blobs' ];
- for (const key of keys) {
- const dict = key === '' ? obj : obj[key];
- if (dict) {
- const weights = new Map();
- if (dict instanceof Map) {
- for (const pair of dict) {
- if (!npz.Utility.isTensor(pair[1])) {
- return null;
- }
- weights.set(pair[0], pair[1]);
- }
- return weights;
- }
- else if (!Array.isArray(dict)) {
- for (const key in dict) {
- const value = dict[key];
- if (key != 'weight_order' && key != 'lr') {
- if (!key || !npz.Utility.isTensor(value)) {
- return null;
- }
- weights.set(key, value);
- }
- }
- return weights;
- }
- }
- }
- for (const key of keys) {
- const list = key === '' ? obj : obj[key];
- if (list && Array.isArray(list)) {
- const weights = new Map();
- for (let i = 0; i < list.length; i++) {
- const value = list[i];
- if (!npz.Utility.isTensor(value, 'numpy.ndarray')) {
- return null;
- }
- weights.set(i.toString(), value);
- }
- return weights;
- }
- }
- return null;
- }
- };
- npz.Error = class extends Error {
- constructor(message) {
- super(message);
- this.name = 'Error loading Chainer model.';
- }
- };
- if (typeof module !== 'undefined' && typeof module.exports === 'object') {
- module.exports.ModelFactory = npz.ModelFactory;
- }
|