normalize.js 218 B

12345
  1. import * as tf from '@tensorflow/tfjs-core';
  2. export function normalize(x) {
  3. return tf.tidy(function () { return tf.mul(tf.sub(x, tf.scalar(127.5)), tf.scalar(0.0078125)); });
  4. }
  5. //# sourceMappingURL=normalize.js.map