-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
questionFurther information is requestedFurther information is requested
Description
Hello! Thank you very much for your contribution to LLM4TS. When I run the code you provided, I find that the returned results are always null on both the example data you provided and on multiple TS anomaly detection datasets (SWAP),the returned as follow:
anomalies: Empty DataFrame
Columns: [start, end, severity]
Index: []
This means that SigLLM is almost impossible to detect anomalies. My hyperparameters are set as follows, is there anything in my code that doesn't make sense for the hyperparameters?
pipeline_name = 'gpt_detector'
hyperparameters = {
"sigllm.primitives.forecasting.custom.rolling_window_sequences#1": {
"target_column": 0,
"window_size": 140,
"step_size": 1,
"target_size": 1
},
"orion.primitives.timeseries_anomalies.find_anomalies#1": {
"fixed_threshold": True,
"anomaly_padding": 2
},}
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested