gpt4 book ai didi

python - ":"在Python中做什么

转载 作者:行者123 更新时间:2023-12-01 06:50:54 25 4
gpt4 key购买 nike

我试图了解 cifar10.py 中的基本 Tensorflow 函数keras lib,函数 load_batch :

for i in range(1, 6):
fpath = os.path.join(path, 'data_batch_' + str(i))
(x_train[(i - 1) * 10000:i * 10000, :, :, :],
y_train[(i - 1) * 10000:i * 10000]) = load_batch(fpath)

":" 是什么意思?下面一行的意思是?

x_train[(i - 1) * 10000:i * 10000, :, :, :]

最佳答案

x_train 等是 numpy 数组或实现其接口(interface)的类似结构。在这里您可以阅读有关 numpy 切片 https://docs.scipy.org/doc/numpy/reference/arrays.indexing.html 的内容

或者关于 python 切片的更通用的 https://docs.python.org/3.7/library/stdtypes.html#common-sequence-operations

关于python - ":"在Python中做什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59006469/

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