We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f7f55a commit a0e8631Copy full SHA for a0e8631
execute.py
@@ -9,7 +9,7 @@ def experiment(lin_reg_cfg, visualise_prediction=True):
9
linreg_dataset = LinRegDataset()(lin_reg_cfg.dataframe_path)
10
11
predictions = lin_reg_model(linreg_dataset["inputs"])
12
- error = MSE(predictions, linreg_dataset["targets"])
+ error = round(MSE(predictions, linreg_dataset["targets"]), 2)
13
14
if visualise_prediction:
15
Visualisation.visualise_predicted_trace(
0 commit comments