luminol icon indicating copy to clipboard operation
luminol copied to clipboard

Anomaly Detection and Correlation library

Results 34 luminol issues
Sort by recently updated
recently updated
newest added

With this, the example from README works. In other words with proposed change one can `import luminol` and later `detector = luminol.anomaly_detector.AnomalyDetector(ts)`, currently `anomaly_detector` is not visible as a member...

Not really a code related question, but more of a methods question. Is there some material on the basic concepts that have been used to develop the luminol package? For...

Hi i'm looking for toolkits for timeseries anomaly detection, i think this cloud help me but i didn't understand how to exactly work with luminol, how is the data format...

Hello, first of all sorry about my ignorance in the subject, I'm a new Python user and at programming at all. I'm really having trouble to run the code, I...

Please throw a warning message to the user when automatically modifying parameters or algorithms. Doing this silently makes it extremely difficulty to debug and fine-tune. https://github.com/linkedin/luminol/blob/42e4ab969b774ff98f902d064cb041556017f635/src/luminol/algorithms/anomaly_detector_algorithms/bitmap_detector.py#L60-L73 https://github.com/linkedin/luminol/blob/42e4ab969b774ff98f902d064cb041556017f635/src/luminol/anomaly_detector.py#L91-L104

the code in enumerater should be baseline_value = self.baseline_time_series[timestamp] instead of baseline_value = self.baseline_time_series[i]. otherwise it will give "timestamp does not exist in time series object" exception.

Hi, This is not really an issue but couple questions. The example code that calculates the anomaly scores e.g: from luminol.anomaly_detector import AnomalyDetector ts = {0: 0, 1: 0.5, 2:...

Hello, I tried this package to detect the cyclical time series data but got the anomaly points for every T time period. Any better algorithm to crack it?