gpt4 book ai didi

javascript - 为什么我收到错误 "tf.fromPixels is not a function"?

转载 作者:行者123 更新时间:2023-12-01 08:18:39 26 4
gpt4 key购买 nike

我有一些基本的 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什么可能导致这个?当您运行代码段时,其他人是否收到此错误?

最佳答案

您正在查看 0.12.0 版的文档。

tf.fromPixels 在版本 1.0.0 中被弃用,使用:tf.browser.fromPixels()

关于javascript - 为什么我收到错误 "tf.fromPixels is not a function"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55402551/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com