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. An
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)