forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
251 lines (221 loc) · 8.5 KB
/
index.js
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/**
* @license
* Copyright 2018 Google LLC. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =============================================================================
*/
/**
* This file loads a pre-trained generator part of an ACGAN and demonstrates
* the generation of fake MNIST images.
*
* The pre-trained generator model may come from either of the two sources:
* 1. Running the traning script `gan.js` in the same folder.
* 2. A hosted model, via HTTPS requests.
*/
import * as ta from 'time-ago';
import * as tf from '@tensorflow/tfjs';
// Load dataset just for comparison with the fake (generated images).
import {loadMnistData, sampleFromMnistData} from './web-data';
const status = document.getElementById('status');
const loadHostedModel = document.getElementById('load-hosted-model');
const testModel = document.getElementById('test');
const zSpaceToggleButton = document.getElementById('toggle-sliders');
const slidersContainer = document.getElementById('sliders-container');
const fakeImagesSpan = document.getElementById('fake-images-span');
const fakeCanvas = document.getElementById('fake-canvas');
const realCanvas = document.getElementById('real-canvas');
/**
* Generate values for the latent vector and show them with the sliders.
*
* @param {bool} fixedLatent Whether to use fixed value for the latent
* vector (0.5 for every dimension).
*/
function generateLatentVector(fixedLatent) {
const latentDims = latentSliders.length;
// Generate random latent vector (a.k.a, z-space vector).
const latentValues = [];
for (let i = 0; i < latentDims; ++i) {
const latentValue = fixedLatent === true ? 0.5 : Math.random();
latentValues.push(latentValue);
latentSliders[i].value = latentValue;
}
}
/**
* Read the value of the latent-space vector fromthe sliders.
*
* @param {number} numRepeats Number of times to tile the single latent vector
* for. Used for generating a batch of fake MNIST images.
* @returns The tiled latent-space vector, of shape [numRepeats, latentDim].
*/
function getLatentVectors(numRepeats) {
return tf.tidy(() => {
const latentDims = latentSliders.length;
const zs = [];
for (let i = 0; i < latentDims; ++i) {
zs.push(+latentSliders[i].value);
}
const singleLatentVector = tf.tensor2d(zs, [1, latentDims]);
return singleLatentVector.tile([numRepeats, 1]);
});
}
/**
* Generate a set of examples using the generator model of the ACGAN.
*
* @param {tf.Model} generator The generator part of the ACGAN.
*/
async function generateAndVisualizeImages(generator) {
tf.util.assert(
generator.inputs.length === 2,
`Expected model to have exactly 2 symbolic inputs, ` +
`but there are ${generator.inputs.length}`);
const combinedFakes = tf.tidy(() => {
const latentVectors = getLatentVectors(10);
// Generate one fake image for each digit.
const sampledLabels = tf.tensor2d([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [10, 1]);
// The output has pixel values in the [-1, 1] interval. Normalize it
// to the unit inerval ([0, 1]).
const t0 = tf.util.now();
const generatedImages =
generator.predict([latentVectors, sampledLabels]).add(1).div(2);
generatedImages.dataSync(); // For accurate timing benchmark.
const elapsed = tf.util.now() - t0;
fakeImagesSpan.textContent =
`Fake images (generation took ${elapsed.toFixed(2)} ms)`;
// Concatenate the images horizontally into a single image.
return tf.concat(tf.unstack(generatedImages), 1);
});
await tf.toPixels(combinedFakes, fakeCanvas);
tf.dispose(combinedFakes);
}
/** Refresh examples of real MNIST images. */
async function drawReals() {
const combinedReals = sampleFromMnistData(10);
await tf.toPixels(combinedReals, realCanvas);
tf.dispose(combinedReals);
}
/** An array that holds all sliders for the latent-space values. */
let latentSliders;
/**
* Create sliders for the latent space.
*
* @param {tf.Model} generator The generator part of the trained ACGAN.
*/
function createSliders(generator) {
const latentDims = generator.inputs[0].shape[1];
latentSliders = [];
for (let i = 0; i < latentDims; ++i) {
const slider = document.createElement('input');
slider.setAttribute('type', 'range');
slider.min = 0;
slider.max = 1;
slider.step = 0.01;
slider.value = 0.5;
slider.addEventListener('change', () => {
generateAndVisualizeImages(generator);
});
slidersContainer.appendChild(slider);
latentSliders.push(slider);
}
slidersContainer.style.display = 'none';
zSpaceToggleButton.disabled = false;
zSpaceToggleButton.textContent = `Show z-vector sliders (${latentDims} dimensions)`;
}
async function showGeneratorInitially(generator) {
generator.summary();
// Create slider for the z-space (latent vectors).
createSliders(generator);
generateLatentVector(true);
await generateAndVisualizeImages(generator);
await drawReals();
testModel.disabled = false;
}
async function init() {
// Load MNIST data for display in webpage.
status.textContent = 'Loading MNIST data...';
await loadMnistData();
const LOCAL_MEATADATA_PATH = 'generator/acgan-metadata.json';
const LOCAL_MODEL_PATH = 'generator/model.json';
// Hosted, pre-trained generator model.
const HOSTED_MODEL_URL =
'https://storage.googleapis.com/tfjs-examples/mnist-acgan/dist/generator/model.json';
// Attempt to load locally-saved model. If it fails, activate the
// "Load hosted model" button.
let model;
try {
status.textContent = 'Loading metadata';
const metadata =
await (await fetch(LOCAL_MEATADATA_PATH, {cache: 'no-cache'})).json();
status.textContent = `Loading model from ${LOCAL_MODEL_PATH}...`;
model = await tf.loadModel(
tf.io.browserHTTPRequest(LOCAL_MODEL_PATH, {cache: 'no-cache'}));
await showGeneratorInitially(model);
if (metadata.completed) {
status.textContent =
`Training of ACGAN in Node.js (${metadata.totalEpochs} epochs) ` +
`is completed. `;
} else {
status.textContent = `Training of ACGAN in Node.js is ongoing (epoch ` +
`${metadata.currentEpoch + 1}/${metadata.totalEpochs})... `;
}
if (metadata.currentEpoch < 10) {
status.textContent +=
'(Note: generator results may be bad during the first few epochs ' +
'of training, but should get better as training progresses.) '
}
if (metadata.lastUpdated != null) {
status.textContent +=
` (Saved model was last updated ` +
`${ta.ago(new Date(metadata.lastUpdated))}). `;
}
status.textContent +=
'Loaded locally-saved model! Now click "Generate" or ' +
'adjust the z-space sliders.';
} catch (err) {
console.error(err);
status.textContent =
'Failed to load locally-saved model and/or metadata. ' +
'Please click "Load Hosted Model"';
}
loadHostedModel.addEventListener('click', async () => {
try {
status.textContent = `Loading hosted model from ${HOSTED_MODEL_URL} ...`;
model = await tf.loadModel(HOSTED_MODEL_URL);
loadHostedModel.disabled = true;
await showGeneratorInitially(model);
status.textContent =
`Succesfully loaded hosted model from ${HOSTED_MODEL_URL}. ` +
`Now click "Generate" or adjust the z-space sliders.`;
} catch (err) {
console.error(err);
status.textContent =
`Failed to load hosted model from ${HOSTED_MODEL_URL}`;
}
});
testModel.addEventListener('click', async () => {
generateLatentVector(false);
await generateAndVisualizeImages(model);
drawReals();
});
zSpaceToggleButton.addEventListener('click', () => {
if (slidersContainer.style.display === 'none') {
slidersContainer.style.display = 'block';
zSpaceToggleButton.textContent =
zSpaceToggleButton.textContent.replace('Show ', 'Hide ');
} else {
slidersContainer.style.display = 'none';
zSpaceToggleButton.textContent =
zSpaceToggleButton.textContent.replace('Hide ', 'Show ');
}
});
}
init();