Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tjkessler committed Jul 16, 2019
1 parent 398c18f commit 62c54a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecnet/tasks/limit_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def limit_rforest(df: DataFrame, limit_num: int, num_estimators: int=None,
y = concatenate((y, pd.valid_y))
if len(pd.test_x) > 0:
X = concatenate((X, pd.test_x))
y = concatenate((X, pd.test_y))
y = concatenate((y, pd.test_y))
y = ravel(y)

if num_estimators is None:
Expand Down

0 comments on commit 62c54a2

Please sign in to comment.