Rashid Ul Haqrashid-ul-haq.hashnode.dev·Jul 6, 2024Gradients: The Building Blocks of Backpropagation in TensorFlowIn a neural network, backpropagation is essential for error minimization. It involves calculating the partial derivatives, or gradients, of the loss function with respect to trainable parameters. Manually computing and implementing these derivatives ...Discuss·10 likesDeep Learning UnpluggedTensorFlow
Jeevraj Taralkarjeevraj.hashnode.dev·Apr 27, 2024Build your own Free "Chat with PDF" systemWith the rise of AI LLM, there are many who like to have fun with such customized chatbot system. And there are many who uses such customized chatbot system by paying some money to open AI API to get embeddings or Natural language processing. In this...Discuss·43 readsastra
Khusharth Pataniblog.khusharth.dev·Feb 20, 2024SVG progress indicator in react native - Part 1📚 Part 1: Building the base👈 you are here 🧱 Part 2: Building the component ✨ Part 3: Adding refinements and animation One of the things I enjoy the most in frontend development is creating beautiful components with animations✨ and that is w...Discuss·59 likes·1.1K readsReact
Khusharth Pataniblog.khusharth.dev·Feb 20, 2024SVG progress indicator in react native - Part 2📚 Part 1: Building the base 🧱 Part 2: Building the component👈 you are here ✨ Part 3: Adding refinements and animation This is Part 2 of the 3-part blog series and in this part, we will focus on creating the core parts of our progress indica...Discuss·12 likes·263 readsReact
Khusharth Pataniblog.khusharth.dev·Feb 20, 2024SVG progress indicator in react native - Part 3📚 Part 1: Building the base 🧱 Part 2: Building the component ✨ Part 3: Adding refinements and animation👈 you are here Welcome back! This is the last part of the 3-part blog series and in this part, we'll enhance our existing component and a...Discuss·1 like·147 readsReact
Saurav Kumartechnologywithsaurav.hashnode.dev·Feb 26, 2023Gradient In CSSIn CSS, gradients are used to create smooth transitions between two or more colors. Gradients can be created using the linear-gradient() or radial-gradient() functions. Here's an example of how to create a linear gradient: .gradient { background: l...Discuss·28 readsCSS3
Kiran Yadavkiranprem07.hashnode.dev·Feb 2, 2023CSS GradientCSS gradient is a smooth transition between two or more colors. Using CSS gradients we create eye-catching interactive designs. CSS Gradients are of three types: Linear gradient Radial gradient Conic gradient Linear gradient: it is created with the ...Discuss·1 likeGeneral Programming