Course: “Improving Deep Neural Networks: Hyperparameter Tuning, Regularization and Programming Frameworks”
Week #3: Programming Assignment: TensorFlow Introduction
when running: compute_total_loss_test(compute_total_loss, new_y_train ) I keep getting this: “AssertionError: Test 1 does not match. Did you get the reduce sum of your loss functions?”
I am using reduce_sum in my definition of total loss:
def compute_total_loss(logits, labels):
# mentor edit: code removed
What am I doing wrong?