运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <script src="https://cdn.jsdelivr.net.cn/npm/@tensorflow/tfjs"></script> <body> <h1>TensorFlow JavaScript</h1> <h3>Get the data type of a tensor:</h3> <div id="demo"></div> <script> const myArr = [1, 2, 3, 4]; const shape = [2, 2]; const tensorA = tf.tensor(myArr, shape); document.getElementById("demo").innerHTML = tensorA.dtype; </script> </body> </html>