Multi-dimensional input layers in Keras

强颜欢笑 提交于 2019-12-01 13:42:10

As far as I know you are correct, but you could reshape your data to have 1275 * 11 features and then run a dense layer on top of it. There is a Reshape Layer (https://keras.io/layers/core/#reshape) and a Flatten Layer (https://keras.io/layers/core/#flatten).

For a dense layer you normally flatten your input first.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!