MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / __init__

Method __init__

neural_network/bpnn.py:100–104  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected