You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the cosine model on my timeseries which has many different forms of data but it isn't detecting any changes on some of the large spikes. Below here is the model and penalty I am using, and the segment of the graph that I am concerned about. Is there a mistake that I am making which causes it to not detect this as a change point?
for model, p in zip(models=[cosine], pens=[8]):
print(model)
try:
algo = rpt.Pelt(model=models, min_size=0, jump=1)
algo.fit(signal)
result = algo.predict(pen=p)
The text was updated successfully, but these errors were encountered:
I am using the cosine model on my timeseries which has many different forms of data but it isn't detecting any changes on some of the large spikes. Below here is the model and penalty I am using, and the segment of the graph that I am concerned about. Is there a mistake that I am making which causes it to not detect this as a change point?
The text was updated successfully, but these errors were encountered: