* add new content to ug of chronos * add link revise * fix broken links * add changes according to comments * add updates * fix typos * change typos
		
			
				
	
	
	
	
		
			1.7 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.7 KiB
		
	
	
	
	
	
	
	
Time Series Anomaly Detection Overview
Anomaly Detection detects abnormal samples in a given time series. Chronos provides a set of unsupervised anomaly detectors.
View some examples notebooks for Datacenter AIOps.
1. ThresholdDetector
ThresholdDetector detects anomaly based on threshold. It can be used to detect anomaly on a given time series (notebook), or used together with Forecasters to detect anomaly on new coming samples (notebook).
View ThresholdDetector API Doc for more details.
2. AEDetector
AEDetector detects anomaly based on the reconstruction error of an autoencoder network.
View anomaly detection notebook and AEDetector API Doc for more details.
3. DBScanDetector
DBScanDetector uses DBSCAN clustering algortihm for anomaly detection.
View anomaly detection notebook and DBScanDetector API Doc for more details.