Skip to content

Commit a0e8631

Browse files
committed
! mse round
1 parent 0f7f55a commit a0e8631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

execute.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def experiment(lin_reg_cfg, visualise_prediction=True):
99
linreg_dataset = LinRegDataset()(lin_reg_cfg.dataframe_path)
1010

1111
predictions = lin_reg_model(linreg_dataset["inputs"])
12-
error = MSE(predictions, linreg_dataset["targets"])
12+
error = round(MSE(predictions, linreg_dataset["targets"]), 2)
1313

1414
if visualise_prediction:
1515
Visualisation.visualise_predicted_trace(

0 commit comments

Comments
 (0)