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 = tensorA.reshape([4, 1]);
// Результат [ [1], [2], [3], [4] ]
document.getElementById("demo").innerHTML = tensorB;
</script>
</body>
</html>