datamllab / tods

TODS: An Automated Time-series Outlier Detection System
http://tods-doc.github.io
Apache License 2.0
1.47k stars 193 forks source link

Training on multiple dataset #90

Open gamcoh opened 1 year ago

gamcoh commented 1 year ago

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!