Run ❯
zig
.
com
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script> <body> <h2>JavaScript</h2> <p>Adding tensors with 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]]); // Tensor Addition const tensorNew = tensorA.add(tensorB); // Result: [ [2, 1], [5, 2], [8, 3] ] document.getElementById("demo").innerHTML = tensorNew; </script> </body> <!-- /ai/tryit.asp?filename=tryai_tensor_add by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 06 Feb 2025 18:50:36 GMT --> </html>