-
Hello, I am trying to calculate the integrated brier score. Unfortunately, I keep getting the error message I hope you can help me. Thank you very much. :)
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
In the sample code you provided, the biggest value in the times array is 69, but the error message says 76. Are you sure this is correct? Providing the full traceback would be helpful. In general, the error indicates that the observed time points passed as y_train cover a smaller time interval than what times covers. You cannot evaluate predictions beyond the greatest time point in y_train. |
Beta Was this translation helpful? Give feedback.
-
No matter how I try to limit the time, I always get the error that my value is above 76. I am at a loss.
Here is the full traceback:
|
Beta Was this translation helpful? Give feedback.
The problem was the standard scaler, without the standard scaler it worked. The solution with StandardScaler was that I artificially reduced the maximum available time from 76 to 75.