You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Incorrect initialisation of Kitnet (Kitnet.py line 45). If feature_map is provided in the Kitunet, it will jump straight to self.createAD() function without self.ensembleLayer = [] being initialized. Hence the initialization of Kitsune from line 45 should be:
self.ensembleLayer = []
self.outputLayer = None
if self.v is None:
self.logger.info("Feature-Mapper: train-mode, Anomaly-Detector: off-mode")
self.FM = CC.corClust(self.n) #incremental feature cluatering for the feature mapping process
else:
self.__createAD__()
self.logger.info("Feature-Mapper: execute-mode, Anomaly-Detector: train-mode")
The text was updated successfully, but these errors were encountered:
Incorrect initialisation of Kitnet (Kitnet.py line 45). If feature_map is provided in the Kitunet, it will jump straight to self.createAD() function without self.ensembleLayer = [] being initialized. Hence the initialization of Kitsune from line 45 should be:
The text was updated successfully, but these errors were encountered: