Skip to content

Commit

Permalink
Bugfix: _evaluate_performance_regression typo
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdavis authored Jun 2, 2023
1 parent e0d6f1e commit 85ed2f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/synthcity/metrics/eval_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ def _evaluate_performance_regression(
The lower the negative value, the bigger the error in the predictions.
"""

X_train = np.asarray(X_test)
X_train = np.asarray(X_train)
X_test = np.asarray(X_test)
y_train = np.asarray(y_test)
y_train = np.asarray(y_train)
y_test = np.asarray(y_test)

try:
Expand Down

0 comments on commit 85ed2f4

Please sign in to comment.