Course 4 Week 3 Assignment 1: AttributeError: module 'tensorflow._api.v2.image' has no attribute 'non_max_suppresssion'

My code:

nms_indices = tf.image.non_max_suppresssion(boxes, scores, max_boxes, iou_threshold)

is producing

AttributeError: module 'tensorflow._api.v2.image' has no attribute 'non_max_suppresssion'

I have reloaded all the libraries from the top and checked the spelling of the function against the documentation. I appreciate any insight you can give.

1 Like

You used too many ā€˜sā€™ characters:
suppresssion
vs.
suppression

1 Like