theano编程中,判断数据为空时很烦人的事,
theano.Tensor.lmatrix ,numpy.array , list 为空的判断方法
T.lmatrix有shape属性, numpy.array有shape属性,list没有shape属性。
只有将list强制转为array,方法为:sa = numpy.array(value)
这样sa.shape会是(x,)。
通过这样的转换,三个类型都有shape属性。可以用shape判断为空。
theano编程中,判断数据为空时很烦人的事,
theano.Tensor.lmatrix ,numpy.array , list 为空的判断方法
T.lmatrix有shape属性, numpy.array有shape属性,list没有shape属性。
只有将list强制转为array,方法为:sa = numpy.array(value)
这样sa.shape会是(x,)。
通过这样的转换,三个类型都有shape属性。可以用shape判断为空。