Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keras - Linear stack of layers?

I started to follow this "guide" to learn how to make a neural network but I'm already stuck at the first sentence

https://keras.io/getting-started/sequential-model-guide/

What the hell is a LINEAR stack of layer ?

Does it mean the derivative of the stack is a constant ? (kidding but I'm getting really frustrated by guides who don't define what they're saying)

like image 549
user3548298 Avatar asked Oct 19 '25 01:10

user3548298


1 Answers

A linear stack is a model without any branching. Every layer has one input and output. The output of one layer is the input of the layer below it.

Stacks which are not linear can have layers with multiple inputs and outputs. They can have complex connections between layers

like image 85
user239457 Avatar answered Oct 22 '25 04:10

user239457