-
Notifications
You must be signed in to change notification settings - Fork 26
Description
Hi
I was wondering if there is some documentation/tutorial on how to use my own custom univariate time series for fit()
of SigLLM
I have this (355,1981)
dataset with shared relative timestamps but measured at different times on different people. Could I use to train an outlier detector from it as I had the labels (355,1981
as each timeseries obviously outliers happen at different times for different series, but look similar to each other, and happen mostly at random) for it, that I could then use to predict anomalies in production?
edit: Or as I assume that the method was totally unsupervised, some sort of finetuning or in-context learning with the whole dataset could be nice even with the supervised label use
I know got the detect
working, but I assume that I could get a lot better performance with some training instead of zeroshotting through my dataset
The fit()
of of
mlblocks/
mlpipelinehad at least this option so was wondering can you leverage labels or do I just push the timeseries one-by-one through the
SigLLM`? They are a bit hard to concatenate for training