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
Thanks for the author's sharing! When I run the code, I find a typo in "novelty_detection.py" in Line 526~531:
minp, maxP = -maxP, -minP X1 = [-x for x in X1] Y1 = [-x for x in Y1] auprout = 0.0 recallTemp = 1.0 for e in np.arange(minP, maxP, 0.2):
There defined a minp = -maxP, however, the parameter in np.arange is minP.
minp = -maxP
np.arange
minP
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the author's sharing! When I run the code, I find a typo in "novelty_detection.py" in Line 526~531:
There defined a
minp = -maxP
, however, the parameter innp.arange
isminP
.The text was updated successfully, but these errors were encountered: