我是python和pytables的新手。目前我正在编写一个关于聚类和KNN算法的项目。这就是我所拥有的。
的 的 ** * ** * ** * 的* 代码 * ** * ** * ** * ** < EM> * ****
import numpy.random as npr
import numpy as np
dtype = np.dtype('f4')
pnts_inds = np.arange(100)
npr.shuffle(pnts_inds)
pnts_inds = pnts_inds[:10]
pnts_inds = np.sort(pnts_inds)
for i,ind in enumerate(pnts_inds):
clusters[i] = pnts_obj[ind]
filters = tables.Filters(complevel = 1, complib = 'zlib')
clst_fobj = tables.openFile('clst_fn.h5', 'w')
clst_obj = clst_fobj.createCArray(clst_fobj.root, 'clusters',
tables.Atom.from_dtype(dtype), clusters.shape,
filters = filters)
clst_obj[:] = clusters
clst_fobj.close()
布拉布拉
pnts_fobj= tables.openFile('clst_fn.h5','r')
for pnts in pnts_fobj.walkNodes('/', classname = 'Array'):
break
#
def knn(pnts):
pnts = numpy.ascontiguousarray(pnts)
N = ctypes.c_uint(pnts.shape[0])
D = ctypes.c_uint(pnts.shape[1])
#
knn(pnts)
的 的 ** * ** * ** * 的* 代码结尾 * ** * ** * ** * * * * ****
我现在的问题是python通过显示给我一个艰难的时间: error:IndexError:元组索引超出范围 此错误来自 “D = ctypes.c_uint(pnts.shape [1])”这一行。
显然,输入参数肯定有问题。有关解决问题的想法吗?提前谢谢。