forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
108 lines (101 loc) · 3.87 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
/**
* @license
* Copyright 2019 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.
* =============================================================================
*/
/**
* Addition RNN example.
*
* Based on tfjs example:
* https://github.com/tensorflow/tfjs-examples/tree/master/addition-rnn
*/
import * as tfvis from '@tensorflow/tfjs-vis';
const worker =
new Worker(new URL('./worker.js', import.meta.url), {type: 'module'});
async function runAdditionRNNDemo() {
document.getElementById('trainModel').addEventListener('click', async () => {
const digits = +(document.getElementById('digits')).value;
const trainingSize = +(document.getElementById('trainingSize')).value;
const rnnTypeSelect = document.getElementById('rnnType');
const rnnType =
rnnTypeSelect.options[rnnTypeSelect.selectedIndex].getAttribute(
'value');
const layers = +(document.getElementById('rnnLayers')).value;
const hiddenSize = +(document.getElementById('rnnLayerSize')).value;
const batchSize = +(document.getElementById('batchSize')).value;
const trainIterations = +(document.getElementById('trainIterations')).value;
const numTestExamples = +(document.getElementById('numTestExamples')).value;
// Do some checks on the user-specified parameters.
const status = document.getElementById('trainStatus');
if (digits < 1 || digits > 5) {
status.textContent = 'digits must be >= 1 and <= 5';
return;
}
const trainingSizeLimit = Math.pow(Math.pow(10, digits), 2);
if (trainingSize > trainingSizeLimit) {
status.textContent =
`With digits = ${digits}, you cannot have more than ` +
`${trainingSizeLimit} examples`;
return;
}
worker.postMessage({
digits,
trainingSize,
rnnType,
layers,
hiddenSize,
trainIterations,
batchSize,
numTestExamples
});
worker.addEventListener('message', (e) => {
if (e.data.isPredict) {
const {i, iterations, modelFitTime, lossValues, accuracyValues} =
e.data;
document.getElementById('trainStatus').textContent =
`Iteration ${i + 1} of ${iterations}: ` +
`Time per iteration: ${modelFitTime.toFixed(3)} (seconds)`;
const lossContainer = document.getElementById('lossChart');
tfvis.render.linechart(
lossContainer,
{values: lossValues, series: ['train', 'validation']}, {
width: 420,
height: 300,
xLabel: 'epoch',
yLabel: 'loss',
});
const accuracyContainer = document.getElementById('accuracyChart');
tfvis.render.linechart(
accuracyContainer,
{values: accuracyValues, series: ['train', 'validation']}, {
width: 420,
height: 300,
xLabel: 'epoch',
yLabel: 'accuracy',
});
} else {
const {isCorrect, examples} = e.data;
const examplesDiv = document.getElementById('testExamples');
const examplesContent = examples.map(
(example, i) =>
`<div class="${
isCorrect[i] ? 'answer-correct' : 'answer-wrong'}">` +
`${example}` +
`</div>`);
examplesDiv.innerHTML = examplesContent.join('\n');
}
});
});
}
runAdditionRNNDemo();