forked from tensorflow/tfjs-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.js
165 lines (150 loc) · 5.88 KB
/
model.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
/**
* @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.
* =============================================================================
*/
import * as tf from '@tensorflow/tfjs';
import {TextData} from './data';
/**
* Create a model for next-character prediction.
* @param {number} sampleLen Sampling length: how many characters form the
* input to the model.
* @param {number} charSetSize Size of the character size: how many unique
* characters there are.
* @param {number|numbre[]} lstmLayerSizes Size(s) of the LSTM layers.
* @return {tf.Model} A next-character prediction model with an input shape
* of `[null, sampleLen, charSetSize]` and an output shape of
* `[null, charSetSize]`.
*/
export function createModel(sampleLen, charSetSize, lstmLayerSizes) {
if (!Array.isArray(lstmLayerSizes)) {
lstmLayerSizes = [lstmLayerSizes];
}
const model = tf.sequential();
for (let i = 0; i < lstmLayerSizes.length; ++i) {
const lstmLayerSize = lstmLayerSizes[i];
model.add(tf.layers.lstm({
units: lstmLayerSize,
returnSequences: i < lstmLayerSizes.length - 1,
inputShape: i === 0 ? [sampleLen, charSetSize] : undefined
}));
}
model.add(
tf.layers.dense({units: charSetSize, activation: 'softmax'}));
return model;
}
export function compileModel(model, learningRate) {
const optimizer = tf.train.rmsprop(learningRate);
model.compile({optimizer: optimizer, loss: 'categoricalCrossentropy'});
console.log(`Compiled model with learning rate ${learningRate}`);
model.summary();
}
/**
* Train model.
* @param {tf.Model} model The next-char prediction model, assumed to have an
* input shape of `[null, sampleLen, charSetSize]` and an output shape of
* `[null, charSetSize]`.
* @param {TextData} textData The TextData object to use during training.
* @param {number} numEpochs Number of training epochs.
* @param {number} examplesPerEpoch Number of examples to draw from the
* `textData` object per epoch.
* @param {number} batchSize Batch size for training.
* @param {number} validationSplit Validation split for training.
* @param {tf.CustomCallbackArgs} callbacks Custom callbacks to use during
* `model.fit()` calls.
*/
export async function fitModel(
model, textData, numEpochs, examplesPerEpoch, batchSize, validationSplit,
callbacks) {
for (let i = 0; i < numEpochs; ++i) {
const [xs, ys] = textData.nextDataEpoch(examplesPerEpoch);
await model.fit(xs, ys, {
epochs: 1,
batchSize: batchSize,
validationSplit,
callbacks
});
xs.dispose();
ys.dispose();
}
}
/**
* Generate text using a next-char-prediction model.
*
* @param {tf.Model} model The model object to be used for the text generation,
* assumed to have input shape `[null, sampleLen, charSetSize]` and output
* shape `[null, charSetSize]`.
* @param {number[]} sentenceIndices The character indices in the seed sentence.
* @param {number} length Length of the sentence to generate.
* @param {number} temperature Temperature value. Must be a number >= 0 and
* <= 1.
* @param {(char: string) => Promise<void>} onTextGenerationChar An optinoal
* callback to be invoked each time a character is generated.
* @returns {string} The generated sentence.
*/
export async function generateText(
model, textData, sentenceIndices, length, temperature,
onTextGenerationChar) {
const sampleLen = model.inputs[0].shape[1];
const charSetSize = model.inputs[0].shape[2];
// Avoid overwriting the original input.
sentenceIndices = sentenceIndices.slice();
let generated = '';
while (generated.length < length) {
// Encode the current input sequence as a one-hot Tensor.
const inputBuffer =
new tf.TensorBuffer([1, sampleLen, charSetSize]);
// Make the one-hot encoding of the seeding sentence.
for (let i = 0; i < sampleLen; ++i) {
inputBuffer.set(1, 0, i, sentenceIndices[i]);
}
const input = inputBuffer.toTensor();
// Call model.predict() to get the probability values of the next
// character.
const output = model.predict(input);
// Sample randomly based on the probability values.
const winnerIndex = sample(tf.squeeze(output), temperature);
const winnerChar = textData.getFromCharSet(winnerIndex);
if (onTextGenerationChar != null) {
await onTextGenerationChar(winnerChar);
}
generated += winnerChar;
sentenceIndices = sentenceIndices.slice(1);
sentenceIndices.push(winnerIndex);
// Memory cleanups.
input.dispose();
output.dispose();
}
return generated;
}
/**
* Draw a sample based on probabilities.
*
* @param {tf.Tensor} probs Predicted probability scores, as a 1D `tf.Tensor` of
* shape `[charSetSize]`.
* @param {tf.Tensor} temperature Temperature (i.e., a measure of randomness
* or diversity) to use during sampling. Number be a number > 0, as a Scalar
* `tf.Tensor`.
* @returns {number} The 0-based index for the randomly-drawn sample, in the
* range of `[0, charSetSize - 1]`.
*/
export function sample(probs, temperature) {
return tf.tidy(() => {
const logits = tf.div(tf.log(probs), Math.max(temperature, 1e-6));
const isNormalized = false;
// `logits` is for a multinomial distribution, scaled by the temperature.
// We randomly draw a sample from the distribution.
return tf.multinomial(logits, 1, null, isNormalized).dataSync()[0];
});
}