Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<body>
<h2>JavaScript</h2>
<p>Віднімання тензорів за допомогою tensorflow.js</p>
<div id="demo"></div>
<script>
const tensorA = tf.tensor([[1, 2], [3, 4], [5, 6]]);
const tensorB = tf.tensor([[1,-1], [2,-2], [3,-3]]);
// Тензорне віднімання
const tensorNew = tensorA.sub(tensorB);
// Результат: [ [0, 3], [1, 6], [2, 9] ]
document.getElementById("demo").innerHTML = tensorNew;
</script>
</body>
</html>