RPRadhakant Pandainradhakantpanda.hashnode.dev·Feb 28 · 1 min readBuilding a Neural Network from Scratch with NumPy: Understanding the Forward Passclass 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(s00
RPRadhakant Pandainradhakantpanda.hashnode.dev·Feb 28 · 2 min readBuilding a Neural Network from Scratch with NumPy and Python : Understanding the Forward PassFor the past few days I've been diving into how neurons actually work-and it's been fascinating. At its core, they are not magic but mathematical functions—matrix multiplication, bias addition, and no00
RPRadhakant Pandainradhakantpanda.hashnode.dev·Sep 12, 2023 · 4 min readUnderstanding Selectors in CSSLet's start with a quick understanding of what CSS is- CSS stands for Cascading Style Sheet which is used to style web pages as we can add colour, make text bold, add the hovering feature and lots of such amazing features we can add. CSS Selectors: I...00