You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a coding mistake in the function _evaluate_performance_regression within the class PerformanceEvaluator. I think I spotted a typo in the transformation of the training and test set to numpy arrays, which leads to the estimator being trained and tested on the same data.
How to Reproduce
Simply investigate the source code for the function _evaluate_performance_regression within the class PerformanceEvaluator in the file eval_performance.py.
Description
There seems to be a coding mistake in the function
_evaluate_performance_regression
within the classPerformanceEvaluator
. I think I spotted a typo in the transformation of the training and test set to numpy arrays, which leads to the estimator being trained and tested on the same data.How to Reproduce
Simply investigate the source code for the function
_evaluate_performance_regression
within the classPerformanceEvaluator
in the fileeval_performance.py
.Expected Behavior
The following snippet of code
should be changed to:
The text was updated successfully, but these errors were encountered: