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
lap_score.py
Hi there!
It seems to be an error in lap_score.py. Please, take a look at the following excerpt:
# if 'W' is not specified, use the default W if 'W' not in kwargs.keys(): W = construct_W(X) # construct the affinity matrix W W = kwargs['W']
If the user does not pre-compute W, then the last line results in a KeyError. I think it's easy to fix, since there seems to be a missing else:
W
else
if 'W' not in kwargs.keys(): # if 'W' is not specified, use the default W W = construct_W(X) else: # construct the affinity matrix W W = kwargs['W']
Thanks. Regards.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there!
It seems to be an error in
lap_score.py
. Please, take a look at the following excerpt:If the user does not pre-compute
W
, then the last line results in a KeyError. I think it's easy to fix, since there seems to be a missingelse
:Thanks. Regards.
The text was updated successfully, but these errors were encountered: