Course 4: week 2: assignment 2: alpaca model

I’ve tried everything. keep getting erros

2 things to look for:

  1. image_shape is a tuple containing the height and width dimensions without the channel specification. Use another variable in the same function that includes this information.
  2. The preprocessing function is already given to you. There’s no need to pick an irrelevant one since it doesn’t relate to the mobilenet v2 model. Here’s what the starter code contains: preprocess_input = tf.keras.applications.mobilenet_v2.preprocess_input

Don’t forget to remove code from your previous post. You can leave the stacktrace around.

Alright. Done. Thank you