Commit 1a94ca4d authored by Andrey Getmanov's avatar Andrey Getmanov
Browse files

- fixed bug with r2 metrics

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -81,7 +81,7 @@ class QualityMetric:
# Define conditions for target and predictions transforming
is_regression = reference_data.task.task_type == TaskTypesEnum.regression
is_multi_target = len(np.array(results.predict).shape) > 1
is_multi_target = False # len(np.array(results.predict).shape) > 1
is_multi_target_regression = is_regression and is_multi_target
# Time series forecasting
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment