gpt4 book ai didi

python - X[ :, 0] 里面逗号的含义

转载 作者:行者123 更新时间:2023-11-28 22:28:23 24 4
gpt4 key购买 nike

如果X是一个数组,X[:,0]是什么意思?其实我也不是第一次看到这样的东西了,看得我一头雾水,就是看不出来是什么意思?谁能给我举个例子?对于这个逗号问题,我们将不胜感激。

请看文件https://github.com/lazyprogrammer/machine_learning_examples/blob/master/ann_class/forwardprop.py

最佳答案

砖 block 内的逗号将要从数组中滑出的行与列分隔开。

x[row,column]

您可以在行值和列值之前或之后放置“:”。在值之前表示“unitl”,在值之后表示“from”。

例如你有:

x: array([[5.1, 3.5, 1.4, 0.2],
[4.9, 3. , 1.4, 0.2],
[4.7, 3.2, 1.3, 0.2],
[4.6, 3.1, 1.5, 0.2],
[5. , 3.6, 1.4, 0.2],
[5.4, 3.9, 1.7, 0.4],
[4.6, 3.4, 1.4, 0.3],
[5. , 3.4, 1.5, 0.2],
[4.4, 2.9, 1.4, 0.2]])

x[:,:] would mean u want every row and every column.

x[3,3] would mean u want the 3 row and the 3 column value

x[:3,:3] would mean u want the rows and columns until 3

x[:, 3] would mean u want the 3 column and every row

关于python - X[ :, 0] 里面逗号的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43576592/

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