Skip to content Skip to sidebar Skip to footer

What Is Data Type For Python Keras Deep Learning Package?

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?

Solution 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)

Post a Comment for "What Is Data Type For Python Keras Deep Learning Package?"