On Friday, 25 November 2016 06:24:24 GMT Dhruv Upadhyay wrote:
> what does the line model=Sequential() implies ??
This just instantiates a sequential model, which implies a neural network formed by a sequence of layers, and each layer is only connected to the next layer. No tree or graph patterns are possible, for that you have the Functional API.