Spaces:
Running
Running
File size: 13,110 Bytes
1f2f6bf bc03848 1f2f6bf bc03848 1f2f6bf bc03848 1f2f6bf | 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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 | import * as tf from '@tensorflow/tfjs';
type LayerValue = string | number | tf.Variable | null | undefined;
interface LayerConfig {
type: string;
[key: string]: LayerValue;
}
export interface RunInfo {
[key: string]: unknown;
}
export interface TrainController {
isPaused: boolean;
stopRequested: boolean;
sampleIndex: number;
}
interface BatchData {
xs: tf.Tensor;
labels: tf.Tensor2D;
}
interface TestSample {
xs: tf.Tensor;
}
interface TrainingData {
trainSize: number;
imageSize: number;
numInputChannels: number;
nextTrainBatch(batchSize: number): BatchData;
getTestSample(index: number): TestSample;
}
export interface OptimizerParams {
learningRate: string;
batchSize: string;
epochs: string;
// sgd only
momentum?: string;
// adam only
beta1?: string;
beta2?: string;
epsilon?: string;
}
type BatchEndCallback = (
epoch: number,
batch: number,
loss: number,
info: RunInfo[],
) => void | Promise<void>;
function parseValue(raw: string): string | number {
if (raw.trim() === '') {
return raw;
}
const num = Number(raw);
if (!Number.isNaN(num)) {
return num;
}
return raw;
}
function parseArchitecture(text: string): LayerConfig[] {
const layers: LayerConfig[] = [];
const matches = text.match(/\[(.*?)\]/gs);
if (!matches) return layers;
for (const block of matches) {
const content = block.slice(1, -1).trim();
if (content.length === 0) continue;
const tokens = content.split(/\s+/);
if (tokens.length === 0) continue;
const type = tokens[0];
const layer: LayerConfig = { type };
for (let i = 1; i < tokens.length; ++i) {
const token = tokens[i];
const [rawKey, rawValue] = token.split('=', 2);
if (!rawKey || rawValue === undefined) continue;
const key = rawKey === 'activation' ? 'activationType' : rawKey;
layer[key] = parseValue(rawValue);
}
layers.push(layer);
}
return layers;
}
function getNumber(layer: LayerConfig, key: string): number {
const value = layer[key];
if (typeof value !== 'number') {
throw new Error(`Layer "${layer.type}" is missing numeric "${key}"`);
}
return value;
}
function getVariable(layer: LayerConfig, key: string): tf.Variable {
const value = layer[key];
if (!value || typeof value !== 'object' || !('dispose' in value)) {
throw new Error(`Layer "${layer.type}" is missing tensor "${key}"`);
}
return value as tf.Variable;
}
function getPadding(layer: LayerConfig): number | 'same' | 'valid' {
const padding = layer.padding;
if (padding === undefined) return 'valid';
if (typeof padding === 'number') return padding;
if (padding === 'same' || padding === 'valid') return padding;
throw new Error(`Layer "${layer.type}" has invalid padding "${String(padding)}"`);
}
function getFlatDim(out: tf.Tensor): number {
const [, h, w, c] = out.shape;
if (
typeof h !== 'number' ||
typeof w !== 'number' ||
typeof c !== 'number'
) {
throw new Error('Cannot flatten tensor with unknown shape');
}
return h * w * c;
}
export class Cnn {
architecture: LayerConfig[];
inChannels: number;
weights: tf.Variable[];
constructor(architecture: string, inChannels: number) {
this.architecture = parseArchitecture(architecture);
this.inChannels = inChannels;
this.weights = this.initWeights();
}
initWeights(): tf.Variable[] {
const weights: tf.Variable[] = [];
let inChannels = this.inChannels;
for (const layer of this.architecture) {
if (layer.type === 'conv2d') {
const kernel = getNumber(layer, 'kernel');
const filters = getNumber(layer, 'filters');
const shape: [number, number, number, number] = [
kernel,
kernel,
inChannels,
filters,
];
const layerWeights = tf.variable(
tf.randomUniform(
shape,
-Math.sqrt(1 / (kernel * kernel * inChannels)),
Math.sqrt(1 / (kernel * kernel * inChannels)),
),
);
weights.push(layerWeights);
layer.weights = layerWeights;
inChannels = filters;
} else if (layer.type === 'dense') {
layer.weights = null;
layer.biases = null;
}
}
return weights;
}
dispose(): void {
for (const layer of this.architecture) {
if (layer.type === 'conv2d') {
getVariable(layer, 'weights').dispose();
} else if (layer.type === 'dense') {
const weights = layer.weights;
const biases = layer.biases;
if (weights && typeof weights === 'object' && 'dispose' in weights) {
(weights as tf.Variable).dispose();
}
if (biases && typeof biases === 'object' && 'dispose' in biases) {
(biases as tf.Variable).dispose();
}
}
}
}
forward(x: tf.Tensor4D): tf.Tensor {
let out: tf.Tensor = x;
for (let i = 0; i < this.architecture.length; i += 1) {
const layer = this.architecture[i];
switch (layer.type) {
case 'conv2d': {
const layerWeights = getVariable(layer, 'weights');
const stride = getNumber(layer, 'stride');
const padding = getPadding(layer);
out = tf.conv2d(
out as tf.Tensor4D,
layerWeights as tf.Tensor4D,
stride,
padding,
);
if (layer.activationType === 'relu') {
out = out.relu();
}
break;
}
case 'maxpool': {
const size = getNumber(layer, 'size');
const stride = getNumber(layer, 'stride');
out = tf.maxPool(out as tf.Tensor4D, [size, size], [stride, stride], 0);
break;
}
case 'flatten': {
const flatDim = getFlatDim(out);
out = out.reshape([-1, flatDim]);
const next = this.architecture[i + 1];
if (next?.type === 'dense' && next.weights === null) {
const units = getNumber(next, 'units');
next.weights = tf.variable(
tf.randomUniform(
[flatDim, units],
-Math.sqrt(1 / flatDim),
Math.sqrt(1 / flatDim),
),
);
next.biases = tf.variable(tf.zeros([units]));
}
break;
}
case 'dense': {
const denseWeights = getVariable(layer, 'weights');
const denseBiases = getVariable(layer, 'biases');
out = tf.matMul(out as tf.Tensor2D, denseWeights as tf.Tensor2D).add(
denseBiases as tf.Tensor1D,
);
if (layer.activationType === 'relu') {
out = out.relu();
}
const next = this.architecture[i + 1];
if (next?.type === 'dense' && next.weights === null) {
const nextUnits = getNumber(next, 'units');
const currentUnits = getNumber(layer, 'units');
next.weights = tf.variable(
tf.randomUniform(
[currentUnits, nextUnits],
-Math.sqrt(1 / currentUnits),
Math.sqrt(1 / currentUnits),
),
);
next.biases = tf.variable(tf.zeros([nextUnits]));
}
break;
}
default:
break;
}
}
return out;
}
forwardWithInfo(x: tf.Tensor4D): { output: tf.Tensor; info: RunInfo[] } {
let out: tf.Tensor = x;
const info: RunInfo[] = [];
info.push({
type: 'input',
output: out.dataSync(),
shape: x.shape,
});
for (let i = 0; i < this.architecture.length; i += 1) {
const layer = this.architecture[i];
switch (layer.type) {
case 'conv2d': {
const layerWeights = getVariable(layer, 'weights');
const stride = getNumber(layer, 'stride');
const padding = getPadding(layer);
out = tf.conv2d(
out as tf.Tensor4D,
layerWeights as tf.Tensor4D,
stride,
padding,
);
if (layer.activationType === 'relu') {
out = out.relu();
}
info.push({
type: 'conv2d',
output: out.dataSync(),
kernels: layerWeights.dataSync(),
outputShape: out.shape,
kernelShape: layerWeights.shape,
stride,
padding,
activationType: layer.activationType,
});
break;
}
case 'maxpool': {
const size = getNumber(layer, 'size');
const stride = getNumber(layer, 'stride');
out = tf.maxPool(out as tf.Tensor4D, [size, size], [stride, stride], 0);
info.push({
type: 'maxpool',
output: out.dataSync(),
shape: out.shape,
size,
stride,
});
break;
}
case 'flatten': {
const flatDim = getFlatDim(out);
out = out.reshape([-1, flatDim]);
info.push({
type: 'flatten',
output: out.dataSync(),
shape: out.shape,
});
const next = this.architecture[i + 1];
if (next?.type === 'dense' && next.weights === null) {
const units = getNumber(next, 'units');
next.weights = tf.variable(
tf.randomUniform(
[flatDim, units],
-Math.sqrt(1 / flatDim),
Math.sqrt(1 / flatDim),
),
);
next.biases = tf.variable(tf.zeros([units]));
}
break;
}
case 'dense': {
const denseWeights = getVariable(layer, 'weights');
const denseBiases = getVariable(layer, 'biases');
out = tf.matMul(out as tf.Tensor2D, denseWeights as tf.Tensor2D).add(
denseBiases as tf.Tensor1D,
);
if (layer.activationType === 'relu') {
out = out.relu();
}
const next = this.architecture[i + 1];
if (next?.type === 'dense' && next.weights === null) {
const nextUnits = getNumber(next, 'units');
const currentUnits = getNumber(layer, 'units');
next.weights = tf.variable(
tf.randomUniform(
[currentUnits, nextUnits],
-Math.sqrt(1 / currentUnits),
Math.sqrt(1 / currentUnits),
),
);
next.biases = tf.variable(tf.zeros([nextUnits]));
}
info.push({
type: 'dense',
output: out.dataSync(),
weights: denseWeights.dataSync(),
biases: denseBiases.dataSync(),
outputShape: out.shape,
weightShape: denseWeights.shape,
biasShape: denseBiases.shape,
inputUnits: denseWeights.shape[0],
outputUnits: getNumber(layer, 'units'),
outputSize: getNumber(layer, 'units'),
inputSize: denseWeights.shape[0],
activationType: layer.activationType,
});
break;
}
default:
break;
}
}
return { output: out, info };
}
}
export async function train(
data: TrainingData,
model: Cnn,
optimizer: tf.Optimizer,
batchSize: number,
epochs: number,
controller: TrainController,
onBatchEnd: BatchEndCallback | null = null,
): Promise<void> {
const numBatches = Math.floor(data.trainSize / batchSize);
for (let epoch = 0; epoch < epochs; ++epoch) {
for (let b = 0; b < numBatches; ++b) {
if (controller.stopRequested) {
console.log('Training stopped');
return;
}
while (controller.isPaused) {
await tf.nextFrame();
}
const cost = optimizer.minimize(() => {
const batch = data.nextTrainBatch(batchSize);
const xs = batch.xs.reshape([
batchSize,
data.imageSize,
data.imageSize,
data.numInputChannels,
]) as tf.Tensor4D;
const preds = model.forward(xs);
return tf.losses.softmaxCrossEntropy(batch.labels, preds).mean();
}, true);
if (!cost) {
throw new Error('Optimizer did not return a loss tensor');
}
const lossVal = (await cost.data())[0];
cost.dispose();
const sample = data.getTestSample(controller.sampleIndex);
const { output, info } = model.forwardWithInfo(
sample.xs.reshape([
1,
data.imageSize,
data.imageSize,
data.numInputChannels,
]) as tf.Tensor4D,
);
const probs = tf.tidy(() => tf.softmax(output));
info.push({
type: 'output',
output: probs.dataSync(),
shape: probs.shape,
});
if (controller.stopRequested) {
console.log('Training stopped');
probs.dispose();
return;
}
if (onBatchEnd) {
await onBatchEnd(epoch, b, lossVal, info);
}
probs.dispose();
await tf.nextFrame();
}
}
console.log('Training complete');
}
|