gpt4 book ai didi

python - 类型错误 ' list indices must be integers or slices, not tuple'(第 6 行)

转载 作者:太空宇宙 更新时间:2023-11-03 21:03:17 25 4
gpt4 key购买 nike

我正在尝试预测撰写邮件模式中的下一个单词,但出现上述错误:

sequences = list ()

for i in range(1, len(encoded)):
sequence = encoded[i - 1:i + 1]
sequences.append(sequence)
sequence

X, Y = sequences[:,0], sequences[:,1] # error on this line
X = np.expand_dims(X, 1)
Y = np.expand_dims(Y, 1)

最佳答案

如果序列是 numpy 中的 ndarray,则可以像 sequences[:,0] 那样进行切片。

但是list不支持,您可以使用[seq[0] for seq in strings]代替。

关于python - 类型错误 ' list indices must be integers or slices, not tuple'(第 6 行),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55585190/

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