shairoMt / Anomaly_detection_at_SWaT

0 stars 0 forks source link

Create the class Normaliser #5

Closed shairoMt closed 3 years ago

shairoMt commented 3 years ago

In this Issue, a normaliser class is created, that can read and normalise batches of a given csv file.

Create a class with the name Normaliser with the following constructor:

def __init__ (filePath, batchSize):
    self.filePath = filePath`
    self.batchSize = batchSize`
    ....