I didn't find anything about data type that we need to work with Python Keras deep learning package
with this link. I checked array and list but returned error. Any clue?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Keras uses numpy
arrays containing the theano.config.floatX
floating point type. This can be configured in your .theanorc
file.
Typically, it will be float64
for CPU computations and float32
for GPU computations, although you can also set it to float32
when working on the CPU if you prefer.
You can create a zero-filled array of the proper type by the command
X = numpy.zeros((4,3), dtype=theano.config.floatX)