Closed
Description
After the a2c6746 commit (PR #1320), a state of inconsistency in the code arose. The signature of the array_to_input_data
function was changed, and an optional features_names
parameter was added.
Lines 849 to 855 in d87ace3
However, the rest of the functions that use array_to_input_data
continue to pass parameters as args instead of kwargs (i.e., in a row), shifting the order of arguments in the function body.
Line 107 in d87ace3
To resolve this issue, the easiest and most straightforward approach would be to move the features_name
parameter to the end of the argument list for array_to_input_data
.