Multiple Embedding layers for Keras Sequential model
问题 I am using Keras (tensorflow backend) and am wondering how to add multiple Embedding layers into a Keras Sequential model. More specifically, I have several columns in my dataset which have categorical values and I have considered using one-hot encoding but have determined that the number of categorical items is in the hundreds leading to a large and far too sparse set of columns. Upon looking for solutions I have found that Keras' Embedding layer appears to solve the problem very elegantly.