I struggle with exercise 1 of this week course, though I have completed exercise 2 already.
I tried to create the filtering mask like this: filtering_mask = tf.greater(box_class_scores, threshold)
and applied it, for example to box_class_scores, like this:
scores = tf.boolean_mask(box_class_scores, filtering_mask).
When I run the test cell, I get the error that the mask cannot be a scalar.
When I tried to create a tensor using the threshold scalar like this: tf. scalar(threshold), I get the an AttributeError that the module âtensorflowâ has no attribute 'âscalarâ