This repository was archived by the owner on Aug 15, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
src/mlpro/oa/streams/tasks/changedetectors/driftdetectors/clusterbased Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .basics import DriftDetectorCB
22from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .deformation_detector import DriftDetectorCBGenDeformation
3- from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .density_detector import DriftCBDensity
3+ from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .density_detector import DriftDetectorCBGenDensity
44from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .movement_detector import DriftDetectorCBGenMovementGeo , DriftDetectorCBGenMovement
55from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .size_change_detector import DriftDetectorCBGenSizeChange
66from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .generic import *
Original file line number Diff line number Diff line change @@ -47,8 +47,7 @@ def __init__( self,
4747 p_visualize : bool = False ,
4848 p_logging = Log .C_LOG_ALL ,
4949 p_drift_buffer_size : int = 100 ,
50- p_thrs_inst : int = 0 ,
51- p_thrs_cluster : int = 0 ):
50+ p_thrs_inst : int = 0 ):
5251
5352 super ().__init__ ( p_clusterer = p_clusterer ,
5453 p_property = cprop_density1 ,
@@ -62,5 +61,4 @@ def __init__( self,
6261 p_visualize = p_visualize ,
6362 p_logging = p_logging ,
6463 p_drift_buffer_size = p_drift_buffer_size ,
65- p_thrs_inst = p_thrs_inst ,
66- p_thrs_cluster = p_thrs_cluster )
64+ p_thrs_inst = p_thrs_inst )
Original file line number Diff line number Diff line change 2222from mlpro .bf .math .geometry import cprop_center_geo1
2323from mlpro .oa .streams .tasks .clusteranalyzers .clusters .properties import cprop_centroid1
2424from mlpro .oa .streams .tasks .changedetectors .driftdetectors .drifts .clusterbased import DriftCBCenterGeo
25+ from mlpro .oa .streams .tasks .changedetectors .driftdetectors .drifts .clusterbased import DriftCBMovement
2526from mlpro .oa .streams .tasks .changedetectors .driftdetectors .clusterbased .generic import DriftDetectorCBGenSingleGradient
2627
2728
@@ -84,7 +85,7 @@ def __init__( self,
8485 p_clusterer : ClusterAnalyzer ,
8586 p_thrs_lower : float ,
8687 p_thrs_upper : float ,
87- p_cls_drift : type = DriftCBCenterGeo ,
88+ p_cls_drift : type = DriftCBMovement ,
8889 p_name : str = None ,
8990 p_range_max = OAStreamTask .C_RANGE_THREAD ,
9091 p_ada : bool = True ,
You can’t perform that action at this time.
0 commit comments