in functions/simple/simple.py [0:0]
def generate_weights(type, steps): if type == "linear": values = linear(steps) # implement other functions here else: raise Exception("Invalid function type: " + type) return values