#3. split up ground_truth into components, xy, wh, confidence, class -> apply calculations to acchive safe format as predictions
true_box=y_true[...,0:4]
true_conf=y_true[...,4]
true_class=y_true[...,5:]
#5. apply generalized IOU or mse to the box predictions -> only the indexes where an object exists will affect the total loss -> found via the true_confidnce in ground truth
#6. apply binary cross entropy(bce) to class attributes -> only the indexes where an object exists will affect the total loss -> found via the true_confidnce in ground truth
#7. apply bce to confidence at all points and then strategiacally penalize the network for making predictions of objects at locations were no object exists