-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathuser_defined_metadata_test.ts
184 lines (176 loc) · 6.75 KB
/
user_defined_metadata_test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/**
* @license
* Copyright 2019 Google LLC
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
import {io, zeros} from '@tensorflow/tfjs-core';
import * as tfl from './index';
import {Sequential} from './models';
import {plainObjectCheck, MAX_USER_DEFINED_METADATA_SERIALIZED_LENGTH} from './user_defined_metadata';
describe('plainObjectCheck', () => {
it('Primitives', () => {
// `undefined` is not valid JSON.
expect(plainObjectCheck(undefined)).toEqual(false);
// `null` is valid JSON.
expect(plainObjectCheck(null)).toEqual(true);
expect(plainObjectCheck(true)).toEqual(true);
expect(plainObjectCheck(1337)).toEqual(true);
expect(plainObjectCheck('foo')).toEqual(true);
});
it('Complex objects lead to false', () => {
expect(plainObjectCheck(new Date())).toEqual(false);
expect(plainObjectCheck(new Float32Array([1, 2])))
.toEqual(false);
expect(plainObjectCheck(new ArrayBuffer(4))).toEqual(false);
expect(plainObjectCheck(new Error())).toEqual(false);
expect(plainObjectCheck(zeros([2, 3]))).toEqual(false);
});
it('POJOs lead to true', () => {
expect(plainObjectCheck({})).toEqual(true);
expect(plainObjectCheck({
'key1': 'foo',
'key2': 1337,
'key3': false
})).toEqual(true);
expect(plainObjectCheck({
'key1': {
'key1_1': [1, 3, 3, 7, [42]],
'key1_2': null,
'key1_3': ['foo', 'bar', null, {}, {'qux': 233}],
},
'key2': 1337,
'key3': false
})).toEqual(true);
});
it('POJOs with invalid value types lead to false', () => {
expect(plainObjectCheck({
'key1': new Date(),
'key2': 1337
})).toEqual(false);
expect(plainObjectCheck({
'key1': new ArrayBuffer(3),
'key2': 1337
})).toEqual(false);
expect(plainObjectCheck({
'key1': 'foo',
'key2': undefined
})).toEqual(false);
expect(plainObjectCheck({
'key1': 'foo',
'key2': {
'tensor': zeros([2, 3])
}
})).toEqual(false);
});
it('Arrays of POJO lead to true', () => {
expect(plainObjectCheck([])).toEqual(true);
expect(plainObjectCheck([{}, {}])).toEqual(true);
expect(plainObjectCheck([{
'key1': 'foo',
'key2': 1337,
'key3': false
}])).toEqual(true);
expect(plainObjectCheck([{
'key1': {
'key1_1': [1, 3, 3, 7],
'key1_2': null,
'key1_3': ['foo', 'bar', null, {}, {'qux': 233}],
},
'key2': 1337,
'key3': false
}])).toEqual(true);
});
});
describe('Save and load model with metadata', () => {
function createSequentialModelForTest(): Sequential {
const model = tfl.sequential();
model.add(tfl.layers.dense({
units: 3,
inputShape: [10],
activation: 'softmax'
}));
return model;
}
function createFunctionalModelForTest(): tfl.LayersModel {
const input1 = tfl.input({shape: [3]});
const input2 = tfl.input({shape: [4]});
const dense1 = tfl.layers.dense({units: 2, inputShape: [3]});
const dense2 = tfl.layers.dense({units: 1, inputShape: [4]});
const y1 = dense1.apply(input1) as tfl.SymbolicTensor;
const y2 = dense2.apply(input2) as tfl.SymbolicTensor;
const output = tfl.layers.concatenate().apply([y1, y2]) as
tfl.SymbolicTensor;
return tfl.model({inputs: [input1, input2], outputs: output});
}
for (const modelType of ['sequential', 'functional']) {
it(`Valid user-defined metadata round trip: ${modelType}`, async () => {
const model = modelType === 'sequential' ?
createSequentialModelForTest() : createFunctionalModelForTest();
const userDefinedMetadata = {'outputLabels': ['foo', 'bar', 'baz']};
model.setUserDefinedMetadata(userDefinedMetadata);
expect(model.getUserDefinedMetadata()).toEqual(userDefinedMetadata);
let savedArtifacts: io.ModelArtifacts;
await model.save(
io.withSaveHandler(async (artifacts: io.ModelArtifacts) => {
savedArtifacts = artifacts;
return {modelArtifactsInfo: null};
}));
const reloadedModel = await tfl.loadLayersModel(
io.fromMemory(savedArtifacts));
expect(reloadedModel.getUserDefinedMetadata())
.toEqual(userDefinedMetadata);
});
}
for (const modelType of ['sequential', 'functional']) {
it(`Invalid user metadata leads to error: ${modelType}`, async () => {
const model = modelType === 'sequential' ?
createSequentialModelForTest() : createFunctionalModelForTest();
expect(() => model.setUserDefinedMetadata(
JSON.stringify({'outputLabels': ['foo', 'bar', 'baz']})))
.toThrowError(/is expected to be a JSON object, but is not/);
expect(() => model.setUserDefinedMetadata(
['foo', 'bar', 'baz']))
.toThrowError(/is expected to be a JSON object, but is not/);
expect(() => model.setUserDefinedMetadata(
{'foo': zeros([2, 3]), 'outputLabels': ['foo', 'bar', 'baz']}))
.toThrowError(/is expected to be a JSON object, but is not/);
expect(() => model.setUserDefinedMetadata(undefined))
.toThrowError(/is expected to be a JSON object, but is not/);
expect(() => model.setUserDefinedMetadata(null))
.toThrowError(/is expected to be a JSON object, but is not/);
expect(() => model.setUserDefinedMetadata('foo'))
.toThrowError(/is expected to be a JSON object, but is not/);
expect(() => model.setUserDefinedMetadata(1337))
.toThrowError(/is expected to be a JSON object, but is not/);
});
}
for (const modelType of ['sequential', 'functional']) {
it(`Large metadata size leads to warning: ${modelType}`, async () => {
const warningMessages: string[] = [];
spyOn(console, 'warn').and.callFake((message: string) => {
warningMessages.push(message);
});
const largeMetadata: {} = {
'metadata': 'x'.repeat(MAX_USER_DEFINED_METADATA_SERIALIZED_LENGTH)
};
const model = modelType === 'sequential' ?
createSequentialModelForTest() : createFunctionalModelForTest();
model.setUserDefinedMetadata(largeMetadata);
await model.save(
io.withSaveHandler(async (artifacts: io.ModelArtifacts) => {
return {modelArtifactsInfo: null};
}));
expect(warningMessages.length).toEqual(1);
expect(warningMessages).toMatch(/is too large in size/);
});
}
it('MAX_USER_DEFINED_METADATA_SERIALIZED_LENGTH value', () => {
expect(MAX_USER_DEFINED_METADATA_SERIALIZED_LENGTH).toBeGreaterThan(0);
expect(Number.isInteger(MAX_USER_DEFINED_METADATA_SERIALIZED_LENGTH))
.toEqual(true);
});
});