Training on multiple dataset
Opened this issue · 0 comments
gamcoh commented
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!