Hey all,
So I’m trying to ensure that I’m using .disableLearning()
right.
I have a script which learns a number of models up to a certain point, where I want to stop learning on them all while maintaining inference – so they can keep yielding Anomaly Score on new data but not keep learning.
Here’s where I’m baffled:
After calling .disableLearning()
on my mod object, .isLearningEnabled()
is False but ._HTMPredictionModel__tpLearningEnabled
is still True! This shouldn’t be the case right??
I’ve also tried .finishLearning()
, but I keep getting this error:
Thanks again!!