We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the sklearn function linear_assignment is deprecated and has to be replaced with linear_sum_assignment in linear_assignment.py like this:
linear_assignment
linear_sum_assignment
linear_assignment.py
from scipy.optimize import linear_sum_assignment as linear_assignment
Furthermore line 58 of the same file needs to be replaced by indices = np.asarray(linear_assignment(cost_matrix)).T
indices = np.asarray(linear_assignment(cost_matrix)).T
Source
One of the proposed mergers #286 also fixed this problem. Please accept it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the sklearn function
linear_assignment
is deprecated and has to be replaced withlinear_sum_assignment
inlinear_assignment.py
like this:from scipy.optimize import linear_sum_assignment as linear_assignment
Furthermore line 58 of the same file needs to be replaced by
indices = np.asarray(linear_assignment(cost_matrix)).T
Source
One of the proposed mergers #286 also fixed this problem. Please accept it.
The text was updated successfully, but these errors were encountered: