Building a Neural Network from Scratch with NumPy: Understanding the Forward Pass
class Dense_layer:
def __init__(self,inputSIze,num_of_neurons):
self.weights=0.01*np.random.randn(inputSIze,num_of_neurons)
self.bias=np.zeros((1,num_of_neurons))
def forward(s
radhakantpanda.hashnode.dev1 min read