def __init__()

in DataGenerator.py [0:0]


    def __init__(self, length, distribution, name, seed=0, params={}, dim=1, *args, **kwargs):
        super().__init__(**kwargs)  # need to cooperate with other classes for multiple inheritance
        self.size = length
        self.distribution = distribution
        self.seed = seed
        self.params = params
        self.dim = dim
        self.name = name
        self.chunksize = 1000