Why input shape is not used in regression example? #312
-
I noticed that there are a handfull of features in the insurance dataset. In the begining of the course, there is a slide that indicates that in regression, number of feautures defines the input dhape. However the input shape is not being used in models. Why? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Straight from the Keras documentations: Is simple language:shape is not required attribute |
Beta Was this translation helpful? Give feedback.
Straight from the Keras documentations:
shape: A shape tuple (integers), not including the batch size. For instance, shape=(32,) indicates that the expected input will be batches of 32-dimensional vectors. Elements of this tuple can be None; 'None' elements represent dimensions where the shape is not known.
Is simple language:shape is not required attribute