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]);
const tensorB = tf.tensor([4, 4, 2, 2]);
// Тензорне множення
const tensorNew = tensorA.mul(tensorB);
// Результат: [ 4, 8, 6, 8 ]
document.getElementById("demo").innerHTML = tensorNew;
</script>
</body>
</html>