我有一些基本的tensorflow.js代码from an example on the documentation:
const image = new ImageData(1, 1);
image.data[0] = 100;
image.data[1] = 150;
image.data[2] = 200;
image.data[3] = 255;
const xs = tf.fromPixels(image);
xs.print();
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js"></script>
使用此版本(网站告诉您使用的版本):
https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js
并得到错误:Uncaught TypeError: tf.fromPixels is not a function
可能是什么原因导致的?运行代码段时,其他人会收到此错误吗?