I am working on Exercise 2 the alpaca model and run into a problem with the input layer.
I get the following message:
Test failed
Expected value
[‘InputLayer’, [(None, 160, 160, 3)], 0]
does not match the input value:
[‘InputLayer’, [(1, 160, 160, 3)], 0]
With debugging I have found that the statement:
# create the input layer (Same as the imageNetv2 input size)
Returns a tensorflow object with the shape (None, 160, 160, 3)
The following statement:
# apply data augmentation to the inputs
Returns a tensorflow object with the shape (1, 160, 160, 3)
I do not know how to change the augmentation statement in order to have it return shape (None, 160, 160, 3)
Does anyone has a hint for me?
