Neural Network Layers Enquiry #272
-
Hello there, I am a bit confused when writing the code for the modelling part with TensorFlow. if it is the input layer, don't we need another output layer? why only do we have an input layer here without an output layer? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @AlmalkiHub, The model you've built has only one layer, so it's the input, hidden and output layer in one. Neural networks can have any amount of layers larger than zero, including only a single layer. |
Beta Was this translation helpful? Give feedback.
Hey @AlmalkiHub,
The model you've built has only one layer, so it's the input, hidden and output layer in one.
Neural networks can have any amount of layers larger than zero, including only a single layer.