Python Keras 深度学习包的数据类型是什么?

What is data type for Python Keras deep learning package?

我没有找到任何关于我们需要使用 Python Keras deep learning packagethis link 的数据类型。我检查了数组和列表但返回了错误。有什么线索吗?

Keras 使用 numpy 包含 theano.config.floatX 浮点类型的数组。这可以在您的 .theanorc 文件中配置。

通常,CPU 计算为 float64,GPU 计算为 float32,但您也可以在处理 [=] 时将其设置为 float32 24=] 如果你愿意的话。

您可以通过命令创建一个适当类型的零填充数组

X = numpy.zeros((4,3), dtype=theano.config.floatX)