{
let numTensorsStart = tf.memory().numTensors;
let numTensorsInsideTidy, numTensorsOutsideTidy, numTensorsClean, numTensorsOrphaned;
let toKeep, toReturn, toCollect, toBatman;
toBatman = tf.tensor([1, 2, 3]);
tf.tidy(() => {
toKeep = tf.tensor([4, 5, 6]);
toReturn = tf.tensor([7, 8, 9]);
toCollect = tf.tensor([10, 11, 12]);
numTensorsInsideTidy = tf.memory().numTensors - numTensorsStart;
tf.keep(toKeep);
return toReturn;
});
numTensorsOutsideTidy = tf.memory().numTensors - numTensorsStart;
toKeep.dispose();
toReturn.dispose();
numTensorsClean = tf.memory().numTensors - numTensorsStart;
toBatman = toBatman.asType('int32');
toBatman.dispose();
numTensorsOrphaned = tf.memory().numTensors - numTensorsStart;
return `
After all four tensors were created, the number of new tensors inside tidy() was: ${numTensorsInsideTidy}.
After tidy() garbage collected the toCollect tensor, the number of tensors just outside tidy() was: ${numTensorsOutsideTidy}.
After disposing off toKeep and toReturn, the number of tensors was: ${numTensorsClean}.
After orphaning toBatman, the number of tensors was: ${numTensorsOrphaned}.
`
}