gpt4 book ai didi

python - 没有名为 helpers 的模块

转载 作者:行者123 更新时间:2023-12-03 03:47:45 25 4
gpt4 key购买 nike

当我运行 this tutorial 时,我尝试导入助手。但是,这报错:ImportError: No module named helpers。我在 pypi 中找不到任何合适的包。如何获取第三方包?

以下是教程片段

In [1]:
x = [[5, 7, 8], [6, 3], [3], [1]]
While manipulating such variable-length lists are convenient to humans, RNNs prefer a different layout:
In [2]:
import helpers
xt, xlen = helpers.batch(x)
In [3]:
x
Out[3]:
[[5, 7, 8], [6, 3], [3], [1]]
In [4]:
xt
Out[4]:
array([[5, 6, 3, 1],
[7, 3, 0, 0],
[8, 0, 0, 0]], dtype=int32)

Codes following

注意:助手不是助手

最佳答案

您正在寻找的 helpers 模块是由您链接的教程的创建者创建的。

(它不是tensorflow包之一),您可以通过克隆整个GitHub repository来获取助手模块或仅下载 helpers.py .

关于python - 没有名为 helpers 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47625813/

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