Пример #1
0
 def __init__(self):
     #contructor
     #model inherits from the module class
     Module.__init__(self)
     #the model is constitued of 2 linear layer with activation layer
     self.l1 = Sequential(Linear(2, 16), ReLu(), Linear(16, 92))
     self.s1 = TanhS()
     self.l2 = Linear(92, 2)