When I'm trying to fit the model on multiple dataset, the model starts over each time.
What I am trying to do:
from tods.sk_interface.detection_algorithm.LSTMODetector_skinterface import LSTMODetectorSKI
transformer = LSTMODetectorSKI()
for X in Xs:
transformer.fit(X)
How should one go about doing something like that?
Thanks!
When I'm trying to fit the model on multiple dataset, the model starts over each time.
What I am trying to do:
How should one go about doing something like that? Thanks!