(self)
| 98 | Back Propagation Neural Network model |
| 99 | ''' |
| 100 | def __init__(self): |
| 101 | self.layers = [] |
| 102 | self.train_mse = [] |
| 103 | self.fig_loss = plt.figure() |
| 104 | self.ax_loss = self.fig_loss.add_subplot(1,1,1) |
| 105 | |
| 106 | def add_layer(self,layer): |
| 107 | self.layers.append(layer) |
nothing calls this directly
no outgoing calls
no test coverage detected