-
Notifications
You must be signed in to change notification settings - Fork 867
New issue
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
Unable to run score #361
Comments
I got the same problem, but still don't know how to fix it. matchingRow = None
prevRow = None
for thresholdScore in scoresByThreshold:
if thresholdScore.threshold == threshold:
matchingRow = thresholdScore
break
elif thresholdScore.threshold < threshold:
matchingRow = prevRow
break
prevRow = thresholdScore |
@rhyolight @subutai: Can you please fix this or give a lead as to what is causing the problem mentioned here? Thanks. |
We'll take a look - give us a couple of days. The function may make some assumptions about allowable values. |
@bhatiasiddharth Can you verify if the |
No it is not. Does it need a score between 0 and 1 only? |
Yes, the raw anomaly score must be a number between 0 and 1. |
Sure, thanks. |
Let me know if it works for you |
Currently, the algorithm I am trying does not give scores between 0 and 1. I need to think how to do it. Once I try, I will let you know. Thanks. |
Perhaps you can pass it through a sigmoid, or similar function to get the output in range? As long as it's a monotonic function, it shouldn't matter at all since we are just thresholding the score. |
Thanks for letting me know. It worked. |
I was trying to run my own algorithm on the NAB datasets as per option 1 on https://github.com/numenta/NAB/wiki/NAB-Entry-Points
Till optimize function, everything works fine but following error occurs while scoring
Please help ASAP
The text was updated successfully, but these errors were encountered: