ibm-developer
ibm-developer copied to clipboard
AssignmentAnomalyDetection
score(data_healthy_scaled), score(data_broken_scaled)
with method call def score(data): return model.#### your code here ###(data)
How did model calculate score without providing the label (or, y_test), as model.evaluate require x_test and y_test.
Since the model is reconstructing the output from the input, the y is the same as the x.