报错:
TypeError: reshape(): argument 'shape' must be tuple of ints, but found element of type float at pos 2
解决办法
chu = (len(t))/64
改为:
chu = (len(t))//64
就能运行啦