我正在编写功能选择代码。基本上从 featureselection 函数获取输出并将其连接到 numpy 数组数据
data=np.zeros([1,4114]) # put feature length here
for i in range(1,N):
filename=splitpath+str(i)+'.tiff'
feature=featureselection(filename)
data=np.vstack((data, feature))
data=data[1:,:] # remove the first zeros row
但是,这不是一个健壮的实现,因为我需要事先知道特征长度(4114)。
是否有任何空 numpy 数组矩阵,例如在 Python 列表中我们有 []?