線性感知器

class Perceptron(object): def __init__(self, input_num, activator): self.activator = activator self.weights = [0.0 for _ in range(input_num)] self.bias = 0.0 def __str_
相關文章
相關標籤/搜索