I'm new in using keras framework. I have read some examples about how to construct deep learning models with the Sequential and Graph classes in keras. However, I see that, independently if I use Sequential or Graph, It is assumed that each node of a layer is fully connected with all the nodes of the other layer, is'nt it?
My doubt is the following, if I want to construct a deep feed forward network that it is not fully connected, for instance the first node of the second layer is not connected to the second node of the third layer...etc, even I want add connections (skip connections) between nodes that belong to non-consecutive layers, How can I implement this in keras?
Oscar