ibm-developer icon indicating copy to clipboard operation
ibm-developer copied to clipboard

AssignmentAnomalyDetection

Open devakar opened this issue 7 years ago • 1 comments

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.

devakar avatar May 17 '18 05:05 devakar

Since the model is reconstructing the output from the input, the y is the same as the x.

sriki18 avatar Dec 29 '18 00:12 sriki18